* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

ul,
li {
    list-style-type: none;
}

body {
    overflow-x: hidden;
    background-color: #F5F5F5 !important;
}

main {
    overflow-x: hidden;
}

@font-face {
    font-family: "Public Sans";
    src: url("../font/ijwRs572Xtc6ZYQws9YVwnNGfJ4.woff2") format("woff2");
}

@font-face {
    font-family: "Signika";
    src: url("../font/Signika.woff2") format("woff2");
}



.me-width{
    display: flex;
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width:1200px) {
    .me-width{ 
        width: 980px; 
    }
}
@media screen and (max-width:991px){
    .me-width{ 
        width: 730px;
        padding: 0 12px;
    }
}

@media screen and (max-width:768px) {
    .me-width{ 
        width: 100%; 
    }
}















.header-top {
    background-color: #303442;
    height: 50px;
    position: relative;
}

@media screen and (max-width:991px) {
    .header-top {
        height: 55px;
        display: flex;
        align-items: center;
    }
}

.header-top .container-md.row {
    height: 100%;
    color: white;
    margin: 0 auto;
}

.header-top i {
    color: white;

}

.header-top a {
    color: white;
}

@media screen and (max-width:576px) {
    .header-top {
        padding: 5px 0;
        height: fit-content;
    }

    .header-top a {
        font-size: 14px;
    }

    .header-top i {
        font-size: 14px;
    }

    .header-top .col-lg-6.col-md-9 {
        display: block !important;
    }
    
}
 
.header-top .col-lg-8  a:hover {
    border-bottom: 1px solid #ffffff;
}
@media screen and (max-width:500px) {
    .header-top .col-lg-8{
        display: block !important;
        height: fit-content;
    }
    .header-top a{

    }
}
.header-top ul {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0;
}

@media screen and (max-width:991px) {
    .header-top ul {
        display: none;
    }

    .header-top .container-md.row {
        height: auto;
    }
}

.header-top ul li {
    margin-right: 30px;
}

.header-top ul a {
    color: white;
    transition: 0.3s;
}

.header-top ul a:hover {
    color: #428CCC;
}

