﻿@charset "utf-8";



:root {

    --main-color: #0F16CB;

    --dark-color: #333;

    --white-color: #FFFFFF;

    --backgroundColor: hsla(0, 0%, 100%, 0.24);

    --transition-custom2: all 0.8s ease-in-out;

}



img {

    max-width: 100%;

}



@keyframes jumpDown {

    0% {

        transform: translateY(0)
    }



    100% {

        transform: translateY(5px)
    }

}



/* right */

.right_rove {

    position: fixed;

    right: 16px;

    bottom: 40px;

    z-index: 99;

}



.right_rove ul {

    display: flex;

    flex-flow: column;

    align-items: flex-end;

}



.right_rove ul li {

    position: relative;

    margin-bottom: 8px;

    overflow: hidden;

}



.right_rove ul li:last-child {

    margin-bottom: 0;

}



.right_rove>ul>li>a {

    position: relative;

    display: flex;

    align-items: center;

    /*padding-left: 12px;*/

    /*padding-right: 12px;*/

    height: 50px;

    z-index: 1;

}



.right_rove>ul>li>a::before {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    width: 50px;

    height: 100%;

    border-radius: 50px;

    background-color: var(--main-color);

    /* transition: width .3s cubic-bezier(0.99, 0.01, 0.16, 0.99); */

    transition: width .3s ease-in-out;

    z-index: -1;

}

.right_rove>ul>li>a p {

    width: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.right_rove>ul>li>a img {

    width: 24px;

}



.right_rove>ul>li>a span {

    color: var(--white-color);

    font-size: 0;

    opacity: 0;

    /*margin-left: 12px;*/

    overflow: hidden;

}



.right_rove ul li:hover {

    overflow: visible;

    width: auto;

}



.right_rove>ul>li.hover>a:hover::before {

    width: 100%;

}



.right_rove>ul>li.hover>a:hover span {

    opacity: 1;

    padding-left: 20px;

    font-size: 16px;

    font-weight: 400;

    line-height: 26px;

    transition: opacity .3s ease;

    transition-delay: .3s;

}




/* footer */

.footer {

    position: relative;

    background-color: #000;

    background-image: url(../images/foot_bg.png);

    background-repeat: no-repeat;

    background-position: bottom center;

    background-size: cover;

    z-index: 1;

}



.footer::before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 40%;

    height: 100%;

    background-image: url(../images/foot_icon_r.svg);

    background-repeat: no-repeat;

    background-size: contain;

    background-position: right bottom;

    z-index: -1;

}



.footer_top.my-container {

    align-items: stretch;

}



.footer_top_left {

    flex: 1;

    margin-right: 50px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: space-between;

    max-width: 450px;

    padding: 60px 0;

}



.footer_top_right {

    padding-left: 140px;

    padding-top: 60px;

    padding-bottom: 60px;

    border-left: 1px solid rgba(255, 255, 255, 0.20);

}



.foot_logo img {

    max-width: 240px;

}



.foot_text {

    margin-top: 32px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.foot_share .title {

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.share_list {

    padding-top: 16px;

}



.share_list ul {

    margin-left: -8px;

    margin-right: -8px;

}



.share_list ul li {

    padding-left: 8px;

    padding-right: 8px;

}



.share_list ul li a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    transition: border-color 0.4s;

    z-index: 1;

}



.share_list ul li a::before {

    content: '';

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 0;

    height: 0;

    background-color: var(--main-color);

    border-radius: 30px;

    transition: all 0.4s ease-in-out;

    z-index: -1;

}



.share_list ul li a:hover {

    border-color: var(--main-color);

}



.share_list ul li a:hover:before {

    width: 100%;

    height: 100%;

}



.foot_menu {

    padding-top: 60px;

    width: 190px;

}



.foot_menu ul li {

    padding-bottom: 40px;

}



.foot_menu a {

    padding-bottom: 8px;

    position: relative;

    color: #FFF;

    font-family: 'Titillium Web';

    font-size: 22px;

    font-style: normal;

    font-weight: 600;

    line-height: 32px;

}



.foot_menu a::before {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 1px;

    background-color: var(--white-color);

    transform-origin: bottom right;

    transform: scaleX(0);

    transition: transform 0.5s ease;

}



.foot_menu a:hover::before {

    transform-origin: bottom left;

    transform: scaleX(1);

}



.foot_tel {

    padding-bottom: 7px;

    display: flex;

    align-items: center;

}



.foot_tel a {

    color: var(--white-color);

    font-family: 'Titillium Web';

    font-size: 28px;

    font-weight: 600;

    line-height: 1;

}



.foot_tel a:hover {

    text-decoration: underline;

}



.foot_tel img {

    width: 22px;

    margin-right: 8px;

}



.foot_t_r_list {

    padding-top: 16px;

    align-items: flex-start;

    min-width: 428px;

}



.foot_t_r_list img {

    width: 26px;

    margin-top: 1px;

    margin-right: 8px;

}



.foot_t_r_list>div span {

    display: block;

    color: #FFF;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.foot_t_r_list>div span:nth-child(2) {

    opacity: 0.5;

}



.footer_top_right .ban_btn {

    margin-top: 112px;

}



.footer_bottom {

    padding: 30px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.20);

}



.footer_bottom>.my-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    color: #FFF;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.footer_bottom a {

    color: inherit;

    font-size: inherit;

}



.footer_bottom .r img {

    max-height: 50px;

}



.footer_bottom .r span {

    position: relative;

    padding-right: 25px;

    margin-right: 25px;

}



.footer_bottom .r span:first-child {

    margin-left: 25px;

}



.footer_bottom .r span::before {

    content: "";

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 30px;

    background-color: rgba(255, 255, 255, 0.20);

}



.footer_bottom .r span:last-child {

    padding-right: 0;

    margin-right: 0;

}



.footer_bottom .r span:last-child::before {

    display: none;

}



@media (max-width:1579px) {



    .footer_top_right {

        padding-left: 80px;

    }



}



@media (max-width:1366px) {



    .footer_top_right {

        padding-left: 50px;

    }



}



@media (max-width:1279px) {

    .footer_top_right {

        padding-left: 35px;

    }



    .footer_top_mid {

        padding-right: 35px;

    }



    .foot_menu {

        width: auto;

    }



    .foot_t_r_list {

        min-width: inherit;

    }



}



@media (max-width:991px) {

    .footer_top>.my-container {

        flex-wrap: wrap;

    }



    .footer_top_left {

        flex: inherit;

        max-width: inherit;

        margin-right: 0;

        padding-bottom: 0;

        width: 100%;

    }



    .footer_top_mid {

        width: 100%;

        padding-right: 0;

    }



    .foot_menu {

        padding-top: 30px;

    }



    .foot_menu>ul {

        display: flex;

        flex-wrap: wrap;

        margin-left: -8px;

        margin-right: -8px;

    }



    .foot_menu>ul>li {

        padding: 8px;

    }



    .footer_top_right {

        border: none;

        padding: 25px 0 30px 0;

    }



    .footer_top_right .ban_btn {

        margin-top: 30px;

    }



    .footer_bottom .r {

        padding-top: 5px;

    }

}



@media (max-width:767px) {

    .right_rove {
        right: 2px;

        bottom: 30px;

    }



    .foot_logo img {

        max-width: 160px;

    }



    .foot_text {

        line-height: 24px;

    }



    .foot_tel a {

        font-size: 26px;

    }



    .foot_tel img {

        width: 20px;

        margin-right: 6px;

    }



    .share_list ul {

        flex-wrap: wrap;

    }



    .share_list ul {

        margin-left: -4px;

        margin-right: -4px;

    }



    .share_list ul li {

        padding: 4px;

    }



    .share_list ul li a {

        padding: 5px;

        width: 48px;

        height: 48px;

    }



    .foot_share {

        padding-top: 20px;

    }



    .foot_t_r_list img {

        width: 18px;

        margin-top: 4px;

        margin-right: 6px;

    }



    .foot_t_r_list>div span:nth-child(2) {

        letter-spacing: -0.5px;

    }



    .footer_top_left {

        padding-top: 50px;

    }



    .footer_top_mid {

        display: none;

    }



    .footer_bottom {

        padding: 20px 0;

    }



    .footer_bottom .r img {

        max-height: 30px;

    }



    .footer_bottom .r span {

        padding-right: 10px;

        margin-right: 10px;

    }



    .footer_bottom .r span:first-child {

        margin-left: 10px;

    }





}



/* banner */

.banner {

    position: relative;

    width: 100%;

    height: 100vh;

    overflow: hidden;

    z-index: 9;

}



.banner .index_banner {

    width: 100%;

    height: 100%;

}



.index_banner .img_pc {

    height: 100%;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    transform: translateZ(0) scale(1.3);

    transition: all 2.5s ease-in-out;

}



.index_banner .mask {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.20);

    z-index: 8;

}



.img_m {

    height: 100%;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

}



.index_banner video {

    width: 100%;

    height: 100%;

    -o-object-fit: cover;

    object-fit: cover;

}



.ban_text {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: 9;

}



.ban_text>.my-container {

    height: 100%;

}



.ban_text>.my-container>div:first-child {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;
}



.ban_text .ban_left {

    width: 50%;

    padding-bottom: 10%;

}



.ban_text .ban_right {

    width: 40%;

    max-height: 80%;

    padding-left: 10px;

    display: flex;

    align-self: flex-end;

}



.ban_text .ban_right img {

    max-height: 100%;

    transform: translateY(30%);

    opacity: 0;

    transition: all .6s;

}



.ban_logo {

    padding-bottom: 38px;

}



.ban_logo img {

    max-height: 48px;

}



.ban_s_txt,

.ban_s_txt2 {

    color: #FFF;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.ban_s_txt {

    margin-bottom: 16px;

}



.ban_s_txt2 {

    margin-top: 16px;

}



.ban_b_txt {

    color: var(--white-color);

    font-family: 'Titillium Web';

    font-weight: 700;

    line-height: 1.3;

}



.index_banner .mt64 {

    margin-top: 64px;

}



.ban_logo,

.ban_s_txt,

.ban_b_txt,

.index_banner .ban_btn {

    opacity: 0;

}



.swiper-slide-active .ban_logo {

    animation: text-active-animation .5s;

}



.swiper-slide-active .ban_s_txt {

    animation: text-active-animation .7s;

}



.swiper-slide-active .ban_b_txt {

    animation: text-active-animation .9s;

}



.swiper-slide-active .ban_s_txt2 {

    animation: text-active-animation 1.1s;

}



.swiper-slide-active .ban_btn {

    animation: text-active-animation 1.4s;

}



.swiper-slide-active .ban_logo,

.swiper-slide-active .ban_s_txt,

.swiper-slide-active .ban_b_txt,

.swiper-slide-active .ban_btn {

    opacity: 1;

}



.index_banner .swiper-slide-active .img_pc {

    transform: translateZ(0) scale(1);

}



.index_banner .swiper-slide-active .ban_right img {

    opacity: 1;

    transform: translateY(0);

    transition-delay: .4s;

}



@keyframes text-active-animation {

    from {

        opacity: 0;

        filter: Alpha(opacity=0);

        -webkit-transform: translateX(-100px);

        transform: translateX(-100px);

    }



    to {

        opacity: 1.0;

        filter: Alpha(opacity=100);

        -webkit-transform: translateX(0);

        transform: translateX(0);

    }

}





.banner .ban_button {

    position: absolute;

    left: 0;

    width: 100%;

    bottom: -100px;

    height: 50px;

    transition: bottom ease-out 1s 0.4s;

    z-index: 9;

}



.ban_button.active {

    bottom: 100px;

}



.ban_button .left {

    display: flex;

    align-items: center;

}



.ban_button .left>div {

    display: flex;

    position: relative;

    width: 68px;

    height: 68px;

    padding: 21px;

    justify-content: center;

    align-items: center;

    border-radius: 36px;

    border: 1px solid rgba(255, 255, 255, 0.30);

    cursor: pointer;

    z-index: 1;

}



.ban_button .left>div.swiper-button-disabled {

    cursor: default;

}



.ban_button .left>div::before {

    content: '';

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 0;

    height: 0;

    background-color: var(--main-color);

    border-radius: 36px;

    transition: all .3s ease;

    z-index: -1;

}



.ban_button .left>div:nth-child(2) {

    margin-left: -10px;

}



.ban_button .left>div:hover {

    border-color: var(--main-color);

}



.ban_button .left>div:hover::before {

    width: 100%;

    height: 100%;

}



.banner .ban-pagination {

    flex: 1;

    margin-left: 40px;

    position: relative;

    height: 2px;

    background: rgba(255, 255, 255, 0.20);

}



.banner .ban-pagination .swiper-pagination-progressbar-fill {

    background-color: var(--white-color);

}



@media (max-width:1366px) {

    .ban_button.active {

        bottom: 60px;

    }



}



@media (max-width:1279px) {



    .ban_text .ban_left {

        width: 60%;

        padding-bottom: 8%;

    }



}



@media (max-width:991px) {



    .ban_text .ban_left {

        width: 65%;

        padding-bottom: 8%;

    }



    .ban_text .ban_right {

        width: 35%;

    }



    .index_banner .mt64 {

        margin-top: 40px;

    }



}



@media (max-width:767px) {

    .ban_text>.my-container>div:first-child {

        position: relative;

        align-items: center;

        flex-wrap: wrap;

    }



    .ban_text .ban_left {

        width: 100%;

        padding-bottom: 8%;

    }



    .ban_text .ban_right {

        position: absolute;

        padding-left: 0;

        justify-content: center;

        bottom: 0;

        left: 50%;

        transform: translateX(-50%);

        width: 60%;

        height: 25%;

        z-index: -1;

    }



    .ban_logo {

        padding-bottom: 20px;

    }



    .ban_logo img {

        max-height: 30px;

    }



    .ban_b_txt {

        font-size: 24px;

    }



}



@media (max-width:359px) {}



/* index */

.left_menu {

    position: fixed;

    left: 10px;

    top: 50%;

    transform: translateY(-50%);

    display: none;

    z-index: 9;

}



.left_menu ul li {

    padding: 5px 0;

}



.left_menu ul li span {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    cursor: pointer;

}



.left_menu ul li span::before {

    content: '';

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 0;

    height: 0;

    background-image: url(../images/left_icon_hover.svg);

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

    transition: all .4s;

}



.left_menu ul li i {

    width: 6px;

    height: 6px;

    background-image: url(../images/left_icon.svg);

}



.left_menu ul li.active span::before {

    width: 100%;

    height: 100%;

}



.left_menu ul li.active span i {

    opacity: 0;

}



.index_section {

    width: 100%;

    overflow: hidden;

}



.index_one {

    position: relative;

    background-repeat: no-repeat;

    background-position: center bottom;

    background-size: cover;

    overflow: hidden;

    z-index: 1;

}



.pro_one_list {

    position: relative;

    padding-top: 60px;

    overflow: hidden;

    z-index: 1;

}



.pro_one_list::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    background-image: url(../images/index_icon_left.svg);

    background-repeat: no-repeat;

    background-position: top left;

    width: 588px;

    height: 704px;

    max-width: 25%;

    z-index: -1;

}



.index_one::before {

    content: "";

    position: absolute;

    right: -300px;

    top: -300px;

    width: 600px;

    height: 650px;

    background-image: url(../images/index_one_r_icon.svg);

    background-repeat: no-repeat;

    background-position: center;

    background-size: contain;

    animation: spin 4s linear infinite;

    z-index: -1;

}



