@charset "UTF-8";
@keyframes o-svg-2 {
    0% {
        stroke-dashoffset: 3264;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes ani-rotate {.product-details-main .top-block .h2
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animation-line {
    0% {
        stroke-dashoffset: 180px;
    }
    14.28571% {
        stroke-dashoffset: 0px;
    }
    21.42857% {
        stroke-dashoffset: 0px;
    }
    35.71429% {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes o-upfade-top {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@keyframes animate-cloud {
    from {
        background-position: 100vw 100%;
    }
    to {
        background-position: 0 100%;
    }
}

@keyframes o-scale {
    0%,
    85%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes o-opacity {
    0%,
    30%,
    60%,
    100% {
        opacity: 0;
    }
    15%,
    45% {
        opacity: 1;
    }
}

@keyframes o-opacity-2 {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes o-scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes p-ani-2 {
    from,
    to {
        opacity: 1;
        transform: none;
    }
    50% {
        opacity: 1;
        transform: translate3d(0, 12px, 0);
    }
}

@keyframes p-ani-3 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes o-width {
    0% {
        width: 0;
        left: 0;
        right: auto;
    }
    60% {
        width: 100%;
        left: 0;
        right: auto;
    }
    61% {
        width: 100%;
        left: auto;
        right: 0;
    }
    100% {
        width: 0%;
        left: auto;
        right: 0;
    }
}

@keyframes p-ani-4 {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    70%,
    100% {
        opacity: 0;
        transform: translateX(1vw);
    }
}

@keyframes p-ani-5 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media screen and (min-width: 1025px) {
    .wow {
        visibility: hidden;
    }
    .dom-loaded .header .nav li .subnav {
        transition: all .3s ease;
    }
    .dom-loaded .header .ope .hide {
        transition: all .3s ease;
    }
    .dom-loaded .fixed-search .bg {
        transition: all .3s ease;
    }
    .dom-loaded .fixed-search form {
        transition: transform .3s ease;
    }
}

.no-pointer {
    pointer-events: none;
}

.wrapper {
    width: 75vw;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.wrapper:after {
    content: '';
    display: block;
    clear: both;
}

.wrapFull {
    width: 80vw;
    margin: 0 auto;
}

.fixed-cookie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.fixed-cookie .main-box {
    position: absolute;
    bottom: 3.75rem;
    left: 3.75rem;
    right: 3.75rem;
    background-color: #0021c6;
    border-radius: 10px;
    padding-right: 7.5rem;
}

.fixed-cookie .close {
    width: 11px;
    height: 11px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/n-close.png");
    cursor: pointer;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.fixed-cookie .cont-box {
    display: flex;
    align-items: center;
    padding: 1.5rem 0 1.5rem 3.75rem;
    grid-gap: 12.5rem;
}

.fixed-cookie .txt-box .tit {
    font-size: max(14px, 1.25rem);
    color: #333333;
}

.fixed-cookie .txt-box p {
    font-size: max(12px, 0.875rem);
    color: #ffffff;
    line-height: 1.5;
    margin-top: 1rem;
}

.fixed-cookie .txt-box p a {
    color: #ff5807;
    text-decoration: underline;
}

.fixed-cookie .btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 3.125rem;
}

.fixed-cookie .btns .box {
    font-size: max(12px, 0.875rem);
    color: #fff;
    line-height: 3rem;
    border-radius: 8px 0 8px 0;
    border: 1px solid transparent;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
}

.fixed-cookie .btns .box:nth-of-type(1) {
    padding: 0 3rem;
    border: 1px solid #fff;
}


/* search */

.fixed-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 88;
    display: none;
}

.fixed-search .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.fixed-search .logo {
    position: fixed;
    left: 3.75rem;
    top: 1.375rem;
    z-index: 3;
}

.fixed-search .logo img {
    display: block;
    height: 3.5rem;
}

.fixed-search .close {
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5rem;
    top: 3.125rem;
    margin-top: -15px;
    cursor: pointer;
    z-index: 3;
}

.fixed-search .close .icon-svg {
    width: 20px;
    height: 20px;
    fill: #000000;
}

.fixed-search .main {
    position: relative;
    z-index: 2;
}

.fixed-search .box {
    width: 37%;
    margin: 0 auto;
}

.fixed-search .top-box {
    width: 100%;
    height: 6.25rem;
    background-color: #fff;
}

.fixed-search form {
    position: relative;
    height: 48px;
    padding-left: 14px;
    border: 1px #e6e6e6 solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-search form .icon-svg {
    width: 22px;
    height: 22px;
    fill: #ff5807;
}

.fixed-search form input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background-color: transparent;
    font-size: 14px;
    color: #353544;
    border: 0;
}

.fixed-search form input::-webkit-input-placeholder {
    color: #353544;
}

.fixed-search form input:-moz-placeholder {
    color: #353544;
}

.fixed-search form input::-moz-placeholder {
    color: #353544;
}

.fixed-search form input:-ms-input-placeholder {
    color: #353544;
}

.fixed-search form button {
    width: 120px;
    height: 48px;
    color: #fff;
    font-size: 14px;
    background: #ff5807;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fixed-search .bot-box {
    padding: 2.5rem 0 5rem;
    background-color: #f5f5f5;
}

.fixed-search .tit {
    font-size: max(14px, 1rem);
    color: #bfbfbf;
}

.fixed-search .link {
    padding: 10px 0 0;
    font-size: 0;
}

.fixed-search .link a {
    padding: 0 2.5rem;
    font-size: max(16px, 1rem);
    color: #000;
    position: relative;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease;
    line-height: 3.75rem;
}

.fixed-search .link a .icon-svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    transition: all .3s ease;
}

@media (any-hover: hover) {
    .fixed-search .link a:hover {
        color: #ff5807;
        background-color: #ffffff;
    }
    .fixed-search .link a:hover .icon-svg {
        fill: #ff5807;
    }
}

.m-language-tc {
    display: none;
}


/* footer */

.footer {
    font-size: 0;
    background-color: #f5f5f7;
}

.footer .top-block {
    padding: 4vw 0;
    display: flex;
    justify-content: space-between;
}

.footer .left-box .blogroll-btn {
    position: relative;
    width: 358px;
    border-radius: 20px 0 20px 0;
    border: #e6e6e6 1px solid;
    background: #f5f5f5;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    transition: all .3s ease;
}

.footer .left-box .blogroll-btn .box {
    padding: 0 30px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.footer .left-box .blogroll-btn .box span {
    font-size: 16px;
    color: #191919;
    transition: all .3s ease;
}

.footer .left-box .blogroll-btn .box .icon-svg {
    transform: rotate(90deg);
    width: 14px;
    height: 14px;
    fill: #191919;
    transition: all .3s ease;
}

.footer .left-box .blogroll-btn:hover {
    background: #ff5807;
}

.footer .left-box .blogroll-btn:hover .box span {
    color: #fff;
}

.footer .left-box .blogroll-btn:hover .box .icon-svg {
    fill: #fff;
}

.footer .left-box .blogroll-btn:hover ul {
    display: block;
}

.footer .left-box .blogroll-btn ul {
    width: 100%;
    position: absolute;
    top: 48px;
    left: 0;
    background: #fff;
    display: none;
    border-radius: 2px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.08);
}

.footer .left-box .blogroll-btn ul li a {
    padding: 0 30px;
    height: 48px;
    font-size: 14px;
    color: #191919;
    display: flex;
    align-items: center;
}

.footer .left-box .blogroll-btn ul li a:hover {
    background: #f4f4f4;
    color: #ff5807;
}

.footer .left-box .layui-form input {
    font-size: 14px;
    border: 1px #e6e6e6 solid;
    border-radius: 20px 0 20px 0;
    padding: 0 30px;
    background: #f5f5f5;
}

.footer .left-box .layui-form dd {
    font-size: 12px;
}

.footer .left-box .phone {
    margin-top: 35px;
    display: flex;
    align-items: center;
}

.footer .left-box .phone .icon-svg {
    position: relative;
    top: -2px;
    margin-right: 14px;
    width: 40px;
    height: 36px;
    fill: #d9d9d9;
}

.footer .left-box .phone a {
    font-size: 48px;
    color: #ff5807;
    line-height: 1;
    font-family: 'Rajdhani-Regular-2';
}

.footer .left-box .info-text {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.footer .left-box .info-text .icon-svg {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    fill: #d9d9d9;
}

.footer .left-box .info-text .p {
    font-size: 16px;
}

.footer .nav-box h3 {
    font-size: 20px;
    color: #191919;
}

.footer .nav-box h3:after {
    content: '';
    width: 16px;
    height: 3px;
    background-color: #ff5807;
    display: block;
    margin: 20px 0;
}

.footer .nav-box .link {
    font-size: 0;
}

.footer .nav-box .link a {
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #808080;
    margin-top: 15px;
    opacity: 1;
    transition: all .3s ease;
}

.footer .nav-box .link a:nth-of-type(1) {
    margin-top: 0;
}

@media screen and (min-width: 1025px) {
    .footer .nav-box .link a:hover {
        color: #ff5807;
    }
}

.footer .ewm-box {
    max-width: 150px;
    text-align: center;
}

.footer .ewm-box .item:first-child {
    margin-bottom: 20px;
}

.footer .ewm-box img {
    display: block;
    width: 100%;
}

.footer .ewm-box p {
    font-size: 14px;
    line-height: 18px;
    color: #191919;
    margin-top: 10px;
}

.footer .bot-block {
    position: relative;
    padding: 2vw 0;
    border-top: 1px solid #dcdcde;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.footer .bot-block .link a {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #808080;
    margin-left: 2vw;
    transition: all .3s ease;
}

.footer .bot-block .link a:hover {
    color: #ff5807;
}

.footer .bot-block .link a:nth-of-type(1) {
    margin-left: 0;
}

.footer .copyright {
    display: inline-block;
    font-size: 16px;
    color: #808080;
}

.footer .copyright a {
    margin-left: 20px;
    color: #808080;
}

.footer .copyright a:hover {
    color: #ff5807;
}

.layui-form-select dl dd:first-child {
    color: #ff5807;
}

.layui-form-select dl dd.layui-this {
    color: #ff5807;
}

.full-screen-navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 89;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
}

.full-screen-navigation .row {
    width: 100%;
    height: 100%;
    display: flex;
}

.full-screen-navigation .icon-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    z-index: 1;
    background: #ff5807;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.full-screen-navigation .icon-close .icon-svg {
    fill: #fff;
    width: 1vw;
    height: 1vw;
}

.full-screen-navigation.active {
    display: flex;
}

.full-screen-navigation .card-box {
    padding: 2vw 3vw 3vw;
    width: 33%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.full-screen-navigation .card-box .cont-box {
    width: 14vw;
}

.full-screen-navigation .card-box .cont-box img {
    width: 100%;
}

.full-screen-navigation .mid-block .h3 {
    font-size: 48px;
}

.full-screen-navigation .mid-block .h3 span {
    color: #ff5807;
}

.full-screen-navigation .mid-block p {
    margin-top: 1.5vw;
    font-size: 16px;
    color: #000;
    opacity: .5;
}

.full-screen-navigation .bot-block p {
    color: #808080;
    font-size: 16px;
    line-height: 1.4;
}

.full-screen-navigation .bot-block a {
    color: #808080;
    font-size: 16px;
    line-height: 1.4;
    transition: all .3s ease;
}

.full-screen-navigation .bot-block a:hover {
    color: #ff5807;
}

.full-screen-navigation .catalogue-box {
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 3vw 8vw;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.full-screen-navigation .catalogue-box dl {
    display: flex;
    align-items: center;
}

.full-screen-navigation .catalogue-box dl dt {
    width: 10em;
    margin-right: 3vw;
}

.full-screen-navigation .catalogue-box dl dt .h3 {
    font-size: 32px;
    color: #000;
}

.full-screen-navigation .catalogue-box dl dd {
    font-size: 16px;
}

.full-screen-navigation .catalogue-box dl dd a {
    color: #808080;
    transition: all .3s ease;
}

.full-screen-navigation .catalogue-box dl dd a:hover {
    color: #ff5807;
}

.full-screen-navigation .catalogue-box dl dd span {
    padding: 0 5px;
    color: #808080;
}

@media screen and (min-width: 1025px) {
    .full-screen-navigation .card-box,
    .full-screen-navigation .catalogue-box dl {
        opacity: 0;
        transform: translateY(2vw);
        transition: all .6s ease;
    }
    .full-screen-navigation.active .card-box,
    .full-screen-navigation.active .catalogue-box dl {
        opacity: 1;
        transform: translateY(0);
    }
    .full-screen-navigation.active .card-box {
        transition-delay: .4s;
    }
    .full-screen-navigation.active .catalogue-box dl:nth-child(1) {
        transition-delay: 0.6s;
    }
    .full-screen-navigation.active .catalogue-box dl:nth-child(2) {
        transition-delay: 0.8s;
    }
    .full-screen-navigation.active .catalogue-box dl:nth-child(3) {
        transition-delay: 1s;
    }
    .full-screen-navigation.active .catalogue-box dl:nth-child(4) {
        transition-delay: 1.2s;
    }
    .full-screen-navigation.active .catalogue-box dl:nth-child(5) {
        transition-delay: 1.4s;
    }
    .full-screen-navigation.active .catalogue-box dl:nth-child(6) {
        transition-delay: 1.6s;
    }
}


/* media */

@media screen and (max-width: 1600px) {
    .header .nav {
        padding-right: 80px;
    }
    .header .nav li a.single,
    .header .nav li a.tel {
        line-height: 80px;
    }
    .header .subsidiary .box.search-box {
        margin-left: 45px;
    }
    .header .subsidiary .box.menu-box {
        margin-left: 60px;
    }
    .full-screen-navigation .mid-block .h3 {
        font-size: 36px;
    }
    .full-screen-navigation .mid-block p {
        font-size: 14px;
    }
    .full-screen-navigation .bot-block p,
    .full-screen-navigation .bot-block a {
        font-size: 14px;
    }
    .full-screen-navigation .catalogue-box dl dt .h3 {
        font-size: 26px;
    }
    .full-screen-navigation .catalogue-box dl dd {
        font-size: 14px;
    }
}

@media screen and (max-width: 1366px) {
    .header .nav li a.single,
    .header .nav li a.tel {
        font-size: 15px;
    }
    .header .nav {
        padding-right: 0;
    }
    .header .subsidiary .box.search-box,
    .header .subsidiary .box.menu-box {
        margin-left: 3rem;
    }
    .footer .nav-box h3 {
        font-size: 16px;
    }
    .footer .nav-box .link a {
        font-size: 14px;
    }
    .footer .ewm-box {
        width: 120px;
    }
    .full-screen-navigation .mid-block .h3 {
        font-size: 28px;
    }
    .full-screen-navigation .mid-block p {
        font-size: 12px;
        margin-top: 1vw;
    }
    .full-screen-navigation .bot-block p,
    .full-screen-navigation .bot-block a {
        font-size: 12px;
    }
    .full-screen-navigation .catalogue-box {
        padding: 2vw 6vw;
    }
    .full-screen-navigation .catalogue-box dl dt {
        width: 6em;
    }
    .full-screen-navigation .catalogue-box dl dt .h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 1200px) {
    .footer .left-box .blogroll-btn {
        width: 80%;
    }
}

@media screen and (max-width: 1025px) {
    .header .nav li.m-language {
        display: block;
    }
    .m-language-tc {
        display: block;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        padding: 70px 30px;
        text-align: left;
        z-index: 4;
        transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        overflow: auto;
    }
    .m-language-tc .icon {
        position: absolute;
        top: 15px;
        left: 20px;
        transform: rotate(180deg);
    }
    .m-language-tc .icon .icon-svg {
        width: 30px;
        fill: #ff5807;
        height: 30px;
    }
    .m-language-tc li {
        position: relative;
        display: block;
        border-bottom: 1px solid #e6e6e6;
    }
    .m-language-tc li i {
        width: 50px;
        height: 50px;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(../images/icon-2-1.png);
        background-size: auto 9px;
    }
    .m-language-tc li a.single,
    .m-language-tc li a.tel {
        display: inline-block;
        vertical-align: top;
        line-height: 46px;
        color: #333;
    }
    .m-language-tc li a.single {
        color: #000;
    }
    .m-language-tc li a.single:after {
        display: none;
    }
    .m-language-tc.active {
        left: 0;
    }
    .header {
        height: 60px;
        background-color: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
    .header .logo {
        top: 12px;
        left: 0;
        margin-left: 5%;
    }
    .header .logo img {
        height: 36px;
    }
    .header .logo img.show {
        opacity: 0;
    }
    .header .logo img.hide {
        opacity: 1;
    }
  
    .header .nav li {
        position: relative;
        display: block;
        border-bottom: 1px solid #e6e6e6;
    }
    .header .nav li i {
        width: 50px;
        height: 50px;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(../images/icon-2-1.png);
        background-size: auto 9px;
    }
    .header .nav li a.single,
    .header .nav li a.tel {
        display: inline-block;
        vertical-align: top;
        line-height: 46px;
        color: #333;
    }
    .header .nav li a.single {
        color: #000;
    }
    .header .nav li a.single:after {
        display: none;
    }
    .header .nav li a.tel {
        color: #555555;
    }
    .header .nav li a.tel:before {
        background-image: url("../images/icon-3-2.png");
    }
    .header .nav li .secondary-menu {
        position: static;
        border-top: 1px solid #e6e6e6;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none;
        padding: 10px 0;
        display: none;
        transition: none !important;
    }
    .header .nav li .secondary-menu a {
        font-size: 1.4rem;
        display: block;
        padding: 0 2.1rem;
        line-height: 3.375rem;
        color: #42474e;
        position: relative;
        z-index: 2;
        transition: color .3s ease;
    }
    .header .nav.active {
        left: 0;
    }
    .header .subsidiary .box.language-box {
        right: 9vw;
    }
    .header .subsidiary .box.language-box .text {
        color: #ff5807;
        padding-right: 0;
    }
    .header .subsidiary .box.language-box .icon-arrow {
        display: none;
    }
    .header .subsidiary .box.menu-box {
        display: none;
    }
    .header .subsidiary .box .icon-svg {
        fill: #ff5807 !important;
        width: 26px;
        height: 26px;
    }
    .header .subsidiary .box.search-box {
        right: 8vw;
    }
    .mNavBtn {
        display: block;
        width: 24px;
        height: 16px;
        right: 5%;
        top: 22px;
        position: fixed;
        cursor: pointer;
        z-index: 5;
    }
    .mNavBtn.active {
        right: 20px;
    }
    .mNavBtn.active .line2 {
        display: none;
    }
    .mNavBtn.active .line1 {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 7px;
    }
    .mNavBtn.active .line3 {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 7px;
    }
    .mNavBtn span {
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: #ff5807;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .mNavBtn span.line1 {
        top: 0;
    }
    .mNavBtn span.line2 {
        top: 7px;
    }
    .mNavBtn span.line3 {
        bottom: 0;
    }
    .footer .top-block {
        display: block;
    }
    .footer .logo img {
        margin: 0 auto;
    }
    .footer .share-box,
    .footer .nav-box,
    .footer .ewm-box {
        display: none;
    }
    .footer .left-box .blogroll-btn {
        width: 100%;
    }
    .footer .left-box .blogroll-btn .box span,
    .footer .left-box .info-text .p,
    .footer .bot-block .link a,
    .footer .copyright {
        font-size: 14px;
    }
    .footer .left-box .phone a {
        font-size: 38px;
    }
    .footer .left-box .blogroll-btn {
        height: 44px;
    }
    .footer .left-box .blogroll-btn .box {
        padding: 0 20px;
    }
    .footer .left-box .blogroll-btn ul {
        top: 44px;
    }
    .footer .left-box .phone {
        margin-top: 25px;
    }
    .footer .copyright {
        margin-top: 10px;
    }
    .fixed-search .logo {
        top: 12px;
        left: 5%;
    }
    .fixed-search .logo img {
        height: 36px;
    }
    .fixed-search .close {
        right: 5%;
        top: 15px;
        margin-top: 0;
    }
    .fixed-search .top-box {
        height: 60px;
        position: relative;
    }
    .fixed-search .box {
        width: 90%;
    }
    .fixed-search .top-box .box {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
    }
    .fixed-search .link a .icon-svg {
        fill: #000;
    }
    .fixed-search form {
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
        padding-left: 10px;
    }
    .fixed-search form input {
        padding: 0 .5rem;
    }
    .fixed-search form:before {
        display: none;
    }
    .fixed-search form button {
        display: block;
    }
    .fixed-search .bot-box {
        padding: 90px 0 30px;
    }
    .fixed-search .tit {
        padding: 0;
    }
    .fixed-search .link {
        padding: 10px 0 0;
    }
    .fixed-search .link a {
        padding: 0 1.5rem;
    }
    .fixed-cookie .main-box {
        padding: 0;
        left: 5%;
        width: 90%;
        bottom: 2rem;
    }
    .fixed-cookie .cont-box {
        padding: 3rem 2rem;
        display: block;
    }
    .fixed-cookie .txt-box {
        width: 100%;
    }
    .fixed-cookie .btns {
        width: 100%;
        grid-gap: 2rem;
        justify-content: flex-start;
        margin-top: 2rem;
    }
    .fixed-cookie .btns .box:nth-of-type(1) {
        padding: 0 2rem;
    }
    .fixed-cookie .btns .box {
        font-size: 10px;
        line-height: 30px;
    }
}

@media screen and (max-width: 890px) {
    .footer .bot-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 769px) {
    .header .subsidiary .box.search-box {
        right: 12vw;
    }
    .footer .top-block {
        padding: 30px 0;
    }
    .footer .bot-block {
        padding: 15px 0;
    }
    .footer .bot-block .link {
        position: static;
        width: 100%;
        margin-bottom: 10px;
    }
    .footer .copyright {
        margin-top: 0;
        line-height: 20px;
    }
    .footer .left-box .phone .icon-svg {
        width: 35px;
        height: 31px;
    }
    .footer .left-box .phone a {
        font-size: 28px;
    }
    .fixed-search .link a,
    .footer .left-box .info-text .p {
        font-size: 14px;
    }
    .footer .copyright a {
        display: block;
        margin-left: 0;
    }
}

.fixed-right {
    position: fixed;
    right: 2rem;
    bottom: 0;
    transform: translateY(-60px);
    z-index: 10;
    display: none;
}

.fixed-right .block {
    padding: 0 6px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fixed-right .line {
    width: 24px;
    height: 1px;
    margin: 0 auto;
    background-color: #d9d9d9;
}

.fixed-right .box {
    width: 3rem;
    height: 3rem;
    position: relative;
    margin: 6px 0;
}

.fixed-right .box a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 1.5rem;
    transition: all .3s ease;
    border-radius: 4px;
}

.fixed-right .box .hide {
    position: absolute;
    right: 100%;
    bottom: -4.125rem;
    padding-right: 1.625rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.fixed-right .box .hide.pic {
    transform: none;
    top: auto;
    bottom: 0;
}

.fixed-right .box .h {
    position: relative;
    width: 36rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.fixed-right .box .h .h-w {
    padding: 20px 40px 30px;
}

.fixed-right .box .h .h-w .layui-btn {
    background: #0021c6;
}

.fixed-right .box .h .h-w .layui-btn:hover {
    background: #ff5807;
    box-shadow: 0 10px 20px 5px rgba(255, 85, 0, 0.2);
}

.fixed-right .box .h .h-w .z-text {
    height: auto;
    font-size: 1rem;
}

.fixed-right .box .h:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    left: 100%;
    bottom: 76px;
    margin-top: -10px;
}

.fixed-right .box .h .tohead {
    height: 4.5rem;
    padding: 0 40px;
    background: linear-gradient(90deg, #ff8a19, #ff5807);
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
}

.fixed-right .box .h .tohead .h3 {
    font-size: 1.4rem;
    color: #fff;
}

.fixed-right .box .ewm-box {
    position: relative;
    width: 10rem;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.fixed-right .box .ewm-box:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    left: 100%;
    bottom: 14px;
}

.fixed-right .box .ewm-box img {
    display: block;
    width: 100%;
}

.fixed-right .box .ewm-box p {
    font-size: 14px;
    color: #ff5807;
    text-align: center;
    margin-top: 10px;
}

.fixed-right .box.form a {
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/editor.svg");
}

@media screen and (min-width: 1025px) {
    .fixed-right .box.form:hover a {
        background-color: #0021c6;
        background-image: url("../images/editor-hover.svg");
    }
}

.fixed-right .box.totop a {
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/top.svg");
}

@media screen and (min-width: 1025px) {
    .fixed-right .box.totop:hover a {
        background-color: #ff5807;
        background-image: url("../images/top-hover.svg");
    }
}

@media screen and (min-width: 1025px) {
    .fixed-right .box:hover a {
        background-color: #ff5807;
    }
    .fixed-right .box:hover .hide {
        opacity: 1;
        visibility: visible;
    }
}

.layui-form-select dl dd,
.layui-form-select dl dt {
    line-height: 48px;
}

.layui-input:focus,
.layui-textarea:focus {
    border-color: #ff5807 !important;
    box-shadow: none;
}

.layui-form input {
    height: 48px;
}

.layui-form-select dl {
    top: 62px;
}

.layui-form-selectup dl {
    top: auto;
    bottom: 62px;
}

.layui-laypage a,
.layui-laypage button,
.layui-laypage input,
.layui-laypage select,
.layui-laypage span {
    border: 0;
}

.layui-laypage {
    display: flex;
    align-items: center;
}

.layui-laypage a:hover {
    color: #ff5807;
}

.layui-laypage>a:last-child,
.layui-laypage>a:last-child em {
    border-radius: 8px;
}

.layui-laypage a,
.layui-laypage .layui-laypage-curr {
    position: relative;
    height: 48px;
    width: 48px;
    border-radius: 8px;
    padding: 0;
    border: 0;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Microsoft YaHei';
}

.layui-laypage-prev {
    margin-right: 10px !important;
}

.layui-laypage-next {
    margin-left: 10px !important;
}

.layui-layer-setwin .layui-layer-close {
    transition: all .3s ease;
}

.layui-layer-setwin .layui-layer-close:hover {
    opacity: 1;
    transform: rotate(180deg);
}

.layui-btn:hover {
    box-shadow: 0 10px 20px 5px rgba(1, 47, 167, 0.2);
    opacity: 1;
}

.layui-laypage a:hover {
    background: #ffeee6;
}

@media screen and (max-width: 1024px) {
    .layui-laypage a[data-page],
    .layui-laypage .layui-laypage-curr {
        height: 38px;
        width: 38px;
        border-radius: 6px;
    }
    .layui-laypage-prev {
        margin-right: 8px !important;
    }
    .layui-laypage-next {
        margin-left: 8px !important;
    }
}

@media screen and (max-width: 768px) {
    .layui-laypage a,
    .layui-laypage .layui-laypage-curr {
        height: 24px;
        width: 24px;
        border-radius: 4px;
    }
    .layui-laypage .layui-laypage-prev,
    .layui-laypage .layui-laypage-next {
        width: 34px !important;
        white-space: pre;
    }
    .layui-laypage-prev {
        margin-right: 6px !important;
    }
    .layui-laypage-next {
        margin-left: 6px !important;
    }
    .layui-laypage-spr {
        padding: 0 5px !important;
    }
    .layui-form-select dl dd,
    .layui-form-select dl dt {
        height: 40px;
        line-height: 40px;
    }
}


/* common */

.mt20 {
    margin-top: 20px;
}

.fixed-rpops {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.fixed-rpops .main {
    width: 90%;
    max-width: 60rem;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 2rem 5.625rem;
}

.fixed-rpops .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 22px;
    height: 22px;
    background: url("../images/index/n-2.png") center center no-repeat;
    background-size: contain;
    z-index: 2;
    cursor: pointer;
}

.fixed-rpops .top-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.fixed-rpops .top-block:before {
    content: '';
    width: calc(100% - 13.5rem);
    height: 4px;
    background: url("../images/index/n-1.jpg") center top no-repeat;
    background-size: 100% 100%;
}

.fixed-rpops .top-block .img-box {
    width: 12.5rem;
}

.fixed-rpops .top-block .img-box img {
    display: block;
    width: 100%;
}

.fixed-rpops .bot-block {
    margin-top: 2.5rem;
    width: 100%;
    max-height: 60vh;
    overflow: auto;
    padding-right: 20px;
    margin-right: -5.625rem;
}

.fixed-rpops .bot-block .tit {
    font-size: max(18px, 1.5rem);
    text-align: center;
    color: #333333;
}

.fixed-rpops .bot-block .para {
    margin-top: 1.5rem;
    font-size: max(13px, 1rem);
    color: #333333;
    line-height: 2;
}

.fixed-rpops .bot-block .para p {
    margin-top: 1.5rem;
}

.fixed-rpops .bot-block .para p:nth-of-type(1) {
    margin-top: 0;
}

.c-subnav {
    background-color: #f5f5f5;
    display: flex;
    grid-gap: 3.75rem;
    justify-content: center;
    position: sticky;
    top: 70px;
    z-index: 5;
    transition: top .3s ease;
}

.c-subnav.translate {
    top: 0;
}

.c-subnav a {
    font-size: max(14px, 1.125rem);
    color: #808080;
    line-height: 60px;
    position: relative;
    transition: color .3s ease;
}

.c-subnav a:after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #ff5807;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
}

.c-subnav a.active {
    color: #191919;
}

.c-subnav a.active:after {
    transform: scaleX(1);
}

@media (any-hover: hover) {
    .c-subnav a:hover {
        color: #191919;
    }
    .c-subnav a:hover:after {
        transform: scaleX(1);
        transition: transform .3s ease;
    }
}

.n-about-s1 {
    position: relative;
}

.n-about-s1 .bg-block {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

.n-about-s1 .bg-block .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity .3s ease;
}

.n-about-s1 .bg-block .bg.active {
    opacity: 1;
}

.n-about-s1 .wrapper {
    padding: 7.5rem 0;
    margin-top: -100vh;
    z-index: 3;
}

.n-about-s1 .block {
    margin-top: 3.75rem;
    display: flex;
    align-items: center;
}

.n-about-s1 .block:nth-of-type(1) {
    margin-top: 0;
}

.n-about-s1 .block:nth-of-type(even) .img-box {
    order: 2;
}

.n-about-s1 .block .img-box {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.n-about-s1 .block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    will-change: transform;
}

.n-about-s1 .block .txt-box {
    width: 50%;
    padding: 0 3.75rem;
}

.n-about-s1 .block h3 {
    font-size: 2rem;
    color: #191919;
}

.n-about-s1 .block p {
    font-size: max(16px, 1.5rem);
    color: #191919;
    margin-top: 1rem;
}

.n-about-s1 .block a {
    display: inline-block;
    margin-top: 5rem;
    font-size: max(16px, 1.5rem);
    color: #191919;
}

.n-about-s1 .block a:before {
    content: '';
    width: max(16px, 1.5rem);
    height: max(16px, 1.5rem);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/nimg/icon-1.svg");
    display: inline-block;
    vertical-align: middle;
    margin: -2px 10px 0 0;
}

@media (any-hover: hover) {
    .n-about-s1 .block:hover img {
        transform: scale(1.1);
    }
}

.n-about-s2 {
    padding: 7.5rem 0;
}

.n-about-s2 .items {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.n-about-s2 .item {
    width: calc((100% - 3rem) / 3);
    background: #f5f5f7 url("../images/nimg/img-1.jpg") center bottom no-repeat;
    background-size: 100% auto;
    padding: 2vw;
}

.n-about-s2 .item .img-box {
    height: max(120px, 11.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.n-about-s2 .item img {
    display: block;
    max-width: 12.5vw;
    max-height: 100%;
    box-shadow: 1.875rem 1.875rem 1.875rem rgba(0, 0, 0, 0.1);
    transition: transform .5s ease;
    will-change: transform;
}

.n-about-s2 .item .tit {
    margin-top: 1vw;
    font-size: max(16px, 1.125rem);
    color: #333333;
    text-align: center;
}

@media (any-hover: hover) {
    .n-about-s2 .item:hover img {
        transform: scale(1.05);
    }
}

.n-about-s3 {
    position: relative;
}

.n-about-s3 .r-box {
    width: 7.5rem;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

.n-about-s3 .r-box .cell-box {
    height: 100vh;
    position: sticky;
    top: 0;
}

.n-about-s3 .r-box span {
    display: block;
    font-size: max(14px, 1.25rem);
    color: #191919;
    font-family: 'Rajdhani-Regular-2';
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
}

.n-about-s3 .r-box span:after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #cccccc;
    position: absolute;
    left: max(40px, 3.125rem);
    top: 50%;
    border-radius: 50%;
    margin-top: -4px;
    transform: scale(0.5);
    transition: all .3s ease;
}

.n-about-s3 .r-box span:nth-of-type(1) {
    margin-top: 0;
}

.n-about-s3 .r-box span.active {
    color: #ff5807;
    font-family: 'Rajdhani-SemiBold-5';
}

.n-about-s3 .r-box span.active:after {
    background-color: #ff5807;
    transform: scale(1);
}

.n-about-s3 .txt-box {
    width: 50%;
    position: absolute;
    top: 6.25rem;
    left: 0;
    font-size: 2rem;
    color: #191919;
    line-height: 1.5;
}

.n-about-s3 .line {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background-color: #e6e6e6;
    z-index: 1;
    overflow: hidden;
}

.n-about-s3 .line span {
    width: 100%;
    background-color: #ff5807;
    position: absolute;
    top: 0;
    left: 0;
}

.n-about-s3 .items {
    padding: 16.875rem 0 7.5rem;
    max-width: 71.25rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.n-about-s3 .item {
    margin-top: -5rem;
    display: flex;
}

.n-about-s3 .item .box {
    width: 50%;
    position: relative;
}

.n-about-s3 .item .year {
    display: block;
    font-size: 3.75rem;
    line-height: 1;
    font-family: 'Rajdhani-Regular-2';
    color: #191919;
    transition: color .3s ease;
}

.n-about-s3 .item .year:before {
    content: '';
    width: 2.25rem;
    height: 3.75rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/nimg/icon-2-1.png");
    position: absolute;
    top: 0;
}

.n-about-s3 .item .tit {
    font-size: max(16px, 1.5rem);
    color: #191919;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.n-about-s3 .item .img-box {
    display: inline-block;
    width: 30rem;
    height: 15rem;
    border-radius: 10px 0 10px 0;
    overflow: hidden;
    margin-top: 1rem;
}

.n-about-s3 .item .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    will-change: transform;
}

.n-about-s3 .item:nth-of-type(1) {
    margin-top: 0;
}

@media screen and (min-width: 769px) {
    .n-about-s3 .item:nth-of-type(odd) {
        justify-content: right;
    }
    .n-about-s3 .item:nth-of-type(odd) .box {
        padding-left: 5rem;
    }
    .n-about-s3 .item:nth-of-type(odd) .year:before {
        left: -1.125rem;
    }
    .n-about-s3 .item:nth-of-type(even) {
        justify-content: left;
        text-align: right;
    }
    .n-about-s3 .item:nth-of-type(even) .box {
        padding-right: 5rem;
    }
    .n-about-s3 .item:nth-of-type(even) .year:before {
        right: -1.125rem;
    }
}

.n-about-s3 .item.active .year {
    color: #ff5807;
}

.n-about-s3 .item.active .year:before {
    background-image: url("../images/nimg/icon-2-2.png");
}

@media (any-hover: hover) {
    .n-about-s3 .item:hover .img-box img {
        transform: scale(1.1);
    }
}

.n-about-s4 {
    padding: 7.5rem 0;
}

.n-about-s4 .item {
    margin-top: 3.75rem;
    display: flex;
    align-items: center;
}

.n-about-s4 .item:nth-of-type(1) {
    margin-top: 0;
}

.n-about-s4 .item:nth-of-type(even) .img-box {
    order: 2;
}

.n-about-s4 .item .img-box {
    width: 50%;
    border-radius: 1.25rem;
    overflow: hidden;
}

.n-about-s4 .item .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    will-change: transform;
}

.n-about-s4 .item .txt-box {
    width: 50%;
    padding: 0 3.75rem;
}

.n-about-s4 .item .pic {
    width: 5.625rem;
    height: 5.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.n-about-s4 .item .pic img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.n-about-s4 .item .tit {
    font-size: 2rem;
    color: #191919;
    margin-top: 2.5rem;
}

.n-about-s4 .item .para {
    font-size: max(16px, 1.5rem);
    color: #808080;
    margin-top: 1rem;
    line-height: 1.5;
}

@media (any-hover: hover) {
    .n-about-s4 .item:hover .img-box img {
        transform: scale(1.1);
    }
}

.index-tit {
    letter-spacing: 2px;
    position: relative;
    z-index: 4;
}

.index-tit h3 {
    line-height: 1;
    font-size: 3.125rem;
    margin-bottom: .875rem;
    font-weight: normal;
}

.index-tit h3 span {
    color: #ff5807;
}

.index-tit p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.index-tit.gray .en {
    color: #000;
}

.index-tit.gray h3 {
    color: #333;
}

.index-tit.gray p {
    color: #333333;
}

.index-tit.white .en {
    color: #fff;
}

.index-tit.white h3 {
    color: #fff;
}

.index-tit.white p {
    color: #fff;
}

.index-tit.center h3 {
    text-align: center;
}

.index-tit.center p {
    text-align: center;
}

a.index-more {
    display: block;
    width: 140px;
    font-size: 16px;
    line-height: 48px;
    color: #fff;
    text-align: center;
    background-color: #ff5807;
    transition: all .3s ease;
}

@media screen and (min-width: 1025px) {
    a.index-more:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(201, 23, 29, 0.3);
    }
}

.video-pop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 79;
    display: none;
}

.video-pop .bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.video-pop .close {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 60px;
    top: 60px;
    background: url("../images/close.svg") center no-repeat;
    background-size: 48px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer;
    z-index: 2;
}

.video-pop .close:hover {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.video-pop video {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 80vh;
    max-width: 75vw;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-banner {
    position: relative;
    overflow: hidden;
}

.c-banner img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-animation: o-scale 20s linear infinite;
    animation: o-scale 20s linear infinite;
}

.c-banner .txt-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.c-banner h3 {
    margin-top: 13vw;
    font-size: 3.75rem;
    color: #fff;
    font-weight: normal;
    letter-spacing: 2px;
}

.c-banner p {
    margin-top: .5vw;
    font-size: max(14px, 1.25rem);
    color: #fff;
    text-transform: uppercase;
    opacity: .2;
}

.c-nav {
    position: relative;
    padding: 0 3.125vw;
    display: flex;
    justify-content: space-between;
    font-size: 0;
    padding-top: 4px;
    border-top: 1px #e5e5e5 solid;
}

.c-nav .icon-triangle {
    margin: 0 1.5vw;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #ff5807;
}

.c-nav a {
    transition: all .3s ease;
}

.c-nav a.home {
    margin-right: 10px;
}

.c-nav a.home .icon-svg {
    width: 20px;
    height: 20px;
    fill: #ff5807;
}

.c-nav a.link {
    font-size: max(13px, 1rem);
    color: #808080;
    line-height: 48px;
}

.c-nav a.link:hover,
.c-nav a.link.active {
    color: #191919;
}

.c-nav .left-box {
    display: flex;
    align-items: center;
}

.c-nav .left-box .home .icon-svg {
    position: relative;
    top: -1px;
}

.c-nav .right-box {
    display: flex;
    align-items: center;
}

.c-nav .right-box a {
    margin-left: 60px;
    border-bottom: 2px #fff solid;
}

.c-nav .right-box a:first-of-type:before {
    display: none;
}

.c-nav .right-box a.active {
    border-color: #ff5807;
}

.comm-page {
    font-size: 0;
    text-align: center;
}

.comm-page ul {
    display: inline-block;
    vertical-align: top;
}

.comm-page li {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
}

.comm-page li a {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #333;
    line-height: 40px;
    text-align: center;
    border: 1px solid #dee2e6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.comm-page li:hover a,
.comm-page li.active a {
    border-color: #ff5807;
    background-color: #ff5807;
    color: #fff;
}

.comm-share {
    float: left;
    margin-left: -100px;
    margin-top: 15vw;
    width: 40px;
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
}

.comm-share span {
    margin-top: 20px;
    height: 1px;
    background-color: #e6e6e6;
    display: block;
}

.comm-share a {
    display: block;
    width: 40px;
    height: 40px !important;
    padding: 0 !important;
    margin: 10px 0 0 !important;
    float: none !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.comm-share a:first-of-type {
    border-radius: 5px;
    background-color: #ff5807;
    background-image: url("../images/detail-1.png");
}

.comm-share a.wx {
    background-image: url("../images/detail-2.png");
}

.comm-share a.wx:hover {
    background-image: url("../images/detail-2-on.png");
}

.comm-share a.sina {
    background-image: url("../images/detail-3.png");
}

.comm-share a.sina:hover {
    background-image: url("../images/detail-3-on.png");
}

.comm-share a.qq {
    background-image: url("../images/detail-4.png");
}

.comm-share a.qq:hover {
    background-image: url("../images/detail-4-on.png");
}

.inner-tit h3 {
    font-size: 36px;
}

.inner-tit p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 20px;
}

.inner-tit:after {
    content: '';
    display: block;
    width: 22px;
    height: 3px;
    margin-top: 24px;
    background-color: #ff5807;
}

.inner-tit.gray h3 {
    color: #333;
}

.inner-tit.gray p {
    color: #999;
}

.inner-tit.white h3 {
    color: #fff;
}

.inner-tit.white p {
    color: #fff;
}

.inner-tit.center {
    text-align: center;
}

.inner-tit.center:after {
    margin-left: auto;
    margin-right: auto;
}

.c-pd {
    /* padding-top: 100px; */
}

.c-mt {
    margin-top: 120px;
}

.c-subheading {
    padding-bottom: 26px;
    text-align: center;
    font-size: 3rem;
    color: #191919;
    position: relative;
}

.c-subheading:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: '';
    width: 60px;
    height: 4px;
    background: #012fa7;
}

.c-subheading.style1 {
    text-align: left;
}

.c-subheading.style1:after {
    right: auto;
}

.c-page {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    text-align: center;
}

.tc-popup {
    display: none;
}

.index-main .section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.btn-select dd {
    font-size: 16px;
}

.btn-select dl {
    top: 48px;
}

.btn-select .layui-select-title input {
    padding: 0 30px;
    height: 48px;
    border-radius: 20px 0 20px 0;
    background: #0021c6;
    font-size: 18px;
    color: #fff;
}

.btn-select .layui-select-title i {
    right: 30px;
    border-top-color: #fff;
}

.blue-btn,
.orange-btn,
.default2-btn {
    width: 180px;
    height: 48px;
    padding: 0 30px;
    border-radius: 14px 0 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all .3s ease;
}

.blue-btn:hover,
.orange-btn:hover,
.default2-btn:hover {
    background: #ff5807;
    box-shadow: 0 10px 20px 5px rgba(255, 85, 0, 0.2);
    transform: translateY(-10px);
}

.blue-btn span,
.orange-btn span,
.default2-btn span {
    font-size: max(12px, 1rem);
    color: #fff;
}

.blue-btn .icon-svg,
.orange-btn .icon-svg,
.default2-btn .icon-svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-btn {
    background: #0021c6;
}

.default2-btn {
    background: none;
    border: 1px rgba(255, 255, 255, 0.2) solid;
}

.orange-btn {
    background: #ff5807;
}

.default-btn {
    width: 180px;
    height: 48px;
    padding: 0 30px;
    border-radius: 20px 0 20px 0;
    border: 1px rgba(0, 0, 0, 0.2) solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all .3s ease;
}

.default-btn.white {
    border-color: rgba(255, 255, 255, 0.2);
}

.default-btn.white span {
    color: #fff;
}

.default-btn.white .icon-svg {
    fill: #fff;
}

.default-btn:hover {
    background: #ff5807;
    box-shadow: 0 10px 20px 5px rgba(255, 85, 0, 0.2);
    border-color: #ff5807;
    transform: translateY(-10px);
}

.default-btn:hover span {
    color: #fff;
}

.default-btn:hover .icon-svg {
    fill: #fff;
}

.default-btn span {
    font-size: 16px;
    color: #191919;
    transition: all .3s ease;
}

.default-btn .icon-svg {
    width: 14px;
    height: 14px;
    fill: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.scroll {
    position: absolute;
    width: 28px;
    opacity: 1;
    z-index: 2;
    display: none;
}

.scroll span {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px #fff solid;
    border-radius: 20px;
}

.scroll i {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    margin: 16px auto;
    border-radius: 50%;
    overflow: hidden;
    -webkit-animation: moveUpDown 1s infinite;
    animation: moveUpDown 1s infinite;
}

.index-eleNav {
    position: fixed;
    top: 30%;
    right: 2rem;
    display: flex;
    flex-direction: column;
}

.index-eleNav .item {
    padding: .875rem 0;
    position: relative;
    cursor: pointer;
}

.index-eleNav .item.active .icon,
.index-eleNav .item:hover .icon {
    border: 2px #ff5807 solid;
}

.index-eleNav .item.active .icon i,
.index-eleNav .item:hover .icon i {
    background: #ff5807;
}

.index-eleNav .item .icon {
    position: relative;
    width: .875rem;
    height: .875rem;
    border-radius: 50%;
    border: 2px rgba(0, 0, 0, 0) solid;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 2;
}

.index-eleNav .item .icon i {
    display: block;
    width: .375rem;
    height: .375rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}

.index-eleNav .item .text {
    visibility: hidden;
    position: absolute;
    top: 50%;
    line-height: 1;
    margin-top: -1.25rem;
    right: -.625rem;
    font-size: 16px;
    color: #ff5807;
    width: 120px;
    height: 35px;
    padding-left: 1.5rem;
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 2px 5px 5px rgba(0, 0, 0, 0.01);
    opacity: 0;
    transition: all .5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    transform-origin: right center;
    transform: scale(0.5);
}

.index-eleNav .item:hover .text {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.index-s1 {
    background-color: #000;
}

.index-s1 .item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.index-s1 .item video::-webkit-media-controls-panel {
    display: none !important;
}

.index-s1 .item video,
.index-s1 .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.index-s1 .item:first-child .bg-box {
    transform: scale(1);
}

.index-s1 .item:first-child::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    content: '';
    z-index: 2;
}

.index-s1 .item:first-child::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: url(../images/index/index-s1-bg.png);
    background-size: 3px;
    opacity: .5;
    z-index: 2;
}

.index-s1 .item.swiper-slide-active h3,
.index-s1 .item.swiper-slide-active p {
    opacity: 1;
    transform: translateY(0);
}

.index-s1 .item.swiper-slide-active h3 {
    transition-delay: .8s;
}

.index-s1 .item.swiper-slide-active h3 span {
    color: #ff5807;
}

.index-s1 .item.swiper-slide-active p {
    font-family: 'Rajdhani-Regular-2';
    transition-delay: 1s;
}

.index-s1 .item.swiper-slide-active .bg-box {
    transform: scale(1);
    transition-delay: .5s;
}

.index-s1 .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.1);
    transition: transform 1s ease;
    z-index: 1;
}

.index-s1 .bg-box.video {
    -webkit-animation: normal;
    animation: normal;
}

.index-s1 .bg-box img {
    width: 100%;
}

.index-s1 .bg-box video {
    width: 100%;
}

.index-s1 .txt-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.index-s1 h3,
.index-s1 p {
    opacity: 0;
    transform: translateY(2vw);
    transition: all .6s ease;
}

.index-s1 h3 {
    font-size: 3.75rem;
    color: #fff;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
}

.index-s1 h3:after {
    position: absolute;
    top: -5vw;
    left: 6vw;
    content: '';
    display: block;
    width: 20vw;
    height: 25vw;
    background: url(../images/index/icon-title.png) no-repeat;
    background-size: 20vw;
    z-index: 4;
}

.index-s1 p {
    font-size: max(14px, 1.25rem);
    line-height: 1;
    color: #fff;
    letter-spacing: 2px;
    margin: 10px 0;
    text-transform: uppercase;
}

.index-s1 .button-box {
    position: absolute;
    bottom: 5vh;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
}

.index-s1 .button-box .button {
    margin-right: 10px;
    width: clamp(1.5rem, 3.13vw, 3.75rem);
    height: clamp(1.5rem, 3.13vw, 3.75rem);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background: rgba(255, 255, 255, 0.2) url("../images/index/prev-1.png") no-repeat center;
    background-size: .4vw;
    opacity: .5;
    transition: opacity .3s ease;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}

@media screen and (min-width: 1025px) {
    .index-s1 .button-box .button:hover {
        opacity: 1;
        background-color: #ff5807;
    }
}

.index-s1 .button-box .button-next {
    transform: rotate(180deg);
}

.index-s1 .sw-btn {
    width: clamp(3rem, 3.13vw, 3.75rem);
    height: clamp(3rem, 3.13vw, 3.75rem);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background: rgba(255, 255, 255, 0.2) url("../images/index/prev-1.png") no-repeat center;
    background-size: .4vw;
    opacity: .5;
    transition: opacity .3s ease;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    position: absolute;
    top: calc(50% - 1.875rem);
    transition: all .3s ease;
}

@media screen and (min-width: 1025px) {
    .index-s1 .sw-btn:hover {
        opacity: 1;
        background-color: #ff5807;
    }
}

.index-s1 .sw-btn-prev {
    left: 3.125vw;
}

.index-s1 .sw-btn-next {
    right: 3.125vw;
    transform: rotate(180deg);
}

.index-s1 .num {
    position: absolute;
    bottom: 3.75rem;
    left: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0;
    z-index: 10;
}

.index-s1 .num .swiper-pagination-bullet {
    width: 3.75rem;
    height: 4px;
    background-color: #fff;
    border-radius: 0;
    opacity: 0.5;
    margin-right: 0.625rem;
    cursor: pointer;
    transition: opacity .3s ease;
}

.index-s1 .num .swiper-pagination-bullet-active {
    opacity: 1;
}

.index-s1 .scroll {
    right: 5vw;
    bottom: 5vh;
}

.index-s2 {
    position: relative;
    overflow: hidden;
}

.index-s2 .cont-box {
    height: 100%;
    position: relative;
    z-index: 2;
}

.index-s2 .about-box .h3 {
    margin-bottom: 14px;
}

.index-s2 .about-box .h3 span {
    color: #ff5807;
}

.index-s2 .about-box .h4 {
    margin-bottom: 14px;
    font-size: 24px;
}

.index-s2 .about-box .text {
    margin-top: 18px;
}

.index-s2 .about-box .text p {
    font-size: 1.125rem;
}

.index-s2 .about-box .btn {
    margin-top: 3rem;
    width: 180px;
}

.index-s2 .data-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-s2 .data-box .item .num {
    display: flex;
    align-items: baseline;
}

.index-s2 .data-box .item .num .count {
    font-size: 5rem;
    display: block;
    font-family: 'Rajdhani-Regular-2';
}

.index-s2 .data-box .item .num .text {
    font-size: max(14px, 1.25rem);
}

.index-s2 .data-box .item p {
    font-size: max(14px, 1.25rem);
}

.index-s2 .wrapper {
    position: relative;
    z-index: 2;
    height: 64vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index-s2 .wrapper::after {
    content: none;
}

.index-s2 .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.index-s2 .bg-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 33, 198, 0.1), transparent);
    z-index: 6;
}

.index-s2 .bg-box svg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    opacity: .3;
    z-index: 5;
    -o-object-fit: cover;
    object-fit: cover;
    stroke-dasharray: 2108;
    stroke-dashoffset: 2108;
}

.index-s2 .bg-box .img {
    display: block;
    position: absolute;
    z-index: 12;
    width: 100%;
    left: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    transition: opacity .5s ease-in-out;
    will-change: opacity;
}

.index-s2 .bg-box .logo-x {
    display: block;
    position: absolute;
    bottom: 37vw;
    right: 24%;
    width: 5%;
    opacity: 0;
    z-index: 11;
    opacity: 0;
    transition: all 1s ease;
}

@media screen and (min-width: 1025px) {
    .index-s2 .about-box,
    .index-s2 .data-box .num,
    .index-s2 .data-box p {
        opacity: 0;
        transform: translateY(2vw);
        transition: all .6s ease;
    }
    .index-s2.active .bg-box svg {
        -webkit-animation: o-svg-2 5.5s linear forwards;
        animation: o-svg-2 5.5s linear forwards;
    }
    .index-s2.active .bg-box .img {
        opacity: 0;
        transition-delay: .5s;
    }
    .index-s2.active .bg-box .logo-x {
        opacity: 0;
        -webkit-animation-name: o-opacity-2;
        animation-name: o-opacity-2;
        -webkit-animation-duration: 0.8s;
        animation-duration: 0.8s;
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
    .index-s2.active .about-box,
    .index-s2.active .data-box .num,
    .index-s2.active .data-box p {
        transition-delay: .3s;
        opacity: 1;
        transform: translateY(0);
    }
    .index-s2.active .data-box .num {
        transition-delay: .6s;
    }
    .index-s2.active .data-box p {
        transition-delay: .6s;
    }
}

.index-s3 {
    background: #fff;
}

.index-s3 .swiper-container {
    overflow: initial;
}

.index-s3 .layui-form-select {
    display: inline-flex;
}

.index-s3 .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000;
    overflow: hidden;
    display: none;
}

.index-s3 .bg-box.active {
    display: block;
}

.index-s3 .bg-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
    display: none;
}

.index-s3 .bg-box .item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: all .6s ease;
    z-index: 1;
}

.index-s3 .bg-box .item.active {
    opacity: 1;
}

.index-s3 .cont-box {
    height: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

.index-s3 .tab-tit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4vw;
    z-index: 1;
    display: none;
}

.index-s3 .tab-tit.active {
    display: block;
}

.index-s3 .tab-tit .item {
    border-radius: 30px 0 30px 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    text-align: center;
    overflow: hidden;
}

.index-s3 .tab-tit .item .show {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    visibility: visible;
    transition: all .3s ease;
}

.index-s3 .tab-tit .item .show .h3 {
    color: #000;
}

.index-s3 .tab-tit .item .hide {
    opacity: 0;
    position: relative;
    visibility: hidden;
    transition: all .3s ease;
}

.index-s3 .tab-tit .item .hide::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 33, 198, 0.8), transparent);
}

.index-s3 .tab-tit .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.index-s3 .tab-tit .item .btn {
    margin-top: 30px;
    position: relative;
    z-index: 2;
    padding: 5px;
    font-size: max(12px, 0.875rem);
    color: #fff;
    border-radius: 10px 0 10px 0;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.index-s3 .tab-tit .item .h3 {
    position: relative;
    z-index: 2;
    position: absolute;
    top: 0;
    height: 100%;
    left: 30px;
    font-size: max(12px, 1rem);
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-s3 .tab-tit .item .h3 span {
    display: block;
}

@media screen and (min-width: 769px) {
    .index-s3 .tab-tit .item.active {
        box-shadow: 3px 9px 10px 5px rgba(0, 0, 0, 0.15);
    }
    .index-s3 .tab-tit .item.active:before {
        height: 220px;
        background-color: #ff5807;
    }
    .index-s3 .tab-tit .item.active .show {
        opacity: 0;
        visibility: hidden;
    }
    .index-s3 .tab-tit .item.active .hide {
        opacity: 1;
        visibility: visible;
    }
}

.index-s3 .tab-cont {
    position: relative;
    margin-bottom: 30vh;
    z-index: 2;
}

.index-s3 .tab-cont .item {
    position: relative;
    display: none;
}

.index-s3 .tab-cont .item.active {
    display: block;
}

.index-s3 .tab-cont .item .index-tit,
.index-s3 .tab-cont .item .btn {
    opacity: 0;
    -webkit-animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.index-s3 .tab-cont .item .index-tit {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.index-s3 .tab-cont .item .index-tit h3 span {
    color: #ff5807;
}

.index-s3 .tab-cont .item .index-tit p {
    width: 70%;
    max-width: 610px;
}

.index-s3 .tab-cont .item .btn {
    width: 320px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    margin-top: 2vw;
}

.index-s3 .tab-cont .btn-select {
    position: relative;
    z-index: 8;
}

.index-s3 .tab-cont .btn-select .layui-input:focus,
.index-s3 .tab-cont .btn-select .layui-textarea:focus {
    border-color: rgba(0, 0, 0, 0) !important;
    box-shadow: none;
}

.index-s3 .button-prev,
.index-s3 .button-next {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ff5807;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.index-s3 .button-prev .icon-svg,
.index-s3 .button-next .icon-svg {
    width: 12px;
    height: 16px;
    fill: #fff;
}

.index-s3 .button-prev.swiper-button-disabled,
.index-s3 .button-next.swiper-button-disabled {
    opacity: 0;
}

.index-s3 .button-prev {
    left: -18px;
    transform: rotate(180deg);
}

.index-s3 .button-next {
    right: -18px;
}

@media screen and (min-width: 1025px) {
    .index-s3 .tab-tit,
    .index-s3 .tab-cont {
        opacity: 0;
        transform: translateY(2vw);
        transition: all .6s ease;
    }
    .index-s3.active .tab-tit,
    .index-s3.active .tab-cont {
        opacity: 1;
        transform: translateY(0);
    }
    .index-s3.active .tab-cont {
        transition-delay: .5s;
    }
    .index-s3.active .tab-tit {
        transition-delay: .7s;
    }
}

.index-s4 .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000;
    overflow: hidden;
}

.index-s4 .bg-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.index-s4 .bg-box .item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: all .6s ease;
    -webkit-animation: o-scale 20s linear infinite;
    animation: o-scale 20s linear infinite;
    z-index: 1;
}

.index-s4 .bg-box .item.active {
    opacity: 1;
}

.index-s4 .cont-box {
    height: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

.index-s4 .mid-block {
    margin-top: 2vw;
    font-size: 0;
    position: relative;
    border-left: 1px rgba(255, 255, 255, 0.2) solid;
}

.index-s4 .mid-block .btn {
    margin-top: 3vw;
}

.index-s4 .mid-block .item {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.25rem 0;
    padding-left: 3.125rem;
    opacity: 0;
    transform: translateX(-20px);
    visibility: hidden;
}

.index-s4 .mid-block .item.active {
    opacity: 1;
    display: block;
    position: relative;
    transform: translateX(0);
    visibility: visible;
    transition: all .5s ease-in-out;
}

.index-s4 .mid-block .item.active::after {
    opacity: 1;
    height: 30%;
}

.index-s4 .mid-block .item::after {
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background: #ff5807;
    content: '';
    opacity: 0;
    transition: height .5s ease .4s;
}

.index-s4 .mid-block .item .h4 {
    margin-bottom: .625rem;
    font-size: 2.25rem;
    color: #fff;
}

.index-s4 .mid-block .item p {
    text-align: justify;
    width: 38em;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #fff;
    opacity: .9;
}

.index-s4 .bot-block {
    position: relative;
    font-size: 0;
}

.index-s4 .bot-block .case {
    position: absolute;
    z-index: 1;
    top: .9375rem;
    height: 5rem;
    width: 100%;
    border: 1px rgba(255, 255, 255, 0.1) solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-s4 .bot-block .case span {
    position: relative;
    z-index: 2;
    display: block;
    width: 1px;
    height: 25%;
    background: rgba(255, 255, 255, 0.2);
}

.index-s4 .bot-block .case span:first-child,
.index-s4 .bot-block .case span:last-child {
    opacity: 0;
}

.index-s4 .bot-block .case:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.index-s4 .bot-block .item {
    position: relative;
    z-index: 2;
    width: 100%;
    cursor: pointer;
}

.index-s4 .bot-block .item .sw {
    display: flex;
    align-items: center;
}

.index-s4 .bot-block .item .box {
    height: 6.875rem;
    width: 25%;
    border-radius: 1.25rem 0 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

.index-s4 .bot-block .item .box img {
    width: 22px;
    height: 22px;
    display: block;
    transition: transform 0.3s ease;
}

.index-s4 .bot-block .item .box span {
    margin-left: 2vw;
    font-size: 1.25rem;
    color: #fff;
    transition: all .5s ease;
}

.index-s4 .bot-block .item .box.active {
    background: #ff5807;
}

.index-s4 .bot-block .item .box.active img {
    transform: scaleX(-1);
}

.index-s4 .bot-block .item .box.active span {
    margin-left: 1vw;
}

.index-s4 .cell {
    height: 100%;
}

.index-s4 .cell .wrapper {
    height: 100%;
}

.index-s4 .flex {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-s4 .flex>div:nth-child(1) {
    height: 65%;
    margin-bottom: 5%;
}

@media screen and (min-width: 1025px) {
    .index-s4 .index-tit,
    .index-s4 .mid-block,
    .index-s4 .bot-block {
        opacity: 0;
        transform: translateY(2vw);
        transition: all .6s ease;
    }
    .index-s4.active .index-tit,
    .index-s4.active .mid-block,
    .index-s4.active .bot-block {
        opacity: 1;
        transform: translateY(0);
    }
    .index-s4.active .index-tit {
        opacity: 1;
        transition-delay: .4s;
    }
    .index-s4.active .mid-block {
        opacity: 1;
        transition-delay: .6s;
    }
    .index-s4.active .bot-block {
        opacity: 1;
        transition-delay: .8s;
    }
}

.index-s5 .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.index-s5 .bg-box .bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/index/index5-img.jpg");
    -webkit-animation: o-scale 20s linear infinite;
    animation: o-scale 20s linear infinite;
}

.index-s5 .bg-box .img {
    position: absolute;
    right: 1.875rem;
    bottom: 1.875rem;
}

.index-s5 .bg-box .img img {
    width: 5.875rem;
}

.index-s5 .cont-box {
    height: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

.index-s5 .cont-box .btn {
    margin-top: 5vw;
}

.index-s5 .flex-box {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
}

.index-s5 .mid-block {
    flex: 1;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.index-s5 .mid-block .map-box {
    position: relative;
    top: 0;
    width: 43.75rem;
}

.index-s5 .mid-block .map-box .img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.index-s5 .mid-block .map-box .case {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 2;
}

.index-s5 .mid-block .map-box .item1 {
    top: 28.5%;
    left: 69.6%;
}

.index-s5 .mid-block .map-box .item2 {
    top: 66.6%;
    left: 69.6%;
}

.index-s5 .mid-block .map-box .item3 {
    top: 41.5%;
    left: 74.4%;
}

.index-s5 .mid-block .map-box .item4 {
    top: 24%;
    left: 81.5%;
}

.index-s5 .mid-block .map-box .item5 {
    top: 21%;
    left: 20%;
}

.index-s5 .mid-block .map-box .item {
    opacity: 1;
    position: absolute;
}

.index-s5 .mid-block .map-box .item .location {
    position: relative;
    width: 60px;
    height: 60px;
}

.index-s5 .mid-block .map-box .item .location .icon {
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 50%;
    border: 1px dashed #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: rotate 6s linear infinite;
    animation: rotate 6s linear infinite;
}

.index-s5 .mid-block .map-box .item .location .icon span {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-s5 .mid-block .map-box .item .location .icon span i {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: o-scale 1s infinite;
    animation: o-scale 1s infinite;
}

.index-s5 .mid-block .map-box .item .location .text {
    position: absolute;
    top: -14px;
    right: 52px;
    font-size: .875rem;
    background: #fff;
    color: #191919;
    width: 4.0625rem;
    height: 1.6875rem;
    text-align: center;
    line-height: 1;
    border-radius: 10px 10px 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-s5 .mid-block .map-box .item .location .text.text3,
.index-s5 .mid-block .map-box .item .location .text.text4 {
    left: 22px;
    right: auto;
    border-radius: 10px 10px 10px 0;
}

.index-s5 .mid-block .map-box .item .box {
    position: absolute;
    bottom: -1vw;
    right: 8rem;
    width: 478px;
    height: 176px;
    padding: 30px;
    border-radius: 14px 14px 0 14px;
    background: #d6e2ee;
    border: 1px #fff solid;
    visibility: hidden;
    align-items: center;
    display: flex;
    transition: all .4s ease;
    transform: translateX(20px) scale(0.8);
    opacity: 0;
    transform-origin: bottom right;
}

.index-s5 .mid-block .map-box .item .box .img {
    flex: 1;
}

.index-s5 .mid-block .map-box .item .box .img img {
    width: 160px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.index-s5 .mid-block .map-box .item .box .info {
    flex: none;
}

.index-s5 .mid-block .map-box .item .box .info .h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.index-s5 .mid-block .map-box .item .box .info p {
    color: #808080;
    line-height: 1.4;
    font-size: 12px;
}

.index-s5 .bot-block {
    margin-top: 2vw;
    padding-top: 2vw;
    font-size: 0;
    display: flex;
    justify-content: space-between;
}

.index-s5.active.fp-completely .map-lines .map-line {
    display: block;
    stroke-dasharray: 180px;
    stroke-dashoffset: 0;
    -webkit-animation: animation-line 8s linear both;
    animation: animation-line 8s linear both;
    -webkit-animation: animation-line 8s linear both;
    animation: animation-line 8s linear both;
    animation-delay: 1s;
}

.index-s5 .map-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 0.5px;
    opacity: 0.6;
    z-index: 1;
}

.index-s5 .map-lines .map-line {
    display: none;
}

@media screen and (min-width: 1025px) {
    .index-s5 .index-tit,
    .index-s5 .mid-block,
    .index-s5 .bot-block {
        opacity: 0;
        transform: translateY(2vw);
        transition: all .6s ease;
    }
    .index-s5.active .index-tit,
    .index-s5.active .mid-block,
    .index-s5.active .bot-block {
        opacity: 1;
        transform: translateY(0);
    }
    .index-s5.active .index-tit {
        transition-delay: .6s;
    }
    .index-s5.active .mid-block {
        transition-delay: .6s;
    }
}

.index-s6 .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.index-s6 .bg-box .bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/index/index-s6-bg.jpg");
    -webkit-animation: o-scale 20s linear infinite;
    animation: o-scale 20s linear infinite;
}

.index-s6 .cont-box {
    height: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

.index-s6 .mid-block {
    padding-bottom: 2vw;
    margin-top: 2vw;
    font-size: 0;
    display: flex;
    justify-content: space-between;
}

.index-s6 .mid-block .swiper-slide {
    position: relative;
    padding-bottom: 2vw;
    display: block;
}

.index-s6 .mid-block .swiper-slide .items {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px 0 24px 0;
}

.index-s6 .mid-block .swiper-slide .items .bg img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    transition: all .5s ease;
}

.index-s6 .mid-block .swiper-slide .items .time {
    display: flex;
    align-items: center;
}

.index-s6 .mid-block .swiper-slide .items .time .icon-svg {
    margin-right: 5px;
    width: 14px;
    height: 14px;
    fill: #fff;
}

.index-s6 .mid-block .swiper-slide .items .time span {
    font-family: 'Rajdhani-Regular-2';
    font-size: 14px;
    color: #fff;
}

.index-s6 .mid-block .swiper-slide .items .h3 {
    font-size: max(16px, 1.5rem);
    line-height: 1.4;
    color: #fff;
}

.index-s6 .mid-block .swiper-slide .items .btn {
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    color: #fff;
    line-height: 1;
    width: 87px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 10px 0;
}

.index-s6 .mid-block .swiper-slide .items .show,
.index-s6 .mid-block .swiper-slide .items .hide {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px;
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.index-s6 .mid-block .swiper-slide .items .show {
    background: linear-gradient(180deg, transparent, rgba(0, 82, 217, 0.6));
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.index-s6 .mid-block .swiper-slide .items .show .time {
    margin-bottom: 6px;
}

.index-s6 .mid-block .swiper-slide .items .hide {
    background: linear-gradient(90deg, #0021c6, rgba(0, 82, 217, 0.7));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (min-width: 1025px) {
    .index-s6 .mid-block .swiper-slide .items:hover {
        box-shadow: 4px 9px 10px 10px rgba(9, 39, 194, 0.15);
    }
    .index-s6 .mid-block .swiper-slide .items:hover .bg img {
        transform: scale(1.1);
    }
    .index-s6 .mid-block .swiper-slide .items:hover .show {
        opacity: 0;
    }
    .index-s6 .mid-block .swiper-slide .items:hover .hide {
        opacity: 1;
    }
}

.index-s6 .bot-block {
    padding-top: 2vw;
    font-size: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-s6 .bot-block .swierp-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-s6 .bot-block .swierp-info>div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all .3s ease;
}

.index-s6 .bot-block .swierp-info>div:hover {
    background: #ff5807;
}

.index-s6 .bot-block .swierp-info>div:hover .icon-svg {
    fill: #fff;
}

.index-s6 .bot-block .swierp-info .icon-svg {
    fill: #fff;
    width: 16px;
    height: 16px;
}

.index-s6 .bot-block .swierp-info .button-prev {
    margin-right: 10px;
    transform: rotate(180deg);
}

@media screen and (min-width: 1025px) {
    .index-s6 .index-tit,
    .index-s6 .mid-block,
    .index-s6 .bot-block {
        opacity: 0;
        transform: translateY(2vw);
        transition: all .6s ease;
    }
    .index-s6.active .index-tit,
    .index-s6.active .mid-block,
    .index-s6.active .bot-block {
        opacity: 1;
        transform: translateY(0);
    }
    .index-s6.active .index-tit {
        transition-delay: .4s;
    }
    .index-s6.active .mid-block {
        transition-delay: .6s;
    }
    .index-s6.active .bot-block {
        transition-delay: .8s;
    }
}

.index-s7 {
    background: #000;
}

.index-s7 .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.index-s7 .bg-box .bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/index/index-s7-bg.jpg");
    -webkit-animation: o-scale 20s linear infinite;
    animation: o-scale 20s linear infinite;
}

.index-s7 .cont-box {
    height: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

.index-s7 .btn {
    margin-top: 3vw;
}

@media screen and (min-width: 1025px) {
    .index-s7 .index-tit {
        opacity: 0;
        transform: translateY(2vw);
        transition: all .6s ease;
    }
    .index-s7.active .index-tit {
        opacity: 1;
        transition-delay: .4s;
        transform: translateY(0);
    }
}

.main-content {
    min-height: 90vh;
}

.main-content .time {
    display: flex;
    align-items: center;
}

.main-content .time .icon-svg {
    width: 14px;
    height: 14px;
    fill: #ff5807;
}

.main-content .time span {
    font-family: 'Rajdhani-Regular-2';
    margin-left: 6px;
    font-size: 14px;
    line-height: 1;
    color: #ff5807;
}

.website-box {
    padding: 60px 0 120px;
}

.website-box dl {
    min-height: 198px;
    border-bottom: 1px #d9d9d9 solid;
    padding: 60px 0;
    display: flex;
}

.website-box dl dt {
    width: 20%;
    flex: none;
}

.website-box dl dt .h3 {
    margin-top: 12px;
    position: relative;
    font-size: 2.625rem;
    letter-spacing: 2px;
    color: #191919;
}

.website-box dl dt .h3:after {
    content: '';
    position: absolute;
    bottom: -.4em;
    left: 0;
    width: 1em;
    height: 4px;
    background: #ff5807;
}

.website-box dl dd {
    display: flex;
    flex-wrap: wrap;
}

.website-box dl dd a {
    font-size: max(14px, 1.25rem);
    width: 218px;
    height: 58px;
    border-radius: 5px;
    padding: 0 30px;
    margin: 12px;
    border: 1px #d9d9d9 solid;
    color: #191919;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-size: 18px;
    transition: all .3s ease;
}

.website-box dl dd a .icon-svg {
    width: 14px;
    height: 14px;
    fill: #191919;
    transition: all .3s ease;
}

.website-box dl dd a:hover {
    border-color: #ff5807;
    background: #ff5807;
    color: #fff;
}

.website-box dl dd a:hover .icon-svg {
    fill: #fff;
}

.read-main {
    height: 100%;
    display: flex;
}

.read-main .left-box,
.read-main .right-box {
    padding: 120px 0;
}

.read-main .left-box {
    padding-right: 10px;
    border-right: 1px #e6e6e6 solid;
}

.read-main .right-box {
    flex: 1;
    width: 100%;
    padding-left: 60px;
}

.read-main .right-box .content p {
    margin-bottom: 30px;
    font-size: max(14px, 1.125rem);
    line-height: 2;
    text-align: justify;
    color: #191919;
}

.read-main .right-box .content p a {
    color: #ff5807;
}

.read-main .right-box .content h3 {
    font-weight: normal;
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 28px;
    color: #191919;
    font-size: 2rem;
    border-bottom: 1px #d9d9d9 solid;
    line-height: 1.4;
}

.read-main .right-box .content h3:after {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    width: 4em;
    height: 1px;
    background: #ff5807;
}

.read-main .nav-list {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
}

.read-main .nav-list a {
    margin-bottom: 10px;
    padding: 0 30px;
    width: 350px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s ease;
}

.read-main .nav-list a span {
    color: #000;
    font-size: max(12pxx, 1rem);
}

.read-main .nav-list a .icon-svg {
    width: 20px;
    fill: #fff;
    height: 20px;
    opacity: 0;
}

.read-main .nav-list a.active {
    background: #ff5807;
}

.read-main .nav-list a.active span {
    color: #fff;
}

.read-main .nav-list a.active .icon-svg {
    opacity: 1;
}

.contact-main .contact-s1 {
    padding: 120px 0 0;
}

.contact-main .contact-s1 .top-box {
    margin: 40px 0;
    border-radius: 4vw 0 4vw 0;
    overflow: hidden;
    display: flex;
}

.contact-main .contact-s1 .top-box .img {
    position: relative;
    width: 50%;
}

.contact-main .contact-s1 .top-box .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

.contact-main .contact-s1 .top-box .img .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16%;
    padding: 0 4%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
    display: flex;
    align-items: center;
}

.contact-main .contact-s1 .top-box .img .info p {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
}

.contact-main .contact-s1 .top-box .map {
    flex: 1;
}

.contact-main .contact-s1 .top-box .map img {
    width: 100%;
}

.contact-main .contact-s1 .top-box .map .contact-para {
    white-space: pre;
}

.contact-main .contact-s1 .top-box .map .amap-icon {
    width: 24px;
}

.contact-main .contact-s1 .top-box .map .amap-info-close {
    display: none;
}

.contact-main .contact-s1 .top-box .map .amap-info-content {
    box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.05);
    padding: 1rem 3rem;
    border-radius: 10px 0 10px 0;
}

.contact-main .contact-s1 .top-box .map .amap-info-sharp:after {
    border-left: 0;
    border-right: 0;
}

.contact-main .contact-s1 .top-box .map .amap-logo {
    display: none !important;
}

.contact-main .contact-s1 .bot-box dl dt {
    border-bottom: 1px #e6e6e6 solid;
}

.contact-main .contact-s1 .bot-box dl dt .h3 {
    position: relative;
    padding: 48px 40px 20px;
    color: #191919;
    font-size: 2rem;
    display: inline-flex;
}

.contact-main .contact-s1 .bot-box dl dt .h3:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #ff5807;
}

.contact-main .contact-s1 .bot-box dl dd {
    padding: 29px 0;
    border-bottom: 1px #e6e6e6 solid;
    display: flex;
}

.contact-main .contact-s1 .bot-box dl dd .text {
    width: 50%;
    padding: 0 40px;
}

.contact-main .contact-s1 .bot-box dl dd .text:nth-child(2) {
    border-left: 1px #e6e6e6 solid;
}

.contact-main .contact-s1 .bot-box dl dd .text span {
    font-size: max(16px, 1.25rem);
    color: #191919;
}

.contact-main .contact-s1 .bot-box dl dd .text span:nth-child(1) {
    opacity: .5;
}

.contact-main .contact-s2 {
    padding: 120px 0;
}

.contact-main .contact-s2 .form-box {
    margin-top: 40px;
    background: #f5f5f7;
    width: 100%;
    padding: 60px;
    border-radius: 10px 0 10px 0;
    overflow: hidden;
}

.layui-form-style1 input {
    height: 60px;
    border-radius: 6px;
}

.layui-form-style1 textarea {
    border-radius: 6px;
}

.layui-form-style1 button {
    border-radius: 6px;
    height: 60px;
    background: #012fa7;
}

.layui-form-style1 .text {
    margin: 0;
    padding: 0;
    height: 60px;
    color: #808080;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.layui-form-style1 .code {
    border-left: 1px #e6e6e6 solid;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 20px;
    overflow: hidden;
    cursor: pointer;
}

.layui-form-style1 .code img {
    width: 100%;
}

.layui-form-style2 input {
    font-size: max(13px, 1rem);
    height: 60px;
    border-radius: 6px;
}

.layui-form-style2 textarea {
    border-radius: 6px;
}

.layui-form-style2 button {
    border-radius: 10px 0 10px 0;
    height: 60px;
    line-height: 60px;
    background: #ff5807;
}

.layui-form-style2 .text {
    margin: 0;
    padding: 0;
    height: 60px;
    color: #808080;
    line-height: 1;
    display: flex;
    align-items: center;
}

.layui-form-style2 .code {
    border-left: 1px #e6e6e6 solid;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 20px;
    overflow: hidden;
    cursor: pointer;
}

.layui-form-style2 .code img {
    width: 100%;
}

.recruitment-main {
    margin-bottom: 120px;
}

.recruitment-main .layui-form-selected input {
    background: #fff !important;
    border: 1px #ff5807 solid !important;
}

.recruitment-main .top-box {
    margin: 60px 0 40px;
}

.recruitment-main .top-box input {
    background: #f5f5f7;
    border: 0;
    padding: 0 30px;
}

.recruitment-main .top-box .layui-edge {
    right: 30px;
}

.recruitment-main .top-box .layui-input-prefix {
    margin-left: 20px;
    display: flex;
    align-items: center;
    width: 50px;
    height: 100%;
}

.recruitment-main .top-box .layui-input-prefix .icon-svg {
    width: 20px;
    height: 20px;
    fill: #ff5807;
}

.recruitment-main .top-box .layui-input-prefix~input {
    padding-left: 60px;
}

.recruitment-main .top-box .layui-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    height: 48px;
    width: 120px;
    line-height: 1;
}

.recruitment-main .job-list {
    margin-bottom: 40px;
    border-top: 1px #e6e6e6 solid;
}

.recruitment-main .job-list dl {
    border-bottom: 1px #e6e6e6 solid;
}

.recruitment-main .job-list dl dt {
    padding: 38px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.recruitment-main .job-list dl dt .item {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.recruitment-main .job-list dl dt .item:nth-child(1) {
    width: 27%;
}

.recruitment-main .job-list dl dt .item:nth-child(2) {
    width: 35%;
    padding-right: 5%;
}

.recruitment-main .job-list dl dt .item:nth-child(3) {
    width: 23%;
}

.recruitment-main .job-list dl dt .item:nth-child(4) {
    width: 10%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
}

.recruitment-main .job-list dl dt .item span {
    line-height: 1;
    font-size: max(14px, 1rem);
    font-family: 'Rajdhani-Regular-2';
    color: #808080;
}

.recruitment-main .job-list dl dt .item .h4 {
    margin-top: 14px;
    line-height: 1;
    font-size: 2rem;
    color: #191919;
}

.recruitment-main .job-list dl dt .item .icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.recruitment-main .job-list dl dt .item .icon::after {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
    content: '';
    width: 24px;
    height: 2px;
    background: #ff5807;
}

.recruitment-main .job-list dl dt .item .icon::before {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 0;
    content: '';
    height: 24px;
    width: 2px;
    background: #ff5807;
}

.recruitment-main .job-list dl dd {
    display: none;
    padding: 0 90px;
}

.recruitment-main .job-list dl dd .dd-top {
    padding: 50px 0;
    border-bottom: 1px #e6e6e6 solid;
    display: flex;
}

.recruitment-main .job-list dl dd .dd-top .case {
    width: 50%;
    padding: 0;
}

.recruitment-main .job-list dl dd .dd-top .case:nth-child(1) {
    padding-right: 50px;
}

.recruitment-main .job-list dl dd .dd-top .case .h3 {
    margin-bottom: 20px;
    font-size: max(16px, 1.5rem);
    color: #191919;
    line-height: 1;
}

.recruitment-main .job-list dl dd .dd-top .case p {
    font-size: max(13px, 1rem);
    color: #191919;
    line-height: 2;
}

.recruitment-main .job-list dl dd .dd-bot {
    padding: 60px 0;
}

.recruitment-main .job-list dl dd .dd-bot .btn {
    width: 200px;
    height: 60px;
    background: #ff5807;
    color: #fff;
    font-size: max(14px, 1.125rem);
    border-radius: 10px 0 10px 0;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
}

.recruitment-main .job-list dl dd .dd-bot .btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px 5px rgba(255, 85, 0, 0.2);
}

.recruitment-main .job-list dl.active {
    border-bottom: 0;
    box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.05);
}

.recruitment-main .job-list dl.active dt {
    background: url(../images/joinUs/tit-bg.png) no-repeat;
    background-size: cover;
}

.recruitment-main .job-list dl.active dt .item span {
    color: #fff;
    opacity: .5;
}

.recruitment-main .job-list dl.active dt .item .h4 {
    color: #fff;
}

.recruitment-main .job-list dl.active dt .item .icon::after {
    background: #fff;
}

.recruitment-main .job-list dl.active dt .item .icon::before {
    opacity: 0;
}

.applyjob-tc {
    width: 640px;
    padding: 40px;
}

.applyjob-tc form {
    margin-bottom: 16px;
}

.applyjob-tc .text {
    padding-left: 2em;
    color: #808080;
    font-size: 1rem;
}

.layui-custom-title .layui-layer-title {
    height: 7.5rem;
    padding: 0 40px;
    line-height: 1;
    background: url(../images/joinUs/tc-title-bg.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
}

.layui-custom-title .layui-layer-setwin {
    top: 0;
    right: 40px;
    height: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layui-custom-title .layui-layer-setwin span {
    width: 32px;
    height: 32px;
    border: 2px #fff solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layui-custom-title .layui-layer-setwin span::before {
    color: #fff;
    font-size: 16px;
}

.join-banner {
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.join-banner .cell {
    height: 100%;
}

.join-banner .cont-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.join-banner .cont-box .flex-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.join-banner .top-block {
    margin-top: 60px;
    width: 100%;
}

.join-banner .mid-block {
    text-align: center;
}

.join-banner .mid-block .h2 {
    margin-bottom: 6vw;
    font-size: 5rem;
    color: #fff;
    font-weight: bold;
}

.join-banner img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-animation: o-scale 20s linear infinite;
    animation: o-scale 20s linear infinite;
    z-index: 1;
}

.join-banner .join-search {
    padding: 0 30px;
    height: 60px;
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-banner .join-search .icon-svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.join-banner .join-search input {
    padding: 0 20px;
    background: none;
    border: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: max(12px, 1rem);
}

.join-banner .join-search input::-webkit-input-placeholder {
    color: #fff;
}

.join-banner .join-search a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.join-banner .join-search a span {
    line-height: 1;
    color: #fff;
    font-size: 16px;
    transition: all .3s ease;
    white-space: pre;
}

.join-banner .join-search a .icon-svg {
    margin-left: 5px;
    width: 14px;
    height: 14px;
    transition: all .3s ease;
}

.join-banner .join-search a:hover span {
    color: #ff5807;
}

.join-banner .join-search a:hover .icon-svg {
    fill: #ff5807;
}

.join-banner .scroll {
    display: none;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.joinus-main .join-s1,
.joinus-main .join-s2,
.joinus-main .join-s3 {
    padding: 120px 0 0;
}

.joinus-main .join-s4 {
    padding: 120px 0;
}

.joinus-main .talent-concept {
    margin-top: 6vw;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.joinus-main .talent-concept::after {
    position: relative;
    z-index: 1;
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #e6e6e6;
}

.joinus-main .talent-concept .item {
    position: relative;
    z-index: 2;
    padding: 24px;
    border-radius: 50%;
    border: 2px dashed #e6e6e6;
    background: #fff;
}

.joinus-main .talent-concept .item .box {
    position: relative;
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.joinus-main .talent-concept .item .box img {
    width: 3vw;
    height: 3vw;
    -o-object-fit: contain;
    object-fit: contain;
}

.joinus-main .talent-concept .item .box span {
    margin-top: 24px;
    font-size: clamp(0.875rem, calc(0.458rem + 0.87vw), 1.5rem);
    line-height: 1;
    color: #191919;
}

.joinus-main .talent-concept .item:after,
.joinus-main .talent-concept .item::before {
    position: absolute;
    top: calc(50% - 2px);
    background: #fff;
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: 2px #ff5807 solid;
}

.joinus-main .talent-concept .item:after {
    left: -5px;
}

.joinus-main .talent-concept .item::before {
    right: -5px;
}

.joinus-main .talent-concept .item:first-child:after {
    opacity: 0;
}

.joinus-main .talent-concept .item:last-child::before {
    opacity: 0;
}

.joinus-main .talent-concept .item:hover .info {
    opacity: 1;
    transform: scale(1);
}

.joinus-main .talent-concept .item:hover .info .h3,
.joinus-main .talent-concept .item:hover .info p {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.joinus-main .talent-concept .item .info .h3,
.joinus-main .talent-concept .item .info p {
    opacity: 0;
    transform: translateY(-3vw) scale(0.5);
    transition: all .4s ease;
}

.joinus-main .talent-concept .item .info {
    position: absolute;
    top: -2vw;
    left: -2vw;
    right: 0;
    width: 19vw;
    height: 19vw;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.6);
    opacity: 0;
    transition: all .4s ease;
}

.joinus-main .talent-concept .item .info img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.joinus-main .talent-concept .item .info .h3 {
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    font-size: 1.6vw;
    line-height: 1;
    color: #fff;
}

.joinus-main .talent-concept .item .info p {
    width: 55%;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: .85vw;
    line-height: 1.6;
    color: #fff;
}

.joinus-main .social-benefits {
    position: relative;
    padding-bottom: 6vw;
    background: linear-gradient(180deg, #fff, #fcf6f3);
    overflow: hidden;
}

.joinus-main .social-benefits .z-box {
    position: relative;
    z-index: 2;
}

.joinus-main .social-benefits .bg1 {
    position: absolute;
    top: -12vw;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.joinus-main .social-benefits .bg1 img {
    width: 100%;
}

.joinus-main .social-benefits .bg2 {
    position: absolute;
    bottom: 10vw;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.joinus-main .social-benefits .bg2 img {
    width: 100%;
}

.joinus-main .social-benefits .top-block {
    position: relative;
    width: 480px;
    height: 270px;
    margin: 40px auto 0;
    border-radius: 30px 0 30px 0;
    overflow: hidden;
    z-index: 2;
}

.joinus-main .social-benefits .top-block .item {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: all .3s ease;
}

.joinus-main .social-benefits .top-block .item .img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

.joinus-main .social-benefits .top-block .item .name {
    background: linear-gradient(25deg, rgba(0, 82, 217, 0.4), rgba(0, 0, 0, 0) 100%);
    position: absolute;
    padding: 30px;
    bottom: 0;
    left: 0;
    line-height: 1;
    font-size: 32px;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all .4s ease .3s;
    transform: translateY(10px);
}

.joinus-main .social-benefits .top-block .item.active {
    opacity: 1;
}

.joinus-main .social-benefits .top-block .item.active .name {
    opacity: 1;
    transform: translateY(0);
}

.joinus-main .social-benefits .mid-block {
    position: relative;
    width: 100%;
    margin-top: 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.joinus-main .social-benefits .mid-block .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.joinus-main .social-benefits .mid-block .item .img {
    background: #fff;
    position: relative;
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 10px 5px rgba(0, 0, 0, 0.03);
    transition: all .5s ease;
}

.joinus-main .social-benefits .mid-block .item .img img {
    position: absolute;
    left: 0;
    right: 0;
    width: 1.8vw;
    margin: 0 auto;
    transition: all .5s ease;
}

.joinus-main .social-benefits .mid-block .item .img img:nth-child(1) {
    opacity: 1;
}

.joinus-main .social-benefits .mid-block .item .img img:nth-child(2) {
    opacity: 0;
}

.joinus-main .social-benefits .mid-block .item.active .img {
    background: #ff5807;
    box-shadow: 0 10px 20px 5px rgba(255, 85, 0, 0.2);
}

.joinus-main .social-benefits .mid-block .item.active .img img {
    transform: scaleX(-1);
}

.joinus-main .social-benefits .mid-block .item.active .img img:nth-child(1) {
    opacity: 0;
}

.joinus-main .social-benefits .mid-block .item.active .img img:nth-child(2) {
    opacity: 1;
}

.joinus-main .social-benefits .mid-block .item p {
    text-align: center;
    margin-top: 18px;
    font-size: max(12px, 1rem);
    color: #191919;
    line-height: 1;
}

.joinus-main .social-benefits .mid-block .item:nth-child(1),
.joinus-main .social-benefits .mid-block .item:nth-child(11) {
    top: -12vw;
}

.joinus-main .social-benefits .mid-block .item:nth-child(2),
.joinus-main .social-benefits .mid-block .item:nth-child(10) {
    top: -7vw;
}

.joinus-main .social-benefits .mid-block .item:nth-child(3),
.joinus-main .social-benefits .mid-block .item:nth-child(9) {
    top: -4vw;
}

.joinus-main .social-benefits .mid-block .item:nth-child(4),
.joinus-main .social-benefits .mid-block .item:nth-child(8) {
    top: -2vw;
}

.joinus-main .social-benefits .mid-block .item:nth-child(5),
.joinus-main .social-benefits .mid-block .item:nth-child(7) {
    top: -.5vw;
}

.team-style .team-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.team-style .team-box .item {
    position: relative;
    width: 25%;
    background: #000;
    transition: all .5s ease;
    overflow: hidden;
}

.team-style .team-box .item .swiper-container {
    position: relative;
    z-index: 1;
    height: 540px;
}

.team-style .team-box .item .swiper-container .swiper-slide {
    background: #000;
}

.team-style .team-box .item img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .5;
    transition: all .5s ease;
    cursor: pointer;
}

.team-style .team-box .item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.team-style .team-box .item .info p {
    font-size: 2rem;
    color: #fff;
}

.team-style .team-box .item .info .icon-svg {
    opacity: 0;
    width: 14px;
    height: 14px;
    fill: #fff;
}

.team-style .team-box .item:nth-child(1) .info {
    background: rgba(0, 82, 217, 0.7);
}

.team-style .team-box .item:nth-child(2) .info {
    background: rgba(255, 88, 7, 0.7);
}

.team-style .team-box .item:nth-child(3) .info {
    background: rgba(43, 167, 198, 0.7);
}

.team-style .team-box .item:nth-child(4) .info {
    background: rgba(183, 48, 188, 0.7);
}

.team-style .team-box .item:nth-child(5) .info {
    background: rgba(255, 202, 19, 0.7);
}

.team-style .team-box .item:nth-child(6) .info {
    background: rgba(43, 198, 98, 0.7);
}

.team-style .team-box .item.active img {
    opacity: 1;
}

.team-style .button-prev,
.team-style .button-next {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ff5807;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}

.team-style .button-prev .icon-svg,
.team-style .button-next .icon-svg {
    position: relative;
    width: 12px;
    height: 16px;
    fill: #fff;
}

.team-style .button-prev.swiper-button-disabled,
.team-style .button-next.swiper-button-disabled {
    opacity: 0;
}

.team-style .button-prev {
    left: 18px;
    transform: rotate(180deg);
}

.team-style .button-prev .icon-svg {
    left: 1px;
}

.team-style .button-next {
    right: 18px;
}

.team-style .button-next .icon-svg {
    left: 1px;
}

.talent-recruitment .talent-box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 24px;
}

.talent-recruitment .talent-box .item {
    position: relative;
    background: #f5f5f7;
    aspect-ratio: 10 / 10;
    border-radius: 25px 0 25px 0;
    transition: all .5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.talent-recruitment .talent-box .item .num {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    padding: 18px 18px 29px;
    font-family: 'Rajdhani-Bold-4';
    font-size: 20px;
    color: #ccc;
}

.talent-recruitment .talent-box .item .icon {
    margin: 0 auto;
    width: 3vw;
    height: 3vw;
}

.talent-recruitment .talent-box .item .icon img {
    position: absolute;
    left: 0;
    right: 0;
    width: 3vw;
    margin: 0 auto;
    transition: all 0.5s ease;
}

.talent-recruitment .talent-box .item .icon img:nth-child(1) {
    opacity: 1;
}

.talent-recruitment .talent-box .item .icon img:nth-child(2) {
    opacity: 0;
}

.talent-recruitment .talent-box .item .bg-num {
    font-family: 'Rajdhani-Bold-4';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
    height: 65%;
    opacity: 0;
    font-size: 5vw;
    opacity: .1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) translateY(20px);
}

.talent-recruitment .talent-box .item .num,
.talent-recruitment .talent-box .item .icon,
.talent-recruitment .talent-box .item .bg-num,
.talent-recruitment .talent-box .item .h4 {
    transition: all .5s ease;
}

.talent-recruitment .talent-box .item.active .num {
    opacity: 0;
    transform: scale(0);
}

.talent-recruitment .talent-box .item.active .bg-num {
    opacity: .1;
    color: #000;
    transform: scale(1) translateY(0);
}

.talent-recruitment .talent-box .item.active .icon img {
    transform: scaleX(-1);
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(1) {
    opacity: 1;
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(2) {
    opacity: 0;
}

.talent-recruitment .talent-box .item.active .h4 {
    margin-top: 1.4vw;
}

.talent-recruitment .talent-box .item.active .num {
    opacity: 0;
    transform: scale(0);
}

.talent-recruitment .talent-box .item.active .bg-num {
    opacity: .1;
    color: #000;
    transform: scale(1) translateY(0);
}

.talent-recruitment .talent-box .item.active .icon img {
    transform: scaleX(-1);
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(1) {
    opacity: 1;
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(2) {
    opacity: 0;
}

.talent-recruitment .talent-box .item.active .h4 {
    margin-top: 1.4vw;
}

.talent-recruitment .talent-box .item.active .num {
    opacity: 0;
    transform: scale(0);
}

.talent-recruitment .talent-box .item.active .bg-num {
    opacity: .1;
    color: #000;
    transform: scale(1) translateY(0);
}

.talent-recruitment .talent-box .item.active .icon img {
    transform: scaleX(-1);
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(1) {
    opacity: 1;
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(2) {
    opacity: 0;
}

.talent-recruitment .talent-box .item.active .h4 {
    margin-top: 1.4vw;
}

.talent-recruitment .talent-box .item.active .num {
    opacity: 0;
    transform: scale(0);
}

.talent-recruitment .talent-box .item.active .bg-num {
    opacity: .1;
    color: #000;
    transform: scale(1) translateY(0);
}

.talent-recruitment .talent-box .item.active .icon img {
    transform: scaleX(-1);
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(1) {
    opacity: 1;
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(2) {
    opacity: 0;
}

.talent-recruitment .talent-box .item.active .h4 {
    margin-top: 1.4vw;
}

.talent-recruitment .talent-box .item.active .num {
    opacity: 0;
    transform: scale(0);
}

.talent-recruitment .talent-box .item.active .bg-num {
    opacity: .1;
    color: #000;
    transform: scale(1) translateY(0);
}

.talent-recruitment .talent-box .item.active .icon img {
    transform: scaleX(-1);
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(1) {
    opacity: 1;
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(2) {
    opacity: 0;
}

.talent-recruitment .talent-box .item.active .h4 {
    margin-top: 1.4vw;
}

.talent-recruitment .talent-box .item.active .num {
    opacity: 0;
    transform: scale(0);
}

.talent-recruitment .talent-box .item.active .bg-num {
    opacity: .1;
    color: #000;
    transform: scale(1) translateY(0);
}

.talent-recruitment .talent-box .item.active .icon img {
    transform: scaleX(-1);
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(1) {
    opacity: 1;
}

.talent-recruitment .talent-box .item.active .icon img:nth-child(2) {
    opacity: 0;
}

.talent-recruitment .talent-box .item.active .h4 {
    margin-top: 1.4vw;
}

.talent-recruitment .talent-box .item .h4 {
    margin-top: .5vw;
    text-align: center;
    font-size: 1.2vw;
    color: #191919;
}

.talent-recruitment .recruitment-channel {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

.talent-recruitment .recruitment-channel .box {
    position: relative;
    overflow: hidden;
}

.talent-recruitment .recruitment-channel .box .img {
    position: relative;
    z-index: 1;
    border-radius: 30px 0 30px 0;
    overflow: hidden;
}

.talent-recruitment .recruitment-channel .box .img img {
    width: 100%;
    transition: all .3s ease;
}

.talent-recruitment .recruitment-channel .box:hover .img img {
    transform: scale(1.1);
}

.talent-recruitment .recruitment-channel .box .info {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.talent-recruitment .recruitment-channel .box .info .h3 {
    font-size: max(20px, 2rem);
    color: #fff;
}

.talent-recruitment .recruitment-channel .box .info p {
    font-size: max(14px, 1rem);
    line-height: 1.6;
    color: #fff;
    opacity: .2;
    text-transform: uppercase;
}

.talent-recruitment .recruitment-channel .box .info .btn {
    font-size: max(14px, 1rem);
    color: #fff;
    border: 1px rgba(255, 255, 255, 0.2) solid;
    border-radius: 40px;
    padding: .8em 2.2em;
    display: inline-flex;
}

.talent-recruitment .recruitment-channel .box .info .btn:hover {
    background: #ff5807;
}

.news-main {
    padding: 90px 0 120px;
}

.news-main .news-swiper {
    position: relative;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.02);
}

.news-main .news-swiper .item {
    background: #fff;
    display: flex;
}

.news-main .news-swiper .item:hover .img img {
    transform: scale(1.1);
}

.news-main .news-swiper .item .img {
    width: 50%;
    overflow: hidden;
}

.news-main .news-swiper .item .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    transition: all .5s ease;
}

.news-main .news-swiper .item .info {
    width: 50%;
    padding: 40px 55px;
}

.news-main .news-swiper .item .info .time {
    margin-bottom: 1vw;
}

.news-main .news-swiper .item .info .h3 {
    margin-bottom: 1vw;
    font-size: 2rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-main .news-swiper .item .info p {
    font-size: max(13px, 1rem);
    color: #808080;
    line-height: 1.6;
    overflow: hidden;
    /* 隐藏超出容器高度的文本 */
    display: -webkit-box;
    /* 将文本以块级元素显示 */
    -webkit-box-orient: vertical;
    /* 垂直排列文本 */
    -webkit-line-clamp: 3;
    /* 设置文本显示的最大行数为4行 */
    text-overflow: ellipsis;
    /* 显示省略号 */
}

.news-main .news-swiper .swiper-dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 5;
    padding: 0 44px 20px;
}

.news-main .news-swiper .swiper-dot .swiper-pagination-bullet-active {
    background: #ff5807;
}

.news-main .news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 48px;
    margin: 48px 0;
}

.news-main .news-list .items a {
    display: block;
}

.news-main .news-list .items .img {
    overflow: hidden;
}

.news-main .news-list .items .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    transition: all .5s ease;
}

.news-main .news-list .items:hover .img img {
    transform: scale(1.1);
}

.news-main .news-list .items .info {
    padding: 38px;
    border: 1px #e6e6e6 solid;
}

.news-main .news-list .items .info .time {
    margin-bottom: 26px;
}

.news-main .news-list .items .info .h3 {
    height: 3em;
    font-size: max(16px, 1.5rem);
    line-height: 1.6;
}

.news-details-main {
    border-top: 1px #e6e6e6 solid;
}

.news-details-main .cell-box {
    display: flex;
}

.news-details-main .left-block,
.news-details-main .right-block {
    padding: 80px 0 120px;
}

.news-details-main .left-block {
    padding-right: 60px;
    border-right: 1px #e6e6e6 solid;
    width: 100%;
}

.news-details-main .left-block .h2 {
    margin-bottom: 20px;
    font-size: 3rem;
    color: #191919;
    line-height: 1.4;
}

.news-details-main .left-block .share-mod {
    position: relative;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-details-main .left-block .share-mod:after {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e6e6e6;
    content: '';
    z-index: 1;
}

.news-details-main .left-block .share-mod .box {
    position: relative;
    z-index: 2;
    padding: 0 37px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.news-details-main .left-block .share-mod .box .icon {
    margin: 0 6px;
    width: 46px;
    height: 46px;
    border-radius: 4px;
    border: 1px #e6e6e6 solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}

.news-details-main .left-block .share-mod .box .icon:hover {
    border-color: #ff5807;
}

.news-details-main .left-block .share-mod .box .icon:hover .icon-svg {
    fill: #ff5807;
}

.news-details-main .left-block .share-mod .box .icon .icon-svg {
    width: 24px;
    height: 24px;
    fill: #0021c6;
    transition: all .3s ease;
}

.news-details-main .left-block .content-main {
    margin-bottom: 1.5vw;
    overflow: hidden;
}

.news-details-main .left-block .content-main p {
    font-size: max(14px, 1.125rem);
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1.2vw;
}

.news-details-main .left-block .content-main img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto !important;
    margin-bottom: 1.2vw;
}

.news-details-main .left-block .article-preview {
    padding: 40px;
    box-shadow: 0 0 6px 5px rgba(0, 0, 0, 0.03);
}

.news-details-main .left-block .article-preview a {
    display: block;
    font-size: max(14px, 1.125rem);
    line-height: 1.8;
}

.news-details-main .right-block {
    padding: 80px 60px;
    width: 40%;
}

.news-details-main .right-block .hot-news {
    position: relative;
    top: 0;
}

.news-details-main .right-block .hot-news .h3 {
    margin-top: 6px;
    margin-bottom: 20px;
    font-size: max(18px, 1.5rem);
    color: #ff5807;
}

.news-details-main .right-block .hot-news .list li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 14px;
}

.news-details-main .right-block .hot-news .list li::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #ff5807;
    border-radius: 50%;
}

.news-details-main .right-block .hot-news .list li a {
    display: block;
    font-size: max(14px, 1.125rem);
    color: #191919;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all .3s ease;
}

.news-details-main .right-block .hot-news .list li a:hover {
    color: #ff5807;
}

.news-details-main .right-block .hot-news .list li span {
    display: block;
    font-family: 'Rajdhani-Regular-2';
    margin-top: 8px;
    font-size: max(12px, 0.875rem);
    color: #808080;
    line-height: 1;
}

.product-main {
    padding: 0 0 120px;
}

.product-s1 {
    padding: 120px 0 0;
}

.product-center-main .h3 {
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 1;
    color: #191919;
}

.product-center-main .c-subheading {
    margin-bottom: 34px;
}

.product-center-main .product-list {
    margin-bottom: 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 48px;
}

.product-center-main .product-list:last-child {
    margin: 0;
}

.product-center-main .product-list li {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.product-center-main .product-list li a {
    display: block;
}

.product-center-main .product-list li:hover .img img {
    transform: scale(1.1);
}

.product-center-main .product-list li:hover .info .icon-svg {
    opacity: 1;
    transform: translateX(0);
}

.product-center-main .product-list li .img {
    position: relative;
    z-index: 1;
}

.product-center-main .product-list li .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 10 / 10;
    transition: all .5s ease;
}

.product-center-main .product-list li .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 40px;
    background: linear-gradient(180deg, transparent, rgba(77, 77, 77, 0.5));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-center-main .product-list li .info p {
    font-size: max(16px, 1.5rem);
    line-height: 1;
    color: #fff;
}

.product-center-main .product-list li .info .icon-svg {
    position: relative;
    top: 1px;
    width: 26px;
    height: 26px;
    fill: #ff5807;
    opacity: 0;
    transition: all .3s ease;
    transform: translateX(-10px);
}

.product-details-main {
    position: relative;
}

.product-details-main .blur {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.product-details-main table {
    border-collapse: collapse;
    width: 100%;
}

.product-details-main th,
.product-details-main td {
    border: 1px solid #e6e6e6;
    padding: 8px;
    font-size: max(14px, 1.125rem);
}

.product-details-main td {
    padding: 10px 38px;
}

.product-details-main .gray-row {
    background-color: #f0f2f5;
}

.product-details-main .white-row {
    background-color: #fff;
}

.product-details-main .product-banner {
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.product-details-main .product-banner .bg-block {
    height: 100vh;
}

.product-details-main .product-banner .bg-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-details-main .top-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details-main .top-block .h2 {
    font-size: 3.75rem;
    color: #012fa7;
    line-height: 1.4;
}

.product-details-main .top-block .h3 {
    padding-bottom: 15px;
    margin-top: 40px;
    font-size: 2rem;
    color: #191919;
    line-height: 1.4;
    position: relative;
}

.product-details-main .top-block .h3:after {
    position: absolute;
    content: '';
    display: block;
    bottom: 0;
    left: 0;
    width: 1.3em;
    height: 4px;
    background: #ff5807;
}

.product-details-main .top-block .text {
    margin-top: 15px;
}

.product-details-main .top-block .text p {
    padding-left: 20px;
    font-size: max(14px, 1.125rem);
    color: #191919;
    line-height: 1.8;
    position: relative;
}

.product-details-main .top-block .text p:after {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 5px;
    background: #000;
    content: '';
}

.product-details-main .top-block .btn {
    margin-top: 50px;
}

.product-details-main .nav-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 10;
    transition: all .8s ease-in-out;
    transform: translateY(-180px);
    z-index: 4;
    opacity: 0;
}

.product-details-main .nav-block.show {
    transform: translateY(0);
    opacity: 1;
}

.product-details-main .nav-block .box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details-main .nav-block::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}

.product-details-main .nav-block a {
    position: relative;
    z-index: 2;
    margin: 0 5px;
    background: #96a1b0;
    font-size: max(12px, 1rem);
    color: #fff;
    width: 180px;
    height: 48px;
    border-radius: 10px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.product-details-main .nav-block a.active {
    background: #0021c6;
}

.product-details-main .details-block {
    padding: 60px 0;
    background: #dde5f2;
}

.product-details-main .details-block .cell-box {
    padding: 50px 120px;
    background: #fff;
    border-radius: 20px;
}

.product-details-main .details-block .cell-box .text {
    margin-top: 30px;
}

.product-details-main .details-block .cell-box .text p {
    font-size: max(14px, 1.125rem);
    line-height: 2;
    color: #191919;
    text-align: justify;
}
.product-details-main .details-block .cell-box .text img {
max-width:100%;
}

.product-details-main .details-block .img-boxes {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.product-details-main .details-block .img-boxes img {
    width: 100%;
}

.product-details-main .details-block .line {
    margin: 55px 0;
    width: 100%;
    height: 1px;
    background: #e6e6e6;
}

.product-details-main .tab-table {
    margin-top: 30px;
}

.product-details-main .tab-table .navbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details-main .tab-table .navbox .item {
    margin: 0 30px;
    padding-bottom: 18px;
    font-size: max(16px, 1.5rem);
    line-height: 1;
    color: #191919;
    cursor: pointer;
    position: relative;
    transition: all .3s ease;
}

.product-details-main .tab-table .navbox .item.active {
    color: #ff5807;
}

.product-details-main .tab-table .navbox .item.active::after {
    opacity: 1;
}

.product-details-main .tab-table .navbox .item::after {
    opacity: 0;
    position: absolute;
    bottom: 0;
    content: '';
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff5807;
    transition: all .3s ease;
}

.product-details-main .tab-table .tabbox {
    margin: 0px 0 60px;
}

.product-details-main .tab-table .tabbox .case {
    display: none;
    font-size: 14px;
}
.product-details-main .tab-table .tabbox .case img {
    max-width:100%
}

.product-details-main .tab-table .tabbox .case.active {
    display: block;
}

.product-details-main .download-list {
    margin: 30px 0;
}

.product-details-main .download-list .item {
    margin-bottom: 15px;
    padding: 0 40px;
    height: 118px;
    border: 1px #e6e6e6 solid;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details-main .download-list .item .box {
    display: flex;
    align-items: center;
}

.product-details-main .download-list .item .box i {
    display: block;
    background: url(../images/icon-pdf.png) no-repeat center;
    width: 60px;
    height: 60px;
    background-size: 60px;
}

.product-details-main .download-list .item .box span {
    font-size: max(16px, 1.5rem);
    color: #191919;
    margin-left: 60px;
}

.product-details-main .download-list .item .btn {
    background: #0021c6;
    padding: 0 44px;
    height: 48px;
    border-radius: 10px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details-main .download-list .item .btn:hover {
    background: #ff5807;
    box-shadow: 0 10px 20px 5px rgba(255, 85, 0, 0.2);
}

.product-details-main .download-list .item .btn i {
    margin-right: 10px;
    display: block;
    background: url(../images/icon-download.svg) no-repeat;
    width: 16px;
    height: 16px;
    background-size: 16px;
}

.product-details-main .download-list .item .btn span {
    font-size: max(14px, 1rem);
    color: #fff;
    line-height: 1;
}

.product-details-main .leave-message {
    margin: 60px 0 70px;
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.product-details-main .leave-message .left-block,
.product-details-main .leave-message .right-block {
    padding: 78px;
}

.product-details-main .leave-message .left-block {
    width: 30%;
    background: linear-gradient(190deg, #0432ab, #2355d8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-details-main .leave-message .left-block .tit span {
    font-size: 2rem;
    color: #fff;
    line-height: 1.4;
}

.product-details-main .leave-message .left-block .box p {
    font-size: max(12px, 1rem);
    color: #fff;
    line-height: 1.6;
}

.product-details-main .leave-message .left-block .box .phone1 {
    display: block;
    margin-top: 25px;
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
}

.product-details-main .leave-message .left-block .box .phone2 {
    display: block;
    color: #fff;
    font-size: max(16px, 1.5rem);
    line-height: 1;
}

.product-details-main .leave-message .right-block {
    flex: 1;
    width: 100%;
    background: #fff;
}

.product-details-main .leave-message .right-block .layui-form {
    padding-top: 20px;
}

.aboutbanner {
    margin-top: -160px;
}

.about-banner {
    position: relative;
}

.about-banner .last-end {
    height: 20vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 2;
    margin-top: -20vh;
}

.about-banner .img-video {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    background-color: #000;
}

.about-banner .img-video video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-banner .ab_bnn_mask_c {
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 2;
    margin-top: -100vh;
}

.about-banner .svg-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
}

.about-banner .svg-block svg {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.about-banner .company-block {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    margin-top: -100vh;
    z-index: 3;
}

.about-banner .company-block .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.about-banner .company-block .block-1 {
    position: absolute;
    top: 35%;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-banner .company-block .h3 {
    margin-bottom: 10px;
    font-size: 2.4rem;
    letter-spacing: 10px;
    color: #191919;
}

.about-banner .company-block p {
    font-size: 1.1rem;
    color: #191919;
}

.about-banner .company-block .scroll {
    bottom: 3vw;
}

.about-banner .company-block .scroll i {
    background: #ff5807;
}

.about-banner .company-block .scroll span {
    border-color: #e6e6e6;
}

.about-banner .ab_info {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    min-height: 100vh;
    z-index: 4;
    padding: 10rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner .ab_info .block-1 {
    width: 100%;
    z-index: 1;
    opacity: 0;
}

.about-banner .ab_info .top-block {
    width: 100%;
    display: flex;
}

.about-banner .ab_info .top-block .box {
    width: 50%;
}

.about-banner .ab_info .top-block .box:nth-child(2) {
    padding-left: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner .ab_info .top-block .h3 {
    font-size: 3rem;
    color: #fff;
}

.about-banner .ab_info .top-block .h3 span {
    line-height: 1.4;
    display: block;
}

.about-banner .ab_info .top-block .line {
    margin: 1.3rem 0;
    width: 60px;
    height: 4px;
    background: #ff5807;
}

.about-banner .ab_info .top-block .text {
    margin-bottom: 40px;
}

.about-banner .ab_info .top-block .text p {
    text-align: justify;
    font-size: max(13px, 1rem);
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1rem;
    line-height: 2;
}

.about-banner .ab_info .top-block .text p:first-child {
    display: block;
}

.about-banner .ab_info .top-block .btn-box {
    display: flex;
    justify-content: flex-end;
}

.about-banner .ab_info .top-block .btn-box .icon-svg {
    transform: rotate(90deg);
}

.about-banner .ab_info .top-block .btn-play {
    cursor: pointer;
}

.about-banner .ab_info .top-block .btn-play .icon {
    display: block;
    width: 5.875rem;
    height: 5.875rem;
    margin: 7.5rem auto 0;
    position: relative;
}

.about-banner .ab_info .top-block .btn-play .icon::after,
.about-banner .ab_info .top-block .btn-play .icon::before {
    content: '';
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.about-banner .ab_info .top-block .btn-play .icon::before {
    background-image: url(../images/about/icon-2-2.png);
}

.about-banner .ab_info .top-block .btn-play .icon::after {
    background-image: url(../images/about/icon-2-1.png);
    -webkit-animation: ani-rotate 5s linear infinite;
    animation: ani-rotate 5s linear infinite;
}

.about-banner .ab_info .top-block .btn-play p {
    margin-top: 1.5rem;
    font-size: max(13px, 1rem);
    color: #fff;
}

.about-banner .ab_info .mid-block {
    margin-top: 10rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.about-banner .ab_info .mid-block .item .num span {
    color: #fff;
    font-size: 1.3rem;
}

.about-banner .ab_info .mid-block .item .num span:first-child {
    font-family: 'Rajdhani-Regular-2';
    font-size: 5rem;
}

.about-banner .ab_info .mid-block .item p {
    line-height: 1;
    color: #fff;
    font-size: max(13px, 1rem);
}

.mask-csosbg {
    position: absolute;
    z-index: 4;
}

.mask-csosbg1.mask-csosbg {
    left: 80%;
    width: 100vw;
    top: 50%;
    bottom: 0;
    background: #fff;
    height: 100vw;
    transform: translate(0%, -50%);
}

.mask-csosbg2.mask-csosbg {
    right: 80%;
    width: 100vw;
    top: 50%;
    bottom: 0;
    background: #fff;
    height: 100vw;
    transform: translate(0%, -50%);
}

.mask-csosbg3.mask-csosbg {
    left: 50%;
    width: 100vw;
    top: 70%;
    background: #fff;
    height: 100vw;
    transform: translate(-50%, 0);
}

.mask-csosbg4.mask-csosbg {
    left: 0%;
    width: 100vw;
    bottom: 80%;
    background: #fff;
    height: 100vw;
}

.about-s1 {
    padding: 120px 0 0;
}

.abouts2 {
    padding: 120px 0 0;
}

.abouts3 {
    position: relative;
    margin-top: -120px;
    padding: 120px 0;
}

.about-s4 {
    padding: 120px 0 0;
}

.about-s1 {
    overflow: hidden;
}

.about-s1 .cell-box {
    display: flex;
    justify-content: center;
}

.about-s1 .item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.about-s1 .item>img {
    position: relative;
    width: 100%;
    z-index: 1;
    transition: all .5s ease;
}

@media screen and (min-width: 1024px) {
    .about-s1 .item:hover {
        box-shadow: 0 10px 20px 5px rgba(255, 85, 0, 0.2);
    }
    .about-s1 .item:hover>img {
        transform: scale(1.1);
    }
    .about-s1 .item:hover .info .h,
    .about-s1 .item:hover .info .text {
        transform: translateY(0);
    }
    .about-s1 .item:hover .info .h {
        transform: scale(1);
    }
    .about-s1 .item:hover .info .icon {
        transform: scale(0.5);
        opacity: 0;
    }
    .about-s1 .item:hover .info::after {
        opacity: .9;
    }
    .about-s1 .item:hover .info.info1 {
        opacity: 0;
        visibility: hidden;
    }
    .about-s1 .item:hover .info.info2 {
        opacity: 1;
        visibility: visible;
    }
}

.about-s1 .item .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.about-s1 .item .info.info1 {
    opacity: 1;
    visibility: visible;
}

.about-s1 .item .info.info1 .h {
    display: none;
}

.about-s1 .item .info.info2 {
    opacity: 0;
    visibility: hidden;
}

.about-s1 .item .info::after {
    opacity: 0;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ff5807;
    z-index: -1;
    transition: all .3s ease;
}

.about-s1 .item .info .icon {
    margin-bottom: 2vw;
    background: rgba(255, 255, 255, 0.2);
    padding: .8vw;
    border-radius: 50%;
    transition: all .3s ease;
}

.about-s1 .item .info .icon i {
    background: #fff;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-s1 .item .info .icon i img {
    width: 50%;
}

.about-s1 .item .info .h {
    margin-bottom: 3rem;
    text-align: center;
    transform: translateY(20px) scale(0.5);
    transition: all .3s ease;
}

.about-s1 .item .info .h span {
    font-size: 16px;
    display: block;
    color: #fff;
    line-height: 1.6;
}

.about-s1 .item .info .text {
    text-align: center;
    transform: translateY(20px);
    transition: all .3s ease;
}

.about-s1 .item .info .text .h3 {
    font-size: 1.75rem;
    color: #fff;
    line-height: 1;
}

.about-s1 .item .info .text p {
    text-transform: uppercase;
    margin-top: .5vw;
    font-size: 1.125rem;
    opacity: .2;
    color: #fff;
    line-height: 1;
}

.about-s1 .item.item1 {
    transform: translateX(100%);
}

.about-s1 .item.item2 {
    transform: translateY(100%);
}

.about-s1 .item.item2:hover {
    box-shadow: none;
}

.about-s1 .item.item3 {
    transform: translateX(100%);
}

.about-s1 .item.item4 {
    transform: translateX(-100%);
}

.about-s1 .left-block {
    margin-right: 4vw;
    width: 40%;
}

.about-s1 .left-block .item {
    margin-top: 140px;
}

.about-s1 .right-block {
    margin-top: 10px;
    width: 60%;
}

.about-s1 .right-block .item1 {
    margin-bottom: 4vw;
}

.about-s1 .right-block .item3 {
    margin-top: 45px;
    width: 100%;
    flex: 1;
}

.about-s1 .right-block .item-logo {
    margin-right: 4vw;
    width: 12vw;
    height: 12vw;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 10 / 10;
}

.about-s1 .right-block .item-logo img {
    width: 60%;
}

.about-s1 .right-block .row {
    display: flex;
    justify-content: space-between;
}

.about-s2 {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.about-s2 .cloud-1 {
    width: 100%;
    height: 28.4375vw;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../images/about/cloud-1.png") repeat-x left center;
    background-size: auto 100%;
    -webkit-animation: animate-cloud 60s linear infinite;
    animation: animate-cloud 60s linear infinite;
    z-index: 2;
}

.about-s2 .cloud-2 {
    width: 100%;
    height: 28.4375vw;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/about/cloud-1.png") repeat-x left center;
    background-size: auto 100%;
    -webkit-animation: animate-cloud 100s linear infinite;
    animation: animate-cloud 100s linear infinite;
    z-index: 2;
}

.about-s2 .bg-block {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.about-s2 .bg-block img {
    width: 100%;
}

.about-s2 .cell-boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
}

.about-s2 .c-subheading {
    position: relative;
    z-index: 2;
}

.about-s2 .text {
    position: relative;
    z-index: 2;
    margin-top: 15px;
}

.about-s2 .text p {
    font-size: 24px;
    color: #191919;
    line-height: 1.6;
}

.about-s2 .year-block {
    transform: scale(0.6);
}

.about-s2 .year-block .year {
    position: absolute;
    top: -4vw;
    left: 0;
    color: #f4f4f4;
    font-size: 28.5vw;
    font-family: 'Rajdhani-Bold-4';
    line-height: 1;
    z-index: 1;
    transition: all .3s ease;
    transform: scale(0.5) translateY(50px);
    opacity: 0;
    visibility: hidden;
}

.about-s2 .year-block .year.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.about-s2 .info-block {
    margin-top: 3vw;
    position: relative;
    z-index: 3;
}

.about-s2 .info-block .boxes {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s ease;
    transform: scale(1) translateY(10px);
    opacity: 0;
}

.about-s2 .info-block .boxes.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.about-s2 .info-block .boxes .img {
    border-radius: 14px 0 14px 0;
    overflow: hidden;
    width: 24%;
}

.about-s2 .info-block .boxes .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

.about-s2 .info-block .boxes .info {
    margin-left: 3rem;
}

.about-s2 .info-block .boxes .info p {
    font-size: 2rem;
    color: #191919;
}

.about-s2 .bot-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-s2 .bot-block .item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.about-s2 .bot-block .item .num {
    font-size: 1.6vw;
    font-family: 'Rajdhani-Regular-2';
    transition: all .3s ease;
    transform-origin: center center;
}

.about-s2 .bot-block .item .icon {
    position: relative;
    margin-top: 0;
    border-radius: 50%;
    width: 1.8vw;
    height: 1.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.about-s2 .bot-block .item .icon span {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2vw;
    height: 1.2vw;
    background: rgba(0, 33, 198, 0.2);
    transition: all .3s ease;
}

.about-s2 .bot-block .item .icon span i {
    border-radius: 50%;
    width: .72vw;
    height: .72vw;
    background: #0021c6;
    transition: all .3s ease;
}

.about-s2 .bot-block .item.active .num {
    font-weight: bold;
    margin-bottom: .5vw;
    transform: scale(1.4);
    color: #ff5807;
}

.about-s2 .bot-block .item.active .icon {
    background-color: rgba(255, 88, 7, 0.2);
}

.about-s2 .bot-block .item.active .icon span {
    background-color: #ff5807;
}

.about-s2 .bot-block .item.active .icon span i {
    background: #fff;
}

.about-s2 .bot-block .item.active .case {
    transform: translateY(0);
    visibility: initial;
    opacity: 1;
}

.about-s2 .bot-block .item .case {
    position: absolute;
    bottom: 7.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0.625rem);
    transition: all .5s ease;
}

.about-s2 .bot-block .item .case .img {
    border-radius: .625rem;
    margin-bottom: 1.25rem;
    width: 18.75rem;
    overflow: hidden;
}

.about-s2 .bot-block .item .case .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.about-s2 .bot-block .item .case .info {
    margin-bottom: .9375rem;
    text-align: left;
}

.about-s2 .bot-block .item .case .info p {
    white-space: pre;
    text-align: center;
    font-size: 15px;
}

.about-s2 .bot-block .item1 {
    left: 13vw;
    bottom: 12.5vw;
}

.about-s2 .bot-block .item2 {
    left: 35.4vw;
    bottom: 15vw;
}

.about-s2 .bot-block .item3 {
    left: 46vw;
    bottom: 17.4vw;
}

.about-s2 .bot-block .item4 {
    left: 52.5vw;
    bottom: 20vw;
}

.about-s2 .bot-block .item5 {
    left: 67.8vw;
    bottom: 22.5vw;
}

.about-s2 .bot-block .item6 {
    left: 75vw;
    bottom: 24.5vw;
}

.about-s2 .bot-block .item7 {
    left: 83.5vw;
    bottom: 26.5vw;
}

.about-s3 {
    overflow: hidden;
}

.about-s3 .bg-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-s3 .bg-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-s3 .honor-block {
    margin: 20px 0 0;
}

.about-s3 .honor-block .item ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.about-s3 .honor-block .item ul li {
    padding: 3vw 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-s3 .honor-block .item ul li .img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-s3 .honor-block .item ul li .img img {
    height: 11rem;
    display: block;
    transition: all .5s ease;
    cursor: pointer;
}

.about-s3 .honor-block .item ul li .img:hover img {
    transform: scale(1.1);
}

.about-s3 .honor-block .item ul li .text {
    height: 2em;
    text-align: center;
    margin-top: 1.4vw;
    padding: 0 2rem;
}

.about-s3 .honor-block .item ul li .text p {
    line-height: 1.6;
    font-size: 1vw;
    color: #191919;
}

.about-s3 .honor-block .swiper-dot {
    padding: 10px 0;
    margin-top: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-s3 .honor-block .swiper-dot span {
    margin: 0 .5vw;
    background: #e7eaf0;
    width: .6vw;
    height: .6vw;
    opacity: 1;
    transition: all .3s ease;
}

.about-s3 .honor-block .swiper-dot span.swiper-pagination-bullet-active {
    transform: scale(1.6);
    border: 3px #ff5807 solid;
    background: none;
}

.about-s3 .button {
    position: absolute;
    bottom: 45.5%;
    z-index: 22;
    margin-right: 10px;
    width: clamp(1.5rem, 3.13vw, 3.75rem);
    height: clamp(1.5rem, 3.13vw, 3.75rem);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background: rgba(255, 255, 255, 0.1) url("../images/index/prev-1.png") no-repeat center;
    background-size: .4vw;
    opacity: 1;
    transition: opacity .3s ease;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}

@media screen and (min-width: 1025px) {
    .about-s3 .button:hover {
        opacity: 1;
        background-color: #ff5807;
    }
}

.about-s3 .button-prev {
    left: -5vw;
}

.about-s3 .button-next {
    right: -5vw;
    transform: rotate(180deg);
}

.about-s4 {
    position: relative;
    overflow: hidden;
}

.about-s4 .bg-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all .3s ease;
}

.about-s4 .bg-block .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s ease;
    opacity: 0;
}

.about-s4 .bg-block .img.active {
    opacity: 1;
}

.about-s4 .nav-block {
    margin: 2vw 0 0;
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-s4 .nav-block .item {
    position: relative;
    padding: 0 .8vw 1vw;
    margin: 0 5vw;
    font-size: 1.2vw;
    color: #191919;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
}

.about-s4 .nav-block .item.active {
    color: #ff5807;
}

.about-s4 .nav-block .item.active::after {
    opacity: 1;
}

.about-s4 .nav-block .item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: #ff5807;
    opacity: 0;
    transition: all .3s ease;
}

.about-s4 .mid-block {
    padding: 5rem 0 120px;
}

.about-s4 .mid-block .item {
    display: none;
}

.about-s4 .mid-block .item .case {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-s4 .mid-block .item.active {
    display: block;
}

.about-s4 .mid-block .item .img {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.about-s4 .mid-block .item .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    transition: all .5s ease;
}

.about-s4 .mid-block .item .img:hover img {
    transform: scale(1.1);
}

.about-s4 .mid-block .item .info {
    margin-left: 3vw;
    width: 50%;
}

.about-s4 .mid-block .item .info .box .h3 {
    font-size: 1.6vw;
    color: #191919;
    line-height: 1.4;
}

.about-s4 .mid-block .item .info .box p {
    margin-top: 16px;
    font-size: 1.2vw;
    color: #191919;
    line-height: 1;
}

.about-s4 .mid-block .item .info .box a {
    margin-top: 6rem;
    display: flex;
    align-items: center;
}

.about-s4 .mid-block .item .info .box a .icon {
    margin-right: 10px;
    background: url(../images/about/icon-map.svg) no-repeat;
    width: 1.3vw;
    height: 1.3vw;
    background-size: 1.3vw;
    display: flex;
}

.about-s4 .mid-block .item .info .box a span {
    font-size: 1.2vw;
    color: #191919;
    line-height: 1;
    transition: all .3s ease;
}

.about-s4 .mid-block .item .info .box a:hover span {
    color: #ff5807;
}

.s-banner {
    position: relative;
}

.s-banner .img-box {
    overflow: hidden;
}

.s-banner img {
    display: block;
    width: 100%;
}

.s-banner .txt-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.s-banner .en {
    height: max(50px, 4.375rem);
    position: relative;
}

.s-banner .en:after {
    content: '';
    width: 5px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.s-banner span {
    display: block;
    font-size: 2.5rem;
    color: #fff;
    font-family: 'Rajdhani-SemiBold';
    text-transform: uppercase;
    opacity: 0.5;
    line-height: .8;
    padding-left: 1.5rem;
    position: relative;
}

.s-banner .tit {
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: .625rem;
    margin-top: 1rem;
}

.s-banner .form {
    position: relative;
    width: 80%;
    max-width: 45rem;
    margin: 0 auto;
    background-color: #fff;
    height: 5rem;
    border-radius: .625rem;
    overflow: hidden;
}

.s-banner .form input {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0 1.875rem;
    font-size: max(14px, 1.125rem);
    color: #333;
}

.s-banner .form button {
    position: absolute;
    right: 0;
    border: 0;
    top: 0;
    width: 5rem;
    height: 5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
}

.s-banner .form button .icon-svg {
    fill: #ff5807;
    width: 30px;
    height: 30px;
}

.other-s3 {
    padding: 7.5rem 0;
}

.other-s3 .tips {
    text-align: center;
    font-size: 2rem;
    color: #191919;
}

.other-s3 .tips span {
    color: #ff5807;
}

.other-s3 .items {
    margin: 1.5rem 0 2.5rem;
}

.other-s3 .item {
    position: relative;
}

.other-s3 .item:before,
.other-s3 .item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.other-s3 .item:before {
    background-color: #f2f2f2;
}

.other-s3 .item:after {
    background-color: #ff5807;
    transform: scaleX(0);
    transform-origin: left top;
}

.other-s3 .item a {
    position: relative;
    display: block;
    padding: 2.5rem 0;
}

.other-s3 .item .icon-svg {
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    top: 2.5rem;
    right: 0;
    display: block;
    fill: #808080;
    transition: all .3s ease;
}

.other-s3 .item span,
.other-s3 .item p {
    display: block;
    font-size: max(14px, 1rem);
    color: #808080;
}

.other-s3 .item .tit {
    margin: 1.5rem 0;
    font-size: max(16px, 1.25rem);
    color: #353844;
    transition: color .3s ease;
}

@media (any-hover: hover) {
    .other-s3 .item:hover:after {
        transform: scaleX(1);
        transition: transform .5s linear;
    }
    .other-s3 .item:hover .icon-svg {
        fill: #ff5807;
    }
    .other-s3 .item:hover .tit {
        color: #ff5807;
    }
}

@-webkit-keyframes dot {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    to {
        opacity: 0;
        transform: translateY(80px);
    }
}

@keyframes dot {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    to {
        opacity: 0;
        transform: translateY(80px);
    }
}

.details-banner_tip {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 300px;
    z-index: 10;
    transition: opacity 0.25s cubic-bezier(0.77, 0, 0.175, 1);
    display: none;
    align-items: center;
    justify-content: center;
}

.details-banner_tip .details-banner_tip--dot {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #fff;
    -webkit-animation: dot 2s .4s infinite;
    animation: dot 2s .4s infinite;
}

.s-banner .radiomod input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 4px #fff solid;
    background: #f4f4f4;
    border-radius: 50%;
}

.s-banner .radiomod input[type="radio"]:checked {
    color: #ffffff;
    background: #ff5807;
    border: 4px #fff solid;
}

.s-banner .radiomod {
    justify-content: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.s-banner .radiomod .item {
    display: flex;
    align-items: center;
}

.s-banner .radiomod input {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    cursor: pointer;
    border: 3px #fff solid;
}

.s-banner .radiomod label {
    font-size: 18px;
    color: #333;
    margin-right: 40px;
    cursor: pointer;
    font-size: 15px;
}

.layui-form-radio:hover>*,
.layui-form-radioed,
.layui-form-radioed>i {
    color: #ff5807;
}

.bottom-center .amap-info-sharp {
    bottom: 1px;
}

.tc-share {
    padding: 40px 40px 20px;
}

.tc-share .weixin-img {
    width: 100%;
}

.tc-share .weixin-img canvas {
    width: 100% !important;
}

.tc-share .weixin-text {
    margin: 10px 0;
    text-align: center;
    font-size: 14px;
    color: #000;
    line-height: 1;
}

.layui-layer-setwin .layui-layer-close2:hover {
    background-color: #ff5807;
}

.pc-mod {
    display: block;
}

.m-mod {
    display: none;
}

.pc-mods {
    display: block;
}

.m-mods {
    display: none;
}

@media screen and (max-width: 1800px) {
    html {
        font-size: 15px;
    }
}

@media screen and (max-width: 1720px) {
    html {
        font-size: 12px;
    }
    .index-s4 .cell {
        padding: 2% 0;
    }
}

@media screen and (max-width: 1441px) {
    html {
        font-size: 13px;
    }
}

@media screen and (max-width: 1367px) {
    html {
        font-size: 12px;
    }
}

@media screen and (max-width: 1281px) {
    html {
        font-size: 10px;
    }
}

@media screen and (max-width: 1025px) {
    html {
        font-size: 10px;
    }
    .wrapper {
        width: 90%;
    }
    .pc-mods {
        display: none;
    }
    .m-mods {
        display: block;
    }
    .m-about .block .block-2 .items .item p {
        font-size: 1rem;
        height: 3em;
        line-height: 1.6;
    }
    .m-about .block .block-2 .items .item span {
        display: flex;
        align-items: baseline;
    }
    .m-about .block .block-2 .items .item span strong {
        margin-left: 5px;
        position: relative;
        bottom: 2px;
    }
    .c-subnav {
        display: none;
    }
    .aboutbanner {
        margin-top: 0;
    }
    .n-about-s3 .r-box {
        display: none;
    }
    .index-s1 .pc-mod {
        display: none;
    }
    .index-s1 .m-mod {
        display: block;
    }
    .index-s1 .sw-btn {
        display: none;
    }
    .index-s1 .num {
        display: block;
    }
    .fixed-rpops .main {
        padding: 40px 20px 20px;
    }
}

@media screen and (max-width: 769px) {
    .pc-mod {
        display: none;
    }
    .m-mod {
        display: block;
    }
    .n-about-s1 .wrapper {
        padding: 3.125rem 0;
    }
    .n-about-s1 .block {
        display: block;
    }
    .n-about-s1 .block .img-box {
        width: 100%;
        height: 50vw;
    }
    .n-about-s1 .block .txt-box {
        width: 100%;
        padding: 2rem 0 0;
    }
    .n-about-s1 .block h3 {
        font-size: 16px;
    }
    .n-about-s1 .block p {
        font-size: 14px;
    }
    .n-about-s1 .block a {
        margin-top: 2rem;
        font-size: 14px;
    }
    .n-about-s4 {
        padding: 3.125rem 0;
    }
    .n-about-s4 .item {
        display: block;
    }
    .n-about-s4 .item .img-box {
        width: 100%;
        height: 50vw;
    }
    .n-about-s4 .item .txt-box {
        width: 100%;
        padding: 2rem 0 0;
    }
    .n-about-s4 .item .pic {
        width: 40px;
        height: 40px;
    }
    .n-about-s4 .item .tit {
        font-size: 16px;
        margin-top: 1rem;
    }
    .n-about-s4 .item .para {
        font-size: 14px;
    }
    .n-about-s2 {
        padding: 3.125rem 0;
    }
    .n-about-s2 .item {
        width: 100%;
        padding: 2rem;
    }
    .n-about-s2 .item .img-box {
        height: 30vw;
    }
    .n-about-s2 .item img {
        max-width: 50vw;
    }
    .n-about-s2 .item .tit {
        margin-top: 1rem;
    }
    .n-about-s3 {
        padding: 3.125rem 0;
    }
    .n-about-s3 .line {
        display: none;
    }
    .n-about-s3 .txt-box {
        position: static;
        width: 100%;
        font-size: 16px;
    }
    .n-about-s3 .items {
        padding: 0;
        margin-top: 4rem;
    }
    .n-about-s3 .item {
        margin-top: 4rem;
    }
    .n-about-s3 .item:last-of-type .box:before {
        display: none;
    }
    .n-about-s3 .item .box {
        width: 100%;
        padding-left: 4rem;
    }
    .n-about-s3 .item .box:before {
        content: '';
        width: 1px;
        position: absolute;
        top: 18px;
        bottom: -58px;
        left: 11px;
        background-color: #ff5807;
    }
    .n-about-s3 .item .year:before {
        left: 0;
        background-image: url("../images/nimg/icon-2-2.png");
    }
}

@media screen and (max-width: 1600px) {
    .layui-form-select dl {
        top: 52px;
    }
    .applyjob-tc {
        padding: 30px;
    }
    .layui-form-selectup dl {
        top: auto;
        bottom: 52px;
    }
    .layui-upload-drag {
        font-size: 1rem;
    }
    /* .c-pd {
        padding-top: 80px;
    } */
    .c-mt {
        margin-top: 90px;
    }
    .c-banner h3,
    .solution-s7 h3,
    .solution-s15 h3 {
        font-size: 32px;
    }
    .c-banner p {
        font-size: 16px;
    }
    .inner-tit h3 {
        font-size: 30px;
    }
    .index-s4 .flex {
        padding: 0;
    }
    .inner-tit.center:after {
        margin-top: 15px;
    }
    .inner-tit p {
        font-size: 15px;
        margin-top: 15px;
    }
    .about-chairman-s1 .para {
        font-size: 16px;
        line-height: 2;
    }
    .about-chairman-s1 .tip span {
        font-size: 17px;
    }
    .about-history-s1 .item .num {
        font-size: 180px;
    }
    .about-history-s1 .item h3 {
        font-size: 26px;
    }
    .about-history-s1 .item .year {
        font-size: 16px;
    }
    .about-history-s1 .item .para {
        font-size: 16px;
        line-height: 2;
    }
    .about-history-s1 .line-box .line {
        font-size: 14px;
        line-height: 34px;
        padding-right: 40px;
    }
    .about-history-s1 .line-box .line.active {
        font-size: 20px;
        padding-right: 60px;
    }
    .about-history-s1 .item .block {
        margin-top: -60px;
    }
    .about-honor-s1 .item h3 {
        font-size: 18px;
    }
    .about-intro-s1 .para {
        font-size: 16px;
    }
    .contact-s1 .left-box h3 {
        font-size: 24px;
    }
    .contact-s1 .left-box .info span {
        font-size: 16px;
        width: 48%;
        min-width: auto;
    }
    .contact-s1 .ewm {
        width: 140px;
    }
    .contact-s1 .ewm p {
        font-size: 15px;
    }
    .contact-s2 .map-cont {
        width: 740px;
    }
    .contact-s2 .map-cont .img-box {
        width: 240px;
        height: 13.125rem;
    }
    .contact-s2 .map-cont .txt {
        font-size: 14px;
        line-height: 24px;
        width: 360px;
    }
    .contact-s2 .map-cont .ewm {
        width: 140px;
    }
    .contact-s2 .tab-tit .item h3 {
        font-size: 24px;
    }
    .contact-s2 .tab-tit .item p {
        font-size: 14px;
    }
    .news-detail-s1 .tit-box h3 {
        font-size: 30px;
    }
    .news-detail-s1 .tit-box span {
        font-size: 15px;
    }
    .news-detail-s1 .other h4 {
        font-size: 20px;
    }
    .news-detail-s1 .other a p {
        font-size: 15px;
    }
    .news-detail-s1 .other a div {
        font-size: 18px;
    }
    .dangzhibu-list-s1 .item h3 {
        font-size: 20px;
        margin: 10px 0;
    }
    .dangzhibu-list-s1 .item .date {
        font-size: 15px;
    }
    .dangzhibu-list-s1 .item p {
        font-size: 15px;
        line-height: 24px;
        height: 48px;
    }
    .dangzhibu-list-s1 .item span {
        width: 110px;
        line-height: 36px;
        font-size: 15px;
    }
    .news-list-s1 .item .hide .date,
    .news-list-s1 .item .show .date {
        font-size: 15px;
    }
    .news-list-s1 .item .hide h3 {
        font-size: 18px;
    }
    .news-list-s1 .item .hide span {
        width: 110px;
        line-height: 36px;
        font-size: 15px;
    }
    .news-list-s1 .item .show span {
        font-size: 15px;
    }
    .recruit-idea-s1 .para {
        font-size: 16px;
    }
    .recruit-idea-s1 a,
    .about-page-s1 a,
    .about-page-s4 a {
        width: 120px;
        line-height: 40px;
        font-size: 15px;
    }
    .recruit-idea-s3 .item h3 {
        font-size: 24px;
    }
    .recruit-idea-s3 .item p {
        font-size: 16px;
    }
    .recruit-idea-s4 .item h3 {
        font-size: 18px;
    }
    .recruit-idea-s5 .left-box .item h3 {
        font-size: 18px;
    }
    .recruit-idea-s6 h3 {
        font-size: 36px;
    }
    .recruit-idea-s6 p {
        font-size: 15px;
    }
    .recruit-idea-s6 a {
        width: 120px;
        font-size: 15px;
        line-height: 44px;
    }
    .recruit-list-s1 .cont input {
        font-size: 15px;
    }
    .recruit-list-s1 .cont ul li {
        font-size: 15px;
    }
    .recruit-list-s2 .head-box span {
        line-height: 70px;
    }
    .recruit-list-s2 .item .show span {
        line-height: 70px;
    }
    .default-btn span,
    .blue-btn span,
    .orange-btn span {
        font-size: max(12px, 1rem);
    }
    .btn-select dd {
        font-size: 14px;
    }
    .btn-select .layui-select-title input {
        font-size: max(12px, 1rem);
    }
    .c-subheading {
        padding-bottom: 16px;
        font-size: 36px;
    }
    .index-s2 .about-box .h3 {
        font-size: 46px;
    }
    .index-s2 .about-box .h4 {
        font-size: 22px;
    }
    .index-s2 .about-box .text {
        margin-top: 12px;
    }
    .index-s2 .about-box .text p {
        font-size: 14px;
    }
    .index-s2 .data-box .item .num .text {
        font-size: 16px;
    }
    .index-s2 .data-box .item p {
        font-size: 16px;
    }
    .index-s3 .tab-tit .item .btn {
        font-size: 12px;
    }
    .index-s3 .tab-tit .item:before {
        height: 100px;
    }
    .index-s3 .tab-tit .item.active:before {
        height: 200px;
    }
    .index-s3 .tab-tit .item .icon {
        transform: scale(0.8);
    }
    .index-s3 .tab-tit .item .hide .icon {
        transform-origin: center bottom;
    }
    .index-s3 .tab-tit .item h3 {
        font-size: 18px;
    }
    .index-s3 .tab-tit .item p {
        font-size: 15px;
    }
    .index-s4 .cont-box .item i {
        width: 80px;
        height: 3.125rem;
    }
    .index-s4 .cont-box .item h3 {
        font-size: 18px;
    }
    .index-s4 .cont-box .item p {
        font-size: 15px;
    }
    .index-s6 .mid-block .items .h3 {
        font-size: 18px;
    }
    .index-s6 .mid-block .items .show,
    .index-s6 .mid-block .items .hide {
        padding: 24px;
    }
    .index-s6 .bot-block .swierp-info>div {
        width: 40px;
        height: 40px;
    }
    .index-s6 .bot-block .swierp-info>div .icon-svg {
        width: 12px;
        height: 12px;
    }
    .website-box {
        padding: 40px 0 100px;
    }
    .website-box dl {
        min-height: 158px;
    }
    .website-box dl dt .h3 {
        font-size: 28px;
    }
    .website-box dl dd a {
        width: 180px;
        height: 48px;
        font-size: 16px;
        padding: 0 20px;
        background-position: right 20px center;
    }
    .read-main .nav-list a {
        width: 280px;
    }
    .read-main .nav-list a span {
        font-size: 14px;
    }
    .read-main .right-box .content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .read-main .right-box .content h3 {
        font-size: 26px;
        margin-bottom: 22px;
        padding-bottom: 22px;
    }
    .read-main .left-box,
    .read-main .right-box {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .contact-main .contact-s1 {
        padding: 90px 0 0;
    }
    .contact-main .contact-s1 .bot-box dl dd .text {
        padding: 0 30px;
    }
    .contact-main .contact-s1 .bot-box dl dt .h3 {
        font-size: 28px;
        padding: 38px 30px 18px;
    }
    .contact-main .contact-s1 .bot-box dl dd {
        padding: 24px 0;
    }
    .contact-main .contact-s1 .bot-box dl dd .text span {
        font-size: 16px;
    }
    .contact-main .contact-s2 {
        padding: 90px 0;
    }
    .contact-main .contact-s2 .form-box {
        padding: 40px;
    }
    .layui-form-style1 .code {
        height: 32px;
        top: 18px;
        width: 100px;
    }
    .layui-form-style1 input,
    .layui-form-style1 .text,
    .layui-form-style1 button {
        height: 3.125rem;
        font-size: 1rem;
    }
    .layui-form-style2 .code {
        height: 32px;
        top: 18px;
        width: 100px;
    }
    .layui-form-style2 input,
    .layui-form-style2 .text,
    .layui-form-style2 button {
        height: 3.125rem;
        line-height: 3.125rem;
        font-size: 14px;
    }
    .layui-custom-title .layui-layer-title {
        padding: 0 30px;
        font-size: 1.625rem;
    }
    .layui-custom-title .layui-layer-setwin {
        right: 30px;
    }
    .layui-custom-title .layui-layer-setwin span {
        width: 28px;
        height: 28px;
    }
    .layui-custom-title .layui-layer-setwin span::before {
        font-size: 14px;
    }
    .recruitment-main {
        margin-bottom: 90px;
    }
    .recruitment-main .top-box .layui-btn {
        width: 100px;
        height: 80%;
        top: 4px;
        right: 4px;
    }
    .recruitment-main .job-list dl dt {
        padding: 28px;
    }
    .recruitment-main .job-list dl dt .item span {
        font-size: 14px;
    }
    .recruitment-main .job-list dl dt .item .h4 {
        font-size: 26px;
    }
    .recruitment-main .job-list dl dt .item .icon {
        transform: scale(0.8);
    }
    .recruitment-main .job-list dl dd {
        padding: 0 70px;
    }
    .recruitment-main .job-list dl dd .dd-top {
        padding: 40px 0;
    }
    .recruitment-main .job-list dl dd .dd-top .case .h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .recruitment-main .job-list dl dd .dd-top .case p {
        font-size: 14px;
    }
    .recruitment-main .job-list dl dd .dd-bot {
        padding: 3.125rem 0;
    }
    .recruitment-main .job-list dl dd .dd-bot .btn {
        height: 3.125rem;
        width: 180px;
        font-size: 16px;
    }
    .join-banner .join-search {
        height: 3.125rem;
    }
    .join-banner .join-search a span,
    .join-banner .join-search input {
        font-size: 14px;
    }
    .join-banner .mid-block .h2 {
        font-size: 60px;
    }
    .join-banner .join-search a .icon-svg {
        width: 12px;
        height: 12px;
    }
    .product-main {
        padding: 0 0 90px;
    }
    .product-s1 {
        padding: 90px 0 0;
    }
    .about-s1 {
        padding: 90px 0 0;
    }
    .abouts2 {
        padding: 90px 0 0;
    }
    .abouts3 {
        margin-top: -90px;
        padding: 90px 0;
    }
    .about-s4 {
        padding: 90px 0 0;
    }
    .joinus-main .join-s1,
    .joinus-main .join-s2,
    .joinus-main .join-s3 {
        padding: 90px 0 0;
    }
    .joinus-main .join-s4 {
        padding: 90px 0;
    }
    .joinus-main .team-style .team-box .item .swiper-container {
        height: 43.125rem;
    }
    .joinus-main .team-style .team-box .item .info {
        height: 80px;
        padding: 0 20px;
    }
    .joinus-main .team-style .team-box .item .info p {
        font-size: 24px;
    }
    .news-main {
        padding: 70px 0 90px;
    }
    .news-main .news-swiper .item .info {
        padding: 30px 44px;
    }
    .news-main .news-swiper .item .info .h3 {
        font-size: 26px;
    }
    .news-main .news-swiper .item .info p {
        font-size: 14px;
    }
    .news-main .news-list {
        grid-gap: 38px;
        margin: 38px 0;
    }
    .news-main .news-list .items .info {
        padding: 28px;
    }
    .news-main .news-list .items .info .time {
        margin-bottom: 14px;
    }
    .news-main .news-list .items .info .h3 {
        font-size: 18px;
    }
    .news-details-main .left-block,
    .news-details-main .right-block {
        padding-top: 60px;
        padding-bottom: 90px;
    }
    .news-details-main .article-preview {
        padding: 30px;
    }
    .news-details-main .article-preview a {
        font-size: 16px;
    }
    .news-details-main .right-block .hot-news .list li a {
        font-size: 16px;
    }
    .news-details-main .left-block {
        padding-right: 40px;
    }
    .news-details-main .right-block {
        padding: 60px 40px;
    }
    .news-details-main .left-block .h2 {
        font-size: 38px;
    }
    .news-details-main .left-block .content-main p {
        font-size: 16px;
    }
    .news-details-main .left-block .share-mod .box {
        padding: 0 27px;
    }
    .news-details-main .left-block .share-mod .box .icon {
        width: 38px;
        height: 38px;
    }
    .news-details-main .left-block .share-mod .box .icon img {
        width: 20px;
    }
    .product-center-main .h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .product-center-main .product-list {
        margin-bottom: 90px;
        grid-gap: 38px;
    }
    .product-center-main .product-list li .info {
        padding: 30px;
    }
    .product-center-main .product-list li .info p {
        font-size: 18px;
    }
    .product-details-main .top-block .h2 {
        font-size: 40px;
    }
    .product-details-main .top-block .h3 {
        font-size: 26px;
        margin-top: 24px;
        padding-bottom: 12px;
    }
    .product-details-main .top-block .text {
        margin-top: 12px;
    }
    .product-details-main .top-block .text p {
        padding-left: 15px;
        font-size: 16px;
    }
    .product-details-main .top-block .btn {
        margin-top: 36px;
    }
    .product-details-main th,
    .product-details-main td {
        font-size: 16px;
    }
    .product-details-main td {
        padding: 10px 28px;
    }
    .product-details-main .tab-table .navbox .item {
        font-size: 20px;
    }
    .product-details-main .tab-table .navbox .item::after {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #ff5807;
    }
    .product-details-main .download-list .item {
        height: 90px;
        padding: 0 30px;
    }
    .product-details-main .download-list .item .box span {
        font-size: 20px;
        margin-left: 40px;
    }
    .product-details-main .download-list .item .box i {
        width: 40px;
        height: 40px;
        background-size: 40px;
    }
    .product-details-main .download-list .item .btn {
        padding: 0 34px;
    }
    .product-details-main .download-list .item .btn span {
        font-size: 14px;
    }
    .product-details-main .details-block .cell-box {
        padding: 40px 90px;
    }
    .product-details-main .leave-message .left-block,
    .product-details-main .leave-message .right-block {
        padding: 58px;
    }
    .product-details-main .leave-message .left-block .tit span {
        font-size: 26px;
    }
    .product-details-main .leave-message .left-block .box p {
        font-size: 14px;
    }
    .product-details-main .leave-message .left-block .box .phone1 {
        font-size: 36px;
        margin-top: 15px;
    }
    .product-details-main .leave-message .left-block .box .phone2 {
        font-size: 18px;
    }
    .about-s2 .text p {
        font-size: 18px;
    }
}

@media screen and (max-width: 1367px) {
    .layui-form-select dl {
        top: 42px;
    }
    .layui-form-selectup dl {
        top: auto;
        bottom: 42px;
    }
    .c-subheading,
    .c-banner h3 {
        font-size: 28px;
    }
    .c-mt {
        margin-top: 70px;
    }
    .inner-tit h3 {
        font-size: 26px;
    }
    .inner-tit:after {
        margin-top: 15px;
    }
    .inner-tit p {
        font-size: 14px;
        line-height: 24px;
    }
    .about-chairman-s1 .para {
        font-size: 15px;
    }
    .about-chairman-s1 .tip span {
        font-size: 16px;
    }
    .about-history-s1 .item .num {
        font-size: 13.125rem;
    }
    .about-history-s1 .item h3 {
        font-size: 22px;
    }
    .about-history-s1 .item .year {
        font-size: 15px;
    }
    .about-history-s1 .item .year:after {
        margin: 15px 0;
        height: 2px;
    }
    .about-history-s1 .item .para {
        font-size: 15px;
    }
    .about-history-s1 .item .block {
        margin-top: -3.125rem;
    }
    .about-honor-s1 .item h3 {
        font-size: 16px;
    }
    .about-intro-s1 .para {
        font-size: 15px;
    }
    .about-banner .ab_info .top-block .text p {
        font-size: 14px;
    }
    .contact-s1 .left-box h3 {
        font-size: 20px;
    }
    .contact-s1 .left-box .info span {
        font-size: 15px;
    }
    .contact-s1 .ewm {
        width: 120px;
    }
    .contact-s2 .tab-tit .item h3 {
        font-size: 20px;
    }
    .news-detail-s1 .tit-box h3 {
        font-size: 24px;
    }
    .news-detail-s1 .tit-box span {
        font-size: 14px;
    }
    .comm-share {
        margin-left: -60px;
    }
    .dangzhibu-list-s1 .item .img-box {
        width: 270px;
    }
    .dangzhibu-list-s1 .item .txt-box {
        width: calc(100% - 270px);
    }
    .dangzhibu-list-s1 .item .date {
        font-size: 14px;
    }
    .dangzhibu-list-s1 .item h3 {
        font-size: 18px;
    }
    .dangzhibu-list-s1 .item p {
        font-size: 14px;
    }
    .news-list-s1 .form form {
        height: 3.125rem;
    }
    .news-list-s1 .form button {
        width: 3.125rem;
        height: 3.125rem;
    }
    .news-list-s1 .item .hide .date,
    .news-list-s1 .item .show .date {
        font-size: 14px;
    }
    .news-list-s1 .item .show span {
        font-size: 14px;
    }
    .recruit-idea-s1 .para {
        font-size: 15px;
    }
    .recruit-idea-s3 .item h3 {
        font-size: 20px;
    }
    .recruit-idea-s3 .item p {
        font-size: 15px;
    }
    .recruit-idea-s4 .item:before {
        width: 40px;
        height: 40px;
    }
    .recruit-idea-s4 .item h3 {
        font-size: 16px;
    }
    .recruit-idea-s5 .left-box .item:before {
        width: 48px;
        height: 48px;
    }
    .recruit-idea-s5 .left-box .item h3 {
        font-size: 16px;
    }
    .recruit-idea-s6 h3 {
        font-size: 30px;
    }
    .recruit-idea-s6 p {
        font-size: 14px;
    }
    .recruit-list-s1 .cont input {
        font-size: 14px;
        height: 3.125rem;
    }
    .recruit-list-s1 .cont a {
        height: 3.125rem;
    }
    .recruit-list-s2 .head-box span {
        line-height: 60px;
    }
    .recruit-list-s2 .item .show span {
        line-height: 60px;
    }
    a.index-more {
        font-size: 15px;
        line-height: 40px;
        width: 120px;
    }
    .index-tit .en {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .index-tit .en::before {
        width: 20px;
        height: 20px;
    }
    .index-tit h3 {
        font-size: 26px;
    }
    .index-tit p {
        font-size: 15px;
    }
    .website-box dl {
        padding: 3.125rem 0;
    }
    .website-box dl dt .h3 {
        font-size: 22px;
    }
    .website-box dl dd a {
        width: 160px;
        height: 44px;
        margin: 9px;
        font-size: 14px;
    }
    .read-main .nav-list a {
        width: 23.125rem;
    }
    .read-main .right-box {
        padding-left: 40px;
    }
    .contact-main .contact-s1 {
        padding: 70px 0 0;
    }
    .contact-main .contact-s2 {
        padding: 70px 0;
    }
    .join-banner .mid-block .h2 {
        font-size: 48px;
    }
    .fixed-right .layui-textarea {
        font-size: 14px;
        min-height: 3.125rem;
        height: 60px;
    }
    .layui-form-style1 input,
    .layui-form-style1 .text,
    .layui-form-style1 button {
        height: 40px;
        font-size: 14px;
    }
    .layui-form-style1 .code {
        top: 13px;
    }
    .fixed-right .box .h .tohead {
        padding: 0 20px;
    }
    .fixed-right .box .h .h-w {
        padding: 20px;
    }
    .fixed-right .box .h .h-w .z-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 1025px) {
    /* .c-pd {
        padding-top: 60px;
    } */
    .c-nav {
        padding: 0 5%;
    }
    .c-mt {
        margin-top: 60px;
    }
    .c-nav a.link {
        font-size: 14px;
    }
    .c-banner {
        height: 40vh;
    }
    .c-banner img {
        height: 100%;
    }
    .index-eleNav {
        display: none;
    }
    .index-s1 {
        margin-top: 60px;
    }
    .index-s1 h3 {
        font-size: 4.6rem;
    }
    .index-s1 p {
        font-size: 1.8rem;
    }
    .index-s1 .num span {
        font-size: 3.2rem;
    }
    .index-s1 .num span.swiper-pagination-current {
        font-size: 6rem;
    }
    .index-s1 h3:after {
        left: 18vw;
    }
    .index-s2 .data-box .item .num .count {
        font-size: 48px;
    }
    .about-history-s1 .line-box {
        display: none;
    }
    .contact-s2 .map {
        height: 500px;
    }
    .comm-share {
        display: none;
    }
    .index-main .section {
        height: 100vh;
    }
    .index-main .section.index-s1 {
        height: calc(100vh - 60px);
    }
    .index-s2 .about-box .btn {
        margin-top: 3rem;
    }
    .index-s2 .bg-box .img {
        display: none;
    }
    .index-s2 .bg-box svg {
        stroke-dasharray: none;
        stroke-dashoffset: none;
    }
    .index-s2 .bg-box .logo-x {
        opacity: 1;
    }
    .index-s6 .mid-block .swiper-slide .items .show,
    .index-s6 .mid-block .swiper-slide .items .hide {
        padding: 20px;
    }
    .index-s6 .mid-block .swiper-slide .items .h3 {
        font-size: 2rem;
    }
    .index-s2 .cont-box,
    .index-s3 .cont-box,
    .index-s4 .cont-box,
    .index-s5 .cont-box,
    .index-s6 .cont-box,
    .index-s7 .cont-box {
        padding: 80px 0;
    }
    .contact-main .contact-s1 {
        padding: 60px 0 0;
    }
    .contact-main .contact-s2 {
        padding: 60px 0;
    }
    .product-center-main .h3 {
        font-size: 24px;
    }
    .product-center-main .product-list {
        margin-bottom: 70px;
        grid-gap: 18px;
    }
    .product-center-main .h3 {
        font-size: 24px;
    }
    .product-center-main .product-list li .info {
        padding: 16px;
    }
    .news-main .news-swiper .item .info {
        padding: 20px 34px;
    }
    .news-main .news-list {
        grid-gap: 28px;
        margin: 28px 0;
    }
    .news-main .news-swiper .item .info .h3 {
        font-size: 24px;
    }
    .news-main .news-swiper .item .info p {
        height: 5em;
        overflow: hidden;
    }
    .news-main .news-swiper .swiper-dot {
        padding: 0 34px 10px;
    }
    .news-main .news-list .items .info {
        padding: 20px;
    }
    .news-main .news-list .items .info .h3 {
        font-size: 16px;
    }
    .recruitment-main .job-list dl dt {
        padding: 24px;
    }
    .recruitment-main .job-list dl dt .item .h4 {
        font-size: 22px;
    }
    .recruitment-main .job-list dl dd {
        padding: 0 5rem;
    }
    .recruitment-main .job-list dl dd .dd-top {
        padding: 4rem 0;
    }
    .recruitment-main .job-list dl dd .dd-bot {
        padding: 4rem 0;
    }
    .recruitment-main .job-list dl dd .dd-bot .btn {
        height: 40px;
        width: 13.125rem;
        font-size: 14px;
    }
    .join-banner .mid-block .h2 {
        font-size: 38px;
    }
    .product-main {
        padding: 0 0 60px;
    }
    .product-s1 {
        padding: 60px 0 0;
    }
    .about-s1 {
        padding: 60px 0 0;
    }
    .abouts2 {
        padding: 60px 0;
    }
    .abouts3 {
        margin-top: 0;
        padding: 60px 0;
    }
    .about-s4 {
        padding: 60px 0 0;
    }
    .joinus-main .join-s1,
    .joinus-main .join-s2,
    .joinus-main .join-s3 {
        padding: 60px 0 0;
    }
    .joinus-main .join-s4 {
        padding: 60px 0;
    }
    .joinus-main .joinus-m1 .talent-concept .item {
        aspect-ratio: 16 / 16;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .joinus-main .joinus-m1 .talent-concept .item .box {
        width: 66vw;
        height: 66vw;
    }
    .joinus-main .joinus-m1 .talent-concept .item .box img {
        width: 25%;
        height: auto;
    }
    .joinus-main .joinus-m1 .talent-concept .item .box span {
        line-height: 1;
        font-size: 16px;
        margin-top: 16px;
    }
    .joinus-main .joinus-m1 .talent-concept .item .box p {
        width: 70%;
        margin: 12px auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }
    .joinus-main .joinus-m1 .swiper-dot {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .joinus-main .joinus-m1 .swiper-dot .swiper-pagination-bullet-active {
        background: #ff5807;
    }
    .joinus-main .joinus-m2 .top-block {
        width: 100%;
        height: auto;
    }
    .joinus-main .joinus-m2 .top-block>img {
        width: 100%;
        opacity: 0;
    }
    .joinus-main .joinus-m2 .top-block .item {
        height: 100%;
        position: relative;
        opacity: 1;
        transition: none;
    }
    .joinus-main .joinus-m2 .top-block .item .name {
        font-size: 16px;
        padding: 20px;
        transform: translateY(0);
        opacity: 1;
    }
    .joinus-main .joinus-m2 .top-block .num {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
        color: #fff;
        z-index: 4;
    }
    .joinus-main .joinus-m2 .mid-block .item {
        top: 0 !important;
    }
    .joinus-main .joinus-m2 .mid-block .item .img {
        width: 5rem;
        height: 5rem;
    }
    .joinus-main .joinus-m2 .mid-block .item .img img {
        width: 50%;
    }
    .joinus-main .joinus-m2 .mid-block .item p {
        font-size: 14px;
    }
    .about-banner {
        display: none;
    }
    .m-about .block .block-1 {
        padding: 5rem 0;
    }
    .m-about .block .block-1 .img-box {
        width: 30rem;
        margin: 0 auto;
    }
    .m-about .block .block-1 .img-box img {
        width: 100%;
    }
    .m-about .block .block-1 .label {
        margin-top: 4rem;
        text-align: center;
        font-size: 2rem;
        color: #191919;
    }
    .m-about .block .block-1 p {
        margin-top: 1rem;
        text-align: center;
        font-size: 1.4rem;
        color: #191919;
    }
    .m-about .block .block-2 {
        padding: 5rem 0;
        position: static;
        transform: none;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../video/video1-bg.jpg);
    }
    .m-about .block .block-2 .label {
        font-size: 2rem;
        color: #fff;
    }
    .m-about .block .block-2 .para {
        margin-top: 1.5rem;
        font-size: 1.4rem;
        color: #fff;
    }
    .m-about .block .block-2 .para p {
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 1rem;
    }
    .m-about .block .block-2 .items {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .m-about .block .block-2 .items .item span {
        color: #fff;
        font-size: 4rem;
    }
    .m-about .block .block-2 .items .item span strong {
        font-style: normal;
        font-size: 1.4rem;
    }
    .m-about .block .block-2 .items .item p {
        color: #fff;
        font-size: 1.4rem;
    }
    .about-s1 .cell-box {
        flex-direction: column;
    }
    .about-s1 .right-block .item-logo {
        display: none;
    }
    .about-s1 .left-block {
        margin-right: 0;
    }
    .about-s1 .item.item1,
    .about-s1 .item.item3,
    .about-s1 .item.item4 {
        transform: translateY(0);
        margin-top: 0;
    }
    .about-s1 .item.item4 {
        margin-top: 40px;
    }
    .about-s1 .right-block .item3 {
        width: 100%;
    }
    .about-s1 .right-block .item1 {
        margin: 0 0 10px;
    }
    .about-s1 .item .info.info1 .h {
        display: block;
    }
    .about-s1 .item .info .icon i {
        width: 8rem;
        height: 8rem;
    }
    .about-s1 .item .info .icon {
        padding: 7px;
    }
    .about-s1 .item .info .text {
        transform: translateY(0);
    }
    .about-s1 .item .info .text .h3 {
        font-size: 2rem;
    }
    .about-s1 .item .info .text p {
        font-size: 1.2rem;
    }
    .about-s1 .item .info .h {
        margin-top: 5px;
        font-size: 1.4rem;
        margin-bottom: 0;
        transform: none;
    }
    .about-s2 {
        height: auto;
    }
    .about-s2 .cell-boxes {
        position: relative;
    }
    .about-s2 .text p {
        font-size: 2rem;
    }
    .about-s2 .year-block {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(1);
    }
    .about-s2 .year-block .year {
        transform: none;
        font-size: 12rem;
        top: -1rem;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        font-family: "Rajdhani-Bold-4";
    }
    .about-s2 .info-block {
        margin-top: 0;
    }
    .about-s2 .info-block>img {
        width: 40%;
        opacity: 0;
    }
    .about-s2 .info-block .boxes {
        transform: none;
    }
    .about-s2 .swiper-block {
        margin: 4rem 0;
        position: relative;
    }
    .about-s2 .swiper-block .item {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-s2 .swiper-block .item .num {
        font-size: 2rem;
        font-family: 'Rajdhani-Regular-2';
        transition: all .3s ease;
        transform-origin: center center;
    }
    .about-s2 .swiper-block .item .icon {
        position: relative;
        margin-top: 1rem;
        border-radius: 50%;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s ease;
    }
    .about-s2 .swiper-block .item .icon span {
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        background: rgba(0, 33, 198, 0.2);
        transition: all .3s ease;
    }
    .about-s2 .swiper-block .item .icon span i {
        border-radius: 50%;
        width: 1rem;
        height: 1rem;
        background: #0021c6;
        transition: all .3s ease;
    }
    .about-s2 .swiper-block .swiper-slide.active .item .num {
        font-weight: bold;
        transform: scale(1.4);
        color: #ff5807;
    }
    .about-s2 .swiper-block .swiper-slide.active .item .icon {
        background-color: rgba(255, 88, 7, 0.2);
    }
    .about-s2 .swiper-block .swiper-slide.active .item .icon span {
        background-color: #ff5807;
    }
    .about-s2 .swiper-block .swiper-slide.active .item .icon span i {
        background: #fff;
    }
    .about-s2 .swiper-block:after {
        content: '';
        position: absolute;
        top: 4.3rem;
        left: 0;
        width: 100%;
        height: 1px;
        background: #ff5807;
    }
    .about-s2 .info-block {
        margin-top: 6rem;
    }
    .about-s2 .info-block .boxes .img {
        width: 40%;
    }
    .about-s2 .info-block .boxes .info {
        margin-left: 20px;
    }
    .about-s3 .honor-block .item ul {
        grid-gap: 14px;
    }
    .about-s3 .honor-block .item ul li .text p {
        font-size: 1.2rem;
    }
    .about-s4 .mid-block .item .info .box .h3,
    .about-s4 .nav-block .item {
        font-size: 2rem;
    }
    .about-s4 .mid-block .item .info .box p {
        font-size: 1.4rem;
    }
    .about-s4 .mid-block .item .info .box a .icon {
        width: 16px;
        height: 16px;
        background-size: 16px;
    }
    .about-s4 .mid-block .item .info .box a span {
        font-size: 1.4rem;
    }
    .m-about .block .block-2 .video {
        width: 100%;
        position: relative;
        margin-bottom: 20px;
    }
    .m-about .block .block-2 .video video {
        width: 100%;
    }
    .m-about .block .block-2 .video .btn-play {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        opacity: 1;
        width: 100%;
        height: 100%;
        transform: translateY(0);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .m-about .block .block-2 .video .btn-play .icon {
        display: block;
        width: 5.875rem;
        height: 5.875rem;
        position: relative;
    }
    .m-about .block .block-2 .video .btn-play .icon::after,
    .m-about .block .block-2 .video .btn-play .icon::before {
        content: '';
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        left: 0;
    }
    .m-about .block .block-2 .video .btn-play .icon::before {
        background-image: url(../images/about/icon-2-2.png);
    }
    .m-about .block .block-2 .video .btn-play .icon::after {
        background-image: url(../images/about/icon-2-1.png);
        animation: ani-rotate 5s linear infinite;
    }
    .m-about .block .block-2 .video .btn-play p {
        margin-top: 1.5rem;
        font-size: 1.3;
        color: #fff;
    }
    .scroll {
        display: none;
    }
    .about-s1 .right-block,
    .about-s1 .left-block {
        width: 100%;
    }
    .product-details-main .top-block {
        justify-content: flex-start;
        top: 40px;
        height: 100%;
    }
}

@media screen and (max-width: 769px) {
    .layui-form .mt20 {
        margin-top: 0;
    }
    .blue-btn,
    .orange-btn,
    .default2-btn {
        width: 13.125rem;
        height: 40px;
        padding: 0 16px;
    }
    .blue-btn span,
    .orange-btn span,
    .default2-btn span {
        font-size: 14px;
    }
    .c-banner {
        height: 20vh;
    }
    .c-banner p {
        font-size: 14px;
    }
    .c-banner .cell-box .cell {
        vertical-align: middle;
        margin-bottom: 5vh;
    }
    .c-mt {
        margin-top: 3.125rem;
    }
    .c-subheading {
        font-size: 22px;
    }
    .c-subheading::after {
        width: 40px;
    }
    .s-banner .img-box {
        height: 60vw;
        position: relative;
    }
    .s-banner img {
        position: absolute;
        right: -40%;
        top: 0;
        height: 100%;
        width: auto;
    }
    .s-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 2;
    }
    .c-nav {
        display: none;
    }
    .c-banner h3 {
        font-size: 20px;
    }
    .c-banner .txt-box {
        padding: 0 5vw;
    }
    .c-banner .line {
        width: 40px;
        height: 2px;
        margin-top: 12px;
    }
    .c-banner .line:before {
        width: 20px;
        height: 2px;
    }
    .inner-tit h3 {
        font-size: 20px;
    }
    .inner-tit:after {
        height: 2px;
    }
    .default-btn span,
    .blue-btn span,
    .orange-btn span {
        width: 140px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .default-btn,
    .btn-select .layui-select-title input {
        height: 40px;
        width: 140px;
        font-size: 14px;
        padding: 0 20px;
    }
    .btn-select dl {
        top: 40px;
    }
    .index-main .section {
        height: auto;
    }
    .index-s1 .txt-box {
        padding: 0 5vw;
    }
    .index-s1 {
        margin-top: 0;
    }
    .index-main .section.index-s1 {
        height: auto;
    }
    .index-s1 .scroll {
        display: none;
    }
    .index-s1 h3 {
        font-size: 20px;
    }
    .index-s1 {
        font-size: 0;
    }
    .index-s1 p {
        font-size: 12px;
        line-height: 24px;
    }
    .index-s1 .pagination .num {
        width: 3.125rem;
    }
    .index-s1 .item {
        height: 100vw;
    }
    .index-s1 .num {
        font-size: 24px;
    }
    .index-s1 .num span {
        font-size: 22px;
    }
    .index-s1 .num span:last-child {
        margin-left: 0;
    }
    .index-s1 .num span.swiper-pagination-current {
        font-size: 32px;
        margin-right: 5px;
    }
    .index-s1 .item.swiper-slide-active .wrapper {
        width: 100%;
    }
    .index-s1 .button-box .button {
        width: 30px;
        height: 30px;
        background-size: 6px;
    }
    .index-s2 .wrapper {
        height: auto;
    }
    .index-s2 .data-box {
        margin-top: 40px;
        flex-wrap: wrap;
        grid-row-gap: 2rem;
    }
    .index-s2 .data-box .item {
        width: 45%;
    }
    .index-s2 .data-box .item .num .count {
        font-size: 30px;
    }
    .index-s2 .data-box .item .num .text {
        font-size: 12px;
    }
    .index-s2 .data-box .item p {
        font-size: 14px;
    }
    .index-s2 .data-box .item p i {
        display: block;
    }
    .index-main {
        padding-top: 60px;
    }
    .index-s2 .cont-box,
    .index-s3 .cont-box,
    .index-s4 .cont-box,
    .index-s5 .cont-box,
    .index-s6 .cont-box,
    .index-s7 .cont-box {
        padding: 40px 0;
    }
    .index-s2 .left-box {
        width: 100%;
    }
    .index-s2 .right-box {
        width: 100%;
        padding: 20px 0 0;
    }
    .index-tit h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .index-tit p {
        font-size: 14px;
        margin-top: 20px;
    }
    .index-s2 a.index-more {
        margin-top: 20px;
    }
    .index-s2 .datas {
        margin-top: 20px;
    }
    .index-s2 .data {
        margin-right: 0;
        width: 33%;
    }
    .index-s3 .tab-cont {
        margin-bottom: 100vw;
    }
    .index-s3 .tab-cont .item .index-tit p {
        width: 100%;
        max-width: 100%;
    }
    .index-s3 .tab-cont .item .btn {
        margin-top: 20px;
        width: 100%;
    }
    .index-s3 .tab-tit {
        bottom: 40px;
    }
    .index-s3 .tab-tit .item .h3 {
        font-size: 12px;
    }
    .index-s3 .tab-tit .item .show {
        display: none;
    }
    .index-s3 .tab-tit .item .hide {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .index-s3 .tab-tit .item .hide .h3 {
        left: 0;
        padding: 20px;
    }
    .index-s3 .tab-tit .item .btn {
        margin-top: 10px;
        font-size: 12px;
        padding: 3px;
    }
    .index-s3 .tab-tit .item .h3 span {
        font-size: 12px;
        line-height: 1.6;
        display: block;
    }
    .index-s3 .button-prev,
    .index-s3 .button-next {
        width: 26px;
        height: 26px;
    }
    .index-tit p {
        margin-top: 4px;
    }
    .index-s4 .mid-block {
        margin-top: 40px;
    }
    .index-s4 .mid-block .item .h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .index-s4 .cont-box .item p {
        font-size: 14px;
        width: 100%;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .index-s4 .bot-block {
        margin-top: 40px;
    }
    .index-s4 .bot-block .item .box {
        height: 8rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 0 2rem;
    }
    .index-s4 .bot-block .item .box span {
        font-size: 12px;
        margin-left: 0;
    }
    .index-s4 .bot-block .item .box.active span {
        margin: 0;
    }
    .index-s4 .bot-block .item .box img {
        width: 16px;
        height: 16px;
        margin-bottom: 5px;
        display: block;
    }
    .index-s4 .bot-block .case {
        height: 6rem;
        top: 1rem;
    }
    .index-s4 .bot-block .case span {
        display: none;
    }
    .index-s5 .mid-block {
        margin-top: 20px;
        display: block;
    }
    .index-s5 .mid-block .item {
        width: 100%;
        margin: 20px 0 0;
    }
    .index-s5 .mid-block .item:nth-of-type(1) {
        margin-top: 0;
    }
    .index-s5 .mid-block .item .txt-box {
        margin-top: 10px;
    }
    .index-s5 .mid-block .item h3 {
        font-size: 16px;
    }
    .index-s5 .bot-block {
        margin-top: 20px;
        padding-top: 20px;
        display: block;
    }
    .index-s5 .bot-block .item {
        width: 100%;
        margin: 20px 0 0;
    }
    .index-s5 .bot-block .item:nth-of-type(1) {
        margin-top: 0;
    }
    .index-s5 {
        position: relative;
    }
    .index-s5 .bg-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .index-s5 .map-box {
        width: 90.5625%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    .index-s5 .map-box img.bg {
        display: block;
        width: 100%;
    }
    .index-s5 .map-box .case {
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        height: 100%;
        z-index: 2;
    }
    .index-s5 .map-box .item1 {
        top: 29%;
        left: 69.5%;
    }
    .index-s5 .map-box .item2 {
        top: 66.6%;
        left: 69.6%;
    }
    .index-s5 .map-box .item3 {
        top: 41.5%;
        left: 74.4%;
    }
    .index-s5 .map-box .item4 {
        top: 24%;
        left: 81.5%;
    }
    .index-s5 .map-box .item5 {
        top: 21%;
        left: 20%;
    }
    .index-s5 .map-box .item {
        opacity: 1;
        position: absolute;
    }
    .index-s5 .map-box .item .location {
        position: relative;
        width: 60px;
        height: 60px;
        transform: scale(0.5);
        transform-origin: top left;
    }
    .index-s5 .map-box .item .location .icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px dashed #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: rotate 6s linear infinite;
    }
    .index-s5 .map-box .item .location .icon span {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .index-s5 .map-box .item .location .icon span i {
        width: 6px;
        height: 6px;
        background: #fff;
        border-radius: 50%;
        animation: o-scale 1s infinite;
    }
    .index-s5 .map-box .item .location .text {
        position: absolute;
        top: -14px;
        right: 52px;
        font-size: 14px;
        background: #fff;
        color: #191919;
        width: 65px;
        height: 27px;
        text-align: center;
        line-height: 1;
        border-radius: 10px 10px 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .index-s5 .map-box .item .location .text.text3,
    .index-s5 .map-box .item .location .text.text4 {
        left: 22px;
        right: auto;
        border-radius: 10px 10px 10px 0;
    }
    .index-s5 .map-box .item .location:hover~.box {
        transform: translateX(0) scale(1);
        opacity: 1;
        visibility: visible;
        z-index: 6;
    }
    .index-s5 .map-box .item .box {
        position: absolute;
        bottom: -1vw;
        right: 8rem;
        width: 478px;
        height: 176px;
        padding: 30px;
        border-radius: 14px 14px 0 14px;
        background: #d6e2ee;
        border: 1px #fff solid;
        visibility: hidden;
        align-items: center;
        display: flex;
        transition: all .4s ease;
        transform: translateX(20px) scale(0.8);
        opacity: 0;
        transform-origin: bottom right;
    }
    .index-s5 .map-box .item .box .img {
        flex: 1;
    }
    .index-s5 .map-box .item .box .img img {
        width: 160px;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 16 / 9;
    }
    .index-s5 .map-box .item .box .info {
        flex: none;
    }
    .index-s5 .map-box .item .box .info .h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    .index-s5 .map-box .item .box .info p {
        color: #808080;
        line-height: 1.4;
        font-size: 12px;
    }
    .index-s5 .mobile-box {
        display: block;
        margin-top: 4rem;
        position: relative;
        z-index: 2;
    }
    .index-s5 .mobile-box .s-tab-tit {
        text-align: center;
        font-size: 0;
    }
    .index-s5 .mobile-box .s-tab-tit span {
        display: inline-block;
        vertical-align: top;
        width: 16.66%;
        max-width: 70px;
        font-size: 14px;
        color: #333333;
        line-height: 36px;
        border-radius: 5px;
        text-align: center;
        transition: all .3s ease;
    }
    .index-s5 .mobile-box .s-tab-tit span.active {
        background-color: #ff5807;
        color: #fff;
    }
    .index-s5 .mobile-box .s-tab-cont {
        margin-top: 2rem;
    }
    .index-s5 .mobile-box .s-tab-cont img {
        width: 100%;
    }
    .index-s5 .mobile-box .s-tab-cont .child {
        display: none;
    }
    .index-s5 .mobile-box .s-tab-cont .child.active {
        display: block;
        animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    .index-s5 .mobile-box .s-tab-cont .child.active .img-box,
    .index-s5 .mobile-box .s-tab-cont .child.active .txt-box {
        opacity: 1;
    }
    .index-s5 .mobile-box .s-tab-cont .child.active .txt-box {
        animation-delay: .1s;
    }
    .index-s5 .mobile-box .s-tab-cont .s-item {
        display: block;
        max-width: 600px;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }
    .index-s5 .mobile-box .s-tab-cont .s-item .img-box {
        height: 50vw;
        opacity: 0;
    }
    .index-s5 .mobile-box .s-tab-cont .s-item img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .index-s5 .mobile-box .s-tab-cont .s-item .txt-box {
        padding: 2rem;
        opacity: 0;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }
    .index-s5 .mobile-box .s-tab-cont .s-item .tit {
        font-size: 18px;
        color: #333;
        font-family: 'SourceHanSansCN-Medium';
    }
    .index-s5 .mobile-box .s-tab-cont .s-item p {
        font-size: 14px;
        color: #666;
        margin-top: 1rem;
    }
    .index-s5 .mobile-box .s-tab-cont .s-item a {
        display: block;
        width: 92px;
        line-height: 30px;
        background-color: #0021c6;
        border-radius: 10px 0 10px 0;
        font-size: 12px;
        color: #fff;
        text-align: center;
        margin-top: 1rem;
    }
    .index-s6 .mid-block .swiper-slide .items .show,
    .index-s6 .mid-block .swiper-slide .items .hide {
        padding: 14px;
    }
    .index-s6 .mid-block .swiper-slide .items .h3 {
        font-size: 14px;
    }
    .index-s6 .bot-block .swierp-info>div {
        width: 30px;
        height: 30px;
    }
    .index-s6 .mid-block {
        margin-top: 40px;
    }
    .index-main .section.index-s7 {
        height: 100vw;
    }
    .index-s7 .btn {
        margin-top: 40px;
    }
    .index-s1 h3:after {
        left: 18vw;
    }
    .contact-main .contact-s1 {
        padding: 3.125rem 0 0;
    }
    .contact-main .contact-s2 {
        padding: 3.125rem 0;
    }
    .other-s3 {
        padding: 4rem 0;
    }
    .other-s3 .tips {
        font-size: 18px;
    }
    .comm-page li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    .other-s3 .item:before,
    .other-s3 .item:after {
        height: 4px;
    }
    .website-box {
        padding: 20px 0 80px;
    }
    .website-box dl {
        padding: 30px 0;
        flex-direction: column;
    }
    .website-box dl dt {
        width: 100%;
    }
    .website-box dl dt .h3 {
        margin-bottom: 24px;
        font-size: 18px;
    }
    .website-box dl dd a {
        width: calc(50% - 10px);
        font-size: 12px;
        padding: 0 6px;
        white-space: pre;
        margin-left: 0;
        margin-top: 0;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .read-main .left-box {
        display: none;
    }
    .read-main .right-box {
        padding: 3.125rem 0;
    }
    .read-main .right-box .content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .read-main .right-box .content h3 {
        font-size: 20px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    .s-banner .form button .icon-svg {
        width: 24px;
        height: 24px;
    }
    .other-s3 .item .tit {
        font-size: 16px;
    }
    .contact-main .contact-s1 .top-box {
        flex-direction: column;
    }
    .contact-main .contact-s1 .top-box .img {
        width: 100%;
    }
    .contact-main .contact-s1 .top-box .map {
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 9;
        flex: none;
    }
    .contact-main .contact-s1 .bot-box dl dt .h3 {
        font-size: 20px;
        padding: 28px 20px 14px;
    }
    .contact-main .contact-s1 .bot-box dl dd {
        flex-direction: column;
    }
    .contact-main .contact-s1 .bot-box dl dd .text {
        width: 100%;
        padding: 0;
        border: 0;
        line-height: 2;
    }
    .contact-main .contact-s1 .bot-box dl dd .text:nth-child(2) {
        border: 0;
    }
    .contact-main .contact-s1 .bot-box dl dd .text span {
        font-size: 14px;
    }
    .contact-main .contact-s2 .form-box {
        padding: 20px;
        margin-top: 30px;
    }
    .layui-form-style1 .text,
    .layui-form-style1 textarea,
    .layui-form-style1 input {
        font-size: 14px;
    }
    .product-details-main .product-banner {
        position: relative;
    }
    .product-details-main .details-block {
        padding: 3.125rem 0;
    }
    .product-center-main .product-list {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 40px;
        grid-gap: 14px;
    }
    .product-center-main .h3 {
        font-size: 20px;
    }
    .product-center-main .product-list li {
        border-radius: 14px;
    }
    .product-center-main .product-list li .info {
        padding: 10px;
    }
    .product-center-main .product-list li .info p {
        font-size: 12px;
    }
    .product-center-main .product-list li:hover .info .icon-svg {
        display: none;
    }
    .product-details-main .top-block .h2 {
        font-size: 24px;
    }
    .product-details-main .top-block .h3 {
        font-size: 20px;
        margin-top: 10px;
    }
    .product-details-main .top-block .text p {
        font-size: 14px;
    }
    .product-details-main .top-block .btn {
        margin-top: 20px;
    }
    .product-details-main .product-banner .bg-block {
        height: 100vh;
    }
    .product-details-main .product-banner .bg-block img {
        height: 100%;
    }
    .product-details-main .details-block .cell-box {
        padding: 30px 20px;
    }
    .product-details-main .details-block .cell-box .text {
        margin-top: 20px;
    }
    .product-details-main .details-block .cell-box .text p {
        font-size: 14px;
    }
    .product-details-main .details-block .line {
        margin: 22px 0;
    }
    .product-details-main .details-block .img-boxes {
        grid-gap: 6px;
        margin-bottom: 22px;
    }
    .product-details-main .tab-table {
        margin-top: 30px;
    }
    .product-details-main .tab-table .navbox .item {
        font-size: 16px;
        white-space: pre;
        margin: 0 10px;
        padding-bottom: 12px;
    }
    .product-details-main .tab-table .navbox .item::after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #ff5807;
    }
    .product-details-main th,
    .product-details-main td {
        font-size: 12px;
        padding: 10px;
    }
    .product-details-main .tab-table .tabbox {
        margin: 10px 0 40px;
    }
    .product-details-main .download-list {
        margin: 20px 0;
    }
    .product-details-main .download-list .item {
        flex-direction: column;
        padding: 10px 0 20px;
        height: auto;
    }
    .product-details-main .download-list .item .box i {
        width: 20px;
        width: 20px;
        background-size: 20px;
    }
    .product-details-main .download-list .item .box span {
        font-size: 12px;
        margin-left: 10px;
    }
    .product-details-main .download-list .item .btn {
        padding: 10px 14px;
        height: auto;
    }
    .product-details-main .download-list .item .btn i {
        width: 12px;
        height: 12px;
        background-size: 12px;
    }
    .product-details-main .download-list .item .btn span {
        font-size: 12px;
        margin-left: 6px;
    }
    .product-details-main .leave-message {
        margin: 40px 0 3.125rem;
        flex-direction: column;
    }
    .product-details-main .leave-message .left-block,
    .product-details-main .leave-message .right-block {
        padding: 20px;
    }
    .product-details-main .leave-message .left-block {
        width: 100%;
    }
    .product-details-main .leave-message .left-block .tit {
        margin-bottom: 3rem;
    }
    .product-details-main .leave-message .left-block .tit span {
        font-size: 20px;
        display: block;
    }
    .product-details-main .leave-message .left-block .box p {
        font-size: 12px;
    }
    .product-details-main .leave-message .left-block .box .phone1 {
        font-size: 28px;
    }
    .product-details-main .leave-message .left-block .box .phone2 {
        font-size: 16px;
    }
    .news-main {
        padding: 3.125rem 0 60px;
    }
    .news-main .news-swiper .item {
        flex-direction: column;
    }
    .news-main .news-swiper .item .img,
    .news-main .news-swiper .item .info {
        width: 100%;
    }
    .news-main .news-swiper .item .info {
        padding: 20px 20px 40px;
    }
    .news-main .news-swiper .item .info .h3 {
        font-size: 20px;
    }
    .news-main .news-swiper .swiper-dot {
        left: 0;
        right: 0;
        bottom: 10px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .news-main .news-list {
        margin-top: 10px;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .news-main .news-list .items .info {
        padding: 10px;
    }
    .news-main .news-list .items .info .time {
        margin-bottom: 6px;
    }
    .news-main .news-list .items .info .h3 {
        font-size: 14px;
    }
    .news-details-main .cell-box {
        flex-direction: column;
    }
    .news-details-main .left-block {
        padding: 3.125rem 0 30px;
        border: 0;
    }
    .news-details-main .left-block .h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .news-details-main .left-block .share-mod {
        margin: 20px 0;
    }
    .news-details-main .left-block .share-mod .box .icon {
        width: 28px;
        height: 28px;
    }
    .news-details-main .left-block .share-mod .box .icon .icon-svg {
        width: 18px;
        height: 18px;
    }
    .news-details-main .left-block .content-main p {
        font-size: 14px;
    }
    .news-details-main .left-block .article-preview {
        margin-top: 20px;
        padding: 20px;
    }
    .news-details-main .left-block .article-preview a {
        font-size: 14px;
        line-height: 1.4;
    }
    .news-details-main .left-block .article-preview a:first-child {
        margin-bottom: 10px;
    }
    .news-details-main .right-block {
        padding: 0 0 3.125rem;
    }
    .news-details-main .right-block .hot-news .h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .news-details-main .right-block .hot-news .list li {
        margin-bottom: 14px;
    }
    .news-details-main .right-block .hot-news .list li a {
        font-size: 14px;
    }
    .news-details-main .right-block .hot-news .list li span {
        margin-top: 6px;
    }
    .recruitment-main .job-list dl dt {
        padding: 14px;
    }
    .recruitment-main .job-list dl dt .item .h4 {
        font-size: 14px;
        margin-top: 8px;
    }
    .recruitment-main .job-list dl dd {
        padding: 0 20px;
    }
    .recruitment-main .job-list dl dd .dd-top {
        padding: 20px 0;
        flex-direction: column;
    }
    .recruitment-main .job-list dl dd .dd-bot {
        padding: 20px 0;
    }
    .recruitment-main .job-list dl dd .dd-bot .btn {
        height: 36px;
        width: 120px;
        font-size: 12px;
    }
    .recruitment-main .job-list dl dd .dd-top .case {
        width: 100%;
        margin: 10px 0;
    }
    .recruitment-main .job-list dl dd .dd-top .case:nth-child(1) {
        padding-right: 0;
    }
    .recruitment-main .job-list dl dd .dd-top .case p {
        line-height: 1.6;
        margin-bottom: 1em;
    }
    .recruitment-main .job-list dl dt .item .icon {
        transform: scale(0.6);
    }
    .recruitment-main .top-box input {
        padding: 0 20px;
    }
    .recruitment-main .top-box .layui-input-prefix {
        margin-left: 10px;
    }
    .recruitment-main .top-box .layui-input-prefix~input {
        padding-left: 3.125rem;
    }
    .join-banner {
        height: 40vh;
    }
    .join-banner .top-block {
        margin-top: 30px;
    }
    .join-banner .join-search {
        height: 45px;
        padding: 0 20px;
    }
    .join-banner .join-search input {
        padding: 0 14px;
    }
    .join-banner .mid-block .h2 {
        font-size: 24px;
    }
    .product-main {
        padding: 0 0 3.125rem;
    }
    .product-s1 {
        padding: 3.125rem 0 0;
    }
    .about-s1 {
        padding: 3.125rem 0 0;
    }
    .abouts2 {
        padding: 3.125rem 0;
    }
    .abouts3 {
        margin-top: 0;
        padding: 3.125rem 0;
    }
    .about-s4 {
        padding: 3.125rem 0 0;
    }
    .joinus-main .join-s1,
    .joinus-main .join-s2,
    .joinus-main .join-s3 {
        padding: 3.125rem 0 0;
    }
    .joinus-main .join-s4 {
        padding: 3.125rem 0;
    }
    .team-style .team-box {
        width: 100%;
        flex-direction: column;
    }
    .team-style .team-box .swiper-container {
        width: 100%;
    }
    .team-style .team-box .item {
        width: 100%;
        height: 3.125rem;
        display: flex;
        flex-direction: column-reverse;
    }
    .team-style .team-box .item.active {
        width: 100%;
        height: 260px;
    }
    .joinus-main .team-style .team-box .item .info {
        flex: 1;
        height: 3.125rem;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .joinus-main .team-style .team-box .item .info p {
        font-size: 16px;
    }
    .joinus-main .team-style .team-box .item .info .icon-svg {
        opacity: 1;
    }
    .talent-recruitment .talent-box {
        margin-top: 30px;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
    }
    .talent-recruitment .talent-box .item .icon {
        margin: 10px 0 5px;
        width: 28px;
        height: 28px;
    }
    .talent-recruitment .talent-box .item .icon img {
        width: 28px;
        height: 28px;
    }
    .talent-recruitment .talent-box .item .num {
        font-size: 16px;
    }
    .talent-recruitment .talent-box .item .h4 {
        font-size: 14px;
    }
    .talent-recruitment .talent-box .item.active .h4 {
        margin-top: 16px;
    }
    .talent-recruitment .talent-box .item.active .bg-num {
        font-size: 38px;
    }
    .talent-recruitment .recruitment-channel {
        margin-top: 24px;
        display: block;
    }
    .talent-recruitment .recruitment-channel .box {
        margin-bottom: 10px;
    }
    .talent-recruitment .recruitment-channel .box .info {
        padding: 20px;
    }
    .talent-recruitment .recruitment-channel .box .info .h3 {
        font-size: 20px;
    }
    .talent-recruitment .recruitment-channel .box .info p {
        font-size: 12px;
    }
    .talent-recruitment .recruitment-channel .box .info .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .m-about .block .block-2 .items .item p {
        font-size: 12px;
    }
    .about-s1 .item .info .icon i {
        width: 4rem;
        height: 4rem;
    }
    .about-s2 {
        margin-bottom: 3.125rem;
    }
    .about-s2 .text p {
        font-size: 1.4rem;
    }
    .about-s2 .info-block .boxes .info p {
        font-size: 1.4rem;
    }
    .about-s3 .honor-block .item ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .about-s3 .honor-block .item ul li {
        padding: 2rem 0;
    }
    .about-s4 .mid-block .item .info .box .h3,
    .about-s4 .nav-block .item {
        font-size: 1.6rem;
        margin: 0;
    }
    .about-s4 .mid-block {
        padding: 3.125rem 0 70px;
    }
    .about-s4 .nav-block {
        margin-top: 25px;
        justify-content: space-around;
    }
    .about-s4 .mid-block .item .info .box p {
        margin-top: 5px;
    }
    .about-s4 .mid-block .item .info .box a {
        margin-top: 14px;
    }
    .m-about .block .block-2 .items {
        flex-wrap: wrap;
    }
    .m-about .block .block-2 .items .item {
        width: 50%;
        height: 10rem;
    }
    .s-banner .radiomod {
        margin-top: 30px;
    }
    .c-page li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    .contact-main .contact-s1 .top-box .img .info {
        padding: 20px;
    }
    .m-about .block .block-1 .img-box {
        width: auto;
    }
    .m-about .block .block-2 .items .item span {
        font-size: 24px;
    }
    .index-s3 .btn-select .layui-select-title i {
        right: 15px;
    }
    .about-s4 .bg-block .img {
        background-attachment: inherit;
    }
    .applyjob-tc {
        width: 100%;
        padding: 20px;
    }
    .layui-form-style2 input,
    .layui-form-style2 .text,
    .layui-form-style2 button {
        height: 40px;
        font-size: 14px;
    }
    .layui-form-style2 button {
        line-height: 40px;
    }
    .layui-upload-drag .layui-icon {
        font-size: 40px;
    }
    .applyjob-tc .text {
        padding-left: 0;
        line-height: 1.4;
    }
    .layui-upload-drag {
        padding: 10px;
        font-size: 22px;
        margin-bottom: 10px;
    }
    .layui-upload-drag div {
        display: none;
    }
    .applyjob-tc form {
        margin-bottom: 0;
    }
    .layui-custom-title .layui-layer-title {
        height: 3.125rem;
        font-size: 16px;
        padding: 0 20px;
    }
    .layui-custom-title .layui-layer-setwin span {
        width: 22px;
        height: 22px;
    }
    .layui-custom-title .layui-layer-setwin {
        top: 14px;
        right: 20px;
    }
    .recruitment-main .top-box .layui-edge {
        right: 20px;
    }
    .recruitment-main .top-box .layui-input-prefix~input {
        padding-left: 5.125rem;
    }
}


/*# sourceMappingURL=bundle.css.map */