:root{
    --nav-height:60px;
}

body{
    font-family: 'Inter',sans-serif;
    font-size: 16px;
}

.banner-mask{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.1);
}

header{
    background-color: #002135;
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}
.nav-inner{
    max-width: 1430px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.nav-inner nav ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.nav-inner nav ul li{
   position: relative;
   transition: opacity .2s;
   height: 40px;
   display: flex;
   align-items: center;
   font-weight: normal;
   font-size: 14px;
}
.nav-inner nav ul li:after{
    display: none;
}
.nav-inner nav ul li:hover{
    opacity: 1;
}
.nav-inner nav ul li a{
    color: #fff;
    text-decoration: none;
}
.nav-inner nav ul li:hover a,
.nav-inner nav ul li.active a{
    color: #8BC22C;
}
.logo-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: var(--nav-height);
}
.logo-box .logo{
    height: 40px;
    display: block;
}

header .header-right .btns {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
}
header .header-right .btns .btn {
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: color .3s;
}
header .header-right .btns .openWhatsApp{
	align-items: center;
	width: auto;
	color: #fff !important;
	font-size: 12px;
	background-image: url('/_image/whatsa_icon2.png');
	background-repeat: no-repeat;
	background-size: 100%;
	height: 26px;
	padding-left: 25px;
	padding-right: 8px;
	padding-bottom: 4px;
	white-space: nowrap;
}
.nav-outer .btn.openWhatsApp {
    color: #fff;
	cursor: pointer;
	display: none;
	flex-direction: row;
	transition: color .3s;
    align-items: center;
	width: 140px;
    margin: 0 auto;
	font-size: 12px;
	background-image: url('/_image/whatsa_icon2.png');
	background-repeat: no-repeat;
	background-size: 100%;
	height: 26px;
	padding-left: 25px;
	padding-right: 8px;
	padding-bottom: 4px;
    margin-top: 10px;
	white-space: nowrap;
}
header .header-right .btns .btn .icon{
	width: 26px;
	height: 26px;
}
.voice-select{
	position: relative;
}
.voice-select .selected{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	gap: 5px;
	color: #fff;
	transition: color .3s;
}
.nav-outer .voice-select{
    margin-top: 10px;
    display: none;
}
.nav-outer .voice-select .selected{
    justify-content: center;
}
.nav-outer .voice-select .select{
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
}
.voice-select .selected .icon{
	width: 20px;
	display: block;
}
.voice-select .select{
	position: absolute;
	left: 0;
	top: 100%;
	width: 96px;
	margin-left: -31px;
	display: none;
	padding-top: 5px;
}
.voice-select .select .inner{
	background: #fff;
	padding: 10px 10px;
	border-radius: 2px;
	box-shadow: 0 0 3px 1px rgba(0,0,0,.1);
}
.voice-select:hover .select{
	display: block;
}
.voice-select .select ul{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.voice-select .select ul li a{
	display: flex;
	flex-direction: row;
	font-size: 12px;
	color: #333;
	flex-direction: row;
	gap: 5px;
	white-space: nowrap;
}
.voice-select .select ul li .icon{
	width: 20px;
	display: block;
}

.mobile-menu {
	width: 26px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.mobile-menu span {
	display: block;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	margin: 3px 0;
	border-radius: 1.5px;
	transition: all .3s linear;
}
.mobile-menu.active span:nth-child(1) {
	transform: rotate(32deg) translateX(2px);
	transform-origin: left;
}

.mobile-menu.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
	transform: rotate(-32deg) translateX(2px);
	transform-origin: left;
}

footer{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #1A3856;
}
.footer-inner{
    width: 100%;
    max-width: 1430px;
    padding: 0 15px;
    padding-top: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.footer-inner .logo-box{
    max-width: 210px;
}
.footer-inner .logo-box .pic{
    width: 100%;
    display: block;
}
.footer-inner .dt{
    color: #BDC4CD;
    font-size: 14px;
    margin-top: 40px;
    max-width: 668px;
    text-align: center;
}
.footer-inner .footer-item{
    flex: 1;
}
.footer-inner .footer-item.single-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-inner .footer-item .social-media{
    margin-top: 40px;
}
.footer-inner .footer-item .social-media h3{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.social-media-list{
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.social-media-list li a img{
    width: 20px;
}
.footer-inner .footer-item .link-list{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-inner .footer-item .link-item h3{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.footer-inner .footer-item .link-item{
    flex-direction: column;
    display: flex;
    gap: 25px;
}
.footer-inner .footer-item .link-item ul{
    flex-direction: column;
    display: flex;
    gap: 25px;
}
.footer-inner .footer-item .link-item ul li{
    font-size: 14px;
    color: #BDC4CD;
}
.footer-inner .footer-item .link-item ul li a{
    color: #BDC4CD;
    transition: color .3s;
}
.footer-inner .footer-item .link-item ul li a:hover{
    color: #fff;
}
.footer-inner .footer-item .link-item ul.tech li{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-inner .footer-item .link-item ul.tech li a{
    color: #fff;
}
.footer-inner .footer-item .link-item ul.tech li p{
    font-size: 13px;
    line-height: 1.3;
}
.footer-inner .footer-item .info ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-inner .footer-item .info ul li h3{
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}
.footer-inner .footer-item .info ul li p{
    font-size: 14px;
    color: #BDC4CD;
}
.footer-inner .footer-item .info ul li p a{
    color: #BDC4CD; 
}
.footer-inner .footer-item .footer-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-inner .footer-item .footer-form h3{
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}
.footer-inner .footer-item .footer-form form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-inner .footer-item .footer-form .ipt{
    background-color: #455D76;
    border-radius: 8px;
    height: 40px;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-inner .footer-item .footer-form .ipt input{
    font-size: 14px;
    width: 100%;
    color: #fff;
    background-color: transparent;
    outline: none;
}
.footer-inner .footer-item .footer-form .ipt input::placeholder {
    color: #8694A6;
    opacity: 1;
}
.footer-inner .footer-item .footer-form .txt{
    background-color: #455D76;
    border-radius: 8px;
    padding: 10px;
}
.footer-inner .footer-item .footer-form .txt textarea{
    width: 100%;
    font-size: 14px;
    background-color: transparent;
    color: #fff;
    outline: none;
}
.footer-inner .footer-item .footer-form .txt textarea::placeholder {
    color: #8694A6;
    opacity: 1;
}
.footer-inner .footer-item .footer-form .sub button{
    height: 40px;
    background-color: #EF8201;
    border-radius: 24px;
    width: 100%;
    transition: all .3s;
    color: #fff;
    cursor: pointer;
}
.footer-inner .footer-item .footer-form .sub button:hover{
    background-color: #d07301;
}
.Reserved{
    margin-top: 100px;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    padding-bottom: 20px;
}

/* 验证码 */
.verify{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	display: none;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
}
.verify.show{
	display: flex;
}
.verify .outer{
	background-color: #fff;
	padding: 20px;
	border-radius: 6px;
	width: 300px;
}
.verify .outer .inner{
	display: flex;
	flex-direction: column;
	gap: 20px;

}
.verify .outer .inner .img-btn{
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.verify .outer .inner .img-btn .img-box{
	flex: 1;
}
.verify .outer .inner .img-btn .img-box img{
	width: 100%;
}
.verify .outer .inner .img-btn button{
	color: #0070C0;
	cursor: pointer;
}
.verify .outer .inner input{
	border: 1px solid #ccc;
	padding: 0 10px;
	font-size: 14px;
	height: 35px;
	border-radius: 4px;
}
.verify .outer .inner .btns{
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.verify .outer .inner .btns .btn{
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccc;
	cursor: pointer;
	font-size: 14px;
	height: 30px;
	border-radius: 4px;
}
.verify .outer .inner .btns .confirm{
	color: #0070C0;
	border: 1px solid #0070C0;
}

/* cookie提醒 */
.cookie-widget #cookie-banner {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #333333;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999999999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #eee;
	transform: translateY(0);
}
.cookie-widget #cookie-banner.show {
    transform: translateY(-100%);
}
.cookie-widget #cookie-banner .close{
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 14px;
	cursor: pointer;
}
.cookie-widget .cookie-text {
    flex: 1;
    min-width: 250px;
	text-align: left;
	max-width: 60%;
}
.cookie-widget .cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}
.cookie-widget .cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.cookie-widget .cookie-btn-group {
    display: flex;
    gap: 10px;
}
.cookie-widget button {
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	height: 30px;
}
.cookie-widget .btn-preferences {
    background-color: transparent;
    color: #007bff;
    border-color: transparent;
}
.cookie-widget .btn-accept {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
}
.cookie-widget .btn-accept:hover {
    background-color: #0056b3;
}
.cookie-widget #preferences-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}
.cookie-widget .modal-content {
	text-align: left;
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    color: #333;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-widget .modal-content h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 20px;
}
.cookie-widget .modal-content p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}
.cookie-widget .cookie-options {
    margin: 20px 0;
}
.cookie-widget .option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 10px;
}
.cookie-widget .option-item:last-child {
    border-bottom: none;
}
.cookie-widget .option-info h5 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #333;
}
.cookie-widget .option-info span {
    font-size: 12px;
    color: #888;
}
.cookie-widget .option-info{
    flex: 1;
}
.cookie-widget .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}
.cookie-widget .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-widget .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 22px;
}
.cookie-widget .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.cookie-widget input:checked + .slider {
    background-color: #007bff;
}
.cookie-widget input:checked + .slider:before {
    transform: translateX(18px);
}
.cookie-widget .modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}
.cookie-widget .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
    width: auto;
}
.cookie-widget .close-modal:hover {
    color: #333;
}