.header-top form {
    background-color: white;
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    height: 70%;
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

@media screen and (max-width:991px) {
    .header-top form {
        top: auto;
        transform: none;
        margin-top: 5px;
    }
}

.header-top form input {
    background-color: transparent;
    outline: none;
    border: none;
    padding-left: 10px;
    max-width: 78%;
}

.header-top form button {
    color: #ffffff;
    padding: 4px 10px;
    border: none;
    transition: 0.3s;
    background-color: #428CCC;
}

.header-top form button:hover {
    background-color: #67a8e0;
}

@media screen and (max-width:991px) {
    .header-top form input {
        max-width: 94%;
        width: 100%;
    }
}


.header-top.fixed {
    margin-bottom: 100px;
}

@media screen and (max-width:991px) {
    .header-top.fixed {
        margin-bottom: 60px;
    }
}

.header-bottom {
    height: 100px;
    position: relative;
    background-color: white;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-bottom.fixed {
    position: fixed;
    top: -100px;
    left: 0;
    z-index: 99;
    transition: 0.3s;
}

.header-bottom.fixed.show {
    top: 0;
}

.header-bottom .container-md.row {
    margin: 0 auto;
    height: 100%;
}

.header-bottom .logo {
    height: 100%;
}

.header-bottom .logo a {
    display: flex;
    align-items: center;

    height: 100%;
}

.header-bottom .logo img {
    height: 80%;

}

.header-bottom .nav {
    display: flex;
    justify-content: end;
    padding: 0;
}

.header-bottom .nav ul {
    display: flex;
    align-self: center;
    padding: 0;
    margin: 0;
}

.header-bottom .nav ul li {
    position: relative;
}

.header-bottom .nav ul li .a1 {
    text-transform: uppercase;
    padding: 10px 20px;
    color: #333;
    transition: 0.3s;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Public Sans';
}

.header-bottom .nav ul li.active .a1 {
    background-color: #428CCC;
    color: white;
}

.header-bottom .nav ul li .a1 img {
    padding-right: 5px;
}

.header-bottom .nav ul li:hover .a1 {
    background-color: #428CCC;
    color: white;

}

.header-bottom .nav ul li:not(:last-child) {
    margin-right: 10px;
}

.header-bottom .nav ul li:not(:last-child) .subnav {
    z-index: 10;
    position: absolute;
    height: fit-content;
    width: fit-content;
    border-radius: 0 0 5px 5px;
    transform: translateY(20px);
    opacity: 0;
    left: 9999px;
    transition: 0.5s;
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out,
        left 0.4s ease-out 0.4s;
}

.header-bottom .nav ul li:not(:last-child):hover .subnav {
    transform: translateY(0);
    opacity: 1;
    left: 0;
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out;

}

.header-bottom .nav ul li:last-child .subnav {
    z-index: 10;
    position: absolute;
    height: fit-content;
    width: fit-content;
    border-radius: 0 0 5px 5px;
    transform: translateY(20px);
    opacity: 0;
    right: 9999px;
    transition: 0.5s;
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out,
        right 0.4s ease-out 0.4s;
}

.header-bottom .nav ul li:last-child:hover .subnav {
    transform: translateY(0);
    opacity: 1;
    right: 0;
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out;

}

.header-bottom .nav ul li .sjx {
    width: 0;
    height: 0;
    padding-top: 20px;
}


.header-bottom .nav ul li .subnav ul {
    border-top: 2px solid #428CCC;
    display: block;
    padding: 0;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 5px;
}

.header-bottom .nav ul li .subnav ul li {
    margin: 0;
    padding: 0 30px;
    position: relative;
    width: 250px;
}

.header-bottom .nav ul li:last-child .subnav ul li {
    width: 200px;
}

.header-bottom .nav ul li .subnav ul li a i {
    font-size: 20px;
}

.header-bottom .nav ul .subnav li .subnavs {
    z-index: 10;
    position: absolute;
    height: fit-content;
    left: 100%;
    top: 0;
    width: fit-content;
    border-radius: 0 0 5px 5px;

    transform: translateY(20px);
    opacity: 0;
    left: 9999px;
    transition: 0.5s;

    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out,
        left 0.4s ease-out 0.4s;
}

.header-bottom .nav ul .subnav li:hover .subnavs {
    transform: translateY(0);
    opacity: 1;
    left: 100%;
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out;

}

.header-bottom .nav ul .subnav li .subnavss {
    z-index: 10;
    position: absolute;
    height: fit-content;
    left: 100%;
    top: 0;
    width: fit-content;
    border-radius: 0 0 5px 5px;

    transform: translateY(20px);
    opacity: 0;
    left: 9999px;
    transition: 0.5s;

    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out,
        left 0.4s ease-out 0.4s;
}

.header-bottom .nav ul .subnavs li:hover .subnavss {
    transform: translateY(0);
    opacity: 1;
    left: 100%;
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out;

}

.header-bottom .nav ul .subnav li .subnavss i {
    transform: rotate(0);

}

.header-bottom .nav ul li .sjx {
    width: 0;
    height: 0;
    padding-top: 20px;
}



.header-bottom .nav ul li .subnav ul li:hover {
    background-color: #cccccc41;
}

.header-bottom .nav ul li .subnav ul li a {
    max-width: 300px;
    padding: 7px 0;
    font-size: 14px;
    color: #666;
    /* white-space: nowrap; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-bottom .nav ul li .subnav ul li a i {
    transition: 0.3s;
}

.header-bottom .nav ul li .subnav ul li:hover>a {
    color: #428CCC;
}

.header-bottom .nav ul li .subnav ul li:hover>a i {
    transform: rotate(90deg);
}

.header-bottom .nav ul li .subnav ul li:not(:last-child) a {
    border-bottom: 1px solid #99999960;
}

.header-bottom .nav ul li .subnavs ul li:last-child a {
    border-bottom: none;
    /* 针对最后一个元素的样式 */
}

.header-bottom .nav ul li .sou2 {
    color: #428CCC;
    background-color: transparent;
    border: none;
    height: fit-content;
    height: 100%;
    margin-right: 20px;
}
 

.header-bottom .nav ul li:nth-child(6) {
    margin-right: 200px;
}

.header-bottom .nav ul li:nth-child(7) {
    position: relative;
}

.header-bottom .nav ul li .sou2 {
    font-size: 20px;
    margin: 0;
    margin-right: 20px;
}

.header-bottom .nav ul li:nth-child(7) form {
    position: absolute;
    display: flex;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    background-color: #428CCC;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    /* 添加opacity属性配合过渡 */
    transition: all 0.3s ease;
    /* 合并为一个transition，使用all涵盖所有可过渡属性 */
    z-index: 9;
}

.header-bottom .nav ul li:nth-child(7) form.active {
    right: 0;
    visibility: visible;
    opacity: 1;
    /* 激活状态下显示 */
}

.header-bottom .nav ul li:nth-child(7) form input {
    border: none;
    outline: none;
    background-color: #E8F0FE;
    color: rgb(0, 0, 0);
    padding: 5px 7px;
    position: relative;
    width: 100px;
}

.header-bottom .nav ul li:nth-child(7) form input::placeholder {
    color: #000000;
    /* 浅灰色，可替换为任意颜色值 */
}

.header-bottom .nav ul li:nth-child(7) form button:nth-child(2) {
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    width: 40px;
    padding: 10px;
}


.header-bottom .nav ul li .a1 {
    white-space: nowrap;
}

.header-bottom .nav ul li .Email {
    white-space: nowrap;
    background-color: #428CCC;
    border-radius: 5px;
    text-align: center;
    padding: 10px 20px ;
    border: none;
    color: #fff;
}

@media screen and (max-width:1640px) {
    .header-bottom .nav ul li:nth-child(6) {
        margin-right: 130px;
    }
}



@media screen and (max-width:1440px) {
    .header-bottom .nav ul li .a1 {
        padding: 10px 12px;
    }

    .header-bottom .nav ul li:nth-child(6) {
        margin-right: 10px;
    }
}

@media screen and (max-width:1200px) {
    .header-bottom .nav ul li:not(:last-child) {
        margin-right: 5px;
    }

    .header-bottom .nav ul li .a1 {
        padding: 10px 10px;
        font-size: 13px;
    }

    .header-bottom .nav ul li .Email {
        font-size: 14px;
        padding: 8px 14px;
    }

    .header-bottom .logo img {
        height: 72%;
    }
}

@media screen and (max-width:991px) {
    .header-top .container-md {
        display: block;
    }

    .header-bottom .nav {
        display: none;
    }
}





.iPhoneCd {
    display: none;
    justify-content: end;
    align-items: center;
}

.iPhoneCd ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.iPhoneCd ul li {
    padding-left: 10px;
    position: relative;
}

.iPhoneCd i {
    display: block;
    font-size: 26px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.iPhoneCd ul li .select {
    height: fit-content;
    position: absolute;
    top: 120%;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 4;
    /* 移除 display: none */
    visibility: hidden;
    /* 使用 visibility 替代 display */
    transition:
        opacity 0.4s ease-out,
        top 0.4s ease-out,
        visibility 0.4s ease-out;
}

.iPhoneCd ul li .select.active {
    visibility: visible;
    /* 使用 visibility 替代 display */
    top: 101%;
    opacity: 1;
    /* 保持相同的过渡属性 */
    transition:
        opacity 0.4s ease-out,
        top 0.4s ease-out,
        visibility 0.4s ease-out;
}

.iPhoneCd .select ul {
    display: block;
    position: relative;
    background-color: white;
    z-index: 10;
    border: 1px solid #cccccc99;

}

.iPhoneCd .select ul li {
    border-bottom: 1px solid #cccccc99;
    padding: 0;
}

.iPhoneCd .select ul li a {
    display: block;
    padding: 5px 20px;
    display: flex;
    justify-content: left;
    align-items: center;
    color: #000;
}

.iPhoneCd .select ul li a img {
    margin-right: 5px;
}


@media screen and (max-width:991px) {
    .header-bottom {
        height: 80px;
    }
    .header-bottom .logo img{
        height: 90%;
    }
    .iPhoneCd {
        display: flex;
    }
}
@media screen and (max-width:768px) {
    .header-bottom {
        height: 60px;
    }
}
@media screen and (max-width:450px) {
    .header-bottom .logo img{
        height: 75%;
    }
}

.iPhoneZz {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #00000099;
    top: 0;
    right: -120%;
    transition: 0.5s;
}

.iPhoneZz.active {
    right: 0;
}

.iPhone {
    position: fixed;
    width: 400px;
    height: 100%;
    z-index: 999;
    background-color: #ffffff;
    right: -500px;
    top: 0;
    transition: 0.5s;
}
@media screen and (max-width:400px) {
    .iPhone{
        width: 100% !important;
    }
}

.iPhone.active {
    right: 0;
}

.iPhone .iPhoneHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 40px;
    border-bottom: 1px solid #00000028;
}

.iPhone .iPhoneHead img {
    width: 50%;
}

.iPhone .iPhoneHead button {
    border: none;
    background-color: transparent;
    transform: rotate(45deg);
    font-size: 40px;
    color: #000 !important;
}

.iPhone .buttona {
    padding: 16px 20px;
    font-size: 15px;
    border: none;
    background-color: transparent;
    color: #000 !important;
}

.iPhone .accordion-button:not(.collapsed) {
    background-color: white;
}

.iPhone .accordion-button:focus {
    box-shadow: none;
}

.iPhone .accordion-item ul a {
    color: #000;
    padding: 8px 0;
    display: block;
}

.iPhone .accordion-item ul li {
    width: 90%;
}

.iPhone .accordion-item ul li:not(:last-child) {
    border-bottom: 1px solid #00000028;
}


.fancybox__backdrop {
    background: rgb(24 24 27 / 82%) !important;
}

.iPhone .accordion-item .accordion-header a{
    display: block;
    width: 100%;
    height: 100%;
}


 

.Form-Main {
    position: fixed;
    z-index: 100;
    width: 350px;
    right: 0;
    bottom: -120%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden; 
    transition:
        opacity 0.4s ease-out,
        bottom 0.4s ease-out ;
}

.Form-Main.active{
   
    bottom: 0;
    opacity: 1;
    transition:
        opacity 0.4s ease-out,
        bottom 0.4s ease-out;
}
 
 



 .Form-Main .Form-Head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F8F9FA;
    padding: 10px;
 }
 .Form-Main .Form-Head h3{
    font-size: 18px;
    font-weight: 600;
    color: #333;
 }
 .Form-Main .Form-Head button{
    background-color: transparent;
    border: none;
    font-weight: 600;
 }
 .Form-Main form{
    border-top: 1px solid #e9ecef;
    padding: 20px 15px;
 }
 .Form-Main form div{
    margin-bottom: 15px;
 }
 .Form-Main form label{
    display: block;
    font-size: 12px;
 }
 .Form-Main form label span{ 
    color: red;
}
.Form-Main form input{
    width: 100%;
    padding: 4px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    outline: none;
}
.Form-Main form select{
    max-width: 300px;
    padding: 5px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    outline: none;
}

.Form-Main form button{
    width: 100%;
    padding: 8px 0;
    background-color: #428CCC;
    color: #fff;
    border: none;
    border-radius: 5px;    
    transition: 0.4s;
}
.Form-Main form button:hover{
    background-color: #5a9eda;
}
.Form-Main form textarea{
    height: 100px; 
    outline: none;
}
.Form-Main form textarea:focus{
    box-shadow: none;
}


@media screen and (max-width:576px) {
    .Form-Main{
        width: 80%;
    }
}