﻿/* 公共响应变量 *//* 初始化*/
*
{
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scrollbar-width: thin;
}
html
{
    font-size: calc(100vw / 19.2);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
}
@media(min-width: 1901px)
{
    html
    {
        font-size: 100px;
    }
}
@media(max-width: 1580px)
{
    html
    {
        font-size: calc(100vw / 21);
    }
}
@media(max-width: 1280px)
{
    html
    {
        font-size: calc(100vw / 19.3);
    }
}
@media(max-width: 767px)
{
    html
    {
        font-size: calc(100vw / 15);
    }
}
@media(max-width: 480px)
{
    html
    {
        font-size: calc(100vw / 7.5);
    }
}
body
{
    min-height: 100%;
    font-family: "HONOR Sans CN","Microsoft YaHei","Microsoft YaHei UI","SimSun","SimHei","Arial";
    font-size: 16px;
    color: #000;
    background: #fff;
}
@media(max-width: 1580px)
{
    body
    {
        font-size: 14px;
    }
}
@media(max-width: 767px)
{
    body
    {
        font-size: .28rem;
    }
}
html, body
{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}
img
{
    max-width: 100%;
    max-height: 100%;
    height: auto;
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary
{
    display: block;
}
ul, ol
{
    list-style: none;
}
a
{
    text-decoration: none;
    color: #000;
    display: block;
    cursor: pointer;
}
img
{
    max-width: 100%;
    max-height: 100%;
    border: 0;
}
h1, h2, h3, h4, h5, h6
{
    font-size: 120%;
}
input, textarea
{
    resize: none;
}
input[type="submit"], input[type="reset"], input[type="button"], button
{
    -webkit-appearance: none;
    appearance: none;
}
ul.swiper-wrapper
{
    margin: 0;
    padding: 0;
}/* Flex 布局 */
.flex
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.f_column
{
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.f_column_right
{
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
.f_row
{
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.f_row_right
{
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.j_center
{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.j_end
{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.j_start
{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.j_justify
{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.j_around
{
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.a_start
{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.a_end
{
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.a_center
{
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.a_baseline
{
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}
.a_stretch
{
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}
.a_s_stretch
{
    -webkit-box-self: stretch;
    -ms-align-self: stretch;
    -webkit-align-self: stretch;
    align-self: stretch;
}
.a_s_center
{
    -webkit-box-self: center;
    -ms-align-self: center;
    -webkit-align-self: center;
    align-self: center;
}
.a_s_end
{
    -webkit-box-self: end;
    -ms-align-self: end;
    -webkit-align-self: end;
    align-self: end;
}
.flex_wrap
{
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}/* 文字超出隐藏 */
.text
{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}/* 动画 */
.abImg
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}
.dh
{
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}/* 动画延迟 *//* 比例 */
.pb
{
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.ab
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    text-align: center;
    overflow: hidden;
}/* 图片 水平垂直 居中 */
.abimg
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}/* 常用 CSS3 动画 *//* 360 旋转 */
@keyframes run
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
@keyframes grow2
{
    0%
    {
        transform: scale(1.2);
        opacity: 0;
    }
    100%
    {
        transform: scale(1);
        opacity: 1;
    }
}/* 旋转 *//* input框点击搜索时背景没有颜色 */
input:-webkit-autofill
{
    background: transparent;
    transition: background-color 50000s ease-in-out 0s;
    -webkit-text-fill-color: unset;
}/* 不显示滚动条 */
.scrollbar_0 *
{
    -ms-overflow-style: none;/* IE and Edge */
    scrollbar-width: none;/* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar
{
    display: none;
}
.center_box
{
    position: relative;
    z-index: 5;
}/* 媒体查询 缩写 *//* 布局 */
.pc
{
    display: block;
}
.wap, .mobile
{
    display: none;
}
@media(max-width: 990px)
{
    .pc
    {
        display: none;
    }
    .wap, .mobile
    {
        display: block;
    }
}
.img_cover
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mar_b
{
    margin-bottom: 0!important;
}
.mar_t
{
    margin-top: 0!important;
}
.pad_b
{
    padding-bottom: 0!important;
}
.pad_t
{
    padding-top: 0!important;
}
.h100
{
    height: 100%;
}
:root
{/* COLOR */
    --active_color: #e6006d;
    --color_fff: #fff;
    --color_text: #282828;
    --color_f6f: #f6f6f6;
    --color_f4f: #f4f4f4;
    --color_eee: #eee;
    --color_ddd: #ddd;
    --color_bbb: #bbb;
    --color_999: #999;
    --color_666: #666;
    --color_444: #444;
    --color_333: #333;/* --- font40以下 */
    --font12: clamp(12px,.12rem,12px);
    --font14: clamp(12px,.14rem,14px);
    --font16: clamp(13px,.16rem,16px);
    --font17: clamp(13px,.17rem,17px);
    --font18: clamp(14px,.18rem,18px);
    --font20: clamp(15px,.2rem,20px);
    --font22: clamp(16px,.22rem,22px);
    --font24: clamp(17px,.24rem,24px);
    --font26: clamp(18px,.26rem,26px);
    --font28: clamp(18px,.28rem,28px);
    --font30: clamp(20px,.3rem,30px);
    --font32: clamp(20px,.32rem,32px);
    --font34: clamp(22px,.34rem,34px);
    --font36: clamp(22px,.36rem,36px);
    --font38: clamp(24px,.38rem,38px);/* --- font40 */
    --font40: clamp(23px,.4rem,40px);
    --font42: clamp(24px,.42rem,42px);
    --font44: clamp(24px,.44rem,44px);
    --font46: clamp(25px,.46rem,46px);
    --font48: clamp(26px,.48rem,48px);/* --- font50 */
    --font50: clamp(28px,.5rem,50px);
    --font52: clamp(28px,.52rem,52px);
    --font54: clamp(28px,.54rem,54px);
    --font56: clamp(28px,.56rem,56px);
    --font58: clamp(29px,.58rem,58px);/* --- font60 */
    --font60: clamp(30px,.6rem,60px);
    --font64: clamp(31px,.66rem,64px);
    --font66: clamp(31px,.66rem,66px);/* --- font70以及以上 */
    --font70: clamp(32px,.7rem,70px);
    --font72: clamp(32px,.72rem,72px);
    --font80: clamp(32px,.8rem,80px);
    --font100: 1rem;
    --font120: 1.2rem;
    --font160: 1.6rem;
}/* 公共字体 */
.font12
{
    font-size: var(--font12);
}
.font14
{
    font-size: var(--font14);
}
.font16
{
    font-size: var(--font16);
}
.font18
{
    font-size: var(--font18);
}
.font20
{
    font-size: var(--font20);
}
.font22
{
    font-size: var(--font22);
}
.font24
{
    font-size: var(--font24);
}
.font26
{
    font-size: var(--font26);
}
.font28
{
    font-size: var(--font28);
}
.font30
{
    font-size: var(--font30);
}
.font32
{
    font-size: var(--font32);
}
.font34
{
    font-size: var(--font34);
}
.font36
{
    font-size: var(--font36);
}
.font38
{
    font-size: var(--font38);
}
.font40
{
    font-size: var(--font40);
}
.font42
{
    font-size: var(--font42);
}
.font44
{
    font-size: var(--font44);
}
.font46
{
    font-size: var(--font46);
}
.font48
{
    font-size: var(--font48);
}
.font50
{
    font-size: var(--font50);
}
.font52
{
    font-size: var(--font52);
}
.font54
{
    font-size: var(--font54);
}
.font56
{
    font-size: var(--font56);
}
.font58
{
    font-size: var(--font58);
}
.font60
{
    font-size: var(--font60);
}
.font66
{
    font-size: var(--font66);
}
.font70
{
    font-size: var(--font70);
}
.font72
{
    font-size: var(--font72);
}
.font80
{
    font-size: var(--font80);
}
.font64
{
    font-size: var(--font64);
}
.font100
{
    font-size: var(--font100);
}
.font120
{
    font-size: var(--font120);
}
.font160
{
    font-size: var(--font160);
}/* -------------------------------------------------------------------  字体 */
@font-face
{
    font-family: 'Gotham';/*src: url('');*/
    font-weight: 500;
}
@font-face
{
    font-family: 'Gotham';/*src: url('');*/
    font-weight: normal;
}
@font-face
{
    font-family: 'Gotham';/*src: url('');*/
    font-weight: 300;
}
@font-face
{
    font-family: "SourceHanSansCN";/*src: url("");*/
    font-weight: 200;
}
@font-face
{
    font-family: "SourceHanSansCN";/*src: url("");*/
    font-weight: 300;
}
@font-face
{
    font-family: "SourceHanSansCN";/*src: url("");*/
    font-weight: normal;
}
@font-face
{
    font-family: "SourceHanSansCN";/*src: url("");*/
    font-weight: 500;
}
@font-face
{
    font-family: "SourceHanSansCN";/*src: url("");*/
    font-weight: 600;
}
@font-face
{
    font-family: "SourceHanSansCN";/*src: url("");*/
    font-weight: 700;
}/* --------------------------------------------------------------- 全站内容区 *//* --------------------------------------------------------------- 最小内容区 */
.w1560
{
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;/* 1920以上要控制住内容区，但是背景和通频的图片和通频的内容要无限延伸， *//* 1560 / 1920 *//* 1560 / 1840 */
}
@media(max-width: 1920px)
{
    .w1560
    {
        max-width: 81.25%;
    }
}
@media(max-width: 1840px)
{
    .w1560
    {
        max-width: 84.7826087%;
    }
}
@media(max-width: 990px)
{
    .w1560
    {
        max-width: 100%;
        padding: 0 20px;
    }
}/* --------------------------------------------------------------- 最大内容区 */
.w1880
{
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
}
@media(max-width: 1920px)
{
    .w1880
    {
        max-width: 95.83333333%;
    }
}
@media(max-width: 990px)
{
    .w1880
    {
        max-width: 100%;
        padding: 0 20px;
    }
}
main
{
    width: 100%;
    height: auto;
    --header-height: 1rem;
    font-family: "SourceHanSansCN";
}
main.active
{
    --header-height: .8rem;
}
@media(max-width: 990px)
{
    main
    {
        --header-height: 50px;
    }
}/* --------------------------------------------------------------- 导航占位 */
.head_nbsp
{
    width: 100%;
    height: var(--header-height);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}/* --------------------------------------------------------------- 锚点 */
.locate_item
{
    width: 100%;
    height: 0;
}/* --------------------------------------------------------------- 全站左右结构 */
.box_info
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
@media(max-width: 990px)
{
    .box_info
    {
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: .5rem;
    }
    .box_info .left_box, .box_info .right_box
    {
        width: 100%!important;
        height: auto;
    }
}/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide
{
    display: none;
}
@media(max-width: 990px)
{
    .idxPageHide
    {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        gap: 5px;
        margin-top: 20px;
    }
    .idxPageHide span
    {
        width: 5px;
        height: 5px;
    }
    .idxPageHide .swiper-pagination-bullet-active
    {
        background: var(--active_color);
    }
}/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    grid-gap: var(--num_15);
}
.idxPageShow span
{
    width: 9px;
    height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active
{
    background: var(--active_color);
}
.idx_title
{
    width: 100%;
    height: auto;
}
.idx_title .t1
{
    font-weight: normal;
}
.idx_title .t2
{
    margin-top: .1rem;
    font-weight: 300;
}
.idx_more1
{
    width: auto;
    height: auto;
}
.idx_more1 .more
{
    width: .6rem;
    height: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: .12rem;
    color: #fff;
    font-size: var(--font16);
    min-width: 40px;
    min-height: 35px;
}
.ins_font48
{
    font-size: var(--font48);
    font-weight: normal;
    line-height: 1.238;
}
.idx_banner
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #000;
}
.idx_banner ul li
{
    width: 100%;
    height: auto;
}
.idx_banner ul li .images_w100
{
    width: 100%;
    height: auto;
}
.idx_banner ul li .images_w100 img
{
    width: 100%;
    height: auto;
}
.idx_banner ul li.swiper-slide-active .images_w100 img
{
    animation: grow2 1s ease;
}
@media(max-width: 990px)
{
    .idx_banner .idxPageHide
    {
        position: absolute;
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        bottom: 20px;
        z-index: 10;
    }
}
.idx_information
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 1.1rem;
    padding-bottom: 1rem;
}
.idx_information .center_box
{
    width: 100%;
    height: auto;
}
.idx_information .center_box .content
{
    width: 100%;
    height: auto;
    margin-top: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .6rem;
}
.idx_information .center_box .content .list_box
{
    width: 100%;
    height: auto;
    display: grid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: .6rem;
    justify-content: space-between;
}
.idx_information .center_box .content .list_box .item
{
    width: 20%;
    height: auto;
    transition: all .8s cubic-bezier(.6,0,.2,1);
    height: 4.6rem;
    background: #f5f5f5;
    border-radius: .16rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}
.idx_information .center_box .content .list_box .item .images_bg
{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: var(--url);
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.idx_information .center_box .content .list_box .item .word_box
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: .3rem;
    transition: all .8s cubic-bezier(.6,0,.2,1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.idx_information .center_box .content .list_box .item .word_box .word
{
    width: 100%;
    height: auto;
}
.idx_information .center_box .content .list_box .item .word_box .word .icon
{
    width: fit-content;
    height: auto;
    font-size: var(--font14);
    padding: .05rem 0;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: none;
    line-height: 1;
    color: #000;
    transition: all .8s cubic-bezier(.6,0,.2,1);
    color: #fff;
    min-height: 20px;
}
.idx_information .center_box .content .list_box .item .word_box .word .title
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: .14rem;
    color: #fff;
}
.idx_information .center_box .content .list_box .item .word_box .word .title .be
{
    position: absolute;
    top: 11px;
    transition: all .8s cubic-bezier(.6,0,.2,1);
}
.idx_information .center_box .content .list_box .item .word_box .word .title .af
{
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateX(66%);
    transition: all .8s cubic-bezier(.6,0,.2,1);
}
.idx_information .center_box .content .list_box .item .word_box .word .title .af .t2
{
    margin-top: .1rem;
}
.idx_information .center_box .content .list_box .item .word_box .idx_more1 .more
{
    transition: all .8s cubic-bezier(.6,0,.2,1);
}
.idx_information .center_box .content .list_box .item.active
{
    width: calc(60% - 1.2rem);
}
.idx_information .center_box .content .list_box .item.active .word_box
{
    width: 33.5%;
}
.idx_information .center_box .content .list_box .item.active .word_box .word .icon
{
    background: #fff;
    padding-left: .15rem;
    padding-right: .15rem;
    color: #000;
}
.idx_information .center_box .content .list_box .item.active .word_box .word .title
{
    color: #000;
}
.idx_information .center_box .content .list_box .item.active .word_box .word .title .be
{
    opacity: 0;
    transform: translateX(-200%);
}
.idx_information .center_box .content .list_box .item.active .word_box .word .title .af
{
    opacity: 1;
    transform: translateX(0);
}
.idx_information .center_box .content .list_box .item.active .word_box .idx_more1 .more
{
    background: var(--active_color);
    border-color: var(--active_color);
}
.idx_information .center_box .content .item_box
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: .6rem;
}
.idx_information .center_box .content .item_box .item
{
    width: 20%;
    height: auto;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    height: 4.6rem;
    background: #f5f5f5;
    border-radius: .16rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}
.idx_information .center_box .content .item_box .item .images_bg
{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: var(--url);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.idx_information .center_box .content .item_box .item .word_box
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: .4rem .3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.idx_information .center_box .content .item_box .item .word_box .word
{
    width: 100%;
    height: auto;
    color: #fff;
}
.idx_information .center_box .content .item_box .item .word_box .word .icon
{
    font-size: var(--font14);
}
.idx_information .center_box .content .item_box .item .word_box .word .title
{
    width: 100%;
    height: auto;
    margin-top: .14rem;
}
.idx_information .center_box .content .item_box .item .word_box .word .title .t2
{
    margin-top: .1rem;
    font-weight: 300;
}
.idx_information .center_box .content .item_box .item .word_box .idx_more1 .more
{
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.idx_information .center_box .content .item_box .item.active
{
    width: calc(80% - .6rem);
}
.idx_information .center_box .content .item_box .item:hover .images_bg
{
    transform: scale(1.03);
}
.idx_information .center_box .content .item_box .item:hover .idx_more1 .more
{
    background: var(--active_color);
    border-color: var(--active_color);
}
.idx_information .center_box .swiper_box
{
    width: 100%;
    height: auto;
    display: none;
    overflow: hidden;
    margin-top: .6rem;
}
.idx_information .center_box .swiper_box ul li
{
    width: 100%;
    height: auto;
}
.idx_information .center_box .swiper_box ul li .item
{
    width: 100%;
    height: auto;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    height: 4.6rem;
    background: #f5f5f5;
    border-radius: .16rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}
.idx_information .center_box .swiper_box ul li .item .images_bg
{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: var(--url);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.idx_information .center_box .swiper_box ul li .item .word_box
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: .4rem .3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background: #00000029;
}
.idx_information .center_box .swiper_box ul li .item .word_box .word
{
    width: 100%;
    height: auto;
    color: #fff;
}
.idx_information .center_box .swiper_box ul li .item .word_box .word .icon
{
    font-size: var(--font14);
}
.idx_information .center_box .swiper_box ul li .item .word_box .word .title
{
    width: 100%;
    height: auto;
    margin-top: .14rem;
}
.idx_information .center_box .swiper_box ul li .item .word_box .word .title .t2
{
    margin-top: .1rem;
    font-weight: 300;
}
.idx_information .center_box .swiper_box ul li .item .word_box .idx_more1 .more
{
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
@media(max-width: 990px)
{
    .idx_information .center_box .content
    {
        display: none!important;
    }
    .idx_information .center_box .swiper_box
    {
        display: block!important;
    }
}
.idx_product
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: .95rem;
}
.idx_product .center_box
{
    width: 100%;
    height: auto;
}
.idx_product .content
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: .6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.idx_product .content .item_box
{
    width: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f7f7f7;
}
.idx_product .content .item_box .pb .ab img
{
    width: 100%;
    height: auto;
}
.idx_product .content .item_box .images
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.idx_product .content .item_box .images img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all .5s linear;
    transform: scale(1.1);
}
.idx_product .content .item_box .word_box
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.idx_product .content .item_box .word_box .word
{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    padding-top: 1.2rem;
    padding-bottom: .8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}
.idx_product .content .item_box .word_box .word .title
{
    color: #000;
    transition: all .5s linear;
}
.idx_product .content .item_box .word_box .word .title .t2
{
    margin-top: .1rem;
}
.idx_product .content .item_box .word_box .img_bg
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.idx_product .content .item_box .word_box .idx_more1
{
    opacity: 0;
    transition: all .5s linear;
}
.idx_product .content .item_box.active .images img
{
    opacity: 1;
    transform: scale(1);
}
.idx_product .content .item_box.active .word_box .word .title
{
    color: #fff;
}
.idx_product .content .item_box.active .word_box .word .idx_more1
{
    opacity: 1;
}
.idx_product .content .product_tips
{
    width: 1.68rem;
    height: 1.68rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    min-width: 130px;
    min-height: 130px;
}
.idx_product .content .product_tips::after
{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: rgba(255,255,255,.57);
}
.idx_product .content .product_tips .center
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: .2rem;
}
.idx_product .content .product_tips .center .circle_box
{
    width: 100%;
    height: 1em;
    font-size: 20px;
    position: relative;
}
.idx_product .content .product_tips .center .circle_box .circle
{
    width: 1em;
    height: 1em;
    font-size: 20px;
    border-radius: 50%;
    background: #c9c9c9;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    transform: translateX(-20%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_product .content .product_tips .center .circle_box .circle:first-child
{
    z-index: 2;
}
.idx_product .content .product_tips .center .circle_box .circle.active
{
    transform: translateX(-80%);
    background: #000;
}
.idx_product .content .product_tips .center .title
{
    margin-top: .15rem;
    font-size: var(--font18);
    text-align: center;
    line-height: 1;
}
@media(max-width: 990px)
{
    .idx_product .content
    {
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .idx_product .content .item_box
    {
        width: 100%;
        height: auto;
    }
    .idx_product .content .item_box .pb
    {
        padding-bottom: 60%;
    }
    .idx_product .content .item_box .word_box .word
    {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        gap: .5rem;
    }
    .idx_product .content .item_box .images img
    {
        opacity: 1;
        transform: scale(1);
    }
    .idx_product .content .item_box .word_box .word .title
    {
        color: #fff;
    }
    .idx_product .content .item_box .word_box .word .idx_more1
    {
        opacity: 1;
    }
    .idx_product .content .product_tips
    {
        min-height: 80px;
    }
}
.idx_programme
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 1.9rem;
}
.idx_programme .center_box
{
    width: 100%;
    height: auto;
}
.idx_programme .center_box .idx_title
{
    text-align: center;
}
.idx_programme .swiper_info
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: .4rem;
    overflow: hidden;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.idx_programme .swiper_info::after
{
    content: '';
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    width: 102vw;
    height: 1rem;
    background: #fff;
    transform: translateY(-60%) translateX(-50%);
    border-radius: 100%;
}
.idx_programme .swiper_info .swiper_img
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.idx_programme .swiper_info .swiper_img ul li
{
    width: 100%;
    height: auto;
}
.idx_programme .swiper_info .swiper_img ul li .centerInfo
{
    width: 100%;
    height: 100%;
}
.idx_programme .swiper_info .swiper_img ul li .centerInfo img
{
    width: 100%;
    height: auto;
}
.idx_programme .swiper_info .swiper_word
{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
}
.idx_programme .swiper_info .swiper_word ul li
{
    width: 100%;
    height: auto;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo
{
    width: 100%;
    height: 100%;
    padding-bottom: 1.1rem;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo::after
{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 150vh;
    background: #00000038;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    padding-right: .2rem;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .title
{
    position: absolute;
    padding-left: .2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .title::after
{
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(50%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word .woBox
{
    width: 100%;
    height: auto;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word .woBox .t1
{
    padding-left: .2rem;
    position: relative;
    z-index: 1;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word .woBox .t1::after
{
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word .woBox .t2
{
    margin-top: .1rem;
    padding-left: .2rem;
    line-height: 1.2;
    height: calc(2em * 1.25);
    overflow: auto;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word .btnBox
{
    margin-top: .2rem;
    padding-left: .2rem;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word .btnBox .more
{
    font-size: var(--font14);
    padding: .1rem .26rem;
    border-radius: 100px;
    overflow: hidden;
    width: fit-content;
    height: auto;
    background: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_programme .swiper_info .swiper_word ul li .centerInfo .word_box .word .btnBox .more:hover
{
    background: var(--active_color);
    color: #fff;
}
.idx_programme .swiper_info .swiper_word ul li.swiper-slide-active .centerInfo .word_box .title
{
    transform: translateX(-50%);
    opacity: 0;
}
.idx_programme .swiper_info .swiper_word ul li.swiper-slide-active .centerInfo .word_box .word
{
    transform: translateX(0);
    opacity: 1;
}
.idx_programme .swiper_info .swiper_word ul li.swiper-slide-active .centerInfo::after
{
    width: 0%;
    left: 0;
}
.idx_programme .swiper_info .swiper_btn
{
    width: .5rem;
    height: 1rem;
    position: absolute;
    z-index: 11;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(0,0,0,.363);
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_programme .swiper_info .swiper_btn i
{
    color: #fff;
}
.idx_programme .swiper_info .swiper_btn.prev
{
    left: 0;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}
.idx_programme .swiper_info .swiper_btn.prev i
{
    transform: translateX(-50%);
}
.idx_programme .swiper_info .swiper_btn.next
{
    right: 0;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}
.idx_programme .swiper_info .swiper_btn.next i
{
    transform: translateX(50%);
}
.idx_programme .swiper_info .swiper_btn:hover
{
    background: var(--active_color);
}
@media(max-width: 990px)
{
    .idx_programme .swiper_info::after
    {
        display: none;
    }
}
.idx_serve
{
    width: 100%;
    height: 150vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.idx_serve .maskBox
{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
.idx_serve .maskBox .content1
{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    background: #fff;
    transition: all .8s cubic-bezier(.6,0,.2,1);
    pointer-events: none;
}
.idx_serve .maskBox .content1 .svg_bg
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-mask: url("/svg/zws5lqlb.svg");
    -webkit-mask-repeat: no-repeat;
    --mask: 50%;
    --maskpo: 50% 41%;
    transition: all .8s cubic-bezier(.6,0,.2,1);
    -webkit-mask-size: var(--mask);
    -webkit-mask-position: var(--maskpo);
    z-index: 10;
    background-image: url(/jpg/ijkzk0p7.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.idx_serve .maskBox .content1.active
{
    opacity: 0;
}
.idx_serve .maskBox .content1.active .svg_bg
{
    --mask: 1500%;
    --maskpo: 50% 41%;
    opacity: 1;
}
.idx_serve .maskBox .content2
{
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}
.idx_serve .maskBox .content2 .images_bg
{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-image: url(/jpg/ijkzk0p7.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.idx_serve .maskBox .content2 .word_box
{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.idx_serve .maskBox .content2 .word_box .center_box
{
    width: 100%;
    height: auto;
    color: #fff;
}
.idx_serve .maskBox .content2 .word_box .center_box .idx_title
{
    width: 100%;
    height: auto;
}
.idx_serve .maskBox .content2 .word_box .center_box .idx_title .idx_more1
{
    margin-top: .55rem;
}
.idx_serve .maskBox .content2 .word_box .center_box .idx_title .idx_more1 .more
{
    border-color: #676868;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_serve .maskBox .content2 .word_box .center_box .idx_title .idx_more1 .more:hover
{
    background: var(--active_color);
    border-color: var(--active_color);
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box
{
    width: 100%;
    height: auto;
    margin-top: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item
{
    width: 25%;
    height: auto;
    position: relative;
    transform: var(--trY);
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item::after
{
    content: '';
    width: 1px;
    height: 200vh;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    background: #fff;
    transform: translateY(-50%);
    opacity: .1;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center
{
    width: 100%;
    height: auto;
    padding: 20px;
    position: relative;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center::after
{
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .icon
{
    width: 100%;
    height: 1em;
    font-size: var(--font36);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info
{
    width: 100%;
    height: auto;
    margin-top: .5rem;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number .beat, .idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number .word
{
    font-size: var(--font60);
    font-family: 'Gilroy';
    color: #fff;
    line-height: 1;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number .unit
{
    width: 8px;
    height: 8px;
    position: relative;
    margin-left: .1rem;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number .unit::before, .idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number .unit::after
{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
    background: #fff;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number .unit::before
{
    width: 2px;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .number .unit::after
{
    height: 2px;
}
.idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .info .title
{
    margin-top: .2rem;
    font-size: var(--font16);
    color: #fff;
    line-height: 1;
}
@media(max-width: 990px)
{
    .idx_serve
    {
        height: auto;
        padding-top: 1.3rem;
    }
    .idx_serve .maskBox
    {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }
    .idx_serve .maskBox .content1
    {
        display: none;
    }
    .idx_serve .maskBox .content2
    {
        position: relative;
    }
    .idx_serve .maskBox .content2 .word_box
    {
        position: relative;
        padding: 1rem 0;
    }
    .idx_serve .maskBox .content2 .word_box .center_box .item_box
    {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .idx_serve .maskBox .content2 .word_box .center_box .item_box .item
    {
        transform: translateY(0)!important;
        width: 100%;
        height: auto;
    }
    .idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center
    {
        width: 100%;
        height: auto;
    }
    .idx_serve .maskBox .content2 .word_box .center_box .item_box .item .center .icon
    {
        width: 50px;
        flex-shrink: 0;
    }
}
.idx_new
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f5f5f5;
    padding-top: 1.2rem;
    padding-bottom: .8rem;
}
.idx_new .center_box
{
    width: 100%;
    height: auto;
}
.idx_new .center_box .news_main
{
    width: 100%;
    height: auto;
    margin-top: .6rem;
}
.idx_new .center_box .news_main .swiper_box
{
    width: 100%;
    height: auto;
}
.idx_new .center_box .news_main .swiper_box li
{
    width: 25%;
}
.idx_new .center_box .news_main .swiper_box li a
{
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}
.idx_new .center_box .news_main .swiper_box li a .info
{
    width: 100%;
    height: auto;
    padding: .4rem .3rem;
    padding-bottom: .5rem;
}
.idx_new .center_box .news_main .swiper_box li a .info .title
{
    height: calc(4em * 1.5);
    margin-bottom: 1.5em;
    font-size: var(--font20);
    line-height: 1.5;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.idx_new .center_box .news_main .swiper_box li a .info .time
{
    font-size: var(--font14);
    color: #000;
    line-height: 1;
}
.idx_new .center_box .news_main .swiper_box li a .img
{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.idx_new .center_box .news_main .swiper_box li a .img .pb
{
    padding-bottom: 42.11%;
}
.idx_new .center_box .news_main .swiper_box li a .img .ab
{
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_new .center_box .news_main .swiper_box li a .img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.idx_new .center_box .news_main .swiper_box li a:hover .info .title
{
    color: var(--active_color);
}
.idx_new .center_box .news_main .swiper_box li a:hover .img .ab
{
    transform: scale(1.03);
}
.idx_new .center_box .news_main .pager_box
{
    width: 100%;
    height: auto;
    margin-top: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}
.idx_new .center_box .news_main .pager_box .swiper_btn
{
    width: .6rem;
    height: .6rem;
    font-size: var(--font60);
    border-radius: 50%;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    order: 1;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
    color: #fff;
}
.idx_new .center_box .news_main .pager_box .swiper_btn.next
{
    order: 10;
}
.idx_new .center_box .news_main .pager_box .swiper_btn svg
{
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.idx_new .center_box .news_main .pager_box .swiper_btn:hover
{
    background: var(--active_color);
}
.idx_new .center_box .news_main .pager_box .swiper_btn i
{
    font-size: var(--font20);
}
.idx_new .center_box .news_main .pager_box .pager
{
    width: 100%;
    height: 4px;
    flex: 1;
    margin: 0 .9rem;
    order: 2;
    position: relative;
    background: #e3e3e3;
}
.idx_new .center_box .news_main .pager_box .pager *
{
    background: var(--active_color);
}
@media(max-width: 990px)
{
    .idx_new .center_box .pager_box .swiper_btn
    {
        display: none!important;
    }
    .idx_new .center_box .pager_box .pager
    {
        width: 100%!important;
        height: 2px!important;
    }
}
.ins_navCrumbs
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: .18rem 0;
}
.ins_navCrumbs .center_box
{
    width: 100%;
    height: auto;
    gap: .2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: var(--font16);
}
.ins_navCrumbs .center_box i
{
    transform: rotate(-90deg);
    color: #c5c5c5;
}
.ins_navCrumbs .center_box a
{
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
.ins_navCrumbs .center_box a:hover
{
    color: var(--active_color);
}
.ins_title
{
    width: 100%;
    height: auto;
}
.ins_title .t1
{
    font-size: var(--font48);
    font-weight: 300;
    line-height: 1.25;
}
.ins_title2
{
    width: 100%;
    height: auto;
}
.ins_title2 .t1
{
    font-size: var(--font40);
    line-height: 1.25;
    font-weight: 300;
}
.ins_title2 .t2
{
    font-weight: 300;
    margin-top: .3rem;
    font-size: var(--font24);
}
.ins_title2 .t3
{
    font-size: var(--font16);
    margin-top: .15rem;
}
.images_rad
{
    width: 100%;
    height: auto;
}
.images_rad img
{
    width: 100%;
    height: auto;
}
.swibtn_box
{
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: .1rem;
}
.swibtn_box .swiper_btn
{
    width: .6rem;
    height: .6rem;
    font-size: var(--font60);
    border-radius: 50%;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    order: 1;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
    color: #fff;
}
.swibtn_box .swiper_btn:hover
{
    background: var(--active_color);
}
.swibtn_box .swiper_btn i
{
    font-size: var(--font24);
}
.ins_aboutCon1
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: .2rem;
}
.ins_aboutCon1 .center_box
{
    width: 100%;
    height: auto;
}
.ins_aboutCon1 .center_box .ins_title
{
    max-width: 35%;
}
.ins_aboutCon1 .center_box .images_rad
{
    margin-top: .6rem;
    border-top-left-radius: 2.28rem;
    overflow: hidden;
}
.ins_aboutCon1 .center_box .images_rad .wap
{
    min-height: 300px;
    object-fit: cover;
}
@media(max-width: 990px)
{
    .ins_aboutCon1 .center_box .ins_title
    {
        max-width: 100%;
    }
}
.ins_aboutCon2
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 1.9rem;
    padding-bottom: .7rem;
}
.ins_aboutCon2 .center_box
{
    width: 100%;
    height: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.ins_aboutCon2 .center_box .left_box
{
    width: 39.74358%;
    border-top-right-radius: 2.28rem;
    overflow: hidden;
}
.ins_aboutCon2 .center_box .left_box img
{
    width: 100%;
    height: auto;
}
.ins_aboutCon2 .center_box .right_box
{
    width: 50%;
}
.ins_aboutCon2 .center_box .right_box .t2
{
    line-height: 1.875;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .3rem;
    margin-top: .4rem;
    font-weight: 300;
    max-height: 65vh;
    overflow: auto;
}
@media(max-width: 990px)
{
    .ins_aboutCon2 .center_box
    {
        flex-direction: column-reverse;
    }
    .ins_aboutCon2 .center_box .left_box img
    {
        max-height: 300px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .ins_aboutCon2 .center_box .right_box .t2
    {
        max-height: 300px;
        overflow: auto;
    }
}
.ins_aboutCon3
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: .7rem;
    padding-bottom: 1.3rem;
}
.ins_aboutCon3 .center_box
{
    width: 100%;
    height: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.ins_aboutCon3 .center_box .left_box
{
    width: 50%;
}
.ins_aboutCon3 .center_box .left_box .content .t2
{
    font-weight: 300;
    margin-top: .3rem;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox
{
    margin-top: .9rem;
    border-top: 1px solid #eee;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item
{
    border-bottom: 1px solid #eee;
    position: relative;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item::after
{
    content: '';
    position: absolute;
    top: 0;
    width: 0%;
    height: 1px;
    background: var(--active_color);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item .navBox
{
    font-size: var(--font24);
    color: #000;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    width: 100%;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item .navBox span
{
    position: relative;
    width: 16px;
    height: 2px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item .navBox span i
{
    background: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item .navBox span i:last-child
{
    transform: rotate(90deg);
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item .botBox
{
    font-size: var(--font16);
    color: #333;
    line-height: 1.875;
    max-height: calc(3em * 1.875);
    margin-bottom: .7rem;
    display: none;
    width: 100%;
    overflow: auto;
    scrollbar-width: thin;
    padding-right: 10px;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item:first-child .botBox
{
    display: block;
}
.ins_aboutCon3 .center_box .left_box .content .itemBox .item.active .navBox span i:last-child
{
    transform: rotate(0deg);
}
.ins_aboutCon3 .center_box .right_box
{
    width: 39.74358%;
    border-top-left-radius: 2.28rem;
    overflow: hidden;
}
.ins_aboutCon3 .center_box .right_box img
{
    width: 100%;
    height: auto;
}
@media(max-width: 990px)
{
    .ins_aboutCon3 .center_box .right_box img
    {
        max-height: 300px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}
.ins_aboutCon4
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #fafafa;
    padding-top: 1.2rem;
    padding-bottom: 1.7rem;
}
.ins_aboutCon4 .center_box
{
    width: 100%;
    height: auto;
}
.ins_aboutCon4 .center_box .top_box
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-bottom: .5rem;
    position: relative;
    z-index: 1;
}
.ins_aboutCon4 .center_box .top_box::after
{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #d7dadd;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ins_aboutCon4 .center_box .content
{
    width: 100%;
    height: auto;
    margin-top: .6rem;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.ins_aboutCon4 .center_box .content .item_box
{
    width: 50%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .4rem;
}
.ins_aboutCon4 .center_box .content .item_box .item
{
    width: auto;
    height: auto;
    font-family: "Gotham","SourceHanSansCN";
    font-weight: 300;
    font-size: var(--font30);
    color: #d7dadd;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
.ins_aboutCon4 .center_box .content .item_box .item.active
{
    font-size: 1.1rem;
    color: var(--active_color);
}
.ins_aboutCon4 .center_box .content .svg_box
{
    width: 31%;
    position: absolute;
    z-index: 1;
}
.ins_aboutCon4 .center_box .content .svg_box .svg
{
    width: 100%;
    height: auto;
}
.ins_aboutCon4 .center_box .content .svg_box .af
{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
.ins_aboutCon4 .center_box .content .svg_box .af .line
{
    stroke-dashoffset: 1507.92;
    stroke-dasharray: 1507.92;
}
.ins_aboutCon4 .center_box .content .svg_box.active .af .line
{
    stroke-dashoffset: 0;
    transition: all 6s linear;
}
.ins_aboutCon4 .center_box .content .swiper_box
{
    width: 50%;
    height: auto;
}
.ins_aboutCon4 .center_box .content .swiper_box ul li
{
    width: 100%;
    height: auto;
}
.ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo
{
    width: 100%;
    height: auto;
    padding: .6rem 0;
}
.ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo .year
{
    display: none;
    font-size: var(--font72);
    color: var(--active_color);
}
.ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo .title
{
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}
.ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo .list_box
{
    width: 100%;
    height: auto;
    margin-top: .5rem;
}
.ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo .list_box .list
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .2rem;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}
@media(max-width: 990px)
{
    .ins_aboutCon4 .center_box .content .item_box
    {
        display: none!important;
    }
    .ins_aboutCon4 .center_box .content .svg_box
    {
        width: 80%;
        margin-left: 10%;
        height: auto;
    }
    .ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo .year
    {
        display: block!important;
    }
    .ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo .title
    {
        margin-top: .4rem;
    }
    .ins_aboutCon4 .center_box .content .swiper_box ul li .centerInfo .list_box
    {
        margin-top: .2rem;
    }
}
.ins_aboutCon5
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: .65rem 0;
    background: var(--url) no-repeat;
    background-size: cover;
    background-position: left center;
}
.ins_aboutCon5 .center_box
{
    width: 100%;
    height: auto;
}
.ins_aboutCon5 .center_box .ins_title2
{
    width: 48.71794872%;
}
.ins_aboutCon5 .center_box .ins_title2 .t2
{
    font-weight: normal;
}
.ins_aboutCon5 .center_box .idx_more1
{
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: .35rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #000;
    font-size: var(--font14);
    gap: .1rem;
}
.ins_aboutCon5 .center_box .idx_more1 .more
{
    border-color: #c4bcbb;
    color: #000;
}
@media(max-width: 990px)
{
    .ins_aboutCon5
    {
        background-position: 63% 50%;
    }
    .ins_aboutCon5 .center_box .ins_title2
    {
        width: 100%;
    }
}
.ins_aboutCon6
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 1.3rem;
    padding-bottom: 1.6rem;
}
.ins_aboutCon6 .center_box
{
    width: 100%;
    height: auto;
}
.ins_aboutCon6 .center_box .top_box
{
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: .4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-bottom: .6rem;
    position: relative;
    z-index: 1;
}
.ins_aboutCon6 .center_box .top_box::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #e5e5e5;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ins_aboutCon6 .center_box .top_box .ins_title2
{
    width: fit-content;
    max-width: 60%;
}
.ins_aboutCon6 .center_box .top_box .item_box
{
    width: fit-content;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background: #eee;
    padding: 4px;
    border-radius: 100px;
}
.ins_aboutCon6 .center_box .top_box .item_box .item
{
    width: auto;
    height: auto;
    padding: .14rem .25rem;
    font-size: var(--font14);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 1;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.ins_aboutCon6 .center_box .top_box .item_box .item::after
{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    height: 100%;
    background: var(--active_color);
    z-index: -1;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ins_aboutCon6 .center_box .top_box .item_box .item.active
{
    color: #fff;
}
.ins_aboutCon6 .center_box .top_box .item_box .item.active::after
{
    width: 100%;
    left: 0;
    opacity: 1;
}
.ins_aboutCon6 .center_box .content
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.ins_aboutCon6 .center_box .content .left_box
{
    width: 29.487179%;
    padding-top: 1rem;
}
.ins_aboutCon6 .center_box .content .left_box .content
{
    width: 100%;
    height: auto;
    background: #f5f5f5;
    height: 100%;
    border-radius: .2rem;
    padding: .4rem;
    padding-right: .5rem;
    padding-bottom: .6rem;
}
.ins_aboutCon6 .center_box .content .left_box .content .one
{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: .7rem;
}
.ins_aboutCon6 .center_box .content .left_box .content .one .title
{
    font-size: var(--font14);
    color: #333;
    line-height: 1;
    padding-bottom: .3rem;
    border-bottom: 2px solid var(--active_color);
}
.ins_aboutCon6 .center_box .content .left_box .content .one .title span
{
    color: #000;
    line-height: 1;
    padding-right: .1rem;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}
.ins_aboutCon6 .center_box .content .left_box .content .one .title span i
{
    font-style: normal;
    position: absolute;
}
.ins_aboutCon6 .center_box .content .left_box .content .one .subtitle
{
    font-size: var(--font16);
    color: #000;
    line-height: 1.875;
    margin-top: .4rem;
    max-height: 250px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    overflow: auto;
}
.ins_aboutCon6 .center_box .content .left_box .content .itemBox
{
    width: 100%;
    height: auto;
}
.ins_aboutCon6 .center_box .content .left_box .content .itemBox .item
{
    padding-top: .4rem;
    padding-bottom: .28rem;
    border-bottom: 1px solid #e5e5e5;
}
.ins_aboutCon6 .center_box .content .left_box .content .itemBox .item .title
{
    font-size: var(--font16);
    color: #000;
    line-height: 1.4;
}
.ins_aboutCon6 .center_box .content .left_box .content .itemBox .item .number
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: var(--font16);
    margin-top: .1rem;
}
.ins_aboutCon6 .center_box .content .left_box .content .itemBox .item .number span
{
    font-size: var(--font72);
    color: #000;
    line-height: 1;
}
.ins_aboutCon6 .center_box .content .right_box
{
    width: 65.064102%;
    overflow: hidden;
}
.ins_aboutCon6 .center_box .content .right_box .swiper_box
{
    width: 100%;
    height: auto;
    margin-top: .4rem;
}
.ins_aboutCon6 .center_box .content .right_box .swiper_box ul li
{
    width: 100%;
    height: auto;
}
.ins_aboutCon6 .center_box .content .right_box .swiper_box ul li .centerInfo
{
    width: 100%;
    height: auto;
}
.ins_aboutCon6 .center_box .content .right_box .swiper_box ul li .centerInfo img
{
    width: 100%;
    height: auto;
}
@media(max-width: 990px)
{
    .ins_aboutCon6 .center_box .content
    {
        -webkit-box-orient: vertical;
        -ms-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .ins_aboutCon6 .center_box .content .left_box
    {
        padding-top: .5rem;
    }
}
@media(max-width: 768px)
{
    header::after
    {
        display: none!important;
    }
}
header .m_header_box .header_body .menu_nav ul li ul.fccsi li
{
    padding: .1rem .5rem;
}
header .m_header_box .header_body .menu_nav ul li ul.fccsi li a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-left: 10px;
}
header .m_header_box .header_body .menu_nav ul li ul.fccsi li a::after
{
    content: '';
    position: absolute;
    left: 0;
    top: .7em;
    width: 5px;
    height: 1px;
    background: #000000c2;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
