﻿@charset "utf-8";

@font-face {
    font-family: myFont;
    src: url(../fonts/myFont.ttf);
}

html, body {
    height: 100%;
}

body {
    position: relative;
}

:root {
    --main-color: #00A3FF;
    --dark--blue: #0D4DA1;
}

img {
    max-width: 100%;
}

header {
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 30;
}

header .logo {
    width: 150px;
    position: relative;
}

header .logo_blue {
    display: none;
}

header .logo img {
    width: 100%;
}

.index_head .menu {
    flex: 1;
    text-align: right;
    padding-left: 30px;
    float: right;
    display: flex;
    justify-content: flex-end;
}

.index_head {
    padding: 0 42px;
    width: 100%;
    height: 100px;
}

.index_head.sticky, .index_head.hehover {
    background: #FFF;
}

.index_head.hehover .logo_white, .sticky .logo_white {
    display: none;
}

.hehover .logo_blue, .sticky  .logo_blue {
    display: block;
}

.index_head {
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*head right*/
.header_button_wrap {
    padding-top: 23px;
}
.header_language_wrap {
    margin-right: 20px;
}
.header_button_box {
    display: flex;
    justify-content: flex-end;
}
.header_language_box {
    position: relative;
}
.header_language_current {
   display: flex;
height: 54px;
width: 132px;
padding: 0px 15px;
align-items: center;
justify-content: center;
   border-radius: 30px;
background: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    position: relative;
    z-index: 99;
}
.header_language_icon {
    width: 14px;
height: 14px;
    position: relative;
    margin-left: 5px;
}
.header_language_icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/xl_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.header_language_text {
    color: #FFF;
font-size: 16px;
font-weight: 400;
}
.header_language_tab {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-top: 54px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
}
.header_language_tab:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.8125vw;
    background: rgba(255, 255, 255, 0.20);
    opacity: 0;
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_language_content {
    position: relative;
    z-index: 2;
    padding: 0.5208333vw 0 1.041666vw 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.header_language_item_box {
    padding: 5px 0;
}
.header_language_item_box a {
    color: #fff;
    line-height: 1.5;
    display: block;
    text-align: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_language_box:hover .header_language_tab {
    pointer-events: auto;
}
.header_language_box:hover .header_language_tab:after {
    height: 100%;
    opacity: 1;
}

.header_language_box:hover .header_language_content {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.header_search_wrap {
    margin-right: 20px;
}
.header_search_box {
    position: relative;
    width: 54px;
    height: 54px;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border-radius:50%;
    cursor: pointer;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_svg {
    width:54px;
    height: 100%;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_input_box {
    width: 54px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    /* width: 0; */
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    z-index: 999;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_input_box form {
    width: 200px;
}
.header_search_input_box #header_search_input {
    float: left;
    line-height: 54px;
    background: transparent;
    color: #333;
    width: calc(100% - 54px);
    display: block;
    padding: 0 10px;
}
.header_search_svg svg {
    fill: #fff;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_active .header_search_svg {
    opacity: 0;

}
.header_search_active .header_search_input_box {
    width: 200px;
}
.header_search_input_box .button {
float: left;
width: 54px;
height: 54px;
 background: transparent;
 background-image: url(../images/search_b.svg);
 background-position: center;
 background-repeat: no-repeat;
}


.header_wap_menu_wrap {
    background: rgba(255, 255, 255, 1);
    border-radius:50%;
    width: 54px;
    height: 54px;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    position: relative;
    z-index: 9999;
}
.flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header_wap_menu_box {
    width: 24px;
}
.header_wap_menu_label {
    width: 100%;
    height: 2px;
    background: var(--main-color);
    margin-bottom: 6px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_wap_menu_label:nth-child(2) {
    width: 65%;
}
.header_wap_menu_label:last-child {
    margin-bottom: 0;
}
.sticky .header_language_text {
    color: #333;

}
.sticky .header_language_icon:after {
    background-image: url(../images/xl_blank.svg);
}
.sticky .header_language_current {
background: rgba(204, 204, 204, 0.20);
}

.sticky .header_language_item_box a {
    color: #333;
}
.sticky .header_language_tab:after{
    background: #e9e9e9;


}
.sticky .header_search_input_box {
    background:#e9e9e9;
}
.sticky .header_search_box {
    background: rgba(204, 204, 204, 0.20);
}
.sticky .header_search_svg svg {
    fill: #333;
}
.sticky .header_wap_menu_wrap {
    background: var(--main-color);
}
.sticky .header_wap_menu_label {
    background: white;
}
/*弹出导航*/
.menu_content_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
}
.menu_content_active {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
}
.menu_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0D4DA1;
    overflow: hidden;
}
.menu_content_box {
    width: 100%;
    position: relative;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    /* -webkit-transform: translateY(4vw);
    transform: translateY(4vw);
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
    -webkit-transition-delay: .8s;
    transition-delay: .8s; */
}
.menu_logo {
    position: absolute;
    left: 60px;
    top: 24px;
    z-index: 99;
}
.menu_close {
    position: absolute;
    right: 60px;
    top: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url(../images/out.svg);
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
.menu_content_item_box {
    width: 12%;
    margin: 0 2.28% 0 0;
}
.menu_content_item_title {
    padding-bottom:20px;
    position: relative;
}
.menu_content_item_title:before {
    content: "";
    width: 40px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    z-index: 9;
}
.menu_content_item_title:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.menu_content_item_title a {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
}
.menu_content_item_ul {
    margin-top: 20px;
}
.menu_content_item_li {
    padding: 15px 0;
}
.menu_content_item_li a {
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
    overflow: hidden;
    transition: all .6s ease;
}
.menu_content_item_li a:hover {
color: #fff;
}

.menu_content_active .menu_close {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}
.menu_content_active .menu_content_box {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}
@media screen and (max-width:1365px) {
.index_head {
    padding-left:50px;
    padding-right: 50px;
}
.menu_logo {
    left: 50px;
}
.menu_close {
    right: 50px;
}

}
@media screen and (max-width:1360px) {
.header_button_wrap {
    padding-top: 0;
}

}
@media (max-width:991px){
.index_head {
    padding: 22px 30px;
}
.header_language_current {
    height: 46px;
}
.header_search_box,
.header_wap_menu_wrap {
    width: 46px;
    height: 46px;
}
.header_search_svg {
    width: 46px;
}
.header_search_svg svg {
    width: 46px;
    height: 46px;
}
.header_search_input_box .button {
    height: 46px;
}
.header_search_input_box #header_search_input {
    line-height: 46px;
}
.header_language_tab{
    padding-top: 46px;
}
.menu_logo {
    left: 30px;
}
.menu_close {
    right: 30px;
    top: 22px;
    width: 46px;
    height: 46px;
}
.menu_content_tab {
    display: block !important;
    padding-top: 80px;
}
.menu_content_box {
    height: calc(100% - 50px);
    overflow-y: auto;
}
.menu_content_item_box {
    width: 100%;
    margin: 0;
    padding-bottom: 35px;
}
.menu_content_item_title {
    padding-bottom: 15px;
}
.menu_content_item_title a {
    font-size: 18px;
}
.menu_content_item_title .icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 30px;
    height: 20px;
    background-image: url(../images/menu_top_icon_down.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    cursor: pointer;
}
.menu_content_item_ul {
display: none;
margin-top: 10px;
overflow: hidden;
}
.menu_content_item_li {
    float: left;

    padding-right: 20px;
}

}
@media (max-width:767px){
header,.index_head {
    height: 80px;
}
.index_head {
    padding-left:20px;
    padding-right: 20px;
}
header .logo {
    width: 130px;
}
.header_language_wrap {
    display: none;
}
.index_head .menu {
    padding-left: 10px;
}
.header_language_current {
    width: auto;
    padding: 0 15px;
}
.header_language_wrap,.header_search_wrap {
    margin-right: 15px;
}
.header_language_text {
    font-size: 14px;
}

.header_language_current {
    height: 36px;
}
.header_search_box,
.header_wap_menu_wrap {
    width: 36px;
    height: 36px;
}
.header_search_input_box{
    width: 36px;
}
.header_search_svg {
    width: 36px;
}
.header_search_svg svg {
    width: 36px;
    height: 36px;
}
.header_search_input_box .button {
    height: 36px;
    width: 36px;
}
.header_search_input_box #header_search_input {
    line-height: 36px;
    width: calc(100% - 36px);
}
.header_language_tab{
    padding-top: 36px;
}
.menu_close {
    right: 20px;
    top: 22px;
    width: 36px;
    height: 36px;
}
.menu_logo {
    left: 20px;
    top: 16px;
}
.menu_logo img {

    width: 140px;
}
.header_wap_menu_box {
    width: 18px;
}
.header_wap_menu_label {
    margin-bottom: 4px;
}
.header_language_icon {width: 10px;height: 10px}
}

/*banner*/
.index_banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    transition: height 2s;
}

.index_banner .ban_loop {
    width: 100%;
    height: 100%;
}

.index_banner .ban_loop .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.index_banner .ban_loop .bg img {
    max-width: 100%;
}

.ban_mask {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 162px;
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(57, 60, 66, 0.00) 0%, #393C42 100%);
    z-index: -1;
}

.index_banner .ban_pagin {
    bottom: 34px;
}

.index_banner .ban_pagin span {
    width: 10px;
    height: 10px;
    border: 2px solid white;
    background: transparent;
    opacity: 1;
}

.index_banner .ban_pagin span.swiper-pagination-bullet-active {
    border-color: var(--main-color);
    background: var(--main-color);
}

.ban_bottom {
    position: absolute;
    bottom: 156px;
    width: 100%;
    height: 0px;
    z-index: 9;
}

.ban_bottom  .my-container {
    height: 1px;
}

.index_video_button {
    position: relative;
    float: right;
    width: 116px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_button {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-animation: BannerRotate 10s infinite linear normal both;
    animation: BannerRotate 10s infinite linear normal both;
}

.index_video_button_icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_scroll_box {
    float: left;
}

.index_scroll_text {
    writing-mode: tb-rl;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.index_scroll_line {
    height: 50px;
    width: 1px;
    position: relative;
    overflow: hidden;
    margin: 10px auto 0;
}

.index_scroll_line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: #fff;
    -webkit-animation: BannerLine 2s 1.5s infinite linear normal both;
    animation: BannerLine 2s 1.5s infinite linear normal both;
}

.index_banner .bg_text {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.index_banner  .swiper-slide .bg_text>div {
    filter: alpha(opacity=0);
    opacity: 0;
    -moz-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

 .index_banner  .swiper-slide.swiper-slide-active .bg_text>div {
    -webkit-animation: sectitle0 1s ease-in-out 200ms forwards;
    animation: sectitle0 1s ease-in-out 200ms forwards;
    filter: alpha(opacity=100);
    opacity: 1;
}
.bg_text h2 {
    color: #FFF;
font-weight: 700;
line-height: 1.4; 
}
.bg_text p {
    color: #FFF;
font-size: 18px;
font-weight: 400;
line-height: 28px; 
}
.bg_text .pt10 {
    padding-top: 10px;
}
.index_banner .t_l>.my-container {
    padding-bottom: 5%;
}
.index_banner .t_m>.my-container {
    padding-bottom: 10%;
}
.index_banner .t_r>.my-container {
    padding-bottom: 5%;
}
.index_banner .t_l {
    text-align: left;
}
.index_banner .t_m {
    text-align: center;
}
.index_banner .t_r {
    text-align: right;
}




@-webkit-keyframes sectitle0 {
    0% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        filter: alpha(opacity=0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        filter: alpha(opacity=100);
        opacity: 1;
    }

}

@keyframes sectitle0 {
    0% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        filter: alpha(opacity=0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        filter: alpha(opacity=100);
        opacity: 1;
    }

}

@-webkit-keyframes BannerLine {
    0% {
        height: 0;
    }

    40% {
        height: 100%;
    }

    70% {
        top: 0;
    }

    100% {
        top: 100%;
        height: 100%;
    }

}

@keyframes BannerLine {
    0% {
        height: 0;
    }

    40% {
        height: 100%;
    }

    70% {
        top: 0;
    }

    100% {
        top: 100%;
        height: 100%;
    }

}

@-webkit-keyframes BannerRotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}

@keyframes BannerRotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}

/* 弹窗 */
.alltime, .alltime * {
    -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: all .4s cubic-bezier(.4, 0, .2, 1);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 100;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    vertical-align: middle;
}

/* 弹窗内容 */
.z_tanchuang .tbox .modal {
    background: white;
    padding: 40px;
    display: block;
    border-radius: 6px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url(../images/out.svg) center no-repeat;
    background-size: 20px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: 0;
    right: -50px;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-height: 600px;
    margin: 0 auto;
    height: 60vh;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
    background: #fff url(../images/out2.svg) center no-repeat;
    background-size: 20px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
    padding: 20px;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}

/* 弹窗选中 */
.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */
@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }

}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }

}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }

}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }

}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }

}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }

}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }

}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }

}

