/* 导航样式开始 */
.swiper-backface-hidden .swiper-slide {
    transform: none !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
}

.banner .swiper-slide {
    height: auto;
}

header {
    height: 110px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000;
    transition: all 0.5s ease;
}


.head-top-info {
    position: absolute;
    background-color: var(--bg-color);
    width: 414px;
    height: 33px;
    top: 0;
    right: 0;
    border-radius: 0 0 0 33px;
}

.head-top-info ul {
    height: 100%;
    display: flex;
    align-items: center;
}

.head-top-info ul li {
    border-right: 0.5px solid #FFFFFF80;
    padding: 0 18px;
    height: 14px;
    line-height: 14px;
}

.head-top-info ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.07px;



}

.logo {
    margin-right: 140px;
}

.logo img {
    max-width: 80px;
}

.contact-btn {
    width: 155px;
    height: 45px;
    border-radius: 76.8px;
    border: 0.5px solid #B1A6B5;
}

.nav-content {
    display: flex;
    justify-content: flex-start;
    height: 110px;
    align-items: center;
}

.menu ul {
    display: flex;
    justify-content: space-between;

}

.menu ul li {
    margin-right: 107px;
    transition: all 0.5s ease;
    padding: 11px 0;
    position: relative;
    /*animation: borderAnimate 0.5s ease;*/
}

.menu ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: #ffffff;
    transition: width 0.5s ease;
}

.menu ul li:hover::after {
    width: 100%;
}

/*@keyframes borderAnimate {*/
/*    0% {width: 0}*/
/*    100% {width :100%}*/
/*}*/
.menu ul li.active {
    border-bottom: 1px solid #ffffff;
}

.menu ul li a {
    font-size: 17px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0.08em;
    text-align: left;
    color: #ffffff;
}

.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-btn a {
    color: #ffffff;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.21299999952316284px;
}

/* 导航样式结束 */


.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 4px;
}

.burger {
    display: none;
}


/* 超超大型设备 (大屏幕) */
@media (max-width: 1440px) {

    /* 大屏幕样式 */
    .container {
        padding: 0 20px;
        width: 96%;
    }

    /* header {
        padding: 20px;
    } */


}