.contact-banner-section{
    padding: 0;
}

.contact-banner-wrap{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

.contact-banner{
    padding: 88px 72px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #002135;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
    overflow: hidden;
}

.contact-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 33, 53, 0.1) 0%, rgba(0, 33, 53, 1) 100%);
}

.contact-banner-content{
    width: min(100%, 1400px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-banner-tag{
    min-height: 34px;
    padding: 0 14px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background-color: rgba(139, 194, 44, 0.16);
    color: #8BC22C;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
}

.contact-banner-content h1{
    margin-top: 20px;
    color: #FFFFFF;
    font-weight: bold;
    font-weight: bolder;
    font-size: 48px;
    line-height: 1.1;
}

.contact-banner-content p{
    max-width: 576px;
    margin-top: 18px;
    color: #99A6AE;
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .cookie-widget #cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .cookie-widget .cookie-text {
        width: 100%;
        margin-bottom: 10px;
		max-width: none;
    }
    .cookie-widget .cookie-btn-group {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .cookie-widget .btn-preferences, .btn-accept {
        width: 100%;
    }
    .cookie-widget .modal-content {
        padding: 20px;
        width: 85%;
    }
}

@media screen and (max-width: 1300px) {
    :root{
        
    }

	.nav-inner nav ul{
		gap: 30px;
	}
}

@media screen and (max-width: 1024px) {

    :root{
        
    }


    .header-right{
        display: none;
    }
	.mobile-menu{
		display: flex;
	}
    .nav-outer{
        position: fixed;
        right: -260px;
        width: 250px;
        top: var(--nav-height);
        z-index: 999;
        background-color: #002135;
        overflow: hidden;
        transition: all .1s;
        height: calc(100dvh - var(--nav-height));
        margin-left: 0;
    }
    .nav-outer.active{
        right:0;
    }
    .nav-inner nav ul{
        flex-direction: column;
        gap: 10px;
    }
    .nav-inner nav ul li{
        height: 30px;
    }
    .nav-outer .btn.openWhatsApp {
        display: flex;
    }
    .nav-outer .voice-select{
        display: block;
    }

    .footer-inner{
        flex-wrap: wrap;
        gap: 40px 20px;
    }
    .footer-inner .footer-item{
        flex: none;
        width: calc(50% - 10px);
    }
    .footer-inner .footer-item.single-item{
        width: 100%;
    }

    .contact-banner{
        padding: 72px 48px;
    }

    .contact-banner-content h1{
        font-size: 42px;
    }

}

@media screen and (max-width: 768px) {
    :root{
        
    }
    .Reserved{
        margin-top: 50px;
    }

    .contact-banner{
        padding: 56px 0;
    }

    .contact-banner-content h1{
        margin-top: 16px;
        font-size: 36px;
    }

    .contact-banner-content p{
        margin-top: 14px;
        font-size: 16px;
    }
}
@media screen and (max-width: 620px) {
    .footer-inner{
        gap:20px;
        flex-direction: column;
    }
    .footer-inner .footer-item{
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .contact-banner{
        padding: 44px 0;
    }

    .contact-banner-tag{
        font-size: 13px;
    }

    .contact-banner-content h1{
        font-size: 30px;
    }

    .contact-banner-content p{
        font-size: 15px;
    }
}