.img_tanchuang .tbox .modal, .img_tanchuang .tbox .modal .img {
    max-width: 1600px;
}

@keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }

}

@-webkit-keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }

}

@media screen and (max-width:991px) {
.z_tanchuang .tbox .modal {
    padding: 30px;
    width: calc(100% - 100px);
}
.z_tanchuang .tbox .modal .img {
    height: auto;
}
.ban_bottom {
    bottom: 130px;
}
.index_video_button {
    width: 80px;
    height: 80px;
}

}
@media screen and (max-width:767px) {
.ban_bottom {
    bottom: 100px;
}
.z_tanchuang .tbox .modal {
    padding: 20px;
    width: calc(100% - 50px);
    float: left;
}
.index_video_button {
    width: 80px;
    height: 80px;
}

}

/*index one*/
.index_one {
    padding-top: 75px;
    padding-bottom: 116px;
    position: relative;
}

.index_title {
    text-align: center;
}

.index_title h2 {
    padding-top: 10px;
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.2;
}

.index_title h3 {
    color: #666;
    font-weight: 400;
    line-height: 1.2;
}

.index_title .line {
    margin: 0 auto;
    margin-top: 25px;
    width: 30px;
    height: 3px;
    background: #CCC;
}

.index_one .des {
    padding-top: 40px;
}