/* 超大型设备 (大型笔记本及台式机) */
@media (min-width: 1201px) and (max-width: 1440px) {
    .container {
        margin: 0 20px;
        width: 96%;
    }

    /* 大型设备样式 */
    header {
        padding-top: 20px;
        /* position: relative; */
        background-color: #050505;
    }

    .nav-content .menu {
        margin-right: 60px;
    }

    .contact-btn {
        width: 136px;
        height: 40px;
    }

    .contact-btn a {
        font-size: 14px;
    }

    .nav-content {
        justify-content: space-between;
        width: 100%;
    }

    .menu ul li {
        margin-left: 0;
    }

    .menu ul {
        justify-content: flex-start;
        display: none;
        align-items: center;
        padding: 0 240px;
    }

    .logo {
        margin-right: 0;

    }

    /* .nav-content {
    justify-content: flex-start;
} */
    .nav-menu {
        position: absolute;
        top: 110px;
        right: 0;
        width: 50vw;
        height: calc(100vh - 100px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateX(110%);
        transition: 0.4s ease-in-out;
        background-color: #050505;
        z-index: 99999;

    }

    .head-top-info {
        width: auto;
    }

    .nav-content .menu {
        display: block;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 3vh 0;
        transform: translateX(20px);
        opacity: 0;
        color: var(--grey01-color);
        margin-right: 0;
        text-align: center;
        padding: 20px 0;
    }

    .menu ul {
        justify-content: flex-start;
        display: none;
    }

    .menu ul li {
        margin-right: 0;
    }

    .burger {
        display: block;
    }

    .burger.active div {
        transition: 0.3s ease-in-out 0.3s;
    }

    .burger.active .top-line {
        transform: rotate(45deg) translate(4px, 6px);
    }

    .burger.active .bottom-line {
        transform: rotate(-45deg) translate(4px, -6px);
    }

    .burger.active .middle-line {
        opacity: 0;
        transform: translateX(10px);
        transition: 0.3s ease-in-out;
    }

    @keyframes slideIn {
        from {
            transform: translateX(20px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

}

/* 大型设备 (小型笔记本) */
@media (min-width: 768px) and (max-width: 1201px) {

    /* 小型笔记本样式 */
    header {
        /* padding-top: 20px; */
        /* position: relative; */
        background-color: #050505;

    }

    .nav-content .menu {
        margin-right: 360px;
    }

    .contact-btn {
        width: 136px;
        height: 40px;
    }

    .contact-btn a {
        font-size: 14px;
    }

    .nav-content {
        justify-content: space-between;
    }

    .menu ul li {
        margin-left: 0;
    }

    .menu ul {
        justify-content: flex-start;
        display: none;
        align-items: center;
        padding: 0 100px;
    }

    .logo {
        margin-right: 0;

    }

    /* .nav-content {
    justify-content: flex-start;
} */
    .nav-menu {
        position: absolute;
        top: 110px;
        right: 0;
        width: 50vw;
        height: calc(100vh - 100px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateX(110%);
        transition: 0.4s ease-in-out;
        background-color: #050505;
        z-index: 99999;

    }

    .head-top-info {
        width: auto;
    }

    .nav-content .menu {
        display: block;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 3vh 0;
        transform: translateX(20px);
        opacity: 0;
        color: var(--grey01-color);
        margin-right: 0;
        text-align: center;
        padding: 20px 0;
    }

    .menu ul {
        justify-content: flex-start;
        display: none;
    }

    .menu ul li {
        margin-right: 0;
    }

    .burger {
        display: block;
    }

    .burger.active div {
        transition: 0.3s ease-in-out 0.3s;
    }

    .burger.active .top-line {
        transform: rotate(45deg) translate(4px, 6px);
    }

    .burger.active .bottom-line {
        transform: rotate(-45deg) translate(4px, -6px);
    }

    .burger.active .middle-line {
        opacity: 0;
        transform: translateX(10px);
        transition: 0.3s ease-in-out;
    }

    @keyframes slideIn {
        from {
            transform: translateX(20px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .menu ul {
        justify-content: flex-start;
        display: none;
        align-items: center;
        padding: 0 120px;
    }

    .menu ul li {
        margin-right: 0;

    }
}

.mob {
    display: none !important;
}

@media (max-width: 767px) {
    .pc {
        display: none !important;
    }

    .mob {
        display: block !important;
    }

    .container {
        width: 100%;

    }

    .head-top-info ul li {
        padding: 0 10px;
    }

    .head-top-info ul {
        padding-left: 10px;
    }

    header {
        /* padding-top: 20px; */
        /* position: relative; */
        background-color: #050505;
    }

    /* .nav-content .menu {
        margin-right: 300px;
    } */
    .contact-btn {
        width: 136px;
        height: 40px;
    }

    .contact-btn a {
        font-size: 14px;
    }

    .nav-content {
        justify-content: space-between;
    }

    .logo {
        margin-right: 0;

    }

    .menu ul li a {
        font-size: 14px;
    }

    .nav-menu {
        position: absolute;
        top: 110px;
        right: 0;
        width: 50vw;
        height: calc(100vh - 100px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateX(110%);
        transition: 0.4s ease-in-out;
        background-color: #050505;
        z-index: 99999;

    }

    .head-top-info {
        width: auto;
    }

    .nav-content .menu {
        display: block;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 3vh 0;
        transform: translateX(20px);
        opacity: 0;
        color: var(--grey01-color);
        margin-right: 0;
        text-align: center;
        padding: 20px 10px;
    }

    .menu ul {
        justify-content: flex-start;
        display: none;
        align-items: center;
        padding: 0 40px;
    }

    .menu ul li {
        margin-right: 0;

    }

    .burger {
        display: block;
    }

    .burger.active div {
        transition: 0.3s ease-in-out 0.3s;
    }

    .burger.active .top-line {
        transform: rotate(45deg) translate(4px, 6px);
    }

    .burger.active .bottom-line {
        transform: rotate(-45deg) translate(4px, -6px);
    }

    .burger.active .middle-line {
        opacity: 0;
        transform: translateX(10px);
        transition: 0.3s ease-in-out;
    }

    @keyframes slideIn {
        from {
            transform: translateX(20px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }


    /* 底部 */
    .foot-content {
        margin-top: 30px;
    }

    footer {
        margin-top: 50px;
        padding-top: 40px;
        height: auto;
    }

    .foot-contactInfo-left .left-text2 {
        font-size: 32px;
        line-height: 1.5;
        margin-left: 200px;
    }

    .foot-contactInfo {
        flex-wrap: wrap;
    }

    .foot-contactInfo-left .left-text1 {
        top: 16px;
    }

    .foot-contactInfo-right span:nth-child(2) {
        width: 60px;
        height: 60px;
    }

    .foot-content {
        flex-wrap: wrap;
    }

    .foot-content01 .foot-logo img {
        width: 130px;
        height: auto;
    }

    .foot-content01 .p1 {
        margin-top: 30px;
    }

    .foot-content02 {
        margin-left: 0;
        margin-top: 30px;
    }

    .foot-content02 {
        padding-right: 0;
    }

    .foot-content02-left {
        margin-right: 60px;
    }

    .foot-content03 {
        padding-left: 0;
        border: 0;
        margin-top: 30px;
    }

    .foot-copyright {
        flex-wrap: wrap;
    }

    .foot-copyright-info {
        margin-bottom: 10px;
    }

    .foot-content01 .foot-search {
        width: 100%;
    }

    .foot-content01 .foot-search input {
        width: 100%;
    }

    .foot-content01 .foot-search input {
        height: 45px;
    }

    .foot-search span {
        width: 36px;
        height: 36px;
    }

    .foot-content03 ul li a {
        font-size: 14px;
    }
}

.agree-btn input[type="checkbox"] {
    margin-right: 8px;
}