﻿/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper {
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.44);
    user-select: none;
    box-shadow: none;
    transition: background .4s ease;
}


@media screen and (min-width: 1024px) {
    .Header-logo {
        float: left;
        width: 220px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 999;
        margin-top: 17px;
    }
}

@media screen and (max-width: 1024px) {
    .Header-logo {
        float: left;
        width: 220px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 999;
        margin-top: 0px;
    }
}

.Header-logo img {
    max-width: 100%;
}

.Header-lang {
    float: right;
    position: relative;
    z-index: 999;
}

.Header-lang-menu {
    display: flex;
    align-items: center;
    height: 88px;
    color: #fff;
    transition: color .4s ease;
    line-height: 1;
}

.Header-lang-menu span {
    font-size: 18px;
    font-family: 'RB';
}

.Header-lang-menu i {
    font-size: 26px;
    margin-right: 10px;
}

.Header-lang.active .Header-lang-menu {
    color: #60b63c;
}

/* 多个语言 */
.Header-lang-more {
    display: none;
    z-index: 9;
    width: 120px;
    background: #000;
    position: absolute;
    top: 88px;
    padding: 12px 0;
    left: 50%;
    margin-left: -60px;
    transition: background .4s ease;
}

.Header-lang-more:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 10px;
    border-color: transparent transparent #000 transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    margin: 0 0 0 -10px;
}

.Header-lang-more a {
    display: flex;
    font-size: 16px;
    color: #fff;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.Header-lang-more a span {
    padding-left: 0px;
    background-position: left center;
    background-repeat: no-repeat;
    min-width: 54px;
}

.Header-lang-more a.ZH span {
    background-image: url('../images0/icon-cn.png');
}

.Header-lang-more a.EN span {
    background-image: url('../images0/icon-en.png');
}

.Header-lang-more a.DE span {
    background-image: url('../images0/icon-de.png');
}

.Header-lang-more a:hover {
    color: #fff;
    background: #60b63c;
}

.Header-lang.active .Header-lang-more {
    display: block;
    animation: langInUp .4s ease-out;
}

