html {
    /*font-family: HarmonyOS_Sans_SC_Medium;*/
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
    background-color: #fff !important;
}
:root {
    --baseColor: #113DFB;
}
input[type=checkbox],
input[type=radio] {
    margin: 0!important;
    line-height: normal;
}
a:focus {
    text-decoration: none!important;
}
button {
    border: 0;
    outline: none;
}
.border {
    border: 1px solid red;
}
@keyframes rotateAceItem {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes opacityFrames {
    0% {
       opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }

    /*20% {*/
    /*    opacity: 0.8;*/
    /*}*/
    /*40% {*/
    /*    opacity: 0.6;*/
    /*}*/
    /*60% {*/
    /*    opacity: 0.4;*/
    /*}*/
    /*80% {*/
    /*    opacity: 0.2;*/
    /*}*/
    /*100% {*/
    /*    opacity: 0;*/
    /*}*/
}



.launch_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;

}
.launch_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.launch_container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.opacityF {
    animation: opacityFrames 10s ease-in;
}



.launch_container .launch_close {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #FFFFFF;
    border-radius: 25px;
    font-size: 16px;
    text-align: center;
    color: #fff;
}
.launch_container .launch_close:hover {
    background-color: var(--baseColor);
    cursor: pointer;
    transition-duration: 0.5s;
}



/* header头部 */
.header_container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: black;
    border-bottom: 1px solid #F7F7F7;
   /*  padding-left: 20.3rem;
	padding-right: 14.4rem; */
}
/*.header_index {*/
/*    background: transparent;*/
/*    border-bottom: none;*/
/*}*/


.logo_shen {
    display: none;
}
.logo_bai {
    display: block;
}

.header_container .header_content {
   /*  width: 100%; */
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
}
.header_content .logo {
    width: 20.4rem;
	/* height: 2rem; */
	display: flex;
	flex-direction: column;
	align-items: center;
	
	color: #fff;
    cursor: pointer;
}
.header_content .logo img {
    width: 100%;
    height: 100%;
    /*filter: grayscale(1);*/
    /*transition: filter .1s;*/
}
.header_content .logo img:hover {
    /*filter: grayscale(0);*/
}
.header_content .logo .name{
    margin-top: 8px;
}

.header_content .logo span{
	font-size: 1.2rem;
	letter-spacing: 1rem;
	margin-top: 0.5rem;
}
.header_content .pc_menu {
    height: 100%;
}
.pc_menu .pc_menu_ul {
    display: flex;
    align-items: center;
    height: 100%;
}
.pc_menu .pc_menu_ul .pc_menu_item {
    position: relative;
    height: 100%;
    cursor: pointer;
    margin-right: 50px;
}
.pc_menu .pc_menu_ul .pc_menu_item:last-child{
    margin-right: 0;
}
.pc_menu .pc_menu_ul .pc_menu_item .pc_menu_link {
    display: block;
    /* padding: 0 5rem; */
    height: 100%;
    line-height: 80px;
    font-size: 16px;
    color: #333;
    color: #fff;
}
/*.pc_menu .pc_menu_ul .pc_menu_item .pc_menu_link:hover {*/
/*    border-bottom: 3px solid var(--baseColor);*/
/*    color: #333;*/
/*}*/

.pc_menu .pc_menu_ul .pc_menu_item .pc_menu_link:after {
    content: ' ';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 3px;
    transform: translate(-50%);
}
.pc_menu .pc_menu_ul .pc_menu_item .pc_menu_link:hover:after {
    height: 3px;
    animation: ad_width .4s linear forwards;
    background: var(--baseColor);
}
@keyframes ad_width {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}



.pc_menu .pc_menu_ul .pc_menu_item .pc_menu_link.active {
    border-bottom: 4px solid var(--baseColor);
    /*background: var(--baseColor);*/
    // color: #333;
    font-weight: bold;
}
.header_index .pc_menu_ul .pc_menu_item .pc_menu_link {
    color: #fff;
}


.slide_mask {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 666;
    width: 100%;
    height: calc(100vh - 80px);
    /* background: rgba(0,0,0,0.5); */
}

/* pc端下拉 */
.pc_slide_wrap {
    
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 40px 120px;
    /* background: rgba(255, 255, 255, 0.9); */
    background: rgba(0,0,0,0.8);
}
.pc_slide_wrap_in{
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}
.brand_slide_wrap {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 40px 120px;
    background: rgba(0,0,0,0.8);
    /* background: rgba(255, 255, 255, 0.9); */
}

.pc_slide_wrap .pc_slide_ul {
    display: flex;
    width: 70%;
}
.pc_slide_wrap .pc_slide_item {
    width: 150px;
    margin-right: 40px;
}
.pc_slide_wrap .pc_slide_recom {
    width: 25%;
    cursor: pointer;
}
.pc_slide_wrap .pc_slide_recom a {
    color: #333;
}
.slide_big {
    width: 100%;

}
.slide_big img {
    width: 100%;
}
.pc_slide_recom .slide_name {
    padding: 15px 0;
    width: 100%;
    font-size: 16px;
    color: #333!important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.pc_slide_item_title {
    margin-bottom: 20px;
    padding: 10px 0;
    font-size: 21px;
    /* color: #333; */
    color: #fff;
    border-bottom: 2px solid #fff;
}
.pc_slide_item .slide_ul {

}
.slide_ul .slide_li a {
    display: inline-block;
    padding: 4px 0;
    font-size: 12px;
    /* color: #333; */
    color: #fff;
    line-height: 2;
}
.slide_ul .slide_li a:hover {
    color: var(--baseColor);
    /* border-bottom: 1px solid var(--baseColor); */
    /* border-bottom: 2px solid #113DFB; */
}
.pc_slide_item_title:hover{
    border-bottom: 4px solid #113DFB !important;
}
.slide_ul .slide_li .slide_active {
    color: var(--baseColor);
    /* border-bottom: 1px solid var(--baseColor); */
    /* border-bottom: 2px solid #113DFB; */
}