.index_one .des p {
    max-width: 1196px;
    margin: 0 auto;
    color: #666;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.index_one .bottom {
    position: relative;
    padding-top: 50px;
}

/* .index_one:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #F5F5F5;
    height: 30%;
    width: 100%;
    z-index: -1;
} */

.index_one .bottom .li {
    position: relative;
    float: left;
    width: 100%;
}

.index_one .bottom .swiper-slide:nth-child(2n-1) {
    padding-top: 67px;
}

.index_one .bottom .li a {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.index_one .bottom .li img {
    width: 100%;
}
.index_one .bottom .li:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #22B14A;
}

.index_one .bottom .mask {
    position: absolute;
    padding: 40px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.index_one .bottom .mask:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: -1;
}

.index_one .bottom .icon img {
    width: 36px;
}

.index_one .bottom .title {
    margin-top: 6px;
    color: #FFF;
    font-weight: 700;
    line-height: 1.2;
}

.index_one .bottom a:hover .sca>img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
.bottom .swiper-pagination {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.bottom .swiper-pagination span {
margin:0 5px;
}

@media screen and (max-width:991px) {
.index_one .bottom .swiper-slide:nth-child(2n-1) {
    padding-top: 40px;
}
.index_one .bottom .mask {
    padding: 40px 20px 40px 20px;
}
.bottom .swiper-pagination {
    display: block !important;
}


}
@media screen and (max-width:767px) {
.index_one {
    padding-top: 50px;
    padding-bottom: 60px;
}

}
@media screen and (max-width:540px) {
.index_one .bottom .swiper-slide:nth-child(2n-1) {
    padding-top: 0;
}

}



/*footer*/
footer {
    background: #FAFBFB;
    padding-top: 50px;
}

.foot_l {
    float: left;
}
.foot_logo img {
    max-width: 180px;
}
.foot_r {
    float: right;
}

.foot_nav {
    padding-top: 25px;
    max-width: 545px;
}

.foot_nav ul {
    margin-left: -30px;
    margin-right: -30px;
}

.foot_nav ul li {
    width: 25%;
    float: left;
    padding: 10px 30px;
}

.foot_nav a {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
}

.foot_nav a:hover {
    color: var(--main-color);
}
.foot_r {
    display: flex;
    align-items: center;
}
.foot_adress .t {
    position: relative;
    padding-bottom: 20px;
    color: #666;
    text-align: right;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.foot_adress .t:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--main-color);
    width: 22px;
    height: 2px;
}