@keyframes spin {

    to {

        transform: rotate(360deg);

    }

}



.pro_one_list ul {

    margin-left: -12px;

    margin-right: -12px;

    flex-wrap: wrap;

    display: flex;

    align-items: stretch;

}



.pro_one_list ul li {

    padding: 12px;

    width: 16.66%;

}



.pro_one_list .icon {

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: rgba(233, 235, 242, 0.80);

    backdrop-filter: blur(8px);

    transition: all .4s;

}



.pro_one_list .icon img:nth-child(2) {

    display: none;

}



.pro_one_list .title {

    margin-top: 16px;

    color: var(--dark-color);

    text-align: center;

    font-style: normal;

    font-weight: 700;

    line-height: normal;

}



.pro_one_list a:hover .icon {

    background: var(--main-color);

}



.pro_one_list a:hover img:nth-child(1) {

    display: none;

}



.pro_one_list a:hover img:nth-child(2) {

    display: block;

}



.pro_one_list a:hover .title {

    color: var(--main-color);

}



.index_brand {

    padding-top: 65px;

}



.index_title .s_t {

    padding-bottom: 16px;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.index_title .s_t span {

    position: relative;

    padding-right: 16px;

}



.index_title .s_t span::before {

    content: '';

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    position: absolute;

    width: 12px;

    height: 2px;

    background: #C3CAD0;

}



.index_title h2,

.index_title h3 {

    font-family: 'Titillium Web';

    font-style: normal;

    font-weight: 700;

    line-height: 1.3;

}



.index_title .blue {

    /* background: linear-gradient(268deg, #0C0DCA 66.91%, #86CCEA 105.13%); */

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



.index_title .black {

    color: var(--dark-color);

}



.index_title.white_t .s_t,

.index_title.white_t h2,

.index_title.white_t h3 {

    color: var(--white-color);

    background: transparent;

    -webkit-text-fill-color: inherit;

}



.index_title.white_t .s_t span::before {

    background-color: var(--white-color);

}



.brand_top {

    padding-bottom: 64px;



}



.brand_top_r {

    flex: 1;

    max-width: 686px;

    margin-left: 100px;

}



.brand_top_r .text {

    margin-bottom: 56px;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.brand_bottom {

    position: relative;

}



.brand_bottom::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 100%;

    background-image: url(../images/index_bottom_bg.png);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center bottom;

}



.brand_bottom .list {

    padding-top: 52px;

    padding-bottom: 52px;

    border-top: 1px solid rgba(0, 0, 0, 0.20);

    display: flex;

    justify-content: flex-end;

}



.brand_bottom .list ul {

    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    margin-left: -12px;

    margin-right: -12px;

    width: 1112px;

    max-width: 80%;

}



.brand_bottom .list ul li {

    width: 25%;

    padding: 12px;

}



.brand_bottom .list a {

    position: relative;

    display: block;

    width: 100%;

    height: 100%;

    border-radius: 24px;

    border: 1px solid rgba(0, 0, 0, 0.08);

    background: var(--main-color);

    overflow: hidden;

    z-index: 1;

}



.brand_bottom .list a i {

    display: block;

    width: 100%;

    height: 100%;

}



.brand_bottom .list a::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 50px;

    height: 50px;

    background: var(--white-color);

    border-radius: 24px;

    opacity: 0;

    transition: all .4s;

    z-index: -1;

}



.brand_bottom .list a .img {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

}



.brand_bottom .list a .img:nth-child(2) {

    display: none;

}



.brand_bottom .list a:hover {

    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.15);

    background-color: var(--white-color);

}



.brand_bottom .list a:hover:after {

    opacity: 1;

}



.brand_bottom .list a:hover::before {

    width: 100%;

    height: 100%;

    opacity: 1;

}



.brand_bottom .list a:hover .img:nth-child(1) {

    display: none;

}



.brand_bottom .list a:hover .img:nth-child(2) {

    display: block;

}



@media (max-width:991px) {

    .brand_top {

        padding-bottom: 50px;

    }



    .pro_one_list ul li {

        width: 33.33%;

    }



    .brand_bottom .list ul {

        max-width: inherit;

    }



    .brand_bottom .list ul {

        margin-left: -4px;

        margin-right: -4px;

    }



    .brand_bottom .list ul li {

        padding: 8px 4px;

    }



    .brand_top>.my-container {

        flex-wrap: wrap;

    }



    .brand_top_r {

        width: 100%;

        flex: inherit;

        margin-left: 0;

        padding-top: 30px;

    }





}



@media (max-width:767px) {

    .index_title .s_t {

        padding-bottom: 10px;

    }



    .index_brand {

        padding-top: 50px;

    }



    .pro_one_list {

        padding-top: 40px;

    }



    .brand_top {

        padding-bottom: 30px;

    }



    .pro_one_list ul {

        margin-left: -5px;

        margin-right: -5px;

    }



    .pro_one_list ul li {

        padding: 8px 5px;

        width: 33.33%;

    }



    .pro_one_list .icon {

        padding: 15px 25px;

    }



    .brand_bottom .list {

        padding-top: 30px;

        padding-bottom: 30px;

    }



    .brand_bottom .list ul {

        margin-left: -4px;

        margin-right: -4px;

    }



    .brand_bottom .list ul li {

        padding: 5px 4px;

        width: 33.33%;

    }



    .pro_one_list .title {

        line-height: 1.2;

    }



    .brand_bottom .list a,

    .brand_bottom .list a::before {

        border-radius: 8px;

    }



}



/* index new */

.index_new {

    position: relative;

    overflow: hidden;

    z-index: 1;

}



.index_new::before {

    content: "";

    position: absolute;

    right: -400px;

    bottom: 0;

    width: 900px;

    height: 900px;

    background-image: url(../images/index_one_r_icon.svg);

    background-repeat: no-repeat;

    background-position: center;

    background-size: contain;

    animation: spin 8s linear infinite;

    z-index: -1;

}



.new_box_top {

    padding-top: 80px;

    align-items: flex-end;

}



.new_box_bottom {

    display: flex;

    justify-content: space-between;

    margin-left: -20px;

    margin-right: -20px;

}



.new_box_list {

    transform: translateY(30px);

    transition-delay: .4s;

}



.big_new_box {

    transition: transform .4s;

}



.mid_new_box {

    transition: transform .6s;

}



.small_new_box {

    transition: transform .8s;

}



.new_box_bottom.animated .new_box_list {

    transform: translateY(0);

}



.new_box_bottom .new_box_line {

    width: 1px;

    background-color: rgba(0, 0, 0, 0.10);

}



.new_box_bottom .new_box_list {

    padding-left: 20px;

    padding-right: 20px;

}



.new_box_bottom {

    padding-top: 64px;

}



.big_new_box {

    width: 41%;

}



.mid_new_box {

    width: 27.4%;

}



.small_new_box {

    width: 25.6%;

}



.new_box_bottom .new_time {

    color: rgba(0, 0, 0, 0.30);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 24px;

}



.new_box_bottom .thumb {

    border-radius: 24px;

    overflow: hidden;

}



.new_box_bottom .thumb i {

    display: block;

    width: 100%;

    height: 100%;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    -webkit-transition: -webkit-transform .6s;

    transition: -webkit-transform .6s;

    -o-transition: transform .6s;

    transition: transform .6s;

    transition: transform .6s, -webkit-transform .6s;

    -webkit-transition: transform .6s;

}



.new_box_bottom .title {

    color: var(--dark-color);

    font-family: 'Titillium Web';

    font-weight: 700;

    line-height: 1.5;

}



.big_new_box .thumb {

    height: 386px;

}



.big_new_box .new_label {

    margin-top: 24px;

    position: relative;

    padding-left: 8px;

    color: var(--main-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.big_new_box .new_label::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 16px;

    background-color: var(--main-color);

    transition: all .3s;

}



.big_new_box .title {

    margin-top: 16px;

}



.big_new_box .text {

    margin-top: 24px;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.big_new_box .new_time {

    margin-top: 54px;

}



.big_new_box a:hover .new_label {

    padding-left: 24px;

}



.big_new_box a:hover .new_label::before {

    margin-top: -8px;

    transform: rotate(90deg);

}



.big_new_box a:hover .title {

    color: var(--main-color);

}



.big_new_box a:hover .thumb i {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

}



.mid_new_box .thumb {

    height: 225px;

}



.mid_new_box .title {

    margin-top: 16px;

}



.new_box_bottom .title span,

.mid_new_box .title span,

.small_new_box .title span {

    background-size: 0 100%;

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #0f16cb 0%);

    background-repeat: no-repeat;

    transition: all 0.4s;

}



.mid_new_box .new_time {

    margin-top: 16px;

}



.mid_new_box ul li:first-child {

    padding-bottom: 26px;

}



.mid_new_box ul li a:hover .title {

    color: var(--main-color);

}



.big_new_box a:hover .title span,

.mid_new_box ul li a:hover .title span {

    background-size: 100% 100%;

}



.mid_new_box ul li a:hover .thumb i {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

}



.small_new_box ul {

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}



.small_new_box ul li {

    height: 25%;

}



.small_new_box .title {

    margin-top: 24px;

    line-height: 28px;

    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

}



.small_new_box ul li a:hover .title {

    color: var(--main-color);

}



.small_new_box ul li a:hover .title span {

    background-size: 100% 100%;

}



@media (max-width:1279px) {



    .left_menu {

        display: none !important;

    }



    .big_new_box .thumb {

        height: 346px;

    }



    .mid_new_box .thumb {

        height: 190px;

    }



    .big_new_box .new_time {

        margin-top: 34px;

    }



    .small_new_box .title {

        margin-top: 15px;

    }



}



@media (max-width:991px) {



    .big_new_box .thumb {

        height: 286px;

    }



    .mid_new_box .thumb {

        height: 150px;

    }



    .small_new_box .title {

        /* line-height: 26px; */

    }



}



@media (max-width:767px) {

    .new_box_top {

        padding-top: 50px;

        flex-wrap: wrap;

    }



    .new_box_bottom {

        padding-top: 40px;

        flex-wrap: wrap;

    }



    .new_box_bottom .new_box_list {

        width: 100%;

    }



    .new_box_bottom .thumb {

        border-radius: 16px;

    }



    .big_new_box .thumb,

    .mid_new_box .thumb {

        height: 210px;

    }



    .big_new_box .new_label {

        margin-top: 20px;

        font-size: 16px;

    }



    .big_new_box .new_time {

        margin-top: 25px;

    }



    .new_box_bottom .new_box_line {

        width: calc(100% - 32px);

        height: 1px;

        margin: 0 auto;

        margin-top: 15px;

        margin-bottom: 15px;

    }



    .small_new_box ul li {

        height: auto;

        padding-top: 25px;
        padding-bottom: 15px;

    }



    .small_new_box .title {

        -webkit-line-clamp: 2;

    }



}





/* index three */

.hear_box {

    margin-top: 80px;

    position: relative;

    padding: 40px;

    width: 100%;

    border-radius: 24px;

    background: var(--main-color);

    overflow: hidden;

    z-index: 1;

}



.hear_box::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    background-image: url(../images/hear_left_bg.svg);

    background-repeat: no-repeat;

    background-position: left bottom;

    background-size: contain;

    max-width: 468px;

    width: 50%;

    height: 50%;

    z-index: -1;

}



.hear_box::after {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    background-image: url(../images/hear_right_bg.svg);

    background-repeat: no-repeat;

    background-position: right center;

    background-size: contain;

    width: 40%;

    height: 100%;

    z-index: -1;

}



.hear_box h2 {

    color: #FFF;

    font-style: normal;

    font-weight: 700;

    line-height: 1.3;

}



.hear_list {

    padding-top: 58px;

}



.hear_list ul {

    display: flex;

    justify-content: space-between;

    align-items: stretch;

    margin-left: -11px;

    margin-right: -11px;

}



.hear_list ul li {

    padding: 0 11px;

    width: 100%;

}



.hear_list a {

    position: relative;

    display: block;

    padding-bottom: 24px;

    width: 100%;

    height: 100%;

    border-radius: 24px;

    background: linear-gradient(224deg, rgba(255, 255, 255, 0.30) 3.49%, rgba(255, 255, 255, 0.15) 97.14%);

    backdrop-filter: blur(8px);



    -webkit-backdrop-filter: blur(8px);

    transition: all .4s;

    z-index: 1;

}



.hear_list ul li a::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 50px;

    height: 50px;

    background: var(--white-color);

    border-radius: 24px;

    opacity: 0;

    transition: all .4s;

    z-index: -1;

}



.hear_list .thumb {

    position: relative;

}



.hear_list ul li a .img {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

}



.hear_list .more {

    display: flex;

    align-items: center;

    justify-content: center;

}



.hear_list .more i {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    z-index: 1;

}



.hear_list .more i::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 0;

    height: 0;

    background-color: var(--main-color);

    border-radius: 50%;

    transition: all .4s;

    z-index: -1;

}



.hear_list .more i img {

    transition: all .3s;

}



.hear_list .thumb i {

    display: block;

    width: 100%;

    height: 100%;

}



.hear_list ul li a .img:nth-child(2) {

    display: none;

}



.hear_list ul li a .img:nth-child(2) {

    display: none;

}



.hear_list ul li a:hover .img:nth-child(1) {

    display: none;

}



.hear_list ul li a:hover .img:nth-child(2) {

    display: block;

}



.hear_list ul li a:hover .more i::before {

    width: 100%;

    height: 100%;

}



.hear_list ul li a:hover .more i img {

    transform: rotate(45deg);

}



.hear_list ul li a:hover::before {

    width: 100%;

    height: 100%;

    opacity: 1;

}





@media (max-width:1279px) {

    .hear_list ul {

        flex-wrap: wrap;

        justify-content: flex-start;

    }



    .hear_list ul li {

        padding: 11px;

        width: 25%;

    }



}



@media (max-width:767px) {



    .hear_box {

        margin-top: 50px;

        padding: 30px 20px;

        border-radius: 16px;

    }



    .hear_list {

        padding-top: 30px;

    }



    .hear_list ul {

        margin-left: -5px;

        margin-right: -5px;

    }



    .hear_list ul li {

        padding: 5px 5px;

        width: 50%;

    }



    .hear_list .more i {

        width: 34px;

        height: 34px;

    }



}



@media (max-width:359px) {

    .hear_list ul li {

        width: 50%;

    }



}



/* index project */

.index_projects {

    position: relative;

    padding: 80px 0;

    overflow: hidden;

    z-index: 1;

}



.index_projects::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 60%;

    background-image: url(../images/project_bg.png);

    background-repeat: no-repeat;

    background-position: center bottom;

    background-size: cover;

    z-index: -1;

}



.project_top {

    align-items: flex-end;

}



.project_loop {

    padding-top: 64px;

    overflow: hidden;

}



.project_swiper .swiper-slide {

    border-radius: 24px;

    transition: all .4s;

    overflow: hidden;

}



.project_swiper .swiper-slide::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 6px;

    background: linear-gradient(259deg, #0C0DCA -3.49%, #86CCEA 101.82%);

    transition: width .4s;

    z-index: 8;

}



/*.project_swiper .swiper-slide-prev {*/