/* 搜索框 */ 
.search-container{
    height: 80px;
    line-height: 80px;
    display: none;
}
.search-box{
    display: flex;
    align-items: center;
}
.search-box .input-box{
    position: relative; 
    width: 935px;
    height: 40px;
    line-height: 40px;
    margin-right: 18px;
}
.search-box input{
    background: rgba(58,58,58,0.85);
    border: none;
    outline: none;
    padding: 10px 20px;
    width: 100%;
    color: #fff;
}
.search-box .search-icon{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    cursor: pointer;
}
.search-box .close-icon{
    cursor: pointer;
}

.product_slide {
    display: none;
    width: 100%;
    height: 100%;
    width: 1200px;
}
.brand_slide {
    display: none;
    width: 100%;
    height: 100%;
}
.brand_slide .brand_link_ul {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
// .brand_link_ul .brand_link_li a {
//     font-size: 16px;
//     color: #fff;
//     padding: 10px 20px;
// }
// .brand_link_ul .brand_link_li a:hover {
//     font-weight: bold;
// }
// .brand_active {
//     font-weight: bold;
// }
.brand_link_li{
    width: 335px;
    height: 285px;
    background-color: rgba(8, 31, 120, 0.8);
    margin-right: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.brand_link_li .name{
    font-size: 31px;
    z-index: 999;
}
.brand_link_li .sub-name{
    z-index: 999;
}
.brand_link_li{
    background-image: url(/static/index/images/pic_3.png);
}
.brand_link_li2{
    background-image: url(/static/index/images/pic_1.png);
}
.brand_link_li3{
    background-image: url(/static/index/images/pic_2.png);
    margin-right: 0;
}
.brand_link_li:hover{
    color: #fff;
    /* background: rgba(8, 31, 120, 0.5) !important;  */
}
.brand_link_li:hover:after{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(8, 31, 120, 0.95) !important; 
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}




.mobile_menu {
    display: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.mobile_menu img {
    width: 100%;
}

.move-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    /*transition: all 1s;*/
    overflow: hidden;
}
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    border-bottom: 1px solid #F0F2F1;
}
.move-close {
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.nav-logo {
    width: 250px;
}
.nav-logo img {
    width: 100%;
}
.move-close img {
    width: 100%;
}



.nav-slider .nav_slider_li {
    border-bottom: 1px solid #F0F2F1;
}
.nav-slider .nav_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    font-size: 16px;
    color: #333;
}
.nav-slider .a_add {
    width: 20px;
    font-size: 22px;
    text-align: center;
}



.nav-slider .nav_slider_li .a_active {
    font-weight: bold;
    color: var(--baseColor);
}
.nav-slider .nav_slider_li .expand_active {
    background-color: var(--baseColor);
    color: #fff;
}
.nav-slider .nav_slider_li .expand_active .a_text {
    color: #fff;
}

.nav_drop {
    display: none;
    background-color: #F7F7F7;
    padding: 0 30px !important;
}
.nav_drop .drop_item {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.nav_drop .drop_item:last-child {
    border-bottom: none;
}
.drop_item a {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
    color: #99A59E;
}
.nav_drop .drop_active a {
    color: var(--baseColor);
    font-weight: bold;
}

.zone_wrap {
    display: none;
    background-color: #F7F7F7;
    padding: 0 30px;
    padding-bottom: 15px;
}
.zone_item .zone_h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    margin: 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #ddd;
}
.zone_item .zone_active .zone_text {
    color: var(--baseColor);
    font-weight: bold;
}
.zone_h .zone_add {
    width: 20px;
    font-size: 20px;
    text-align: center;
}

.zone_item:last-child {
    border-bottom: none;
}

.zone_item_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0;
    width: 100%;
    display: none;
}
.zone_item_li {
    width: 48%;
}
.zone_item_li .zone_a_3 {
    display: block;
    width: 100%;
    padding: 5px 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zone_item_li .zone_a_3_active {
    color: var(--baseColor);
    font-weight: bold;
}

/* footer底部 */
.footer_container {
    width: 100%;
    height: 290px;
    padding: 50px 0;
    /* background-color: var(--baseColor); */
    background-image: url('/static/index/images/wen/bom.png');
    background-size: 100% 100%;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
}
.footer .footer-item .title{
    margin-bottom: 30px;
    font-size: 15px;
}
.footer .footer-item .content{
    line-height: 1.5;
    font-size: 13px;
}
.footer_l {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 155px;
}
.footer_l .footer_logo {
    width: 293px;
}
.footer_logo img {
    width: 100%;
}
.footer_l .company_name {
    font-size: 14px;
    color: #fff;
    margin-top: 6px;
}
.footer_r {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 155px; */
}

.platform li{
    position: relative;
}
.platform li:hover .code{
    display: flex;
}
.platform li .code {
    position: absolute;
    top: -80px;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    z-index: 999;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    display: none;
    box-shadow: 0 0 2px 5px #f6f6f6;
}
.footer_r .code img{
    width: 95%;
    height: auto;
}

.platform ul {
    display: flex;
    align-items: center;
    width: 140px;
    flex-wrap: wrap;
}
.platform ul li {
    margin-right: 20px;
    width: 33px;
    height: 33px;
    cursor: pointer;
    margin-bottom: 10px;
}
.platform ul li:nth-child(3n){
    margin-right: 0;
}
.platform ul li:hover>img {
    transform: scale(1.2);
}

.platform ul li img {
    width: 100%;
    height: 100%;
    transition: all 1s;
}
.icp{
    text-align: right;
    color: #fff;
}

.footer_r .icp {
    font-size: 14px;
    color: #fff;
    text-align: right;
    margin-top: 50px;
}



.index-banner {
  /*   padding-top: 80px; */
    /* position: relative; */
    width: 100%;
   /*  padding-bottom: 35%; */
    margin-top: 80px;
    /* height: 100vh; */
}
.product-list-banner{
    height: 100vh;
    overflow: hidden;
}
.index-banner .index-banner-item {
    width: 100%;
    height: 100%;
}
.index-banner img {
    width: 100%;
}
.swiper_change {
    position: absolute;
    bottom: 50px;
    right: 6%;
    z-index: 99;
    display: flex;
    align-items: center;
}
.swiper_change .change_prev {
    width: 34px;
    height: 34px;
    margin: 0 10px;
}
.swiper_change .change_next {
    width: 34px;
    height: 34px;
    margin: 0 10px;
}

.tip_slide {
    position: absolute;
    left: 6%;
    bottom: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tip_slide span {
    font-size: 14px;
    color: #fff;
    writing-mode: tb;
    margin-bottom: 10px;
}
.tip_slide img {
    width: 16px;
    height: 67px;
}


/*王牌单品*/
.single_container {
    position: relative;
}
.single_bg {
    /* position: absolute;
    top: 0;
    left: 0;
    z-index: -1; */
    /* height: 641px; */
    display: flex;
    position: relative;
    margin: 0 auto;
    /* background: url(/static/index/images/index/shadow.png);
    background-position: center;
    background-repeat: no-repeat; */
}
.single_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-box video{
    width: 100%;
}
.single_content {
    padding: 80px 0;
}
.title-container{
    text-align: center;
}
.title-container .foregin_title{
    color: #172986;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
}
.title-container .foregin_title::after{
    display: block;
    content: "";
    width: 45%;
    height: 2px;
    background-color: #000;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.title-container .title {
    padding: 0 10px;
    font-size: 45px;
    color: #000;
    text-align: center;
}
.single_content .des {
    padding: 0 10px;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.single_lists {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;
    width: 100%;
}
.single-next,.single-prev {
    width: 24px;
    height: 36px;
}
.single-next{
    margin-top: -260px;
}

.single-next img {
    width: 100%;
    height: 100%;
}
.single-prev img {
    height: 100%;
    width: 100%;
}
.star-swiper-container{
    align-items: center;
//    background: url(/static/index/images/bg2.jpg);
   background-size: contain;
   background-repeat: no-repeat;
   background-position-x: center;
  /*  background-repeat: repeat-x; */
    
}
.star-swiper-wrapper{
    /* position: unset; */
}
.star-swiper-container .swiper-wrapper{
    
}
.star-swiper-container>.core{
    position: relative;
    display: flex;
    align-items: center;
}

.single_lists .single_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.single_lists .swiper-wrapper{
    display: flex;
    align-items: baseline;
}
.single_item .button{
    background-color: #172986;
    color: #fff;
    padding: 2px 9px;
    cursor: pointer;
}
.single_lists .goods_name::before{
    display: block;
    content: "";
    width: 187px;
    height: 10px;
}
.single_item:hover .goods_name::before{
    /* width: 100%;
    height: 2px; */
    background-image: url('/static/index/images/index/product_bor.png');
    transition: 1s;
}
.single_item .goods_img {
    /*width: 100%;*/
    /*max-width: 36rem;*/
    /*max-height: 28.3rem;*/
    width: 100%;
    /* padding: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.single_item .goods_img img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.single_item .goods_img .AceItemAnimation {
    animation: rotateAceItem 1s ease-in infinite;
    animation-iteration-count: 1;
}

.single_item .goods_name {
    font-size: 14px;
    color: #25292A;
}
.single_item .goods_content {
   /*  margin-top: 1rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.to_brand .button{
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    padding: 5px 50px;
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    cursor: pointer;
}
.core-container{
    padding-bottom: 80px;
}
.core-container img, .main img{
    width: 100%;
}
.core-container .title-container{
    margin-bottom: 20px;
}
.researcn{
    position: relative;
}
.researcn .content{
  position: relative;
}
.researcn .text{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) !important;
    color: #fff;
    width: 480px;
    padding-left: 137px;
    box-sizing: border-box;
    cursor: pointer;
}
.researcn .text .title{
    font-size: 36px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.researcn .text .desc{
    margin-bottom: 20px;
}
.researcn .text .button{
    color: #195782;
    border: 1px solid #195782;
    border-radius: 20px;
    width: 120px;
    text-align: center;
    padding: 5px 0;
    margin-top: 20px;
}
/* .trans-img{
    display: none;
} */

/* 研发理念 */
.concept .content{
    width: 100%;
    overflow: hidden;
    /* display: table; */
    display: grid;
    grid-template-columns: 50% 1fr;
}
.concept .content::after{
    /* display: inline-block; */
    display: block;
    content: "";
    clear: both;
}
.concept .content .img, .concept .content .text{
    /* width: 50%; */
    /* display: table-cell; */
    /* float: left;
    padding-bottom:100px;
    margin-bottom:-100px; */
}
.concept .text{
    background: #051024;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
}
.concept .text .title{
    font-size: 36px;
}
.concept .text .letter{
    font-size: 63px;
    width: 50px;
    text-align: center;
}
.concept .text.right .desc{
    margin-bottom: 30px;
}
.concept .text.right .desc:last-child{
    margin-bottom: 0;
}
.concept .text .desc .intro{
    border-left: 1px solid #fff;
    padding-left: 40px;
    margin-left: 40px;
    height: 35px;
    /* line-height: 35px; */
}
.concept .text .desc .circle, .power .text .desc .circle{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 5px; */
}
.concept .circle .num, .power .circle .num{
    font-size: 32px;
    line-height: 1;
}
.concept .content .title, .power .content .title{
    font-size: 32px;
}



/* 品牌资讯 */
.brand-info .title{
    font-size: 22px;
    color: #25292A;
    margin-bottom: 20px;
}
.brand-info .input{
    position: relative;
    background: url(/static/index/images/input.png);
    width: 470px;
    height: 50px;
    z-index: 99;
    margin: 100px auto 0 auto;
    cursor: pointer;
}
.brand-info .input input{
    width: 85%;
    height: 100%;
    background: rgba(0,0,0,0);
    margin-left: 60px;
    border: none;
    color: #000;
}
.brand-info .input input:focus{
    outline: none;
}
.brand-info .input .button{
    background: #051024;
    width: 25%;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 98;
    text-align: center;
    color: #fff;
}

.count_container {
    width: 100%;
    background-color: #F7F7F7;
    padding: 100px 0;
}
.count_logo {
    width: 100%;
    display: flex;
    justify-content: center;
}
.count_logo img {
    width: 323px;
}
.count_content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 70px;
}
.count_content .count_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.count_content .add {
    font-size: 36px;
    color: var(--baseColor);
}
.count_item .n {
    font-size: 72px;
    font-weight: bold;
    color: var(--baseColor);
}
.count_item .tip {
    font-size: 18px;
    color: var(--baseColor);
}

/* 泉愈史 */
.history .content2, .history .content3{
    /* width: 1200px; */
    margin: 0 auto;
}
.history .content2, .history .content3{
    margin-bottom: 20px;
}
.history .content2 .title, .history .content3 .title{
    font-size: 36px;
    border-bottom: 1px solid #000;
    padding: 57px 0 33px;
    margin-bottom: 115px;
}
.history .content2 .list-container, .history .content3 .list-container{
    display:flex;
    justify-content: center;
    align-items: baseline;
}
.history .content2 .list, 
.history .content3 .list{
    display: flex;
    margin-right: 25px;
    justify-content: space-around;
    flex:1;
}
.history .content2 .list .item, .history .content3 .list .item{
    // width: 25%;
    // margin-right: 100px;
    // text-align: center;
    width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.history .content2 .list .item .img, .history .content3 .list .item .img{
    width: 200px;
}
.history .content2 .list .item:last-child, .history .content3 .list .item:last-child{
    margin-right: 0;
}
.history .content2 .year, .history .content3 .year{
    font-size: 33px;
    padding: 20px;
}
.history .content2 .desc, .history .content3 .desc{
    font-size: 12px;
    color: #000000;
}
.history .arr{
    cursor: pointer;
}
.power .content3 .core, .power .content4 .core{
    position: static;
    transform: translateX(0);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*banner*/
.common-banner {
    padding-top: 80px;
    width: 100%;
}
.banner_url {
    position: relative;
    width: 100%;
    /* height: 500px; */
    height: 749px;
}
.common-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-banner .ban_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
}
.ban_content .title {
    font-size: 18px;
    text-align: center;
}
.ban_content .des {
    font-size: 36px;
    text-align: center;
}




/*系列*/
.series_main {
    width: 100%;
    padding: 50px 0 30px 0;
}
.series_main img {
    width: 100%;
}

.series_product_list {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    width: 100%;
}
.serises_swiper {
    padding: 0 10px;
}
.series_item {
    width: 100%;
    cursor: pointer;
}
.series_item:hover .series_goods_img img {
    transform: scale(1.1);
}

.series_item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.series_item .series_goods_img {
    /*padding: 9rem 2rem;*/
    background-color: #F7F7F7;
    width: 100%;
    height: 100%;
    /*width: 343px;*/
    /*height: 300px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.series_item .series_goods_img img {
    width: 343px;
    height: 300px;
    object-fit: cover;
    transition: all 1s;
}
.series_goods_info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.series_goods_info .series_goods_name {
    width: 85%;
    font-size: 16px;
    color: var(--baseColor);
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.series_goods_info .label_tip {
    width: 20%;
    font-size: 14px;
    color: #666;
    text-align: center;
}
.series_item .look_btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: var(--baseColor);
    font-size: 14px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}
.series_item .look_btn:hover {
    background-color: #0A1A52;
}




/*产品*/
.product_list {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    width: 100%;
}
.product_item {
    width: 31%;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    margin-bottom: 30px;
    margin-right: 3.5%;
}
.product_item:hover .item_goods_img img {
    transform: scale(1.1);
}

.product_item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.product_item:nth-child(3n) {
    margin-right: 0;
}

.product_item .item_goods_img {
    background-color: #F7F7F7;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.product_item .item_goods_img img {
    width: 343px;
    height: 300px;
    object-fit: cover;
    transition: all 1s;
}
.product_item .item_goods_info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.product_item .item_goods_name {
    width: 85%;
    font-size: 16px;
    color: var(--baseColor);
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product_item .label_tip {
    width: 20%;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.product_item .look_btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: var(--baseColor);
    font-size: 14px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}
.product_item .look_btn:hover {
    background-color: #0A1A52;
}

.product_list_container .content{
    margin-bottom: 100px;
}
.product_list_container .content.bg{
    background: url('/static/index/images/product/bg.png');
    background-repeat: no-repeat;
    background-position-y: center;
}
.product_list_container .content .section1{
    border: 4px solid #172986;
    width: 100%;
}
.product_list_container .content .section1 .title{
    text-align: center;
    font-size: 36px;
    background: #fff;
}
.product_list_container .content .more-container{
    cursor: pointer;
}
.product_list_container .content .section1 .list, .product_list_container .content .section1 .list .item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_list_container .content .section1 .list .item{
    width: 33.3%;
}
/* .product_list_container .content .section1 .list{
    display: flex;
    justify-content: center;
    align-items: center;
} */

/*分页器*/
.pager_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    font-size: 16px;
    margin-top: 30px;
}
.pager_prev,
.pager_next{
    width: 70px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #333;
    text-align: center;
    border: 1px solid #333;
    border-radius: 4px;
    cursor: pointer;
}
.pager_prev:hover,
.pager_next:hover {
    background-color: var(--baseColor);
    color: #fff;
}

.pager_content {
    margin: 0 30px;
    display: flex;
    align-items: center;
}
.pager_content span {
    font-size: 22px;
    margin: 0 14px;
}
.pager_content .current_pager {
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0 8px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}



.product_info_wrap {
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    justify-content: space-between;

}
.product_info_wrap .info_left {
    width: 60%;
    display: flex;
}
.product_big_img {
    width: 51rem;
    height: 51rem;
    background: #efefef;
}
.product_big_img img {
    width: 100%;
}
.product_img_list {
    display: flex;
    flex-direction: column;
    height: 51rem;
    margin-left: 60px;
}
.product_img_list .img_item {
    width: 80px;
    height: 80px;
    cursor: pointer;
    background: #efefef;
}
.product_img_list .img_item img {
    width: 100%;
}
.img_item_active {
    border: 2px solid #333;
}
.img_list_prev,
.img_list_next {
    margin: 0 auto;
    height: 25px;
    cursor: pointer;
}
.img_list_prev span {
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: translateY(10px) rotate(315deg);
}
.img_list_next span {
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: translateY(-10px) rotate(135deg);
}

.product_info_wrap .info_right {
    width: 30%;
    margin-top: 1em;
}
.info_right .info_name {
    font-size: 32px;
    color: var(--baseColor);
}
.info_content {
    padding: 2rem 0;
}
.info_content p {
    font-size: 16px;
    color: #555;
}
.info_sku_wrap {
    font-size: 16px;
    color: #333;
}
.info_sku_wrap .sku_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #666;
}
.info_sku_wrap .sku_item:first-child {
    border-top: 1px solid #666;
}
.buy_now {
    margin-top: 50px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: var(--baseColor);
    font-size: 18px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}
.buy_now:hover {
    background-color: #0A1A52;
}

.product_detail_wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}
.detail_left {
    width: 65%;
}
.detail_right {
    width: 30%;
}
.tip_title {
    width: 100%;
    padding: 7px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #7D7D7D;
}
.tip_title span {
    padding: 10px 0;
    border-bottom: 3px solid var(--baseColor);
}

.detail_left .detail_rich {
    padding: 30px 0;
    width: 100%;
    font-size: 16px;
    color: #333;
}
.detail_left .detail_rich img {
    width: 100%;
}
.guess_like {
    padding: 30px 0;
}

.guess_item {
    background-color: #F7F7F7;
    width: 100%;
    margin-bottom: 30px;
    max-height: 428px;
    cursor: pointer;
}
.guess_item:hover .guess_img img{
    transform: scale(1.1);
}

.guess_item .link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.guess_img {
    width: 100%;
    overflow: hidden;
}
.guess_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.guess_name {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 15px;
    color: #333;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*防伪查询*/
.check_wrap {
    // width: 1206px;
    width: 1408px;
    margin: 0 auto;
    padding-top: 85px;
    padding-bottom: 85px;
}
.check_title {
    /* padding: 30px 0; */
    font-size: 47px;
    color: #172986;
}
.check_sub_title{
    position: relative;
    display: inline-block;
    color: #172986;
    font-size: 44px;
    margin-bottom: 35px;
}
.check_sub_title::after {
    display: block;
    content: "";
    width: 50%;
    height: 1px;
    background: #172986;
    position: absolute;
    left: 0;
}
.check_content {
    width: 100%;
    height: 405px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.check_from_wrap {
    display: flex;
    align-items: center;
}
.check_input {
    width: 600px;
    height: 70px;
    padding: 0 20px;
    font-size: 18px;
    background-color: #E0E0E0;
    outline: none;
    border: none;
}
.check_btn {
    width: 140px;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    color: #fff;
    background-color: #004EFF;
    text-align: center;
    cursor: pointer;
}
.check_btn:hover {
    background-color: var(--baseColor);
}

.check_tip {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 50px 40px;
}
.check_tip_item {
    width: 33.33%;
    padding: 0 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.check_wrap .title{
    color: #000000;
    font-size: 35px;
    padding-top: 70px;
    padding-bottom: 35px;
}
.tip_item_left {
    display: flex;
    flex-direction: column;
}
.tip_item_left .t {
    font-size: 30px;
    font-weight: bold;
}
.tip_item_left p {
    font-size: 16px;

}
.tip_item_right {
    margin-left: 20px;
}

.phone_check {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
}
.phone_check img {
    width: 15px;
}
.phone_check .mobile {
    font-size: 16px;
    color: #333;
    margin-left: 20px;
}

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

.result_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    /* height: 150px; */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    min-height: 135px;
}
.res_header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.res_header span {
    font-size: 16px;
    font-weight: bold;
}
.close {
    font-size: 24px;
}
.res_content {
    /* margin-top: 20px; */
    font-size: 28px;
    color: var(--baseColor);
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact{
    width: 100%;
}
.contact .core{
    width: 1200px;
}
.contact_container {
    // display: flex;
    // flex-wrap: wrap;
    // padding: 40px 0;
    // margin-bottom: 40px;
    // border-top: 1px solid #F2F2F2;
    // border-bottom: 1px solid #F2F2F2;
}
.contact_container .item{
    font-size: 21px;
}
.contact_container .item::nth-child(2n){
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.contact_container .item .title-container{
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #cccc;
    margin-bottom: 25px;
    // width: 50%;
}
.contact_container .item .info .icon{
    margin-right: 15px;
}
.contact_container .title{
    padding: 25px 0;
    margin-right: 15px;
}
.contact_item {
    width: 33.33%;
    display: flex;
    align-items: center;
}
.contact_item img {
    width: 15px;
}
.contact_item .txt {
    font-size: 16px;
    color: #333;
    margin-left: 10px;
}
.contact_container .item-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.contact_container .like_us .title-container{
   width: 35%; 
}

.check_wrap .like_us {
    /* color: var(--baseColor); */
}

.platform_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.platform_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    margin-bottom: 20px;
    border-left: 1px solid #F8F8F8;
}
.platform_item:first-child {
    border-left: 0;
}

.platform_item .plat_ewm {
    width: 130px;
    height: 130px;
}
.plat_ewm img {
    width: 100%;
}
.plat_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}
.plat_content img {
    // width: 33px;
    height: 16px;
}
.plat_name {
    margin-top: 8px;
    font-size: 16px;
    color: #333;
}


/*品牌专区*/
.course_container {
    margin-top: 50px;
}
.course_title {
    font-size: 72px;
    color: #303030;
    text-align: center;
    display: block;
}
.sub_title{
    font-size: 23px;
    font-family: SourceHanSansCN-Bold;
}
.course_content {
    margin-top: 30px;
    padding: 0 20px;
    font-size: 16px;
    color: #999;
    text-align: center;
}
.course_container .content{
    position: relative;
    margin-top: 30px;
}
.course_container .content .text{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    // padding-left: 257px;
    left: 100px;
}
/* .researcn .content .text-container{
    position: relative;
} */
.course_container .text .title{
    font-size: 77px;
}
.course_container .text .sub_title{
    font-size: 48px;
    padding-bottom: 25px;
    margin-bottom: 30px;
}
.source .text .sub_title{
    border-bottom: 1px solid #fff;
    
}
.source .content .core, .source .content2 .core, .power .core, .history .content .core{
    position: absolute;
    left: 50%;
    top:0;
    transform: translateX(-50%);
    height: 100%;
}
.source .content .text2{
    /* width: 697px; */
    width: 85%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.history .content .text2{
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.source .content2 .right{
    width: 47%;
}
.source .content2 .left{
    width: 53%;
}
.source  .text-img{
    width: 60%;
}
.course_container .sub_title2{
    font-size: 18px;
}
.course_container .text .sub_title_container{
    width: 360px;
}
.course_container .text .desc{
    /* width: 347px; */
    font-size: 16px;
    margin-top: 10px;
    
    line-height: 2;
    letter-spacing: 3px;
}
.source .text .desc{
    margin-bottom: 67px;
}
.course_container .text .pic-intro-container{
    width: 510px;
}
.course_container .text .pic-intro{
    justify-content: space-between;
    font-size: 10px;
    margin-top: 10px;
}
.course_content p {
    text-align: center;
}
.course_content img {
    width: 100%;
}

.course_scroll_list {
    margin: 60px 0;
    width: 100%;
    height: 500px;
    overflow-y: scroll;
}
.course_list_item {
    display: flex;
}
.course_left {
    width: 270px;
    height: 155px;
    padding: 6px 0;

}
.course_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.course_right {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid #E7E7E7;
}
.course_right .time {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}
.course_right .des {
    margin-top: 10px;
    font-size: 16px;
    color: #999;
}
.course_container .arr-container{
    width: 30px;
    height: 20px;
    margin-top: 20px;
    cursor: pointer;
}
.power .content2{
    display: flex;
   /*  display: grid;
    grid-template-columns: 50% 1fr; */
}
.power .content2 .text{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60%;
    height: 100%;
}
.source .content2 .left, .power .content2 .left{
    /* width: 1088px; */
}
.source .content2 .right{
    background: url(/static/index/images/brand/pic_4.png);
    background-size: cover;
}
.source .content2 .right>img{
    height: 100%;
}
.source .content2{
    display: flex;
    /* height: 621px; */
    overflow: hidden;
    position: relative;
}
.source .content2 .text{

}
.source .arr-container{
    width: 35px;
    float: right;
    margin-top: 30px;
}
.text-inner{
    position: absolute;
    left: 55px;
    top: 55px;
}
.source .content2 .text .title-container, .power .content2 .text .title-container{
    width: 360px;
}
.source .content2 .text .title-container .title, .power .content2 .text .title-container{
    font-size: 44px;
    display: flex;
    justify-content: end;
    color: #fff;
}
.source .content2 .text .sub_title2, .power .content2 .text .sub_title2{
    font-size: 27px;
    text-align: right;
}
.source .content2 .img-water, .power .content2 .img-water{
    margin-right: 45px;
}
.source .content2 .sub_title_container, .power .content2 .sub_title_container{
    text-align: right;
    
}
.source .content2 .text .desc, .power .content2 .text .desc {
    text-align: right;
    font-size: 14px;
    color: #fff;
}
.source .content2 .core{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.source .content2 .text {
    width: 27%;
}
.source .content3-container{
    background: url(/static/index/images/brand/bg.png);
    background-size: cover;
}
.source .content3 {
    display: flex;
    justify-content: space-between;
    padding: 130px 0 100px;
}
.source .content4 {
    padding-left: 40px;
    padding-right: 40px;
}
.source .content3 .item{
    // margin-right: 50px;
}
.source .content3 .item:last-child{
    margin-right: 0;
}
.source .content3 .item .pic{
    position: relative;
}
.source .content3 .item .pic::hover{
    transform: scale(1.2);
}
.source .content3 .item .title{
    position: absolute;
    left: 15px;
    bottom: 20px;
    font-size: 79px;
    color: #fff;
    line-height: 1;
    font-weight: 100;
    font-family: SourceHanSansSC-Light;
}
.source .content3 .item .desc{
    position: relative;
    padding-top: 50px;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}
.source .content3 .item .desc::before{
    display: block;
    content: "";
    width: 75px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 25px;
}
.source .content4{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 44px;
    background: url(/static/index/images/brand/bg_2.png);
    padding-bottom: 44px;
}
.source .content4 .left{
    margin-right: 100px;
    width: 437px;
}
.source .content4 .left .title{
    font-size: 36px;
    border-bottom: 1px solid #000;
    padding-bottom: 30px;
    margin-bottom: 60px;
}
.source .content4 .left .img{
    
}
.source .content4 .arr{
    width: 22px;
    margin-top: 70px;
}

/* 泉愈力 */
.power .title-container{
    color: #fff;
}
.power .content .text2{
    padding-left: 0;
    display: flex;
    width: 100% !important;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.power .content .text .left{
    margin-right: 100px;
}
.power .content .left .title{
    font-size: 77px;
}
.power .content .left .sub_title{
    font-size: 50px;
}
.power .content .left p{
    font-size: 16px;
}
.power .content .right .letter{
    font-size: 90px;
    display: inline-block;
    width: 165px;
    text-align: center;
}
.power .content .right .desc{
    font-size: 23px;
    border-left: 1px solid #fff;
    line-height: 1;
    margin-top: 0;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 25px;
}
.power .content2, .power .content4, .power .content3{
    position: relative;
}
.power .content2 .right{
    background: #000;
    flex: 1;
}
.power .content2 .img{
    width: 55%;
}
.power .content2 .core{
    display: flex;
    justify-content: flex-end;
}
.power .content2 .text img{
    width: 40%;
}
.power .content2 .text-img{
    background: url(/static/index/images/brand/bg_4.png);
}
.power .content3{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/static/index/images/brand/bg.png);
    background-size: cover;
    padding: 95px 0 66px;
}
.power .content3 .left{
    margin-right: 100px;
}
.power .content4 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/static/index/images/brand/bg_2.png);
    padding: 65px 0;
}
.power .content4 .brand-core, .power .content3 .brand-core{
    display: flex;
}
.power .content4 .right{
    margin-left: 100px;
}
.history .content .text{
    width: 30%;
}
.course_container .content .text{
    width: 30%;
}
.node_wrap {
    position: absolute;
    top: 50%;
    left: -9px;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    z-index: 9;
}
.node_wrap img {
    width: 100%;
}
.new_container {
    padding: 30px 0;
    background-color: #F7F7F7;
}

.new_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 60px;
}
.new_list .new_item a:hover {
    color: var(--baseColor);
    /*color: #fff;*/
    /*background-color: var(--baseColor);*/
}
.new_list .new_item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #CCCCCC;
    color: #333;
}
.new_item .new_left {
    display: flex;
    align-items: center;
    font-size: 16px;
    width: 90%;
}
.new_time {

}
.new_title {
    margin-left: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.new_right {
    width: 5%;
    display: flex;
    justify-content: flex-end;
}
.new_right span {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: translateX(-10px) rotate(45deg);
}

.course_title_two {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    text-align: center;
}
.partner_container {
    margin: 60px 0;
}
.partner_tip {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
    text-align: center;
}

.partner_list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}
.partner-prev,.partner-next {
    width: 32px;
    height: 15px;
}
.partner-next img {
    width: 100%;
    height: 100%;
}
.partner-prev img {
    height: 100%;
    width: 100%;
}
.partner_item {
  /*   width: 160px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partner_item .img{
    width: 160px;
}
.partner_swiper {
    padding: 0 20px;
}


.brand_container{
    padding: 50px 0;
}
.brand-core{
    width: 1200px;
    margin: 0 auto;
}
.brand_title {
    font-size: 36px;
    color: #333;
    text-align: center;
}
.brand_title_two {
    font-size: 30px;
    color: var(--baseColor);
    text-align: center;
}

.brand_explore_wrap {
    background-color: #f7f7f7;
    padding: 40px 0;
}
.explore_map {
    width: 100%;
    margin-top: 20px;
}
.explore_map img {
    width: 100%;
}

.explore_list {
    display: flex;
    flex-wrap: wrap;
}
.explore_item {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.explore_item:hover .ex_img img {
    transform: scale(1.1);
}
.explore_item:hover .ex_t {
    color: #0A1A52;;
}

.explore_item .ex_t {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    color: var(--baseColor);
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.explore_item .ex_t span {
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.explore_item .ex_t .ex1 {
    background-color: #12298C;
}
.explore_item .ex_t .ex2 {
    background-color: #AB4DF2;
}
.explore_item .ex_t .ex3 {
    background-color: #8085FF;
}
.explore_item .ex_t .ex4 {
    background-color: #FBAD47;
}
.explore_item .ex_img {
    width: 250px;
    overflow: hidden;
}
.explore_item .ex_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.introduce_list {
    margin-top: 60px;
    margin-bottom: 40px;
}
.intro_item_odd {
    display: flex;
    flex-wrap: wrap;
}
.intro_item_l {
    width: 50%;
    overflow: hidden;
}
.intro_item_l:hover img {
    transform: scale(1.1);
}

.intro_item_l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.intro_item_odd .intro_item_r {
    width: 50%;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.intro_title {
    font-size: 48px;
    font-weight: bold;
    color: var(--baseColor);
}
.intro_item_r p {
    font-size: 16px;
    color: #333;
}

.intro_item_even {
    display: flex;
    flex-wrap: wrap;
}
.intro_item_even .intro_item_r {
    width: 50%;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.technology_container {
    padding: 50px 0;
}
.techno_wrap {
    background-color: #f7f7f7;
}
.techno_title {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
}
.component_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 50px 0;
}
.component_list .com_item {
    width: 24%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.component_list .com_item:hover .com_img img {
    transform: scale(1.1);
}

.com_item .com_img {
    width: 100%;
    overflow: hidden;
}
.com_item .com_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.com_title {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
    color: var(--baseColor);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.component_content {
    margin: 60px 0;
}
.component_content p {
    font-size: 16px;
    text-align: center;
}

/*产品展区*/
.exhibition-container{
    
}
.exhibition-container .tip_title{
    margin-top: 102px;
    margin-bottom: 20px;
    font-size: 30px;
}
.exhibition-container .content{
    /* background: url(/static/index/images/bg.png);
    background-size: contain;
    background-repeat: no-repeat; */
}
.exhibition-container .single_lists{
    flex-wrap: wrap;
    align-items: end;
    justify-content: flex-start;
    width: 1200px;
}
.exhibition-container .single_lists .single_item_container{
   
    margin-bottom: 10px;
    width:25%;
}
.exhibition-container .single_lists .single_item{
    text-align: center;
}

/*资讯详情*/
.news_container {
    margin-top: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
}
.news_main_content {
    width: 70%;
}
.news_recommend {
    width: 25%;
}
.new_main_title {
    font-size: 26px;
    color: #333;
}
.news_send_time {
    margin: 15px 0;
    font-size: 16px;
    color: #999;
}
.news_send_content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}
.news_send_content img {
    width: 100%;
}


.news_re_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.news_re_item a {
    width: 100%;
    height: 100%;
}
.news_re_item:hover .news_re_img img {
    transform: scale(1.1);
}

.news_re_img {
    width: 100%;
    overflow: hidden;
}
.news_re_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.news_re_content {
    width: 100%;
    padding: 20px 10px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.18);
}
.news_re_title {
    width: 100%;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news_re_time {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

.news_switch_container {
    padding: 20px 0 60px 0;
    border-top: 1px solid #ccc;
}
.news_sw_prev a,.news_sw_next a {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: #333;
}
.news_sw_prev a:hover {
    color: var(--baseColor);
}
.news_sw_next a:hover {
    color: var(--baseColor);
}
.news{
    display: block;
    background: #F3F3F3;
    padding: 80px 0 0;
}
.news .news_list_title{
    padding: 0 104px;
}
.news .list{
    margin-bottom: 60px;
}
.news .list .item{
    padding: 20px 104px;
    border-bottom: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 22px;
}
.news .list .item:hover{
    background-color: #fff;
}
.news .list .item .icon{
    width: 46px;
    height: 46px;
}
.news .list .item .time{
    margin-right: 20px;
}

/* 产品列表 */
.product_list_container .content .main{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.product_list_container .main{
    // width: 1408px;
    margin: 0 auto;
}
.product_list_container .content .right{
    margin-left: 80px;
}
.product_list_container .content .right .title{
    font-size: 36px;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
.product_list_container .more-product .list{
    display: flex;
}
.product_list_container .more-product .item{
    width: 33.3%;
}
.product_list_container .section1{
    position: relative;
    padding: 100px 0;
}
.product_list_container .section1 .title{
    width: 480px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}
.product_list_container .section1 .item .text{
    margin-left: 15px;
}
.product_list_container .section1 .item .button{
    background: #172986;
    color: #fff;
    padding: 2px 5px;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}
.product_list_container .section1 .item .text p{
    font-size: 24px;
}
.product_list_container .button{
    text-align: center;
    cursor: pointer;
    margin-top: 106px;
    color: #25292A;
    font-size: 22px;
}

// 联系方式
.contact_container .title-container{
    display: flex;
    align-items: baseline;
}

.star-swiper-container .swiper-slide{
    display: block;
}
.star-swiper-container .single_lists{
    justify-content: space-between;
}

.py80{
    padding-top: 80px;
    padding-bottom: 80px;
}

.mt20{
    margin-top: 20px;
}
.flex{
    display: flex;
}
.flex-x-center{
    display: flex;
    align-items: center;
}
.flex-x-start{
    display: flex;
    align-items: flex-start;
}
.flex-x-around{
    display: flex;
    justify-content: space-around;
}
.flex-y-center{
    display: flex;
    align-items: center;
}
.flex-y-end{
    display: flex;
    align-items: flex-end;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.text-center{
    text-align: center;
}
.c-30{
    color: #303030;
}
.main{
    width: 1200px;
    margin: 0 auto;
}

.video_back {
    /*设置视频最小宽度和高度*/
    min-width: 100%;
    min-height:100%;
    /**/
    // width: 100% !important;
    // height: 100%;
    /*生成绝对定位的元素，相对于 static 定位以外的第一个父元素进行定位。可以根据实际情况修改*/
    position: absolute;
    /*这里我试了一下好像只要是矩形的四个角的的点都行,也就是说right:0;bottom:0;也可以*/
    left: 0;
    top: 0;
    /*将视频放在元素的堆叠顺序最底层，以防覆盖其他东西*/
    /* z-index: -9999; */
    /*被替换的内容正好填充元素的内容框。整个对象将完全填充此框。如果对象的宽高比与内容框不相匹配，那么该对象将被拉伸以适应内容框。*/
    object-fit: fill;
}

.video-box {
    padding-bottom: 56.25%;
    width: 100%;
    position: relative;
}

.play_btn,
.pause_btn {
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 99;
    cursor: pointer;
}

.pause_btn {
    display: none;
}
.mySwiper{
/*     position: absolute !important; */
    --swiper-pagination-color: #fff !important;
}
.swiper{
    width: 100%;
    height: 100%;
}

.logo-name{
    letter-spacing: 1.2em;
    text-align: center;
    margin-top: 0.8em;
}
.product_list_container .section1{
    position: relative;
}
.product_list_container .section1::after{
    display: block;
    content: "";
    width: 100%;
    height: 50px;
    background-image: url(/static/index/images/shadow.png) !important;
    background-repeat: no-repeat !important;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -999;
}

.main-box{
    width: 1200px;
    padding-bottom: 20%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 9999;
}
.single-next{
    cursor: pointer;
    width: 23px;
    height: 35px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(50%);
}
.star-swiper-container{
    position: relative;
}

.detail_left .detail_rich{
    position: relative;
}
.detail_rich .next-btn{
    width: 23px;
    height: 37px;
    position: absolute;
    right: 10px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 9999;
}