.foot_r .tel {
    padding-top: 20px;
    text-align: right;
}

.foot_r .tel a {
    color: #333;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
}

.foot_r .adress {
    padding-top: 10px;
    max-width: 322px;
    color: #333;
    text-align: right;
    font-size: 14px;
    font-weight: 290;
    opacity: 0.6;
    line-height: 26px;
}
.share {
    margin-left: 60px;
    width: 46px;
}
.share .icon {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}
.share .icon:last-child {
    margin-bottom: 0;
}
.share .icon .f_eject {
    position: absolute;
    opacity: 0;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 10px;
    transition: opacity .4s;
}
.share .icon .f_eject:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left: 10px solid #CCC;
    top:50%;
    transform: translateY(-50%);
    right: -7px;

}
.share .icon .f_eject p {
     padding: 5px;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 1px solid #CCC;
}
.share .icon span{
display: inline-block;
width: 46px;
height: 46px;
border: 1px solid #CCC;
border-radius: 50%;
background-repeat: no-repeat;
background-position: center;
}
.share .icon:hover {
    overflow: visible;
}
.share .icon:hover .f_eject {
    opacity: 1;
}
.share .icon:hover span {
    border-color: var(--dark--blue);
    background-color: var(--dark--blue);
}
.share .wechat>span{
    background-image: url(../images/f_ico_01.svg);
}
.share .sina>span {
    background-image: url(../images/f_ico_02.svg);
}
.share .f_mobile>span {
    background-image: url(../images/f_ico_03.svg);
}
.share .wechat:hover >span {
    background-image: url(../images/f_ico_h01.svg);
}
.share .sina:hover >span {
    background-image: url(../images/f_ico_h02.svg);
}
.share .f_mobile:hover >span {
    background-image: url(../images/f_ico_h03.svg);
}