/*    opacity: 0;*/

/*}*/



.project_swiper .thumb {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}



.project_swiper .thumb i {

    display: block;

    width: 100%;

    height: 100%;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    -webkit-transition: -webkit-transform .6s;

    transition: -webkit-transform .6s;

    -o-transition: transform .6s;

    transition: transform .6s;

    transition: transform .6s, -webkit-transform .6s;

    -webkit-transition: transform .6s;

}



.project_swiper .mask {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0.4;

    background: linear-gradient(246deg, rgba(0, 0, 0, 0.50) 1.22%, #000 100%);

}



.project_swiper .project_cont {

    position: relative;

    padding: 40px 40px 24px 40px;

    width: 100%;

    height: 100%;

    z-index: 9;

}



.project_cont .title {

    margin-right: 70px;

    height: 94px;

    color: var(--white-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 700;

    line-height: 1.5;

}



.project_cont .title span {

    background-size: 0 100%;

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #ffffff 0%);

    background-repeat: no-repeat;

    transition: all 0.4s;

}



.project_cont .icon {

    position: absolute;

    right: 40px;

    top: 40px;

    width: 56px;

    height: 56px;

    opacity: 0;

    transition: opacity .3s;

}



.project_cont .icon span {

    position: relative;

    display: block;

    width: 100%;

    height: 100%;

    z-index: 1;

}



.project_cont .icon span img {

    position: absolute;

    top: 50%;

    left: 5px;

    transform: translateY(-50%);

    opacity: 0;

    transition: all .4s;

    transition-delay: .3s;

}



.project_cont .icon span::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 0;

    height: 0;

    background-color: var(--white-color);

    border-radius: 50%;

    z-index: -1;

    transition: all .4s;

}



.project_cont .prject_bottom {

    padding-top: 98px;

}



.project_cont .prject_bottom ul {

    display: flex;

    align-items: stretch;

    flex-wrap: wrap;

    margin-left: -15px;

    margin-right: -15px;

}



.project_cont .prject_bottom ul li {

    width: 50%;

    padding-left: 15px;

    padding-right: 15px;

    padding-bottom: 16px;

}



.project_cont .prject_bottom .s_t {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 700;

    line-height: 1.4;

}



.project_cont .prject_bottom p {

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



/* hover */

.project_swiper .swiper-slide:hover {

    border-radius: 0;

}



.project_swiper .swiper-slide:hover::before {

    width: 100%;

}



.project_swiper .swiper-slide:hover i {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

}



.project_swiper .swiper-slide:hover .title span {

    background-size: 100% 100%;

}



.project_swiper .swiper-slide:hover .project_cont .icon {

    opacity: 1;

}



.project_swiper .swiper-slide:hover .project_cont .icon span::before {

    width: 100%;

    height: 100%;

}



.project_swiper .swiper-slide:hover .project_cont .icon span img {

    left: 50%;

    transform: translate(-50%, -50%);

    opacity: 1;

}



/* button */



.project_button {

    padding-top: 64px;

    width: 100%;

    display: flex;

    justify-content: flex-end;

    align-items: center;

}



.project_button .r {

    display: flex;

    align-items: center;

}



.project_button .num {

    margin-right: 24px;

    color: #999;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.project_button .num .active {

    margin-right: 9px;

    color: var(--main-color);

}



.project_button .total {

    margin-left: 9px;

}



.project_button .r>div {

    display: flex;

    width: 56px;

    height: 56px;

    padding: 19px;

    justify-content: center;

    align-items: center;

    border-radius: 38px;

    border: 1px solid rgba(0, 0, 0, 0.20);

    transition: all .3s;

    cursor: pointer;

}



.project_button .r>div:first-child {

    margin-right: 8px;

}



.project_button .r>div:hover {

    background-color: var(--main-color);

    border-color: var(--main-color);

}



.project_button .r>div:hover svg path {

    stroke: var(--white-color);

}



@media (max-width:1579px) {

    .project_cont .icon {

        right: 30px;

    }



    .project_cont .prject_bottom {

        padding-top: 50px;

    }



}



@media (max-width:1366px) {

    .project_swiper .project_cont {

        padding: 30px 30px 24px 30px;

    }



    .project_cont .icon {

        top: 30px;

    }



    .project_cont .title {

        height: 70px;

    }



    .project_cont .prject_bottom {

        padding-top: 40px;

    }



    .project_cont .prject_bottom ul {



        margin-left: -10px;

        margin-right: -10px;

    }



    .project_cont .prject_bottom ul li {

        padding-left: 10px;

        padding-right: 10px;

    }



    .project_cont .prject_bottom p {

        line-height: 22px;

    }



}



@media (max-width:1280px) {

    .project_cont .icon {

        width: 46px;

        height: 46px;

    }



    .project_cont .title {

        height: 66px;

    }



    .project_cont .prject_bottom {

        padding-top: 30px;

    }



}



@media (max-width:767px) {

    .project_top {

        flex-wrap: wrap;

        align-items: flex-start;

    }



    .new_box_right {

        margin-top: 20px;

    }



    .project_loop {

        padding-top: 40px;

    }



    .project_swiper .project_cont {

        padding: 30px 20px 20px 20px;

    }



    .project_cont .prject_bottom {

        padding-top: 30px;

    }



    .project_cont .prject_bottom ul li {

        padding-bottom: 10px;

    }



    .project_cont .title {

        margin-right: 60px;

        font-size: 20px;

    }



    .project_cont .prject_bottom p {

        line-height: 1.2;

    }



    .project_cont .icon {

        right: 20px;

        top: 30px;

        width: 42px;

        height: 42px;

    }



    .index_projects {

        padding: 50px 0;

    }



    .project_button {

        padding-top: 30px;

    }



    .project_button .r>div {

        width: 46px;

        height: 46px;

        padding: 10px;

        border-radius: 38px;

    }



}



/* location */



.index_location {

    position: relative;

    padding: 80px 0;

    background-color: var(--main-color);

    overflow: hidden;

    z-index: 1;

}



.index_location::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 50%;

    height: 100%;

    background-image: url(../images/location_left.svg);

    background-repeat: no-repeat;

    background-size: cover;

    z-index: -1;

}



.index_location::after {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    width: 50%;

    height: 100%;

    background-image: url(../images/location_right.svg);

    background-repeat: no-repeat;

    background-size: cover;

    z-index: -1;

}



.index_location .my-container>div {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.location_left {

    flex: 1;

    max-width: 586px;

    margin-right: 50px;

}



.location_right {

    order: 2;

    width: 50%;

    max-width: 694px;

}



.location_left .map_tab {

    margin-top: 55px;

    padding: 32px;

    background: rgba(0, 0, 0, 0.15);

    -webkit-backdrop-filter: blur(4px);

    backdrop-filter: blur(4px);

    border-radius: 24px;

}



.location_right .map_img {

    position: relative;

    display: flex;

}



.map_tab .pub-t1 {

    display: none;

}



.map_tab .pub-t1.d-show {

    display: block;

}



.map_tab_img {

    display: flex;

    justify-content: space-between;

    align-items: stretch;

}



.map_tab_cont {

    padding-top: 16px;

    padding-bottom: 24px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.20);

}



.map_tab_cont p {

    margin-top: 8px;

    display: flex;

    align-items: flex-start;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

}



.map_tab_cont p img {

    width: 20px;

    margin-right: 8px;

    margin-top: 3px;

}



.map_tab .map_more {

    padding-top: 24px;

}



.map_tab .map_more a {

    display: flex;

    align-items: center;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

}



.map_tab .map_more a img {

    width: 20px;

    margin-left: 8px;

}



.map_tab_img .l {

    flex: 1;

    margin-right: 24px;

}



.map_tab_img .l .m_thumb {

    width: 100%;

    height: 100%;

    border-radius: 8px;

    overflow: hidden;

}



.map_tab_img .l .m_thumb i {

    display: block;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

}



.map_tab_img .r {

    padding: 7px 20px;

    display: flex;

    align-items: flex-end;

    width: 176px;

    height: 172px;

    background: #86CCEA;

    border-radius: 8px;

    color: var(--white-color);

    font-style: normal;

    font-weight: 400;

    line-height: normal;

}





/* 定位点 */



.t_sypt8svg {

    position: relative;

    width: 100%;

    padding-bottom: 97.6%;

}



.t_sypt8svg path {

    transition: all .4s ease;

}



.t_sypt8svg svg {

    width: 100%;

    height: 100%;

    position: absolute;

    top: 0;

    left: 0;

    display: block;

}



.t_sypt8di,

.map_no_location {

    position: absolute;

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    pointer-events: none;

}



.map_no_location {

    z-index: 8;

}



.t_sypt8dili {

    pointer-events: all;

    pointer-events: none;

    cursor: pointer;

    display: block;

    transition: all 0.36s;

}



.t_sypt8dili {

    position: absolute;

    transform: translate(-50%, -50%);

}



.t_sypt8xi {

    display: block;

    position: relative;

    transition: all 0.36s;

}



.t_sypt8xi {

    width: 42px;

    height: 42px;

    background-image: url(../images/map_point.svg);

    background-repeat: no-repeat;

    background-position: center;

    background-size: contain;

}



.t_sypt8zi {

    color: rgba(255, 255, 255, 0.30);

    font-size: 22px;

    font-style: normal;

    font-weight: 400;

    line-height: 1.2;

    text-align: center;

}



.t_xz {

    cursor: pointer;

}



.t_sypt8dili.active .t_sypt8zi {

    color: var(--white-color);

}



.t_sypt8svg .active,

.t_mapdi:hover {

    fill: #86CCEA;

}



@media (max-width:1280px) {

    .t_sypt8xi {

        width: 36px;

        height: 36px;

    }



    .t_sypt8zi {

        font-size: 20px;

    }

}



@media (max-width:1200px) {

    .location_left {

        margin-right: 20px;

    }



    .map_tab_img .r {

        width: 40%;

        height: 120px;

    }

}



@media (max-width:991px) {

    .index_location::before {

        background-size: contain;

        background-position: left bottom;

    }



    .index_location .my-container>div {

        flex-wrap: wrap;

    }



    .location_left {

        flex: inherit;

        margin-right: 0;

        margin-left: 0;

        margin: 0 auto;



    }



    .location_right {

        order: inherit;

        width: 100%;

    }



    .location_left .index_title {

        display: none;

    }



}



@media (max-width:767px) {

    .index_location {

        padding: 50px 0;

    }



    .location_left .map_tab {

        margin-top: 55px;

        padding: 30px 20px;

        border-radius: 16px;

    }



    .map_tab_img .l {

        margin-right: 10px;

    }



    .map_tab_img .r {

        padding: 7px 10px;

        width: 36%;

        height: 100px;

    }



    .t_sypt8xi {

        width: 26px;

        height: 26px;

    }



    .t_sypt8zi {

        font-size: 16px;

    }



    .location_right {

        padding-top: 30px;

    }



    .map_tab_cont p {

        margin-top: 10px;

        line-height: 1.4;

    }



    .map_tab_cont p img {

        width: 18px;

        margin-right: 6px;

        margin-top: 4px;

    }







}



/* index last */

.index_last {

    padding: 80px 0;

    overflow: hidden;

}



.index_last .box {

    position: relative;

    border-radius: 40px;

    overflow: hidden;

    z-index: 1;

}



.index_last .box .mask {

    position: relative;

    display: flex;

    flex-flow: column;

    align-items: center;

    padding-top: 135px;

    padding-bottom: 140px;

    padding-left: 50px;

    padding-right: 50px;

    background: rgba(15, 22, 203, 0.3);

    border-radius: 40px;

    z-index: 1;

}



.index_last .box .mask::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 20%;

    height: 50%;

    max-width: 200px;

    background-image: url(../images/last_left.svg);

    background-repeat: no-repeat;

    background-position: left bottom;

    background-size: contain;

    z-index: -1;

}



.index_last .box .mask::after {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    width: 30%;

    height: 100%;

    max-width: 330px;

    background-image: url(../images/last_right.svg);

    background-repeat: no-repeat;

    background-position: left bottom;

    background-size: contain;

    z-index: -1;

}



.index_last .box video {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: -1;

}



.index_last .box .mask .title {

    color: var(--white-color);

    text-align: center;

    font-family: 'Titillium Web';

    font-style: normal;

    font-weight: 700;

    line-height: 1.2;

}



.index_last .box .mask .ban_btn {

    margin-top: 40px;

}



@media (max-width:991px) {



    .index_last .box .mask {

        padding-top: 100px;

        padding-bottom: 110px;

        padding-left: 30px;

        padding-right: 30px;

    }





}



@media (max-width:767px) {

    .index_last {

        padding: 50px 0;

    }



    .index_last .box,

    .index_last .box .mask {

        border-radius: 20px;

    }



    .index_last .box .mask {

        padding-top: 80px;

        padding-bottom: 90px;

        padding-left: 20px;

        padding-right: 20px;

    }



    .index_last .box .mask .title {

        font-size: 24px;

    }



}



/* about */

.about_one {

    width: 100%;

    z-index: 1;

}



.about_video {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}



.about_video::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.40);



}



.about_video video {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.about_one_text {

    width: 100%;

    overflow: hidden;

}



.location_white,

.location_grey {

    padding-top: 24px;

    display: flex;

    align-items: center;
    opacity: 0 !important;
}



.location_white a {

    color: var(--white-color);

    font-size: 16px;

    font-weight: 400;

}



.location_grey a {

    color: rgba(0, 0, 0, 0.20);

    font-size: 16px;

    font-weight: 400;

}



.location_white a:nth-child(n + 2)::before {

    content: '/';

    padding: 0 8px;

}



.location_grey a:nth-child(n + 2)::before {

    content: '/';

    padding: 0 8px;

}



.location_white a:hover {

    /* color: var(--dark-color); */

}



.location_grey a:hover {

    color: var(--main-color);

}



/* about one */

.corporate_video {

    width: 100%;

    overflow: hidden;

}



.about_location {

    position: absolute;

    left: 0;

    top: 170px;

    width: 100%;

    z-index: 8;

}



.about_section {

    position: relative;

    overflow: hidden;

}



.one_img_box {

    width: 100%;

    height: 100vh;

    min-height: 600px;

    opacity: 0;

}



.one_text>.my-container {

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

}



.one_text {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 1;

}



.one_text .one_text_left {

    width: 50%;

    height: 100%;

    display: flex;

    flex-flow: column;

    justify-content: center;

}



.one_text .one_text_right {

    position: relative;

    width: 40%;

    max-width: 600px;

    padding-bottom: 160px;

    padding-left: 48px;

}



.one_text .one_text_right::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 1px;

    height: 100%;

    background-color: rgba(255, 255, 255, 0.20);

}



.one_text .one_text_right p {

    padding-bottom: 30px;

    color: #FFF;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.one_text .one_text_right p:last-child {

    padding-bottom: 0;

}



.one_text_left .t {

    padding-top: 20px;

    color: var(--white-color);

    font-style: normal;

    font-weight: 400;

    line-height: 1.5;

}



.one_text_left .des {

    margin-top: 24px;

    color: #FFF;

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 700;

    line-height: 1.3;

}



.he_phgfbx {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}



.he_phgfbx img {

    width: 300%;

    /* transition: width 1.8s ease-out; */

    transition: opacity 1.8s ease-out;

    transition-delay: .2s;

}