@keyframes langInUp {
    0% {
        transform: translateY(20px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.Header-navbar {
    float: right;
    margin-right: 46px;
}

body.PC .Header-navbar {
    display: block !important;
}

.Header-navbar li {
    float: left;
    margin-left: 38px;
    position: relative;
    z-index: 9;
}

.Header-navbar li:first-child {
    margin-left: 0;
}

.Header-menu {
    position: relative;
    height: 88px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
    transition: color .4s ease;
    font-weight: 700;
}

.Header-menu::before {
    content: "";
    width: 100%;
    left: 0;
    opacity: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    background: #60b63c;
    transition: all .4s ease;
}

.Header-navbar li:hover .Header-menu,
.Header-navbar li.active .Header-menu {
    color: #60b63c;
}

.Header-navbar li.active .Header-menu::before {
    opacity: 1;
}

.Header-arrow {
    display: none;
}

.Header-drop {
    display: none;
    position: absolute;
    background: #fff;
    top: 88px;
    left: -50%;
    width: 170px;
    margin-left: 0px;
    padding: 14px 0;
    text-align: center;
}

.Header-drop a {
    display: flex;
    width: 100%;
    padding: 12px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all .4s ease;
}

.Header-drop a.active,
.Header-drop a:hover {
    background: #60b63c;
    color: #fff;
}

.Header-drop-lt {
    display: none;
    position: absolute;
    background: #fff;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 14px 0px;
    left: 100%;
    box-shadow: 0px 0px 18.96px 5.04px rgba(204, 207, 211, 0.3);
}

.Header-drop-lt a {
    display: flex;
    width: 100%;
    padding: 12px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all .4s ease;
}

.Header-drop-lt a:hover {
    color: #60b63c;
    background-color: #fff;
}

.Header-drop-hover {
    display: flex;
    width: 100%;
    padding: 12px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all .4s ease;
}

.Header-drop-hover:hover {
    background: #60b63c;
    color: #fff;
}

.Header-navclick {
    display: none;
    width: 24px;
    height: 60px;
    cursor: pointer;
    float: right;
    user-select: none;
    align-items: center;
}

.Header-navclick span {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
    transition: all .2s linear;
}

.Header-navclick span:before,
.Header-navclick span:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #fff;
    display: block;
    left: 0;
    width: 100%;
    transition: all .2s linear;
}

.Header-navclick span:before {
    top: -7px;
}

.Header-navclick span:after {
    top: 7px;
}

.Header-navclick.active span {
    -moz-animation: buttonAnimation 0.3s ease forwards;
    -webkit-animation: buttonAnimation 0.3s ease forwards;
    animation: buttonAnimation 0.3s ease forwards;
}

.Header-navclick.active span:before {
    -moz-animation: buttonAnimationBefore 0.3s ease forwards;
    -webkit-animation: buttonAnimationBefore 0.3s ease forwards;
    animation: buttonAnimationBefore 0.3s ease forwards;
}

.Header-navclick.active span:after {
    -moz-animation: buttonAnimationAfter 0.3s ease forwards;
    -webkit-animation: buttonAnimationAfter 0.3s ease forwards;
    animation: buttonAnimationAfter 0.3s ease forwards;
}

@-moz-keyframes buttonAnimationBefore {
    0% {
        -moz-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -moz-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@-webkit-keyframes buttonAnimationBefore {
    0% {
        -webkit-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -webkit-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@keyframes buttonAnimationBefore {
    0% {
        -moz-transform: translateY(0px) rotate(0);
        -ms-transform: translateY(0px) rotate(0);
        -webkit-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -moz-transform: translateY(7px) rotate(0);
        -ms-transform: translateY(7px) rotate(0);
        -webkit-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@-moz-keyframes buttonAnimationAfter {
    0% {
        -moz-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -moz-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@-webkit-keyframes buttonAnimationAfter {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -webkit-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@keyframes buttonAnimationAfter {
    0% {
        -moz-transform: translateY(0) rotate(0);
        -ms-transform: translateY(0) rotate(0);
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -moz-transform: translateY(-7px) rotate(0);
        -ms-transform: translateY(-7px) rotate(0);
        -webkit-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@-moz-keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

@keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

/* 透明 */
.bodyScroll .Header-wrapper,
.bodyMouse .Header-wrapper,
.noLucency .Header-wrapper {
    background: rgba(12, 41, 29, 0.44);
}

/* 不透明 */
.noLucency .Container-wrapper {
    margin-top: 88px;
}

/* 底部 */
.Footer-wrapper {
    width: 100%;
    background: rgba(12, 41, 29, 1);
    padding: 80px 0 40px;
    position: relative;
    z-index: 9;
}

.Footer-logo {
    width: 100%;
}

.Footer-logo img {
    max-width: 171px;
}

.Footer-navbar {
    width: 100%;
    user-select: none;
    padding: 80px 0 70px;
}

.Footer-navbar ul {
    justify-content: space-between;
    max-width: 1200px;
}

.Footer-navbar li {
    width: auto;
    position: relative;
}

.Footer-menu,
.Footer-menu-main {
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    height: 32px;
}

.Footer-arrow {
    display: none;
}

.Footer-drop {
    width: 100%;
    margin-top: 8px;
}

body.PC .Footer-drop {
    display: block !important;
}

.Footer-drop a {
    display: block;
    font-size: 16px;
    color: #e3e3e3;
    line-height: 1.28;
    padding: 5px 0;
    transition: all .4s ease;
    max-width: 300px;
}

.Footer-drop a:hover {
    color: #fff;
}

.Footer-bottom {
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.Footer-copyright {
    width: auto;
    font-family: 'RR';
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
}

.Footer-copyright p,
.Footer-copyright a {
    line-height: inherit;
    transition: all .4s ease;
}

.Footer-copyright p:not(:first-child) {
    margin-left: 12px;
}

.Footer-copyright a:hover {
    color: #fff;
}

.FooterCode {
    display: flex;
}

.FooterCode a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    margin-right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #78aeff;
    transition: all .4s ease;
}

.FooterCode a:hover {
    background: #fff;
    color: #60b63c;
}

.FooterCode a span {
    font-size: 16px;
}

.FooterCode a:last-child {
    margin-right: 0;
}

/* 
.FooterCode a:nth-child(3) img:nth-child(1) {
    position: absolute;
    opacity: 1;
    transition: all .4s ease;
}

.FooterCode a:nth-child(3) img:nth-child(2) {
    opacity: 0;
    transition: all .4s ease;
}

.FooterCode a:nth-child(3):hover img:nth-child(2) {
    opacity: 1;
}

.FooterCode a:nth-child(3):hover img:nth-child(1) {
    opacity: 0;
} */



.FooterCode-img {
    display: none;
    width: 132px;
    height: 132px;
    padding: 6px;
    position: absolute;
    bottom: 46px;
    left: 50%;
    margin-left: -66px;
    background: #fff;
    border-radius: 4px;
}

.FooterCode-img::after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border: 8px solid transparent;
    border-top-color: #fff;
    position: absolute;
    bottom: -16px;
    left: 50%;
    margin-left: -8px;
}

.FooterCode-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.FooterCode a:hover .FooterCode-img {
    display: block;
    animation: FooterCode .6s ease-in-out both;
}

@keyframes FooterCode {
    0% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 置顶 */
.backTop {
    display: none;
    right: 40px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 23px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    cursor: pointer;
    z-index: 9999;
    background: #60b63c;
}

.backTop::after {
    content: "\e684";
    font-family: "icon";
}

@media all and (max-width:1599px) {
    .backTop {
        right: 30px;
        bottom: 40px;
    }
}

@media all and (max-width:640px) {
    .backTop {
        right: 8px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        background-size: 20px auto;
    }
}

/* 视频弹窗 */
.popVideo {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
}

.popVideo-items {
    width: 1000px;
    position: relative;
    opacity: 0;
}

.popVideo-video {
    width: 100%;
}

.popVideo-video video {
    width: 100%;
}

.popVideo-video iframe {
    width: 100%;
    height: 500px;
}

.popVideo-close {
    width: 40px;
    height: 40px;
    right: -40px;
    top: -40px;
    line-height: 40px;
    opacity: 0.7;
    text-align: center;
    position: absolute;
    z-index: 3;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: all .6s ease;
}

.popVideo-close:hover {
    opacity: 1;
}

.popVideo.active {
    display: flex;
}

.popVideo.active .popVideo-items {
    animation: popVideRun 1s ease both .4s;
}

@keyframes popVideRun {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media all and (max-width:1100px) {
    .popVideo-items {
        width: 92%;
    }

    .popVideo-close {
        right: -8px;
    }

    .popVideo-video iframe {
        height: 400px;
    }
}

@media all and (max-width:640px) {
    .popVideo-video iframe {
        height: 200px;
    }
}

/* 中间+共用部分 */
.Container-wrapper {
    width: 100%;
}

.contain {
    width: 1520px;
    margin: 0 auto;
}

.section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.Header-landing {
    float: right;
    margin-left: 20px;
}

.Header-landing a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 88px;
}

.Header-landing .img {
    margin-right: 10px;
}

.tanCk {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -9999999;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.tanCk-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tanCk-bg .bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.tanCk-cont {
    padding: 60px 80px;
    background-color: #fff;
    position: relative;
    width: 480px;
    transition: all .4s ease;
    margin-top: -500px;
}

.tanCk.active .tanCk-cont {
    transform: translateY(0px);
    margin-top: 0px;
}

.tanCk-title {
    color: #000;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

.tanCk-close {
    position: absolute;
    top: 32px;
    right: 32px;
}

.tanCk-close i {
    color: #000;
    font-size: 18px;
}

.tanCk-input {
    height: 40px;
    width: 100%;
    margin-bottom: 15px;
}

.tanCk-input input {
    height: 100%;
    width: 100%;
    border: 2px solid #d4dce4;
    border-radius: 30px;
}

.tanCk-btn {
    background-color: #60b63c;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
}

.tanCk-text {
    padding: 0px 30px;
}

.tanCk-text a {
    color: #60b63c;
    border-bottom: 1px solid #60b63c;
}

.tanCk-input input {
    padding: 0px 15px;
}

.Header-navbar li:nth-child(2) .Header-drop {
    width: 230px;
    margin-left: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.Header-navbar li:nth-child(3) .Header-drop {
    width: 170px;
    margin-left: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.Header-navbar li:nth-child(4) .Header-drop {
    width: 170px;
    margin-left: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.Header-navbar li:nth-child(5) .Header-drop {
    width: 170px;
    margin-left: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.Header-navbar li:last-child .Header-drop {
    width: 170px;
    margin-left: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.backTop {
    background: url(../images/backTop.png)center no-repeat;
    background-size: auto;
    width: 50px;
    height: 50px;
}

.backTop::after {
    display: none !important;
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {

    /* 1600 × (900) */
    .contain {
        width: 1400px;
    }
}

@media all and (max-width:1599px) {

    /* 1440 × (700)  */
    .contain {
        width: 1200px;
    }

    .Footer-wrapper {
        padding: 70px 0 40px;
    }

    .Footer-navbar {
        padding: 70px 0 60px;
    }
}

@media all and (max-width:1439px) {
    /* 1360 */
}

@media all and (max-width:1359px) {
    /* 1280 */
}

@media all and (max-width:1279px) {

    /* 1152 × (700) */
    .contain {
        width: 960px;
    }

    .Header-navbar {
        margin-right: 10px;
    }

    .Header-navbar li {
        margin-left: 20px;
    }

    .Footer-wrapper {
        padding: 60px 0 30px;
    }

    .Footer-navbar {
        padding: 60px 0 50px;
    }

    .Header-navbar li {
        margin-left: 10px;
    }
}

@media all and (max-width:1151px) {
    /* 1024 */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

    /* 平板设备 720 适配 */
    .Header-wrapper {
        background: #000;
    }

    .noLucency .Container-wrapper {
        margin-top: 60px;
    }

    .contain {
        width: 92%;
    }

    .Container-wrapper {
        margin-top: 60px;
    }

    .Header-wrapper .contain {
        width: 100%;
    }

    .Header-logo,
    .Header-lang-menu {
        height: 60px;
    }

    .Header-logo {
        margin-left: 4%;
        width: 170px;
    }

    .Header-navclick {
        display: flex;
        margin-right: 4%;
    }

    .Header-lang {
        margin-right: 20px;
    }

    .Header-lang-menu i {
        font-size: 23px;
        margin-right: 6px;
    }

    .Header-lang-menu span {
        font-size: 16px;
    }

    .Header-lang-more {
        width: 130px;
        margin-left: -65px;
        top: 60px;
    }

    .Header-navbar {
        display: none;
        position: absolute;
        width: 100%;
        margin-right: 0;
        height: calc(100vh - 60px);
        top: 60px;
        left: 0;
        padding: 20px 0;
        background: #000;
    }

    .Header-navbar::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .2);
    }

    .Header-navbar ul {
        display: block;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .Header-navbar li {
        display: block;
        width: 100%;
        opacity: 0;
        transform: translateY(32px);
        transition: all .4s ease;
        margin: 0;
    }

    .Header-navbar.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .Header-menu {
        height: 44px;
        padding: 0 4%;
        font-size: 16px;
    }

    .Header-menu::before {
        display: none;
    }

    .Header-arrow {
        display: block;
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 18px;
        font-style: normal;
        color: #fff;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Header-arrow::after {
        content: "\e61f";
        font-family: "icon";
    }

    .Header-arrow.active {
        transform: rotate(180deg);
    }

    .Header-navbar li:hover .Header-menu {
        color: #fff !important;
    }

    .Header-navbar li.active .Header-menu {
        color: #60b63c !important;
    }

    .Header-drop {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        overflow: hidden;
        padding: 8px 0;
        text-align: left;
        background: rgba(30, 30, 30, .8);
    }

    .Header-drop a {
        height: 34px;
        line-height: 34px;
        padding: 0 4%;
        justify-content: flex-start;
        font-size: 15px;
    }

    .Footer-wrapper {
        padding: 40px 0 28px;
    }

    .Footer-wrapper .contain {
        width: 100%;
    }

    .Footer-navbar {
        width: 100%;
        padding: 20px 0 16px;
    }

    .Footer-navbar li {
        width: 100% !important;
    }

    .Footer-navbar li.main {
        display: flex;
        padding: 0 4%;
        justify-content: space-between;
    }

    .Footer-menu,
    .Footer-menu-main {
        height: 38px;
        padding: 0 4%;
        position: relative;
        font-size: 16px;
    }

    .Footer-menu-main {
        padding: 0;
    }

    .Footer-arrow {
        display: block;
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 18px;
        font-style: normal;
        color: #fff;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Footer-arrow::after {
        content: "\e61f";
        font-family: "icon";
    }

    .Footer-arrow.active {
        transform: rotate(180deg);
    }

    .Footer-drop a {
        padding: 5px 4%;
    }

    .Footer-drop {
        display: none;
        margin-top: 0;
    }

    .Footer-bottom {
        width: 100%;
        padding: 0 4%;
    }

    .Footer-copyright {
        width: 100%;
        justify-content: center;
    }

    .FooterCode {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .Header-drop-hover {
        height: auto;
        line-height: 34px;
        padding: 0 4%;
        justify-content: flex-start;
        font-size: 15px;
        flex-wrap: wrap;
    }

    .Header-drop-lt {
        display: block;
        position: static;
        background-color: rgba(0, 0, 0, 0);
        box-shadow: none;
        width: 100%;
        padding: 0px;
    }

    .Header-landing a {
        height: 60px;
    }

    .Header-landing .text {
        display: none;
    }

    .Header-landing {
        margin: 0px 10px;
    }

    .Header-lang {
        margin-right: 10px;
    }

    .tanCk-cont {
        padding: 35px;
    }

    .Header-landing .img {
        height: 24px;
    }

    .Header-landing .img img {
        max-height: 100%;
    }

    .settys-list {
        margin-right: -15px;
        margin-bottom: -15px;
    }

    .settys-list li {
        width: calc(100%/2 - 15px);
        margin-right: 15px;
        margin-bottom: 15px;
    }
}

@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
}


/* 轮播容器 */
.banner-slider {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
    margin: 0 auto;
}

/* 轮播图片包裹层 */
.banner-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s ease;
}

/* 单张轮播图 */
.banner-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media screen and (min-width: 1024px) {
    .banner-text {
        position: absolute;
        top: 50%;
        left: 30%;
        transform: translateY(-50%);
        color: #fff;
        z-index: 2;
        max-width: 600px;
    }
}

@media screen and (max-width: 1024px) {
    .banner-text {
        position: absolute;
        top: 50%;
        left: 20%;
        transform: translateY(-50%);
        color: #fff;
        z-index: 2;
        max-width: 600px;
    }
}


.banner-text h2 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 查看更多按钮 */
.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #60b63c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.banner-btn:hover {
    background: #4eaa27;
}

/* 左右切换箭头 */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    user-select: none;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* 底部指示器 */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: #4eaa27;
}

/* 移动端适配 */



@media (max-width: 768px) {
   

    .banner-text h2 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 16px;
    }

    .banner-text {
        left: 20%;
        max-width: 90%;
    }
}


.banner-slider {
    /* height = 按16:9，最小210px 最大 3240px*/
    height: clamp(210px, calc(100vw * (1080 / 1920)), 3240px);
}