.foot_bottom {
    margin-top: 48px;
    background: #0D4DA1;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 290;
    padding: 18px 0;
}

.foot_bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 290;
}
.foot_bottom a:hover {
    color: #fff;
}
@media screen and (max-width:767px) {

.foot_nav {
    max-width: 100%;
}
.foot_r {
   justify-content: space-between;
}
}


/**/
.height120 {
    height: 120px;
    display: none;
}
@media screen and (max-width:1366px) {
.foot_nav ul {
    margin-left: -20px;
    margin-right: -20px;
}
.foot_nav ul li {
    padding: 10px 20px;
}
}
@media screen and (max-width:1280px) {
.foot_nav ul {
    margin-left: -15px;
    margin-right: -15px;
}
.foot_nav ul li {
    padding: 10px 15px;
}
}
@media screen and (max-width:1100px) {
.foot_nav ul {
    margin-left: 0;
    margin-right: 0;
}
.foot_nav ul li {
    padding: 10px 0;
}
}
@media screen and (max-width:991px) {
.foot_l {
    width: 100%;
}
.foot_r {
    padding-top: 30px;
    width: 100%;
    float: left;
}
.foot_adress .t,.foot_r .tel,.foot_r .adress {
    text-align: left;
}
.foot_adress .t::after { 
right: inherit;
left: 0;
}
.foot_adress .t {
    font-size: 20px;
}
.foot_r .tel a {
    font-size: 30px;
}
.foot_bottom .right {
    width: 100%;
    padding-top: 10px;
}

}
@media screen and (max-width:768px) {
.foot_logo img {
    max-width: 160px;
}
.foot_nav ul li {
    width: 33.33%;
}

}
@media screen and (max-width:767px) {

footer {
    padding-top: 30px;
}
.foot_bottom {
    margin-top: 30px;
}

}