.one_img_text {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    max-width: 820px;

    display: flex;

    flex-flow: column;

    align-items: center;

    padding-left: 20px;

    padding-right: 20px;

    opacity: 0;

}



.one_img_text .eng {

    padding-bottom: 40px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    text-align: center;

}



.hide_opacity {

    opacity: 0;

}



.one_img_text .white_button .b_l,

.one_img_text .white_button .b_jt {

    background-color: transparent;

    border: 1px solid var(--white-color);

}



.one_img_text .white_button .b_l em:first-child {

    color: var(--white-color);

}



.one_img_text .white_button .b_jt i {

    background-image: url(../images/white_jt.svg);

}



.one_img_text .ban_btn a:hover .b_l,

.one_img_text .ban_btn a:hover .b_jt {

    border: none;

}



/* two */

.about_two {

    position: relative;



    width: 100%;

    overflow: hidden;

    z-index: 1;

}





.about_two .fix_bg {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}



.about_two .fix_bg img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.about_two_box {

    position: relative;

    width: 100%;

    height: 100vh;

    background-repeat: no-repeat;

    background-position: center;

    background-attachment: fixed;

    background-size: cover;

    z-index: 9;

}



.about_two_box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0.4;

    background: #000;

    z-index: -1;

}



.about_two_box .swiper-container {

    width: 100%;

    height: 100%;

}



.about_two .text_one {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    height: 100vh;

    display: flex;

    flex-flow: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}



.about_two .text_one .title {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 700;

    line-height: 1.3;

    text-transform: capitalize;

}



.about_two .text_one .des {

    margin-top: 16px;

    color: var(--white-color);

    font-size: 18px;

    font-style: normal;

    font-weight: 400;

    line-height: 28px;

    text-transform: capitalize;

}



.about_two .text_one .more_line {

    margin-top: 64px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    text-transform: capitalize;

}



.about_expertise {

    position: relative;

    padding: 105px 0 120px 0;

    width: 100%;

    background-color: var(--white-color);

}



.expertise_list {

    padding-top: 44px;

}



.expertise_list ul {

    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    margin-left: -12px;

    margin-right: -12px;

}



.expertise_list ul li {

    width: 50%;

    padding: 12px;

}



.expertise_list .bg {

    position: relative;

    padding: 127px 37px;

    height: 100%;

    border-radius: 16px;

    overflow: hidden;

    cursor: pointer;

    z-index: 1;

}



.expertise_list .bg::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0.3;

    background: #000;

}



.expertise_list .bg:after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    background: var(---, linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%));

    transition: opacity .4s;

}



.expertise_list .left {

    flex: 1;

    margin-right: 50px;

    max-width: 500px;

}



.expertise_list .thumb {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}



.expertise_list .thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    -webkit-transition: -webkit-transform .6s;

    transition: -webkit-transform .6s;

    -o-transition: transform .6s;

    transition: transform .6s;

    transition: transform .6s, -webkit-transform .6s;

    -webkit-transition: transform .6s;

}



.expertise_list .text {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 9;

}



.expertise_list .big_t {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-weight: 700;

    line-height: 1.5;

}



.expertise_list .two_title {

    margin-top: 8px;

    color: var(--white-color);

    font-size: 16px;

    font-family: 'SemiBold';

    font-style: normal;

    font-weight: 600;

    min-height: 52px;

    line-height: 26px;

    text-transform: capitalize;

}



.expertise_list .des {

    margin-top: 24px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    text-transform: capitalize;

}



.expertise_list .icon {

    order: 2;

    max-width: 130px;

}



.expertise_list .bg:hover .thumb img {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

}



.expertise_list .bg:hover:after {

    opacity: 0.9;

}



.expertise_list .bg:hover::before {

    opacity: 0;

}



/* last */

.about_team {

    position: relative;

    padding-top: 120px;

    padding-bottom: 170px;

    width: 100%;

    overflow: hidden;

    z-index: 1;

}



.about_team .fix_bg {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}



.about_team .fix_bg img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.about_team .index_title h2 {

    color: var(--white-color);

}



.about_team .mask {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 80%;

    max-height: 560px;

    background-image: url(../images/team_bg2.png);

    background-size: cover;

    background-repeat: no-repeat;

    background-position: top center;

}



.about_team .my-container {

    position: relative;

    z-index: 9;

}



.about_team .about_team_box {

    margin-top: 288px;

    max-width: 760px;

    float: right;

}



.about_team_box .text p {

    padding-bottom: 46px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



@media (max-width:1579px) {

    .expertise_list .bg {

        padding: 100px 37px;

    }



    .expertise_list .icon {

        max-width: 110px;

    }

}



@media (max-width:1439px) {

    .one_text .one_text_right {

        padding-bottom: 160px;

    }



    .one_text_left .des {

        margin-top: 16px;

        line-height: 1.2;

    }



    .hide_opacity {

        max-width: 250px;

    }



    .expertise_list .bg {

        padding: 90px 37px;

    }



    .expertise_list .icon {

        max-width: 100px;

    }



}



@media (max-width:1365px) {

    .one_text .one_text_right {

        padding-bottom: 120px;

    }



    .expertise_list .bg {

        padding: 80px 37px;

    }



    .expertise_list .icon {

        max-width: 90px;

    }



}



@media (max-width:1279px) {

    .about_location {

        top: 150px;

    }



    .one_text .one_text_right {

        padding-bottom: 60px;

    }



    .expertise_list .bg {

        padding: 60px 30px;

    }



    .expertise_list .left {

        margin-right: 30px;

    }



    .expertise_list .icon {

        max-width: 50px;

    }



    .about_team .about_team_box {

        margin-top: 200px;

    }

}



@media (max-width:991px) {

    .one_text .one_text_left {

        width: 55%;

    }



    .one_text .one_text_right {

        padding-bottom: 20px;

        padding-left: 30px;

    }



    .one_text .one_text_right p {

        padding-bottom: 20px;

    }



    .expertise_list .bg {

        padding: 50px 25px;

    }



    .expertise_list .text {

        flex-flow: column;

        align-items: flex-start;

    }



    .expertise_list .icon {

        order: inherit;

    }



    .expertise_list .left {

        padding-top: 25px;

        flex: inherit;

        width: 100%;

        margin-right: 0;

    }



    .about_team {

        padding-top: 100px;

        padding-bottom: 150px;

    }



    .about_team .about_team_box {

        margin-top: 188px;

    }





}



@media (max-width:767px) {

    .about_section {

        height: 100vh;

        overflow-y: auto;

        padding-top: 70px;

    }

    .about_location {

        /* top: 80px; */

        position: relative;

        top: inherit;

    }

    .about_video {

        /* height: 100vh; */

        position: fixed;

    }

    .about_video.not-fixed {
        position: static;
    }

    .one_text {

        position: relative;

        height: 100vh;

    }

    .one_text>.my-container {

        flex-flow: column;

        align-items: center;

        justify-content: center;

    }



    .one_text .one_text_left {

        width: 100%;

        height: auto;

    }



    .one_text .one_text_right {

        padding-top: 30px;

        padding-bottom: 0px;

        padding-left: 0px;

        width: 100%;

    }



    .one_text .one_text_right::before {

        display: none;

    }

    .one_img_box {

        padding: 50px 0;

        /* height: inherit; */

        min-height: inherit;

        opacity: 1;

    }

    .one_img_text {

        position: relative;

        top: inherit;

        left: inherit;

        transform: inherit;

    }

    .he_phgfbx {

        flex-wrap: wrap;

    }

    .he_phgfbx img {

        width: 100%;

        max-width: 200px;

    }

    .hide_opacity {

        display: none;

    }

    .one_img_text {

        padding-left: 20px;

        padding-right: 20px;

        /* padding-top: 20px; */

        opacity: 1;

    }



    .about_expertise {

        padding: 50px 0 60px 0;

    }



    .expertise_list {

        padding-top: 30px;

    }



    .expertise_list ul li {

        width: 100%;

    }



    .expertise_list .bg {

        padding: 40px 20px;

    }



    .expertise_list .big_t {

        font-size: 20px !important;

    }



    .about_team {

        padding-top: 60px;

        padding-bottom: 100px;

    }



    .about_team .about_team_box {

        margin-top: 60px;

    }



    .about_two_box {

        height: auto;

        background-position: center !important;

        background-image: none !important;

    }



    .about_two_box::before {

        z-index: 1;

    }



    .about_two_box .mobile_bg {

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 100%;

        z-index: -1;

    }



    .about_two_box .mobile_bg img {

        width: 100%;

        height: 100%;

        object-fit: cover;

    }



    .about_two .text_one {

        position: relative;

        padding: 60px 0;

        height: auto;

        z-index: 9;

    }



    .about_two .text_one .des {

        font-size: 16px;

        line-height: 1.5;

    }

}



/* our location*/

.page_banner {

    position: relative;

    width: 100%;

    height: 640px;

    overflow: hidden;

}



.page_banner .page_thumb {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: 1;

}



.page_banner .page_thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.page_banner .mask {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.20);

    background-image: url(../images/page_ban_icon.png);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    z-index: 2;

}



.page_banner .my-container {

    position: relative;

    height: 100%;

    padding-top: 160px;

    padding-bottom: 72px;

    display: flex;

    flex-flow: column;

    justify-content: space-between;

    z-index: 9;

}



.page_banner .page_title h2 {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 700;

    line-height: 1.5;

}



.page_banner .page_title p {

    padding-top: 16px;

    color: var(--white-color);

    font-size: 20px;

    font-style: normal;

    font-weight: 400;

    line-height: 1.5;

}



.pagge_box {

    min-height: 90vh;

}



.page_background {

    position: relative;

    z-index: 1;

}



.page_background::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 70%;

    max-height: 850px;

    background-image: url(../images/location_bg_top.png);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center top;

    z-index: -1;

}



.page_background::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 30%;

    max-height: 350px;

    background-image: url(../images/location_bg.png);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center bottom;

    z-index: -1;

}



@media (max-width:1440px) {

    .page_banner {

        height: 600px;

    }

}



@media (max-width:1366px) {

    .page_banner {

        height: 560px;

    }

}



@media (max-width:991px) {

    .page_banner {

        height: 500px;

    }

}



@media (max-width:767px) {



    .page_banner {

        height: 360px;

    }



    .page_banner .my-container {

        padding-top: 64px;

        padding-bottom: 30px;

    }



    .page_banner .page_title h2 {

        line-height: 1.2;

    }



    .page_banner .page_title p {

        font-size: 18px;

    }

}





/* location */

.location_box {

    padding-top: 85px;



}



.location_box .location_text {

    max-width: 784px;

    color: var(--dark-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 600;

    line-height: 1.5;

}



.location_list {

    padding-top: 44px;

    padding-bottom: 90px;

}



.location_list ul {

    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    margin-left: -12px;

    margin-right: -12px;

}



.location_list ul li {

    float: left;

    width: 33.33%;

    padding: 12px;

}



.location_list .bg {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    width: 100%;

    height: 100%;

    border-radius: 16px;

    overflow: hidden;

}



.location_list .thumb {

    position: relative;

    overflow: hidden;

}



.location_list .thumb::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.3);

    opacity: 0;

    z-index: 2;

}



.location_list .thumb i {

    display: block;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    -webkit-transition: -webkit-transform .6s;

    transition: -webkit-transform .6s;

    -o-transition: transform .6s;

    transition: transform .6s;

    transition: transform .6s, -webkit-transform .6s;

    -webkit-transition: transform .6s;

}



.location_list .hide_more {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    justify-content: center;

    width: 100%;

    opacity: 0;

    transition: opacity 0.4s ease;

    z-index: 3;

}



.location_list .bg .text {

    flex: 1;

    position: relative;

    padding: 32px;

    width: 100%;

    background-color: #F7F8FA;

    transition: all .3s;

    z-index: 1;

}



.location_list .bg .text::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

    opacity: 0;

    transition: opacity 0.3s ease-in-out;

    z-index: -1;

}



.location_list .bg .text .t {

    padding-bottom: 8px;

    color: var(--main-color);

    font-weight: 500;

    line-height: 1.5;

}



.l_adress {

    padding-top: 8px;

    align-items: flex-start;

    color: var(--dark-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.l_adress i {

    margin-right: 8px;

    margin-top: 4px;

    display: flex;

    width: 20px;

    height: 20px;

}



.l_adress i img:nth-child(2) {

    display: none;

}



.l_adress span {

    flex: 1;

}



.location_list .bg:hover .text::before {

    opacity: 1;

}



.location_list .bg:hover .thumb::before {

    opacity: 1;

}



.location_list .bg:hover .thumb i {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

}

.location_list .bg:hover .hide_more {

    opacity: 1;

}



.location_list .bg:hover .t {

    color: var(--white-color);

}



.location_list .bg:hover .l_adress {

    color: var(--white-color);

}





.location_list .bg:hover .l_adress i img:nth-child(1) {

    display: none;

}



.location_list .bg:hover .l_adress i img:nth-child(2) {

    display: block;

}



@media (max-width:1100px) {

    .location_list ul li {

        width: 50%;

    }

}



@media (max-width:767px) {

    .location_box {

        padding-top: 50px;

    }



    .location_list {

        padding-top: 20px;

        padding-bottom: 40px;

    }



    .location_list ul li {

        width: 100%;

    }



    .location_list .bg .text {

        padding: 32px 20px;

    }



    .hide_more {

        display: none;

    }



}



/* services */

.service_title {

    padding-top: 100px;

    display: flex;

    flex-flow: column;

    text-align: center;

    align-items: center;

}



.service_text {

    margin-top: 16px;

    max-width: 764px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.service_title .ban_btn {

    margin-top: 48px;

}



.service_team {

    margin-top: 90px;

    display: flex;

    align-items: stretch;

    border-radius: 24px;

    overflow: hidden;

}



.service_team .ser_team_left {

    position: relative;

    padding: 62px 50px 90px 50px;

    width: 50%;

    background-color: #F7F8FA;



    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    z-index: 8;

}



.service_team .ser_team_left::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 70%;

    height: 95%;

    max-width: 558px;

    background-image: url(../images/service_logo.svg);

    background-size: contain;

    background-position: left bottom;

    z-index: 2;

}



.service_team .ser_team_left::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    background: var(---, linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%));

    transition: opacity 0.4s ease-out;

    z-index: 1;

}



.service_team .ser_team_left .des {

    padding-top: 16px;

    max-width: 474px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.ser_team_left>div:first-child {

    position: relative;

    padding-bottom: 200px;

    z-index: 4;

}



.ser_team_left .bottom_text {

    position: relative;

    color: var(--dark-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    z-index: 4;

}



.service_team .ser_team_right {

    position: relative;

}



@media screen and (min-width: 768px) {

    .service_team .ser_team_right {

        width: 50%;

        order: 2;

    }



    .service_team .ser_team_right img {

        position: absolute;

        left: 0;

        top: 0;

        width: 0;

        height: 100%;

        transform: scale(1.1);

        transition: 1s;

        object-fit: cover;

    }

}



.service_team.animated .ser_team_right img {

    width: 100%;

    transform: none;

    transition-delay: 0.3s;

}



.service_team:hover .ser_team_left::before {

    background-image: url(../images/service_logo2.svg);

}



.service_team:hover .ser_team_left::after {

    opacity: 1;

}



.service_team:hover .ser_team_right img {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

    transition-delay: 0s;

}



.service_team:hover .index_title h2 {

    color: var(--white-color);

    background: transparent;

    -webkit-text-fill-color: inherit;

}



.service_team:hover .des,

.service_team:hover .bottom_text {

    color: var(--white-color);

}



.service_bottom {

    margin-top: 90px;

    position: relative;

    padding-top: 96px;

    padding-bottom: 86px;

    overflow: hidden;

    z-index: 1;

}



.service_bottom .bg {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}



.service_bottom .bg img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.service_bottom .bg::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0.3;

    background: #000;

}



.service_bottom .title {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-weight: 700;

    line-height: 1.5;

}



.service_bottom .text {

    padding-top: 16px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    opacity: 0.8;

}



.service_bottom .my-container {

    position: relative;

    z-index: 9;

}



.service_swiper {

    margin-top: 175px;

}



.service_swiper .border {

    position: relative;

    display: flex;

    width: 100%;

    height: 400px;

    padding: 32px;

    flex-direction: column;

    justify-content: space-between;

    align-items: flex-start;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(16px);

    overflow: hidden;

    z-index: 1;

}



.service_swiper .border::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

    opacity: 0;

    transition: opacity 0.4s;

    z-index: -1;

}



.service_swiper .border::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 78%;

    background-image: url(../images/service_last_logo.svg);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center bottom;

    opacity: 0;

    z-index: -1;

}



.service_swiper .border .icon {

    max-width: 60px;

}



.service_swiper .border .t {

    padding-top: 24px;

    color: var(--white-color);

    font-family: "Titillium Web";

    font-size: 20px;

    font-style: normal;

    font-weight: 600;

    line-height: 1.5;

}



.service_swiper .border .des {

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.service_swiper .border:hover::before {

    opacity: 1;

}



.service_swiper .border:hover::after {

    opacity: 1;

}



@media (max-width:1366px) {



    .ser_team_left>div:first-child {

        padding-bottom: 180px;

    }



}



@media (max-width:1365px) {

    .service_swiper {

        overflow: visible;

    }



}



@media (max-width:1280px) {



    .ser_team_left>div:first-child {

        padding-bottom: 160px;

    }



}



@media (max-width:991px) {

    .service_team .ser_team_left {

        padding: 62px 30px 90px 30px;

    }



    .ser_team_left>div:first-child {

        padding-bottom: 80px;

    }



    .service_swiper {

        margin-top: 100px;

    }



}



@media (max-width:767px) {

    .service_title {

        padding-top: 50px;

    }



    .service_team {

        flex-wrap: wrap;

    }



    .service_team .ser_team_left {

        width: 100%;

        padding: 30px 20px 30px 20px;

    }



    .ser_team_left .bottom_text p {

        margin-top: 10px;

    }



    .service_bottom {

        margin-top: 50px;

        padding-top: 60px;

        padding-bottom: 50px;

    }



    .service_swiper {

        margin-top: 50px;

        overflow: visible;

    }



}



/* about policy */

.policy_box {

    padding-top: 55px;

    padding-bottom: 150px;

}



.policy_left_menu {

    position: sticky;

    top: 90px;

    width: 320px;

    height: max-content;

}



.policy_right {

    padding-left: 100px;

    flex: 1;

}



.policy_left_menu ul li {

    padding-bottom: 16px;

}



.policy_left_menu a {

    position: relative;

    padding-left: 14px;

    display: block;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.policy_left_menu a::before {

    content: "·";

    position: absolute;

    left: 0;

    top: 2pxs;

    font-size: 16px;

    font-style: normal;

    font-weight: 700;

}



.policy_left_menu a:hover,

.policy_left_menu .active a {

    color: var(--main-color);

}



.policy_title {

    color: var(--dark-color);

    font-family: "Titillium Web";

    font-weight: 600;

    line-height: 1.5;

    text-transform: capitalize;

}



.policy_text {

    padding-top: 16px;

    padding-bottom: 32px;

    margin-bottom: 32px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.10);

}



.policy_right .term_box:last-child .policy_text {

    margin-bottom: 0;

}



.policy_text p {

    padding-bottom: 25px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.policy_text p:last-child {

    padding-bottom: 0;

}



@media (max-width:1279px) {

    .policy_right {

        padding-left: 50px;

    }

}



@media (max-width:991px) {

    .policy_left_menu {

        width: 260px;

    }



}



@media (max-width:767px) {

    .policy_box {

        padding-top: 50px;

        padding-bottom: 50px;

    }



    .policy_left_menu {

        display: none;

    }



    .policy_right {

        flex: inherit;

        padding-left: 0;

    }

}



/*page*/

.paged {

    padding: 50px 0 50px 0;

    text-align: center;

    overflow: hidden;

}



.paged .pagination {

    display: flex;

    align-items: center;

    justify-content: center;

}



.paged .pagination li {

    display: inline-block;

}



.paged:after {

    clear: both;

    content: '';

    width: 0px;

    display: block;

    height: 0px;

    visibility: hidden;

}



.paged span,

.paged a {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 4px;

    padding: 4px;

    height: 40px;

    width: 40px;

    font-size: 16px;

    font-weight: 400;

    border-radius: 40px;

    border: 1px solid transparent;

}





.paged ul li:first-child span,

.paged ul li:first-child a,

.paged ul li:last-child a,

.paged ul li:last-child span {

    width: 40px;

    height: 40px;

    background-color: transparent;

    border: 1px solid rgba(0, 0, 0, 0.20);

}



.paged ul li:first-child span,

.paged ul li:first-child a {

    margin-right: 16px;

}



.paged ul li:last-child span,

.paged ul li:last-child a {

    margin-left: 18px;

}



.paged ul li:first-child a:hover,

.paged ul li:first-child span:hover,

.paged ul li:last-child a:hover,

.paged ul li:last-child span:hover,

.paged a:hover,

.paged .active span {

    color: var(--white-color);

    background-color: var(--main-color);

    border-color: var(--main-color);

}



.paged a:hover svg path {

    stroke: var(--white-color);

}



.paged ul li.disabled span {

    cursor: default;

    pointer-events: none;

}



@media (max-width:767px) {

    .paged {

        padding: 30px 0 30px 0;

    }



    .paged span,

    .paged a {

        font-size: 14px;

        padding: 0 5px;

        margin: 0 2px;

        width: 40px;

        height: 40px;

    }



    .paged ul li:first-child span,

    .paged ul li:last-child a,

    .paged ul li:first-child a,

    .paged ul li:last-child span {

        width: 40px;

        height: 40px;

    }





    .paged ul li:first-child span,

    .paged ul li:first-child a {

        margin-right: 4px;

    }



    .paged ul li:last-child span,

    .paged ul li:last-child a {

        margin-left: 4px;

    }



}



/* project  */

.project_box {

    padding-bottom: 50px;

}



.project_top_line .time {

    color: var(--main-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.project_top_line {

    padding-top: 16px;

}



.project_top_line .time img {

    margin-right: 8px;

    width: 20px;

}



.list_share .title {

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    text-transform: capitalize;

}



.project_top_line .share-btn {

    position: relative;

    margin-left: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(0, 0, 0, 0.10);



    cursor: pointer;

    overflow: hidden;

}



.project_top_line .share-btn img:nth-child(2) {

    display: none;

}



.project_top_line .share-btn:before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    margin: auto;

    border-radius: 50%;

    display: block;

    width: 0;

    height: 0;

    background-color: var(--main-color);

    transition: all 0.5s ease-out;

    z-index: -1;

}



.project_top_line .share-btn:hover img:nth-child(1) {

    display: none;

}



.project_top_line .share-btn:hover img:nth-child(2) {

    display: block;

}



.project_top_line .share-btn:hover:before {

    width: 100%;

    height: 100%;

}



.project_list {

    padding-top: 70px;

}



.project_publiic ul {

    display: flex;

    flex-wrap: wrap;

    margin-left: -12px;

    margin-right: -12px;

}



.project_publiic>ul>li {

    padding: 12px;

    width: 33.33%;

}



.project_list>ul>li>a {

    display: block;

    position: relative;

    border-radius: 16px;

    transition: all .4s;

    overflow: hidden;

}



.project_list>ul>li>a::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 6px;

    background: linear-gradient(259deg, #0C0DCA -3.49%, #86CCEA 101.82%);

    transition: width .4s;

    z-index: 8;

}



.project_publiic .project_cont .title {

    margin-right: 0;

}



.project_publiic .project_cont {

    padding: 40px;

    height: 357px;

}



.project_publiic .project_cont .title span {

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 94%, rgba(255, 255, 255, 0.8) 0%);

}



.project_publiic .project_cont .prject_bottom {

    padding-top: 0;

}



.project_publiic .project_cont .prject_bottom {

    position: absolute;

    left: 0;

    bottom: 24px;

    padding-left: 40px;

    padding-right: 40px;

    opacity: 0;

    transform: translateY(100%);

    transition: all .4s;

}



.project_list>ul>li>a:hover:hover {

    border-radius: 0;

}



.project_publiic a:hover .prject_bottom {

    opacity: 1;

    transform: inherit;

}



.project_list>ul>li>a:hover::before {

    width: 100%;

}



.project_list>ul>li>a:hover .title span {

    background-size: 100% 100%;

}



.project_list>ul>li>a:hover .thumb i {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

}





@media (max-width:1366px) {

    .project_publiic .project_cont {

        padding: 30px;

    }



    .project_publiic .project_cont .prject_bottom {

        padding-left: 30px;

        padding-right: 30px;

        bottom: 20px;

    }

}



@media (max-width:1279px) {

    .project_publiic .project_cont .prject_bottom {

        bottom: 16px;

    }

}



@media (max-width:991px) {

    .project_list>ul>li {

        width: 50%;

    }



}



@media (max-width:640px) {

    .project_list>ul>li {

        width: 100%;

    }



    .project_publiic .project_cont {

        padding: 30px 20px;

        height: 310px;

    }



    .project_publiic .project_cont .prject_bottom {

        padding-left: 20px;

        padding-right: 20px;

    }



    .project_publiic .project_cont .prject_bottom {

        opacity: 1;

        transform: inherit;

    }



    .project_list .project_cont .prject_bottom ul {

        margin-left: -5px;

        margin-right: -5px;

    }



    .project_list .project_cont .prject_bottom ul li {

        padding-left: 5px;

        padding-right: 5px;

    }



}



/* project detail */

.height164 {

    height: 164px;

}



.project_detail {

    background-color: #F7F8FA;

}



.case_xq_top {

    padding-top: 80px;

}



.case_x_title {

    font-family: "Titillium Web";

    color: var(--dark-color);

    font-weight: 700;

    line-height: 1.5;

}



.project_position {

    padding-top: 100px;

    padding-bottom: 85px;

}



.case_xq_cont {

    margin-top: 32px;

    padding-top: 42px;

    padding-bottom: 45px;

    border-top: 1px solid rgba(0, 0, 0, 0.10);

}



.case_xq_cont .xq_cont {

    padding-bottom: 85px;

    display: flex;



}



.case_xq_cont .xq_cont .xq_cont_left {

    width: 300px;

    float: left;

    position: sticky;

    top: 85px;

    height: max-content;

    z-index: 9;

}



.case_xq_cont .xq_cont .xq_cont_right {

    flex: 1;

    order: 2;

    padding-left: 64px;

    margin-left: 64px;

    border-left: 1px solid rgba(0, 0, 0, 0.10);

}

.case_xq_cont .xq_cont .xq_cont_right video {

    width: 100%;
    border-radius: 16px;
}



.case_xq_cont .xq_cont_left .s_t {

    color: var(--dark-color);

    font-family: "Titillium Web";

    font-size: 30px;

    font-weight: 700;

    line-height: 1.5;

}



.case_xq_cont .xq_cont_left .big_t {

    padding-top: 4px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 28px;

}



.case_xq_cont .xq_cont_left .pt35 {

    padding-top: 40px;

}



.case_xq_cont .xq_cont_right .title {

    padding-bottom: 32px;

    color: var(--dark-color);

    font-size: 24px;

    font-style: normal;

    font-weight: 700;

    line-height: 1.5;

}



.case_xq_cont .xq_cont_right .text p {

    padding-bottom: 24px;

    color: #666;

    font-size: 16px;

    font-weight: 400;

    line-height: 26px;

}



.case_xq_cont .xq_cont_right .text p:last-child {

    padding-bottom: 0;

}



.case_xq_cont .xq_cont_right .text p img {

    display: block;

    max-width: 100%;

    width: auto !important;

    height: auto !important;

    margin: 0 auto;

    border-radius: 16px;

}



.label_list {

    margin-top: 40px;

    padding-top: 40px;

    border-top: 1px solid rgba(0, 0, 0, 0.10);

}



.label_list>ul {

    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    margin-left: -4px;

    margin-right: -4px;

}



.label_list>ul>li {

    padding: 4px;

}



.label_list>ul>li a {

    display: flex;

    padding: 4px 16px;

    justify-content: center;

    align-items: center;

    border-radius: 4px;

    background-color: var(--white-color);

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    transition: all .3s;

}



.label_list>ul>li a:hover {

    background-color: var(--main-color);

    color: var(--white-color);

}



.project_p_title {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}



.project_p_title .text {

    padding-top: 8px;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    text-align: center;

}



.x_sharecopy {

    display: none;

    position: fixed;

    top: 50%;

    left: 50%;

    -webkit-transform: translate(-50%, -50%);

    -ms-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    background: rgba(78, 78, 78, 0.89);

    border-radius: 6px;

    backdrop-filter: blur(6px);

    font-size: 14px;

    padding: 10px 30px;

    color: var(--white-color);

    width: max-content;

    z-index: 9999;

}



.x_copyIcon {

    background: url(../images/new_link_w.svg) center center / contain no-repeat;

    width: 20px;

    height: 30px;

    float: left;

}



.x_copyDesc {

    font-size: 14px;

    padding-left: 16px;

    font-weight: 400;

    color: #FFFFFF;

    line-height: 30px;

    float: left;

}



@media (max-width:1279px) {

    .case_xq_cont .xq_cont .xq_cont_left {

        width: 200px;

    }



    .case_xq_cont .xq_cont .xq_cont_right {

        width: calc(100% - 200px);

        padding-left: 60px;

    }



}



@media (max-width:991px) {



    .case_xq_cont .xq_cont .xq_cont_right {

        padding-left: 40px;

    }



}



@media (max-width:767px) {

    .height164 {

        height: 64px;

    }



    .case_xq_cont .xq_cont .xq_cont_left {

        width: 100%;

        position: relative;

        top: 0;

    }



    .case_xq_cont .xq_cont .xq_cont_right {

        width: 100%;

        padding-left: 0;

        padding-top: 30px;

        border-left: none;

    }



    .case_xq_cont .xq_cont {

        padding-bottom: 35px;

    }



    .case_xq_cont .xq_cont_left .pt35 {

        padding-top: 25px;

    }

}



/* 翻页 */

.new_page {

    display: flex;

    align-items: center;

    justify-content: space-between;

}



.new_page a:first-child,

.new_page a:nth-child(3) {

    width: calc(50% - 220px);

}



.newxq_list span,

.newxq_prev span,

.newxxq_next span {

    color: var(--dark-color);

    font-size: 16px;

    font-weight: 600;

    line-height: 26px;

}



.newxq_prev span {

    flex: 1;



    text-align: right;

    overflow: hidden;

    white-space: nowrap;

    -o-text-overflow: ellipsis;

    text-overflow: ellipsis;

}



.newxxq_next span {

    flex: 1;



    overflow: hidden;

    white-space: nowrap;

    -o-text-overflow: ellipsis;

    text-overflow: ellipsis;

}



.newxq_list,

.newxq_prev,

.newxxq_next {

    padding: 20px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 8px;

    background-color: var(--white-color);

    font-size: 16px;

    height: 66px;

    cursor: pointer;

    transition: all .3s;

}



.newxq_list {

    justify-content: center;

}



.newxq_prev svg {

    margin-right: 16px;

}



.newxxq_next svg {

    margin-left: 16px;

}



.newxq_list::after {

    content: '';

    height: 80%;

    width: 1px;

    background-color: rgba(0, 0, 0, 0.10);

    position: absolute;

    left: -40px;

}



.newxq_list::before {

    content: '';

    height: 80%;

    width: 1px;

    background-color: rgba(0, 0, 0, 0.10);

    position: absolute;

    right: -40px;

}



.newxq_list {

    width: 280px;

    margin-left: 80px;

    margin-right: 80px;

    position: relative;

}



.newxq_list svg {

    margin-left: 16px;

}



.newxq_prev:hover span {

    color: #fff;

    transition: .3s;

}



.newxq_prev:hover {

    background-color: var(--main-color);

    transition: .3s;

}



.newxxq_next:hover {

    background-color: var(--main-color);

    transition: .3s;

}



.newxq_prev:hover svg path {

    stroke: #fff;

    transition: .3s;

}



.newxxq_next:hover span {

    color: #fff;

    transition: .3s;

}



.newxxq_next:hover svg path {

    stroke: #fff;

    transition: .3s;

}



.newxq_list:hover {

    background: var(--main-color);

    color: #FFF
}



.newxq_list:hover span {

    color: var(--white-color);

}



.newxq_list:hover svg path {

    stroke: #fff;

    transition: .3s;

}



.project_p_loop {

    padding-top: 40px;

}



.project_p_loop .project-pagination {

    margin: 0 auto;

    margin-top: 40px;

    width: 200px;

    position: relative;

    height: 4px;

    border-radius: 8px;

    background-color: transparent;

    overflow: hidden;

}



.project_p_loop .project-pagination::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0, 0, 0, 0.10);

}