/*index two*/
.index_two {
    padding-top: 120px;
    padding-bottom: 250px;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.index_two .small_t {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

.index_two .big_t {
    padding-top: 6px;
    color: #FFF;
    font-weight: 700;
    line-height: 1.2;
}

.index_two .text {
    padding-top: 10px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

.index_two .more {
    padding-top: 60px;
}

.index_two .more a {
    display: inline-flex;
    padding: 10px 20px;
    align-items: flex-end;
    border: 1px solid #FFF;
    transition: all .3s;
}

.index_two .more span {
    padding-right: 26px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    background-image: url(../images/more_jt.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: right;
}

.index_two .more a:hover {
    background-color: var(--dark--blue);
    border-color: var(--dark--blue);
}

.index_two .more a:hover span {
    background-image: url(../images/more_jt.svg);
}
@media screen and (max-width:767px) {

.index_two {
    padding-top: 80px;
    padding-bottom: 150px;
}

}
/*12.1*/
.m_code{display:flex;align-items:center;}
.m_code .m_eject{position:relative;margin-left:15px;cursor:pointer;}
.m_code .m_eject span.b{display:flex;align-items:center;justify-content:center;width:52px;height:52px;border:1px solid #999999;border-radius:50%;transition:background-color .3s;}
.m_code .m_eject span.b img:nth-child(2){display:none;}
.m_code .m_eject:hover span{border-color:var(--main-color);background-color:var(--main-color);}
.m_code .m_eject:hover span.b img:nth-child(1){display:none;}
.m_code .m_eject:hover span.b img:nth-child(2){display:inline-block;}
.m_code .wx_eject{display:none;position:absolute;bottom:calc(100% + 9px);left:50%;margin-left:-60px;z-index:96;}
.m_code .wx_eject:before{content:"";position:absolute;left:50%;bottom:-9px;margin-left:-10px;transform:rotate(180deg) translateX(-50%);width:13px;height:12px;background-image:url(../images/menu_jt.svg);background-repeat:no-repeat;transition:all 0.4s ease 0s;}
.m_code .m_border{background:#fff;box-shadow:0 1px 11px rgb(0 0 0 / 30%);width:120px;padding:5px;}
.m_code .m_border a{display:block;line-height:1.2;margin:9px 0;width:100%;height:inherit;text-align:center;}
.m_code .m_code_r{display:flex;align-items:center;}
@media (max-width:958px){
    .m_code .m_code_r{margin-top:30px;}
}
@media screen and (max-width:767px){
    .m_code{display:block;}
    .m_code .m_code_r{justify-content:center;}
    .m_code .m_eject{margin-right:15px;}
}