.project_p_loop .project-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {

    background-color: var(--main-color);

}



@media (max-width:1279px) {

    .case_xq_top {

        padding-top: 60px;

    }



    .case_xq_cont .xq_cont_left .pt35 {

        padding-top: 30px;

    }



    .label_list {

        margin-top: 30px;

        padding-top: 30px;

    }



    .project_position {

        padding-top: 60px;

        padding-bottom: 65px;

    }



}



@media (max-width:991px) {



    .new_page a:first-child,

    .new_page a:nth-child(3) {

        width: calc(50% - 120px);

    }



    .newxq_list {

        width: 160px;

        margin-left: 40px;

        margin-right: 40px;

    }



    .newxq_list::after {

        left: -20px;

    }



    .newxq_list::before {

        right: -20px;

    }



    .new_xqfxbox span {

        margin-right: 20px;

        width: 54px;

        height: 54px;

    }



    .newxq_prev svg {

        margin-right: 10px;

    }



    .newxq_list svg {

        margin-left: 10px;

    }



    .newxxq_next svg {

        margin-left: 10px;

    }



}



@media (max-width:767px) {

    .case_xq_top {

        padding-top: 50px;

    }



    .case_xq_cont {

        margin-top: 20px;

        padding-top: 20px;

        padding-bottom: 0px;

    }



    .case_position {

        padding-bottom: 40px;

    }



    .new_page {

        flex-wrap: wrap;

    }



    .new_page a:first-child,

    .new_page a:nth-child(3) {

        width: calc(50% - 35px);

    }



    .newxq_list,

    .newxq_prev,

    .newxxq_next {

        padding: 16px 8px;

        font-size: 12px;

        height: 56px;

    }



    .newxq_prev span,

    .newxxq_next span {

        font-size: 12px;

    }



    .newxq_prev span {

        text-align: left;

    }



    .newxxq_next span {

        text-align: right;

    }



    .newxq_list {

        width: 56px;

        padding: 16px 4px;

        margin-left: 5px;

        margin-right: 5px;

    }



    .newxq_list span {

        line-height: 20px;

        font-size: 0;

    }



    .newxq_list svg {

        margin-left: 4px;

        width: 16px;

    }



    .newxq_prev svg {

        margin-right: 4px;

        width: 18px;

    }



    .newxxq_next svg {

        margin-left: 4px;

        width: 18px;

    }



    .newxq_prev span em,

    .newxxq_next span em {

        display: none;

    }



    .newxq_list::before,

    .newxq_list::after {

        display: none;

    }



    .newxq_prev span {

        font-size: 12px;

    }



    .new_xqfxbox span {

        margin-right: 12px;

        padding: 10px;

        width: 40px;

        height: 40px;

    }



    .project_top_line {

        flex-wrap: wrap;

    }



    .list_share {

        padding-top: 20px;

        flex-wrap: wrap;

    }



    .list_share .r {

        width: 100%;

        padding-top: 8px;

        justify-content: flex-start;

    }



    .project_top_line .share-btn {

        margin-left: 6px;

        width: 36px;

        height: 36px;

        padding: 8px;

    }



    .project_top_line .share-btn:first-child {

        margin-left: 0;

    }



    .case_xq_cont .xq_cont {

        flex-wrap: wrap;

    }



    .case_xq_cont .xq_cont .xq_cont_left {

        margin-top: 30px;

        width: 100%;

        display: flex;

        flex-wrap: wrap;

        align-items: stretch;

        border-top: 1px solid rgba(0, 0, 0, 0.10);

    }



    .case_xq_cont .xq_cont .xq_cont_right {

        padding-top: 0;

        flex: inherit;

        order: inherit;

        padding-left: 0;

        margin-left: 0;

        border-left: inherit;

    }



    .xq_left_loop {

        padding-top: 20px !important;

        width: calc(50% - 10px);

    }



    .label_list {

        width: 100%;

    }



    .case_xq_cont .xq_cont_left .s_t {

        font-size: 24px;

        line-height: 1.2;

    }



    .case_xq_cont .xq_cont_right .title {

        font-size: 20px;

    }



    .project_p_loop .project-pagination {

        height: 3px;

    }

}



@media (max-width:359px) {



    .newxq_prev span,

    .newxxq_next span {

        display: none;

    }



    .newxxq_next {

        justify-content: flex-end;

    }

}



/* solar guide */

.guide_box {

    z-index: inherit;

}



.guide_one {

    padding-top: 88px;

    padding-bottom: 95px;

}



.guide_one_text {

    padding-top: 16px;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.guide_table {

    padding-top: 55px;

    justify-content: space-between;

    align-items: stretch;

}



.guide_table_left {

    position: relative;

    padding-left: 50px;

    padding-right: 80px;

    width: 50%;

}



.guide_table_left::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 10px;

    height: 100%;

    border-radius: 30px;

    opacity: 0.05;

    background: #000;

}



.guide_table_left ul li {

    padding: 32px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.10);

    cursor: pointer;

}



.guide_table_left ul li:first-child {

    padding-top: 0;

}



.guide_table_left ul li .title {

    position: relative;

    padding-right: 130px;

    color: rgba(0, 0, 0, 0.3);

    font-family: "Titillium Web";

    font-size: 20px;

    font-style: normal;

    font-weight: 600;

    line-height: 1.5;

}



.guide_table_left ul li .title::before {

    content: "";

    position: absolute;

    right: 10px;

    top: 50%;

    transform: translateY(-50%);

    width: 24px;

    height: 24px;

    background-image: url(../images/guide_jt.svg);

    background-repeat: no-repeat;

    background-size: 100%;

    opacity: 0;

    transition: all .4s;

}



.guide_table_left ul li.active .title {

    color: var(--dark-color);

}



.progress-bar {

    position: absolute;

    top: 0;

    left: 0;

    height: 0;

    width: 10px;

    border-radius: 30px;

    background: linear-gradient(180deg, #86CCEA -1.52%, #0C0DCA 89.66%);

    transition: height 0.3s ease;

}



.guide_table_right {

    position: relative;

    width: 50%;

}



.guide_table_right .pub-t1 {

    position: absolute;

    display: flex;

    align-items: center;

    opacity: 0;

    width: 100%;

    height: 100%;

    transition: opacity 0.3s;

}



.guide_table_right .pub-t1.d-show {

    opacity: 1;

}



.guide_table_right img {

    border-radius: 24px;

}



.guide_table_left ul li .text {

    padding-right: 130px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 3;
    /* 限制为3行 */

    -webkit-box-orient: vertical;

}



.guide_table_left ul li.active .title::before {

    right: 0;

    opacity: 1;

}

.guide_table_left ul li.active .text {

    min-height: 100px;

}

.guide_two {

    padding-top: 90px;

    padding-bottom: 95px;

    background: var(--main-color);

    overflow: hidden;

}



.guide_two .index_title h2 {

    color: var(--white-color);

}



.work_swiper {

    margin-top: 55px;

    overflow: visible;

}



.work_swiper .swiper-wrapper {

    align-items: stretch;

}



.work_swiper .swiper-slide {

    height: auto;

}



.work_swiper .border {

    display: flex;

    padding: 32px;

    flex-direction: column;

    align-items: flex-start;

    justify-content: space-between;

    height: 100%;

    border-radius: 16px;

    border: 1px solid rgba(255, 255, 255, 0.40);

    transition: background-color .3s;

}



.work_swiper .border:hover {

    background-color: var(--white-color);

}



.work_swiper .icon {

    max-width: 66px;

}



.work_swiper .icon img:nth-child(2) {

    display: none;

}



.work_swiper .title {

    margin-top: 24px;

    color: var(--white-color);

    font-family: "Titillium Web";

    font-weight: 600;

    line-height: 1.5;

}



.work_swiper .text {

    margin-top: 80px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.work_swiper .border:hover .title {

    color: var(--dark-color);

}



.work_swiper .border:hover .text {

    color: #666;

}



.work_swiper .border:hover .icon img:nth-child(1) {

    display: none;

}



.work_swiper .border:hover .icon img:nth-child(2) {

    display: block;

}



/* solar system components */



.guide_three {

    padding-top: 88px;

    overflow: hidden;

}



.components_swiper {

    margin-top: 55px;

}



.components_box {

    position: relative;

}



.components_box .swiper-container .swiper-scrollbar {

    margin-top: 20px;

    position: relative;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 3px;

    background-color: #e6e6e6;

    border-radius: 6px;

    overflow: hidden;

}



.components_box .swiper-container .swiper-scrollbar .swiper-scrollbar-drag {

    height: 3px;

    background: var(--main-color);

    border-radius: 4px;

}



.components_swiper {

    overflow: initial;

}



.components_swiper .swiper-slide {

    height: 560px;

    padding: 32px;

    border-radius: 16px;

    overflow: hidden;

    cursor: pointer;

    position: relative;



    display: flex;

    flex-direction: column;

    justify-content: space-between;

    align-items: flex-start;

    transition: all 0.5s;

    -webkit-transition: all 0.5s;

    -moz-transition: all 0.5s;

    -ms-transition: all 0.5s;

}



.components_swiper .swiper-slide::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0.77%, rgba(0, 0, 0, 0.20) 100%);

}



.components_swiper .com_thumb {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    z-index: -1;

}



.components_swiper .com_thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.components_swiper .icon {

    max-width: 56px;

    position: relative;

    z-index: 9;

}



.components_swiper .text {

    position: relative;

    width: 100%;

    z-index: 9;

}



.components_swiper .title {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-weight: 600;

    line-height: 1.5;

}



.components_swiper .des {

    position: absolute;

    bottom: 0;

    left: 10%;

    width: 100%;



    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    opacity: 0;

}



.components_swiper .des .title {

    margin-bottom: 8px;

}



/* active */



.components_swiper .swiper-slide.active::before {

    background: rgba(0, 0, 0, 0.40);

}



.components_swiper .swiper-slide.active .text>.title:first-child {

    opacity: 0;

}



.components_swiper .swiper-slide.active .des {

    left: 0;

    opacity: 1;

    transition: all 0.4s ease 0.3s;

}



/* guide ideal */

.guide_four {

    margin-top: 85px;

    padding-top: 100px;

    padding-bottom: 95px;

    position: relative;

    background-color: #F7F8FA;

    z-index: 1;

}



.guide_four::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 50%;

    height: 80%;

    background-image: url(../images/idea_icon.svg);

    background-position: left bottom;

    background-repeat: no-repeat;

    background-size: contain;

    z-index: -1;

}



.guide_four::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 40%;

    max-height: 675px;

    background-image: url(../images/idea_bg.png);

    background-position: center bottom;

    background-repeat: no-repeat;

    background-size: cover;

    z-index: -1;

}

.guide_four .index_title h2 {

    position: sticky;

    top: 80px;

    height: max-content;

}

.guide_four_box {

    flex: 1;

    margin-left: 100px;

    max-width: 1224px;

}



.guide_four_box ul {

    margin-left: -12px;

    margin-right: -12px;

    display: flex;

    align-items: stretch;

    flex-wrap: wrap;

}



.guide_four_box ul li {

    padding: 12px;

    width: 50%;



}



.guide_four_box .bg {

    position: relative;

    width: 100%;

    height: 100%;

    padding: 24px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.90);

    backdrop-filter: blur(20px);

    overflow: hidden;

    z-index: 1;

}



.guide_four_box .bg::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

    transition: opacity .3s;

    z-index: -1;

}



.guide_four_box .bg .icon {

    max-width: 56px;

}



.guide_four_box .bg .t {

    margin-top: 12px;

    color: var(--dark-color);

    font-style: normal;

    font-weight: 600;

    line-height: 1.5;

}



.guide_four_box .bg .text {

    margin-top: 12px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.guide_four_box .bg .icon img:nth-child(2) {

    display: none;

}



.guide_four_box .bg:hover .icon img:nth-child(1) {

    display: none;

}



.guide_four_box .bg:hover .icon img:nth-child(2) {

    display: block;

}



.guide_four_box .bg:hover::before {

    opacity: 1;

}



.guide_four_box .bg:hover .t {

    color: var(--white-color);

}



.guide_four_box .bg:hover .text {

    color: rgba(255, 255, 255, 0.80);

}



/* five */

.guide_five {

    margin-top: 85px;

    margin-bottom: 85px;

    position: relative;

    display: flex;

    justify-content: flex-end;

    padding: 134px 90px;

    border-radius: 24px;

    overflow: hidden;

}



.guide_five .background {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}



.guide_five .background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.five_cont {

    display: flex;

    max-width: 700px;

    padding: 40px;

    flex-direction: column;

    justify-content: space-between;

    align-items: flex-start;

    border-radius: 24px;

    background: var(--main-color);

}



.five_cont .t {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-weight: 700;

    line-height: 1.5;

}



.five_cont .des {

    margin-top: 16px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.five_cont .text {

    padding-top: 130px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



/*guide last */

.guide_last {

    padding-bottom: 155px;

}



.guide_process_list {

    padding-top: 55px;

}



.guide_process_list ul {

    margin-left: -27px;

    margin-right: -27px;

    display: flex;

    flex-wrap: wrap;

}



.guide_process_list ul:nth-child(2) {

    flex-direction: row-reverse
}



.guide_process_list ul li {

    position: relative;

    width: 25%;

    padding: 27px;

}



.guide_process_list ul li:after {

    content: "";

    position: absolute;

    right: -27px;

    top: 50%;

    transform: translateY(-50%);

    background-color: rgba(0, 0, 0, 0.05);

    height: 14px;

    width: 54px;

}



.guide_process_list ul li:nth-child(4n):before {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -27px;

    transform: translateX(-50%);

    background-color: rgba(0, 0, 0, 0.05);

    height: 54px;

    width: 14px;

}



.guide_process_list ul li:nth-child(4n):after {

    display: none;

}



.guide_process_list ul:nth-child(2) li:first-child:after {

    display: none;

}



.guide_process_list .border {

    position: relative;

    height: 216px;

}



.guide_process_list .border .bg {

    position: absolute;

    left: 0;

    top: 0;

    padding: 40px 32px;

    width: 100%;

    height: 100%;

    border-radius: 16px;

    border: 1px solid rgba(0, 0, 0, 0.10);

    background: var(--white-color);

    transition: height .4s;

}



.guide_process_list .number {

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.guide_process_list .title {

    margin-top: 8px;

    color: var(--dark-color);

    font-family: "Titillium Web";

    font-size: 20px;

    font-style: normal;

    font-weight: 600;

    line-height: 30px;

}



.guide_process_list .des {

    height: 0;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    overflow: hidden;

    transition: all .4s;

}



.guide_process_list .icon {

    margin-top: 24px;

    max-width: 48px;

}



.guide_process_list .icon img:nth-child(2) {

    display: none;

}



.guide_process_list ul li:hover {

    z-index: 9;

}



.guide_process_list .border:hover .bg {

    height: auto;

    border: none;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

}



.guide_process_list .bg:hover .number {

    color: rgba(255, 255, 255, 0.5);

}



.guide_process_list .bg:hover .des {

    margin-top: 12px;

    height: auto;

}



.guide_process_list .bg:hover .title {

    color: var(--white-color);

}



.guide_process_list .bg:hover .icon img:nth-child(1) {

    display: none;

}



.guide_process_list .bg:hover .icon img:nth-child(2) {

    display: block;

}





@media (min-width: 991px) {

    .components_swiper .swiper-slide {

        width: 200px;

    }



    .components_swiper .swiper-slide.active {

        width: 46.5%;

    }

}



@media (min-width: 768px) {

    .guide_table_left ul li .text {

        opacity: 0;

        max-height: 0;

        overflow: hidden;

        transition: opacity .2s, max-height 0.5s ease;

    }



    .guide_table_left ul li.active .text {

        max-height: inherit;

        opacity: 1;

        padding-top: 16px;

    }

}



@media (max-width:1679px) {

    .guide_process_list .border {

        height: 246px;

    }



    .guide_process_list .title {

        height: 60px;

    }

}



@media (max-width:1440px) {



    .guide_table_left ul li .title,

    .guide_table_left ul li .text {

        padding-right: 100px;

    }





}



@media (max-width:1366px) {



    .guide_table_left ul li .title,

    .guide_table_left ul li .text {

        padding-right: 80px;

    }



    .guide_process_list .border .bg {

        padding: 26px;

    }



    .five_cont .text {

        padding-top: 100px;

    }



}



@media (max-width:1280px) {



    .guide_table_left ul li .title,

    .guide_table_left ul li .text {

        padding-right: 80px;

    }



    .guide_table_left {

        padding-right: 60px;

    }



    .guide_table_left ul li {

        padding: 26px 0;

    }



    .components_swiper .swiper-slide {

        height: 500px;

    }



    .guide_process_list ul {

        margin-left: -16px;

        margin-right: -16px;

    }



    .guide_process_list ul li {

        padding: 16px;

    }



    .guide_process_list ul li:after {

        width: 32px;

        right: -16px;

    }



}



@media (max-width:1279px) {



    .guide_table_left {

        padding-left: 30px;

        padding-right: 50px;

    }



    .guide_table_left ul li .title,

    .guide_table_left ul li .text {

        padding-right: 50px;

    }



    .guide_four_box {

        margin-left: 50px;

    }



    .progress-bar,

    .guide_table_left::before {

        width: 6px;

    }



    .guide_table_left ul li .title {

        line-height: 1.2;

    }



    .guide_process_list .title {

        font-size: 18px;

    }



}



@media (max-width:991px) {

    .components_swiper .swiper-slide {

        height: 460px;

    }



    .components_swiper .swiper-slide .des {

        left: 0;

        opacity: 1;

    }



    .components_swiper .swiper-slide::before {

        background: rgba(0, 0, 0, 0.40);

    }



    .components_swiper .swiper-slide .text>.title:first-child {

        display: none;

    }



    .guide_four .my-container {

        flex-wrap: wrap;

    }

    .guide_four .index_title h2 {

        position: relative;

        top: 0;

    }

    .guide_four_box {

        flex: inherit;

        padding-top: 30px;

        margin-left: 0;

        width: 100%;

        max-width: 100%;

    }



    .guide_process_list ul li {

        width: 50%;

    }



    .guide_process_list ul li:after,

    .guide_process_list ul li:nth-child(4n):before {

        display: none;

    }



    .guide_process_list ul:nth-child(2) {

        flex-direction: inherit;

    }

}



@media (max-width:767px) {



    .guide_one {

        padding-top: 50px;

        padding-bottom: 55px;

        overflow: hidden;

    }



    .guide_table {

        padding-top: 35px;

        flex-wrap: wrap;

    }



    .guide_table_left {

        width: 100%;

        padding: 0;

    }



    .guide_table_right {

        display: none !important;

    }



    .guide_table_left ul li .title::before {

        display: none !important;

    }



    .progress-bar,

    .guide_table_left::before {

        display: none;

    }



    .guide_table_left ul li .title {

        margin-top: 20px;

        color: var(--dark-color);

    }



    .guide_table_left ul li .text {

        padding-right: 0;

        margin-top: 16px;

    }



    .guide_pic img {

        border-radius: 16px;

    }



    .components_swiper .swiper-slide {

        padding: 32px 20px;

        height: 460px;

    }



    .components_swiper .icon {

        max-width: 46px;

    }

    .components_swiper .text {
        flex: 1;
        margin-top: 30px;
    }

    .components_swiper .des .title {

        font-size: 22px !important;

    }



    .components_swiper .des {
        height: 100%;
        line-height: 24px;

    }



    .guide_two {

        padding-top: 50px;

        padding-bottom: 50px;

    }



    .work_swiper {

        margin-top: 35px;

    }



    .work_swiper .border {

        padding: 32px 20px;

        border-radius: 16px;

    }



    .work_swiper .icon {

        max-width: 56px;

    }



    .work_swiper .text {

        margin-top: 30px;

    }



    .guide_three {

        padding-top: 50px;

    }



    .components_swiper {

        margin-top: 35px;

    }

    .guide_four {

        overflow: hidden;

    }

    .guide_four {

        margin-top: 50px;

        padding-top: 50px;

        padding-bottom: 50px;

    }



    .guide_four_box ul li {

        width: 100%;

    }



    .guide_four_box .bg {

        padding: 24px 20px;

        border-radius: 16px;

    }



    .guide_four_box .bg .icon {

        max-width: 46px;

    }



    .guide_five {

        margin-top: 50px;

        margin-bottom: 50px;

        padding: 60px 20px;

        border-radius: 16px;

    }



    .five_cont {

        padding: 30px 20px;

        border-radius: 16px;

    }



    .five_cont .text {

        padding-top: 35px;

    }



    .guide_last {

        padding-bottom: 55px;

    }



    .guide_process_list {

        padding-top: 35px;

    }



    .guide_process_list ul {

        margin-left: -8px;

        margin-right: -8px;

        align-items: stretch;

    }



    .guide_process_list ul li {

        padding: 8px;

        width: 100%;

    }



    .guide_process_list .border {

        height: 100%;

    }



    .guide_process_list .border .bg {

        position: relative;

    }



    .guide_process_list .title {

        height: auto;

        line-height: 1.3;

    }



    .guide_process_list .des {

        height: auto;

        margin-top: 12px;

        color: #666;

    }



    .guide_process_list .icon {

        max-width: 38px;

    }



    .guide_process_list ul li .border:hover .des {

        color: var(--white-color);

    }

}



/* finacial and payment */

.payment_top {

    padding-top: 95px;

}



.goal-swiper-container {

    position: relative;

}



.payment_t_title {

    position: absolute;

    left: 0;

    top: 48px;

    width: 100%;

    text-align: center;

    z-index: 9;

}



.payment_t_title .index_title h2 {

    color: var(--white-color);

}



.payment_t_title .des {

    max-width: 502px;

    margin: 0 auto;

    padding-top: 16px;

    color: var(--white-color);

    text-align: center;

    font-size: 20px;

    font-style: normal;

    font-weight: 400;

    line-height: 1.5;

}



.goal-swiper-content {

    width: 100%;

}



.swiper-goal {

    position: relative;

    height: 760px;

    border-radius: 24px;

    overflow: hidden;

    margin: 0 auto;

}



.swiper-goal-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.swiper-goal-slide {

    position: relative;

}



.swiper-goal-slide-content-bg {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    display: flex;

    align-items: flex-end;

    width: 100%;

    height: 100%;

}



.swiper-goal-slide::before {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.3);

}



.swiper-goal-slide::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    width: 100%;

    height: 40%;

    max-height: 261px;

    background-image: url(../images/payment_bg_bottom.png);

    background-repeat: no-repeat;

    background-position: center bottom;

}



.swiper-goal-slide-content-text {

    position: relative;

    width: 90%;

    max-width: 900px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    z-index: 9;

}



.swiper-goal-slide-content-text-describe {

    max-width: 900px;

    height: 104px;

    color: var(--white-color);

    text-align: center;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

    margin-bottom: 38px;

    text-align: center;

}



.index_banner_bottom {

    position: absolute;

    z-index: 3;

    bottom: 166px;

    left: 0;

    right: 0;

    padding-left: 48px;

    padding-right: 48px;

}



.index_banner_progress {

    width: 100%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}



.index_banner_progress .list_ {

    display: flex;

    justify-content: center;

    align-items: center;

}



.index_banner_progress .i {

    padding: 0 28px;

    cursor: pointer;

}



.index_banner_progress .i>span {

    display: block;

    position: relative;

    color: var(--white-color);

    font-size: 20px;

    font-style: normal;

    font-weight: 600;

    line-height: 30px;

    padding-bottom: 16px;

}



.index_banner_progress .i>span::before {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    height: 1px;

    width: 0;

    background-color: var(--white-color);

    transition: width .4s;

}



.index_banner_progress .i.active>span::before {

    width: 100%;

}



.decorate-one {

    position: absolute;

    background: #F8F9FB;

}



.goal-swiper-container .decorate-one {

    width: 10.2%;

    padding-bottom: 20%;

    left: -10.2%;

    top: 0;

    z-index: 1;

    transform: translate(100%, 0%);

}



.decorate-two {

    position: absolute;

    background-image: url(../images/job_top_bg02.svg);

    width: 64px;

    height: 64px;

    right: -37px;

    transform: translate(-71.09%, 0%);

    z-index: 1;

}



.decorate-three {

    position: absolute;

    width: 68px;

    height: 166px;

    bottom: 0;

    right: -68px;

    transform: translate(-100%, 0%);

    opacity: 0.2;

    background: var(--main-color);

    z-index: 1;

}



.goal-swiper-container.animated .decorate-one {

    animation: squareMove1 2s cubic-bezier(0.4, 0.0, 0.2, 1) 1s forwards;

}



.goal-swiper-container.animated .decorate-two {

    animation: squareMove2 2s cubic-bezier(0.4, 0.0, 0.2, 1) 1s forwards;

}



.goal-swiper-container.animated .decorate-three {

    animation: squareMove3 2.6s cubic-bezier(0.4, 0.0, 0.2, 1) 2s forwards;

}



@keyframes squareMove1 {

    0% {

        padding-bottom: 20%;

        transform: translate(100%, 0%);

        -ms-transform: translate(100%, 0%);

    }



    50% {

        padding-bottom: 10%;

        transform: translate(0, 0);

        -ms-transform: translate(0, 0);

    }



    100% {

        padding-bottom: 73px;

        transform: translate(0, 0);

        -ms-transform: translate(0, 0);

    }

}



@keyframes squareMove2 {

    0% {

        transform: translate(-71.09%, 0%);

        -ms-transform: translate(-71.09%, 0%);

    }



    50% {

        transform: translate(0, 0);

        -ms-transform: translate(0, 0);

    }



    100% {

        transform: translate(0, 0);

        -ms-transform: translate(0, 0);

    }

}



@keyframes squareMove3 {

    0% {

        transform: translate(-100%, 0%);

        -ms-transform: translate(-100%, 0%);

    }



    50% {

        transform: translate(0, 0);

        -ms-transform: translate(0, 0);

    }



    100% {

        transform: translate(0, 0);

        -ms-transform: translate(0, 0);

    }

}

.payment_bottom {
    position: relative;
    padding-top: 80px;

    padding-bottom: 116px;

    background-color: #F7F8FA;
    z-index: 1;
}

.payment_bottom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    max-height: 350px;
    background-image: url(../images/location_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
}


.payment_title {

    display: flex;

    justify-content: center;

}



.opation_list {

    margin-top: 55px;

    display: flex;

    padding: 40px;

    align-items: center;

    border-radius: 24px;

    background: var(--white-color);

}



.opation_list ul {

    margin-left: -24px;

    margin-right: -24px;

    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

}





.opation_list ul li {

    position: relative;

    width: 33.33%;

    padding: 0 24px;

}



.opation_list ul li::before {

    content: "";

    position: absolute;

    right: 0;

    height: 100%;

    width: 1px;

    background-color: rgba(0, 0, 0, 0.1);

}



.opation_list ul li:last-child:before {

    display: none;

}



.opation_list .bg_one {

    margin-top: 24px;

    position: relative;

    display: flex;

    min-height: 256px;

    padding: 32px;

    flex-direction: column;

    align-items: flex-start;

    align-self: stretch;

    border-radius: 16px;

    background-color: #F7F8FA;

    overflow: hidden;

    cursor: pointer;

    z-index: 1;

}



.opation_list .bg_one::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

    opacity: 0;

    transition: opacity .4s;

    z-index: -1;

}



.opation_list .bg_two {

    margin-top: 24px;

    position: relative;

    display: flex;

    min-height: 200px;

    padding: 32px;

    flex-direction: column;

    align-items: flex-start;

    align-self: stretch;

    border-radius: 16px;

    background-color: #F7F8FA;

    overflow: hidden;

    cursor: pointer;

    z-index: 1;

}



.opation_list .bg_two::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

    opacity: 0;

    transition: opacity .4s;

    z-index: -1;

}



.opation_list .icon {

    max-width: 80px;

    margin: 0 auto;

}



.opation_list .t_blue {

    padding-top: 15px;

    text-align: center;

    color: var(--main-color);

}



.opation_list .t_black {

    margin-top: 4px;

    color: var(--dark-color);

    text-align: center;

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 600;

    line-height: 28px;

}



.opation_list .des {

    margin-top: 15px;

    color: #666;

    text-align: center;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.opation_list .big_t {

    color: var(--dark-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 600;

    line-height: 1.5;

}



.opation_list .text {

    padding-top: 16px;

}



.opation_list .text p {

    position: relative;

    padding-left: 10px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.opation_list .text p::before {

    content: "·";

    position: absolute;

    left: 0;

    top: 0;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 700;

    line-height: 26px;

}



.opation_list .bg_one.active::before {

    opacity: 1;

}



.opation_list .bg_two.active::before {

    opacity: 1;

}



.opation_list .bg_one.active .big_t,

.opation_list .bg_two.active .big_t {

    color: var(--white-color);

}



.opation_list .bg_one.active .text p,

.opation_list .bg_two.active .text p {

    color: var(--white-color);

}



.opation_list .bg_one.active .text p::before,

.opation_list .bg_two.active .text p::before {

    color: var(--white-color);

}





/* mobie */

.swiper-goal-mobie {

    margin-top: 20px;

    margin-bottom: 20px;

}



.swiper-goal-mobie .swiper-slide {

    width: auto;

    font-size: 16px;

}



.swiper-goal-mobie .swiper-slide-thumb-active {

    color: var(--main-color);

}



@media (max-width:1366px) {

    .swiper-goal {

        height: 660px;

    }





}



@media (max-width:1280px) {

    .swiper-goal {

        height: 600px;

    }





}



@media (max-width:991px) {

    .swiper-goal {

        height: 560px;

    }



    .index_banner_bottom {

        bottom: 210px;

        padding-left: 30px;

        padding-right: 30px;

    }



    .index_banner_progress .i {

        padding: 0 16px;

    }



    .swiper-goal-slide-content-text-describe {

        height: 156px;

    }



    .opation_list {

        padding: 20px;

    }



    .opation_list .bg_one,

    .opation_list .bg_two {

        padding: 32px 20px;

    }



    .opation_list .icon {

        max-width: 60px;

    }



}



@media (max-width:767px) {

    .payment_top {

        padding-top: 50px;

    }



    .opation_list {

        margin-top: 35px;

        border-radius: 16px;

    }

    .opation_list .des {
        height: auto !important;
    }

    .opation_list ul li {

        width: 100%;

        margin-top: 25px;

    }



    .opation_list ul li::before {

        display: none;

    }



    .opation_list .icon {

        max-width: 40px;

    }



    .opation_list .t_black {

        font-size: 16px;

    }



    .payment_bottom {

        padding-top: 50px;

        padding-bottom: 50px;

    }



    .opation_list .bg_one,

    .opation_list .bg_two {

        height: auto !important;

    }



    .index_banner_bottom {

        display: none;

    }



    .payment_t_title {

        padding-left: 20px;

        padding-right: 20px;

    }



    .swiper-goal {

        height: 650px;

        border-radius: 16px;

    }



    .payment_t_title .index_title h2 {

        line-height: 1.2;

    }



    .payment_t_title .des {

        font-size: 16px;

    }



    .swiper-goal-slide-content-text {

        width: 100%;

        padding-left: 20px;

        padding-right: 20px;

    }



    .swiper-goal-slide-content-text-describe {

        height: auto;

        margin-bottom: 30px;

    }

}



/* down */

.down_banner .down_mask {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.30);

    z-index: 2;

}



.down_banner .down_text {

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    text-align: center;

}



.down_banner .down_text h2 {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-weight: 700;

    line-height: 1.3;

    text-transform: capitalize;

}



.down_search {

    padding-top: 40px;

}



.down_text .search_form {

    max-width: 700px;

    padding: 8px 8px 8px 24px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.90);

    backdrop-filter: blur(4px);

}



.down_text .search_form input:focus::placeholder {

    opacity: 0;

    transition: all .2s linear;

}



.down_text .search_form .sear_input::-webkit-input-placeholder {

    font-size: 16px;

    color: rgba(0, 0, 0, 0.20);

    font-family: 'Titillium';

}



.down_text .search_form .sear_input::-moz-placeholder {

    font-size: 16px;

    color: rgba(0, 0, 0, 0.20);

    font-family: 'Titillium';

}



.down_text .search_form .sear_input:-moz-placeholder {

    font-size: 16px;

    color: rgba(0, 0, 0, 0.20);

    font-family: 'Titillium';

}



.down_text .search_form .sear_input:-ms-input-placeholder {

    font-size: 16px;

    color: rgba(0, 0, 0, 0.20);

    font-family: 'Titillium';

}



@media (max-width:767px) {

    .down_banner .down_text {

        padding-left: 20px;

        padding-right: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 30px;

    }

    .down_banner .location_white {
        display: none !important;
    }

    .down_banner .my-container {
        padding-bottom: 64px;
    }

    .down_search {
        padding-top: 20px;
    }

}



/* shipping return */

.shipping_box {

    display: flex;

    padding-top: 80px;

    padding-bottom: 100px;

}



.shipping_left {

    flex: 1;

    padding-right: 95px;

}



.shipping_left .list .title {

    padding-top: 32px;

    color: var(--dark-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 600;

    line-height: 30px;

}



.shipping_left .list:first-child .title {

    padding-top: 0;

}



.shipping_left .list .text {

    padding-top: 8px;



}



.shipping_left .list .text p {

    padding-bottom: 20px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.shipping_left .list .text p:last-child {

    padding-bottom: 0;

}



.shipping_right {

    position: sticky;

    top: 80px;

    display: flex;

    min-width: 370px;

    width: 32%;

    padding: 24px;

    flex-direction: column;

    align-items: flex-start;

    height: max-content;

    border-radius: 24px;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

}



.shipping_right .big_t {

    color: var(--white-color);

    font-family: "Titillium Web";

    font-weight: 700;

    line-height: 1.5;

}



.shipping_right .text {

    padding-top: 32px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.shipping_right .text span {

    text-decoration: underline;

}



.shipping_r_bg {

    margin-top: 40px;

    display: flex;

    padding: 32px;

    flex-direction: column;

    align-items: flex-start;

    width: 100%;

    border-radius: 16px;

    background: var(--white-color);

}



.shipping_r_bg .icon {

    max-width: 56px;

}



.shipping_r_bg .des {

    padding-top: 16px;

    color: var(--dark-color);

    font-size: 18px;

    font-style: normal;

    font-weight: 600;

    line-height: 28px;

    text-transform: capitalize;

}



.shipping_r_bg .ban_btn {

    margin-top: 40px;

}



@media (max-width:1279px) {

    .shipping_left {

        padding-right: 50px;

    }



}



@media (max-width:991px) {

    .shipping_right {

        min-width: 320px;

    }



    .shipping_r_bg {

        padding: 32px 26px;

    }

}



@media (max-width:767px) {

    .shipping_box {

        padding-top: 50px;

        padding-bottom: 50px;

        flex-wrap: wrap;

    }



    .shipping_left {

        width: 100%;

        flex: inherit;

        padding-right: 0;

    }



    .shipping_right {

        position: relative;

        top: 0;

        min-width: inherit;

        width: 100%;

        margin-top: 30px;

        padding: 24px 20px;

        border-radius: 16px;

    }



    .shipping_left .list .title {

        line-height: 1.6;

    }



    .shipping_r_bg {

        padding: 30px 20px;

    }



    .shipping_right .text {

        padding-top: 20px;

    }



    .shipping_r_bg .icon {

        max-width: 46px;

    }



}



/* new list */

.new_n_list {

    padding-top: 48px;

}



.new_n_list ul {

    margin-left: -36px;

    margin-right: -36px;

    display: flex;

    flex-wrap: wrap;

}



.new_n_list ul li {

    width: 33.33%;

    padding: 24px 36px;

}



.new_n_list .thumb {

    border-radius: 16px;

    overflow: hidden;

}



.new_n_list .thumb i {

    display: block;

    width: 100%;

    height: 100%;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    -webkit-transition: -webkit-transform .6s;

    transition: -webkit-transform .6s;

    -o-transition: transform .6s;

    transition: transform .6s;

    transition: transform .6s, -webkit-transform .6s;

    -webkit-transition: transform .6s;

}



.new_n_list .title {

    margin-top: 32px;

    color: var(--dark-color);

    font-family: "Titillium Web";

    font-size: 20px;

    font-style: normal;

    font-weight: 600;

    line-height: 30px;

    text-transform: capitalize;

}



.new_n_list .title span {

    background-size: 0 100%;

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 96%, #0f16cb 0%);

    background-repeat: no-repeat;

    transition: all 0.4s;

}



.new_n_list .new_time {

    position: relative;

    margin-top: 16px;

    padding-bottom: 32px;

    color: rgba(0, 0, 0, 0.30);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 24px;

}



.new_n_list .new_time::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 1px;

    background: linear-gradient(254deg, #0C0DCA 22.77%, #86CCEA 100%);

    transition: width .4s;

}



.new_n_list a:hover .title {

    color: var(--main-color);

}



.new_n_list a:hover .title span {

    background-size: 100% 100%;

}



.new_n_list a:hover .thumb i {

    -webkit-transform: scale(1.03);

    -ms-transform: scale(1.03);

    transform: scale(1.03);

}



.new_n_list ul li a:hover .new_time {

    color: var(--dark-color);

}



.new_n_list a:hover .new_time::before {

    width: 100%;

}



@media (max-width:1440px) {

    .new_n_list ul {

        margin-left: -30px;

        margin-right: -30px;

    }



    .new_n_list ul li {

        padding: 24px 30px;

    }



    .new_n_list .new_time {

        padding-bottom: 30px;

    }



}



@media (max-width:1366px) {

    .new_n_list ul {

        margin-left: -26x;

        margin-right: -26px;

    }



    .new_n_list ul li {

        padding: 24px 26px;

    }



    .new_n_list .new_time {

        padding-bottom: 26px;

    }



}



@media (max-width:1280px) {

    .new_n_list ul {

        margin-left: -24px;

        margin-right: -24px;

    }



    .new_n_list ul li {

        padding: 24px 24px;

    }



    .new_n_list .title {

        margin-top: 24px;

    }



    .new_n_list .new_time {

        padding-bottom: 24px;

    }



}



@media (max-width:1280px) {

    .new_n_list ul {

        margin-left: -16px;

        margin-right: -16px;

    }



    .new_n_list ul li {

        padding: 24px 16px;

    }



    .new_n_list .title {

        margin-top: 16px;

    }



    .new_n_list .new_time {

        padding-bottom: 24px;

    }



}



@media (max-width:767px) {

    .new_n_list ul li {

        width: 100%;

    }



    .new_n_list .title {

        font-size: 18px;

        line-height: 26px;

        height: 52px;

    }



    .new_n_list .new_time {

        padding-bottom: 16px;

    }



}



/* article */

.article_bg {

    background-color: #F7F8FA;

}



.height160 {

    height: 153px;

}



.article_ban {

    position: relative;

    z-index: 1;

}



.article_left {

    position: absolute;

    left: 0;

    top: 0;

    width: 49%;

    height: 100%;

    z-index: -1;

}



.article_left img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.article_right_box {

    position: relative;

    z-index: 1;

}



.article_right_box:after {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    height: 100%;

    width: 51%;

    background: linear-gradient(247deg, #0C0DCA 0%, #86CCEA 100%);

    z-index: -1;

}



.article_right_box>.my-container {

    display: flex;

    justify-content: flex-end;

}



.article_right_box .project_top_line {

    padding-top: 0;

}



.article_right {

    width: 51%;

    padding-left: 80px;

    padding-bottom: 100px;

}



.article_right .art_title {

    margin-top: 90px;

    color: var(--white-color);

    font-family: "Titillium Web";

    font-style: normal;

    font-weight: 700;

    line-height: 1.5;

}



.article_right .article_time {

    padding-top: 40px;

}



.article_right .article_time p {

    display: flex;

    align-items: flex-start;

    margin-bottom: 16px;

    color: var(--white-color);

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.article_right .article_time p:last-child {

    margin-bottom: 0;

}



.article_right .article_time p img {

    margin-top: 4px;

    margin-right: 8px;

}



.article_right .list_share {

    padding-top: 130px;

}



.article_right .list_share .title {

    color: var(--white-color);

}



.article_right .share-btn {

    border: 1px solid rgba(255, 255, 255, 0.2);

}



.article_right .share-btn:hover {

    background-color: var(--main-color);

    border-color: var(--main-color);

    transition: all .3s;

}



.article_box {

    max-width: 1112px;

    margin: 0 auto;

    padding-bottom: 60px;

    padding-top: 55px;

}



.article_text p {

    padding-bottom: 20px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



.article_text p img {

    display: block;

    max-width: 100%;

    width: auto !important;

    height: auto !important;

    margin: 0 auto;

    border-radius: 16px;

}



.article_box .label_list {

    border-top: none;

    padding-top: 0;

    margin-top: 20px;

}



.article_bottom {

    padding-top: 64px;

    padding-bottom: 95px;

    border-top: 1px solid rgba(0, 0, 0, 0.10);

}



.article_swiper_box {

    margin-top: 40px;

    padding: 32px;

    border-radius: 24px;

    background: var(--white-color);

    overflow: hidden;

}



.article_swiper {

    padding-top: 0;

}



.article_swiper_box .article-pagination {

    margin: 0 auto;

    margin-top: 24px;

    width: 200px;

    position: relative;

    height: 4px;

    border-radius: 8px;

    background-color: transparent;

    overflow: hidden;

}



.article_swiper_box .article-pagination::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0, 0, 0, 0.10);

}



.article_swiper_box .article-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {

    background-color: var(--main-color);

}



@media (max-width:1579px) {

    .article_right .art_title {

        margin-top: 80px;

    }



    .article_right .list_share {

        padding-top: 110px;

    }



}



@media (max-width:1439px) {

    .article_right .art_title {

        margin-top: 60px;

    }



    .article_right .list_share {

        padding-top: 90px;

    }



}



@media (max-width:1365px) {

    .article_right {

        padding-left: 60px;

        padding-bottom: 80px;

    }



    .article_right .art_title {

        margin-top: 40px;

    }



    .article_right .list_share {

        padding-top: 70px;

    }



}



@media (max-width:1279px) {

    .article_right {

        padding-left: 40px;

        padding-bottom: 60px;

    }



    .article_right .list_share {

        padding-top: 50px;

    }



}

@media (max-width:1200px) {

    .height160 {

        height: 92px;

    }


}

@media (max-width:991px) {
    .article_ban {
        display: flex;
        flex-wrap: wrap;
    }

    .article_left {
        order: 2;
    }

    .article_left {
        position: relative;
        width: 100%;

    }


    .article_right {

        padding-left: 0;

        width: 100%;

    }

    .article_right_box::after {

        width: 100%;

    }



}



@media (max-width:767px) {

    .height160 {

        height: 64px;

    }

    .article_right .art_title {
        margin-top: 0;
    }

    .article_right {

        padding-bottom: 40px;

    }

    .article_box {

        padding-bottom: 30px;

        padding-top: 50px;

    }

    .article_bottom {

        padding-top: 50px;

        padding-bottom: 50px;

    }



    .article_swiper_box {

        margin-top: 40px;

        padding: 32px 20px;

        border-radius: 16px;

    }



}