
.logo img{
    height: 27px;
}

.new-header .header-right-ico .langage-box{
    /*display: none;*/
}
.new-header .header-right-ico .simple-langage-box{
    height: 36px;
    line-height: 36px;
    color: rgb(51, 52, 55);
    font-size: 14px;
    margin-top: 30px;
    min-width: 70px;
    font-family: vivoSans-Regular;
}
.new-header .header-right-ico .simple-langage-box .pc-lang.active{
    color: #295FBB;
}

/*  共有---页面首屏 */
a:hover {
    color: #0f6ecd;
    text-decoration: none;
}
.section .se-con{
    width: 62vw;
    padding: 12vh 0 5vh;
}
.section-index .se-img-box{
    /*opacity: 0.37;*/
    /*opacity: 0.53;*/
}
.section-index .se-limitw{
    width: 62vw;
}
.section-index .se-word-box{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 45%;
}
.section-index .se-word-box .title-zh{
    font-family: vivoSans-Bold, 方正兰亭中黑;
    font-weight: normal;
    font-size: 50px;
    color: #FFFFFF;
}
.section .se-con .se-title .se-title-en {
    font-family: 'vivoSans-Bold';
}
.section-index .se-word-box .title-en{
    font-family: vivoSans-Bold, 方正兰亭黑;
    font-weight: normal;
    font-size: 50px;
    color: #FFFFFF;
    line-height: 39px;
    margin-top: 1vw;
}

.main .se-hide{
    display: none;
}

.main .se-navbox {
    width: 100%;
    height: 102px;
    /*background: #333D5B;*/
    /*opacity: 0.65;*/
    background: rgba(51, 61, 91, 0.65);
    position: absolute;
    bottom: 0px;
    /*padding: 0 0 10px 0;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .se-navbox.hang {
    position: fixed;
    top: 0px;
    bottom: unset;
    z-index: 9999;
    height: 60px;
}
.section-index .se-navbox .se-con{
    padding: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.main .se-navbox .navbox-item {
    /*height: 20px;*/
    font-weight: normal;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 39px;
    opacity: 0.35;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    min-width: 6em;
    left: 0;
}

.main .se-navbox .navbox-item:hover {
    opacity: 1;
}
.main .se-navbox .navbox-item.active {
    opacity: 1;
}

.main .se-navbox .navbox-item svg{
    transform: rotate(0deg); /* 初始旋转角度（还原状态） */
    transition: transform 0.3s ease; /* 过渡时长0.3s，缓动效果平滑 */
}
.main .se-navbox.hang .navbox-item:hover svg{
    transform: rotate(90deg); /* 顺时针旋转90度（正角度） */
}

.main .se-navbox .navbox-item .navbox-item-sublevel{
    width: 100%;
    display: none;
    flex-direction: column;
    position: absolute;
    background: #3C486AFF;
    font-size: 14px;
    line-height: 2;
    border-radius: 0.5em;
    margin-top: -0.5em;
    opacity: 0.35;
    transition: margin-top 1.5s ease, opacity 1.5s ease; /* 渐变时长1.5s */
}
.main .se-navbox.hang .navbox-item:hover .navbox-item-sublevel{
    display: flex;
    margin-top: 0;
    opacity: 0.9;
}
.main .se-navbox.hang .navbox-item .navbox-item-sublevel.show{
    display: flex;
}
.main .se-navbox .navbox-item .navbox-item-sublevel .sublevel-item-split{
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.35;
}

.main .section-main{
    /*min-height: calc(100vh - 100px);*/
    min-height: 100vh;
    display: none;
}

.main .section-main.active{
    display: block;
}
.main .section-main .se-con .se-title{
    margin-bottom: 36px;
    font-family: vivoSans-Bold, 方正兰亭中黑;
    font-weight: normal;
    color: #353535;
}
.main .section-main .se-con .se-title.dangling{
    margin-top: 36px;
}
.main .section-main .se-con .se-title .se-title-zh{
    font-size: 33px;
}
.main .section-main .se-con .se-title .se-title-en{
    font-size: 33px;
}


/*投资者关系概览*/
.main .section-main .se-con .se-content {
    width: 100%;
    text-align: justify;
    hyphens: auto;
}
.main .section-main .se-con .se-content .se-details {
    /*height: 84px;*/
    font-family: vivoSans-Regular, 方正兰亭黑;
    font-weight: normal;
    font-size: 16px;
    color: #000000;
    line-height: 33px;
}
.main .section-main .se-con .se-content .se-list{
    margin-top: 4%;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(200px, 1fr));
    gap: 6%;
    justify-items: center;
    /*align-items: center;*/
}
.main .section-main .se-con .se-content .se-list .se-item {
    font-family: vivoSans-Bold, 方正兰亭中黑;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 10px;
}

.main .section-main .se-con .se-content .se-list .se-item .se-img-box {
    width: 45px;
    height: 45px;
    display: flex;           /* 使用 Flexbox 布局 */
    justify-content: center; /* 水平居中图片 */
    align-items: center;
}
.main .section-main .se-con .se-content .se-list .se-item .se-img-box img {
    max-width: 100%;         /* 确保图片不超出容器宽度 */
    max-height: 100%;        /* 确保图片不超出容器高度 */
    object-fit: contain;     /* 保持图片比例，完整显示在容器内 */
}
.main .section-main .se-con .se-content .se-list .se-item .se-item-title {
    /*width: 150px;*/
    /*font-size: 22px;*/
    font-size: 16px;
    color: #7D94B4;
}
.main .section-main .se-con .se-content .se-list .se-item .se-item-word {
    font-size: 12px;
    color: #353535;
}


/*信息披露*/

.main .section-main-disclosure .se-con .se-disclosure .se-title{
    display: none;
}

.main .section-main-disclosure .se-con .se-disclosure .se-title.active{
    display: block;
}

/*.main .section-main.section-main-disclosure .se-con .wrap{*/
/*    display: none;*/
/*}*/
/*.main .section-main.section-main-disclosure .se-con .wrap.active{*/
/*    display: block;*/
/*}*/
/*.main .section-main.section-main-disclosure .se-con .wrap.active.only-tag-nav .se-tab-right{*/
/*    display: none;*/
/*}*/

.main .section-main .se-con .se-tab {
    display: flex;
}
.main .section-main .se-con .se-tab .se-tab-nav {
    flex-shrink: 0;
    width: 301px;
    margin-right: 17px;
}
.main .section-main .se-con .se-tab .se-tab-nav .se-nav-item {
    /*width: 301px;*/
    height: 80px;
    background: #F6F8FD;
    margin-bottom: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: vivoSans-Bold, 方正兰亭中黑;
    font-weight: normal;
    font-size: 16px;
    color: #7D94B4;
}
.main .section-main .se-con .se-tab .se-tab-nav .se-nav-item.active {
    background: #7D94B4;
    color: #FFFFFF;
}
.main .section-main .se-con .se-tab .se-tab-nav .se-nav-item svg {
    position: absolute;
    left: 265px;
    display: none;
}
.main .section-main .se-con .se-tab .se-tab-nav .se-nav-item.active svg {
    display: block;
}


/*信息披露  集成第三方服务*/
.main .section-main-disclosure .se-con .info-disclosure-container{
    width: 100%;
    height: 100%;
}

/* 加载中容器：覆盖在 iframe 上方，居中显示 */
.main .section-main-disclosure .se-con .loading-container {
    position: absolute;
    top: 30vh;
    left: 0;
    width: 100%;
    height: 60vh;
    background: rgba(255, 255, 255, 0.8); /* 半透明背景，遮罩 iframe */

    align-items: center;
    justify-content: center;
    z-index: 10; /* 确保在 iframe 上方 */
    display: none; /* 默认隐藏 */
}
.main .section-main-disclosure .se-con .loading-container.show{
    display: flex;
}
/* 转圈动画核心样式 */
.main .section-main-disclosure .se-con .loading-container .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3; /* 浅色边框 */
    border-top: 4px solid #007bff; /* 主题色边框（顶部） */
    border-radius: 50%; /* 圆形 */
    animation: spin 1s linear infinite; /* 旋转动画：1秒一圈，匀速，无限循环 */
}



/*.main .section-main .se-con .se-tab .se-tab-right {*/
/*    position: relative;*/
/*    flex: 1;*/
/*    overflow: hidden;*/
/*    background: #F6F8FD;*/
/*    !*padding: 43px 49px 47px 49px;*!*/
/*    padding: 23px 49px;*/
/*}*/
/*!*.main .section-main .se-con .se-tab .se-tab-right .se-tab-right-all {*/
/*    display: flex;*/
/*}*/
/*.main .section-main .se-con .se-tab .se-tab-right .se-img {*/
/*    padding-right: 41px;*/
/*    flex-shrink: 0;*/
/*}*!*/
/*.main .section-main .se-con .se-tab .se-tab-right .se-img-box {*/
/*    width: 320px;*/
/*    !*height: 461px;*!*/
/*    margin: 0 auto;*/
/*}*/

/*.main .section-main .se-con .se-tab .se-tab-right .se-img-box .se-img-title{*/
/*    font-size: 18px;*/
/*    color: #7D94B4;*/
/*    margin-top: 15px;*/
/*    text-align: center;*/
/*}*/

/*.main .section-main .se-con .se-tab .se-tab-right .se-tab-right-all a.se-more{*/
/*    position: absolute;*/
/*    right: 23px;*/
/*    bottom: 23px;*/
/*    font-size: 13px;*/
/*    color: #7D94B4;*/
/*    border-radius: 13px;*/
/*    border: 1px solid #7D94B4;*/
/*    padding: 3px 13px;*/
/*}*/
/*.main .section-main .se-con .se-tab .se-tab-right .se-tab-right-all a.se-more:hover{*/
/*    background: #7D94B4;*/
/*    color: #FFFFFF;*/
/*}*/


    /*企业管治*/
.main .section-main .se-con .se-governance .governance-title{
    font-family: vivoSans-Bold, 方正兰亭中黑;
    font-size: 24px;
    margin: 2em 0 1em;
}
.main .section-main .se-con .se-governance .se-list{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-rows:repeat(2, 232px);*/
    /*grid-template-rows:repeat(2, 25.7vh);*/
    grid-template-rows:repeat(1, 25.7vh);
    gap: 16px;
    justify-items: center;
    align-items: stretch;
}

.main .section-main .se-con .se-governance .se-list .se-item {
    /*padding: 10px 20px;*/
    /*font-family: vivoSans-Bold, 方正兰亭中黑;*/
    /*font-weight: normal;*/
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    cursor: pointer;
    background: #F6F8FD;
    border-radius: 5px;
}
.main .section-main .se-con .se-governance .se-list .se-item.active,
.main .section-main .se-con .se-governance .se-list .se-item:hover {
    background: #FFFFFF;
    box-shadow: 0px 9px 21px 0px rgba(127,127,127,0.24);
    border-radius: 5px;
}
.main .section-main .se-con .se-governance .se-list .se-item .se-item-left{
    width:45%;
    /*height: 183px;*/
    height: 80%;
    font-family: vivoSans-Bold, 方正兰亭中黑;
    font-weight: normal;
    font-size: 16px;
    color: #8EA4C5;
    line-height: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main .section-main .se-con .se-governance .se-list .se-item.active .se-item-left,
.main .section-main .se-con .se-governance .se-list .se-item:hover .se-item-left{
    color: #353535;
}
.main .section-main .se-con .se-governance .se-list .se-item .se-item-left span.pc{
    display: block;
}
.main .section-main .se-con .se-governance .se-list .se-item .se-item-left span.mobile{
    display: none;
}
.main .section-main .se-con .se-governance .se-list .se-item .se-item-split{
    width: 1px;
    /*height: 183px;*/
    height: 80%;
    /*border: 1px solid #7d94b4;*/
    border: 1px solid #E8ECF2;
}
.main .section-main .se-con .se-governance .se-list .se-item .se-item-right{
    /*height: 183px;*/
    height: 14vh;
    text-align: left;
    font-family: vivoSans-Regular, 方正兰亭黑;
    font-weight: normal;
    font-size: 14px;
    color: #898989;
    line-height: 33px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 55%;
}

/*企业管治 - 治理文件*/
.main .section-main .se-con .se-governance-docs .se-list .list-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-rows: repeat(2, 25.7vh);*/
    gap: 42px;
    justify-items: center;
    align-items: stretch;
}
.main .section-main .se-con .se-governance-docs .se-list .list-container .se-item {
    font-family: vivoSans-Regular, 方正兰亭黑;
    font-weight: normal;
    font-size: 21px;
    width: 100%;
    cursor: pointer;
    background: #F6F8FD;
    border-top-right-radius: 30px;

}
.main .section-main .se-con .se-governance-docs .se-list .list-container .se-item.active,
.main .section-main .se-con .se-governance-docs .se-list .list-container .se-item:hover {
    background: #FFFFFF;
    box-shadow: 0px 9px 21px 0px rgba(127,127,127,0.24);
}

.main .section-main .se-con .se-governance-docs .se-list .list-container .se-item span.txt{
    /*width: 100%;*/
    /*display: block;*/
}
.main .section-main .se-con .se-governance-docs .se-list .list-container .se-item a{
    width: 100%;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 30px 60px 30px 30px;
}
.main .section-main .se-con .se-governance-docs .se-list .list-container .se-item a:after{
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-image: url('/static/cidi/assets/imgs/investment/pdf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* 图片尺寸 */
    width: 47px;
    height: 47px;
}

.main .section-main .se-con .se-governance-docs .se-list .se-pagination-container{
    width: 100%;
    margin: 56px 0 66px;
    display: none;
    /*display: flex;*/
    justify-content: end;
}
.main .section-main .se-con .se-governance-docs .se-list .se-pagination-container.show{
    display: flex;
    justify-content: end;
}
.main .section-main .se-con .se-governance-docs .se-list .se-pagination-container ul{
    margin-right: 0;
    display: flex;
    justify-content: flex-end;
}
.main .section-main .se-con .se-governance-docs .se-list .se-pagination-container ul li{
    min-width: 60px;
    font-weight: normal;
    font-size: 12px;
    border: 1px solid #EAEAEA;
    text-align: center;
    padding: 2px 5px;
    margin: 0 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main .section-main .se-con .se-governance-docs .se-list .se-pagination-container ul li.unbox{
    border: unset;
}


/*投资者日志列表*/
.main .section-main .se-con .se-log-list .se-list .se-item{
    /*padding: 33px 18px 34px 18px;*/
    padding: 2vh 18px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 33vh;*/
}
.main .section-main .se-con .se-log-list .se-list .se-item.active,
.main .section-main .se-con .se-log-list .se-list .se-item:hover{
    background: #F6F8FD;
}
.main .section-main .se-con .se-log-list .se-list .se-item .se-img-box{
    width: 30%;
    /*height: 228px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 28vh;*/
}
.main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc{
    width: 70%;
    /*min-height: 200px;*/
    padding: 0 30px 0 45px;
    /*max-height: 320px;*/
    /*height: 28vh;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
}
.main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc .se-item-right-title{
    font-size: 21px;
    font-family: vivoSans-Bold, 方正兰亭中黑;
    color: #353535;
}
.main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc .se-item-right-time{
    font-size: 16px;
    color: #000000;
    line-height: 33px;
    margin: 5px 0 20px 0
}
.main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc .se-item-right-content{
    font-size: 16px;
    color: #000000;
    line-height: 33px;
    height: 8em;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 限制为4行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.main .section-main .se-con .se-log-list .se-page{
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: end;
}
.main .section-main .se-con .se-log-list .se-page ul{
    /*width: 448px;*/
    margin-right: 0;
    display: flex;
    justify-content: flex-end;
}
.main .section-main .se-con .se-log-list .se-page ul li{
    min-width: 60px;
    font-weight: normal;
    font-size: 12px;
    border: 1px solid #EAEAEA;
    text-align: center;
    padding: 2px 5px;
    margin: 0 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main .section-main .se-con .se-log-list .se-page ul li.unbox{
    border: unset;
}


/*投资者日志详情*/
.main .section-main .se-750{
    width: 750px;
    margin: 0 auto;
}
/*投资者关系联络*/
.main .section-main .se-con .se-contact{
    margin-top: 105px;
}
.main .section-main .se-con .se-contact .se-list{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 295px);
    gap: 10px;
    justify-items: center;
    align-items: stretch;
}

.main .section-main .se-con .se-contact .se-list .se-item {
    font-weight: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 10px;
    width: 100%;
    height: 295px;
    background: #F6F8FD;
    justify-content: center
}
.main .section-main .se-con .se-contact .se-list .se-item.active {
    /*border: 1px solid #7D94B4;*/
    border: 1px solid #D4DBE6;
    background: unset;
}

.main .section-main .se-con .se-contact .se-list .se-item .se-img-box {
    width: 57px;
    height: 57px;
    display: flex;           /* 使用 Flexbox 布局 */
    justify-content: center; /* 水平居中图片 */
    align-items: center;
}
.main .section-main .se-con .se-contact .se-list .se-item .se-img-box img {
    max-width: 100%;         /* 确保图片不超出容器宽度 */
    max-height: 100%;        /* 确保图片不超出容器高度 */
    object-fit: contain;     /* 保持图片比例，完整显示在容器内 */
}
.main .section-main .se-con .se-contact .se-list .se-item .se-item-title {
    font-family: vivoSans-Bold, 方正兰亭中黑;
    width: 150px;
    font-size: 21px;
    color: #7D94B4;
}
.main .section-main .se-con .se-contact .se-list .se-item .se-item-word {
    font-size: 16px;
    line-height: 28px;
    color: #7D94B4;
}
.main .section-main .se-con .se-contact .se-list .se-item.active .se-item-title {
    color: #353535;
}
.main .section-main .se-con .se-contact .se-list .se-item.active .se-item-word {
    color: #000000;
}



/*弹窗*/
.inverstment-modal.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.inverstment-modal.modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 80%;
    background-color: white;
    padding: 40px 5px 10px 10px;
}
.inverstment-modal.modal .modal-content .close-btn {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 28px;
    cursor: pointer;
}
.inverstment-modal.modal .modal-content .iframe-content {
    width: 100%;
    height: 100%;
    border: none;
}


@media screen and (max-width: 768px) {
    .new-header .header-right-ico .langage-box{
        display: block;
    }
    .new-header .header-right-ico .simple-langage-box{
        display: none;
    }

    .section-index .simple-langage-box {
        position: relative;
        bottom: 100px;
        width: 150px;
        margin: 0 auto;
        border: 1px solid #FFF;
        text-align: center;
        color: #5F6588;
    }

    .section-index .simple-langage-box a.pc-lang{
        padding: 0 3px;
        font-size: 14px;
        line-height: 36px;
        color: #5F6588;
    }

    .section-index .simple-langage-box a.pc-lang.active{
        color: #FFF;
    }

    .section-index .logo{
        position: absolute;
        top: 30px;
        right: 30px;
    }

    .section .se-con{
        width: 84vw;
        padding: 5vh 0;
    }
    .section-index .se-img-box{
        /*opacity: 0.37;*/
        /*opacity: 0.53;*/
    }
    .section-index .se-word-box{
        width: 100%;
        text-align: center;
        position: absolute;
        top: 24vh;
    }
    .section-index .se-word-box .title-zh{
        font-size: 45px;
        color: #FFFFFF;
    }
    .section-index .se-word-box .title-en{
        font-size: 23px;
        color: #FFFFFF;
        line-height: 39px;
        margin-top: 1vh;
    }
    .section-index .se-word-box .title-en.mb-show{
        font-size: 36px;
    }
    .main .se-navbox{
        display: none;
    }
    .main .section-main{
        display: block;
        /*min-height: unset;*/
    }

    .main .section-main .se-con .se-title .se-title-zh{
        font-size: 24px;
        color: #010101;
        border-left: 4px solid #8EA3C4;
        padding-left: 18px
    }
    .main .section-main .se-con .se-title .se-title-en{
        /*display: none;*/
        font-size: 24px;
        color: #010101;
        border-left: 4px solid #8EA3C4;
        padding-left: 18px;
    }

    /*投资者关系概览*/
    .main .section-main .se-con .se-content .se-details {
        color: #000000;
        font-size: 12px;
        line-height: 20px;
    }
    .main .section-main .se-con .se-content .se-list{
        margin-top: 5%;
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        /*grid-template-rows:repeat(3, minmax(200px, 1fr));*/
        grid-template-rows:repeat(3, 1fr);
        row-gap: 4%;
        column-gap: 3%;
        justify-items: center;
        align-items: flex-start;
    }
    .main .section-main .se-con .se-content .se-list .se-item {
        font-family: vivoSans-Bold, 方正兰亭中黑;
        font-weight: normal;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        row-gap: 5px;
    }

    .main .section-main .se-con .se-content .se-list .se-item .se-img-box {
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        object-fit: contain;
    }
    /*.main .section-main .se-con .se-content .se-list .se-item .se-img-box img {
        max-width: 100%;         !* 确保图片不超出容器宽度 *!
        max-height: 100%;        !* 确保图片不超出容器高度 *!
        object-fit: contain;     !* 保持图片比例，完整显示在容器内 *!
    }*/
    .main .section-main .se-con .se-content .se-list .se-item .se-item-title {
        font-size: 16px;
        color: #7D94B4;
    }

    .main .section-main .se-con .se-content .se-list .se-item .se-item-word {
        font-size: 10px;
        color: #353535;
        line-height: 14px;
    }

    /*信息披露*/
    .main .section-main.section-main-disclosure .se-con {
        width: 94vw;
    }
    .main .section-main.section-main-disclosure .se-con .se-title{
        width: 84vw;
        margin: 0 auto 36px auto;
    }
    .main .section-main .se-con .se-tab {
        display: flex;
        flex-direction: column
    }
    .main .section-main .se-con .se-tab .se-tab-nav {
        width: 100%;
        flex-shrink: unset;
        flex-direction: row;
        display: flex;
        gap: 2px;
        justify-content: space-between;
    }
    .main .section-main .se-con .se-tab .se-tab-nav .se-nav-item {
        height: unset;
        min-height: 32px;
        font-size: 12px;
        text-align: center;
        padding: 2px 2px;
    }

    .main .section-main .se-con .se-tab .se-tab-nav .se-nav-item.active svg {
        display: none;
    }

    .main .section-main .se-con .se-tab .se-tab-right{
        padding: 0;
        text-align: center;
        margin-top: 15px;
    }

    .main .section-main .se-con .se-tab .se-tab-right .se-tab-right-all .se-img .se-img-box{
        width: 100%;
        height: unset;
        margin: 0 auto;
    }

    /*信息披露 - 业绩报告*/
    .main .section-main.section-main-disclosure .se-con .se-disclosure-financial-report{
        margin-top: 15px;
        padding: 15px 15px;
        background: #F6F8FD;
    }
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-tab-nav .se-nav-item a{
        font-size: 22px;
        padding-bottom: 10px;
        margin-right: 20px;
        border-bottom: 4px solid #F6F8FD
    }
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-list{
        width: 100%;
        height: 65vh;
        padding: 20px 0 10px 0;
        overflow-y: hidden;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* 平滑滚动支持 */
        scrollbar-width: none;
        -ms-overlfow-style: none;
        /*display: grid;*/
        /*grid-template-columns: repeat(auto-fit, 100%);*/
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-list .se-item{
        width: 100%;
        height: 65vh;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        display: flex;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
    }
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-list .se-item:active{
        opacity: 0.9;
        transform: scale(0.99);
        /*transition: all 0.1s ease;*/
    }

    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-list .se-item .se-img-box{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-list .se-item .se-img-box .seimg,
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-list .se-item .se-img-box .seimg img{
        padding: 0;
        margin: 0;
        display: block;
        width: auto;
        height: auto;
        /*max-width: 100%;*/
        max-height: calc(65vh - 100px);
        object-fit: contain;
    }
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-list .se-item .se-img-title {
        font-size: 20px;
        margin: 15px 0;
    }

    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-indicators.mb-show{
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin: 0 auto;
    }
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-indicators.mb-show .indicator{
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #7D94B4;
        /*transition: background-color 0.3s ease;*/
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .main .section-main.section-main-disclosure .se-con .se-financial-report .se-financial-report-indicators.mb-show .indicator.active{
        background-color: #2b82fa;
        transform: scale(1.2);
    }

    /*信息披露 - 公告及通函*/
    .main .section-main.section-main-disclosure .se-con .se-disclosure-notice{
        margin-top: 15px;
        padding: 15px 15px;
        background: #F6F8FD;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-tab-nav .se-nav-item a{
        font-size: 22px;
        padding-bottom: 10px;
        margin-right: 20px;
        border-bottom: 4px solid #F6F8FD
    }

    .main .section-main.section-main-disclosure .se-con .se-notice .se-notice-list .list-item{
        min-height: unset;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-notice-list .item-right{
        padding: 0 40px 0 22px;
        font-size: 12px;
        line-height: 1.5;
    }

    .main .section-main.section-main-disclosure .se-con .se-notice .se-notice-list .item-right .item-right-tail {
        width: 27px;
        height: 27px;
        right: 10px;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-pagination-container{
        margin: 30px 0;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-pagination-container ul li{
        font-size: 10px;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-pagination-container ul li.unbox {
        display: none;
    }

    .main .section-main.section-main-disclosure .se-con .se-notice .se-search{
        margin: 0;
        padding: 10px 5px;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-search .uk-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 5px;
        margin: 0 1px;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-search .f-item {
        padding: 0;
        width: 100%;
        margin: 0;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-search .f-item:last-child {
        width: 100%;
        grid-column: 1 / -1;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-search .f-item-mid{
        display: none;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-notice-total {
        font-size: 12px;
        margin: 5px 0;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-notice-categories{
        margin: 5px 0;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-notice-categories .category-label{
        margin-right: 2px;
    }
    .main .section-main.section-main-disclosure .se-con .se-notice .se-notice-categories .category-label a{
        padding: 0 5px;
        line-height: 22px;
        height: 22px;
        font-size: 12px;
    }

    /*企业管治*/
    .main .section-main.section-main-governance{
        min-height: 50vh;
    }
    .main .section-main .se-con .se-governance-nav{
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    .main .section-main .se-con .se-governance-nav .se-title-nav-item{
        font-family: vivoSans-Bold, 方正兰亭中黑;
        font-weight: normal;
        letter-spacing: 0.05em;
        font-size: 12px;
        line-height: 1.2;
        color: #7D94B4;
        background: #F6F8FD;
        min-height: 32px;
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main .section-main .se-con .se-governance-nav .se-title-nav-item.active{
        color: #FFF;
        background: #7D94B4;
    }
    .main .section-main .se-con .se-governance-nav .se-title-nav-item .se-title-zh{
        display: none;
    }
    .main .section-main .se-con .se-governance-nav .se-title-nav-item .se-title-en{
        display: block;
    }
    .main .section-main .se-con .se-governance-item{
        display: none;
    }
    .main .section-main .se-con .se-governance-item.active{
        display: block;
    }
    .main .section-main .se-con .se-governance .governance-title{
        font-family: vivoSans-Bold, 方正兰亭中黑;
        font-size: 16px;
        margin: 2em 0 1em;
    }
    .main .section-main .se-con .se-governance .se-list{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        /*grid-template-rows:repeat(3, 232px);*/
        /*grid-template-rows:repeat(3, 1fr);*/
        grid-template-rows:repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
        align-items: stretch;
    }

    .main .section-main .se-con .se-governance .se-list .se-item {
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }
    .main .section-main .se-con .se-governance .se-list .se-item.active{
        box-shadow: 0px 9px 21px 0px rgba(127,127,127,0.24);
        border-radius: 5px;
    }

    .main .section-main .se-con .se-governance .se-list .se-item .se-item-left{
        width: 80%;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 5px;
        font-family: vivoSans-Bold, 方正兰亭黑;
        font-weight: normal;
        color: #8EA4C5;
        font-size: 14px;
        line-height: 1.2;
        height: 80px;
        padding: 20px 0;
    }
    .main .section-main .se-con .se-governance .se-list .se-item.active .se-item-left{
        color: #353535;
    }
    .main .section-main .se-con .se-governance .se-list .se-item .se-item-left span.pc{
        display: none;
    }
    .main .section-main .se-con .se-governance .se-list .se-item .se-item-left span.mobile{
        display: block;
    }
    .main .section-main .se-con .se-governance .se-list .se-item .se-item-split{
        width: 80%;
        height: 1px;
        /*border: 1px solid #7d94b4;*/
        border: 1px solid #E8ECF2;
    }
    .main .section-main .se-con .se-governance .se-list .se-item .se-item-right{
        padding: 20px 0;
        align-items: center;
        font-family: vivoSans-Regular, 方正兰亭黑;
        font-weight: normal;
        font-size: 12px;
        line-height: 1.8;
        color: #898989;
        width: 100%;
        height: 130px;
    }
    .main .section-main .se-con .se-governance .se-list .se-item.active .se-item-right{
        color: #000000;
    }

    /*企业管治 治理文件*/
    .main .section-main .se-con .se-governance-docs .se-list .list-container .se-item{
        font-size: 16px;
        border-top-right-radius: 10px;
    }
    .main .section-main .se-con .se-governance-docs .se-list .list-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        justify-items: center;
        align-items: stretch;
    }
    .main .section-main .se-con .se-governance-docs .se-list .list-container .se-item{
        font-size: 12px;
        border-top-right-radius: 10px;
    }
    .main .section-main .se-con .se-governance-docs .se-list .list-container .se-item:hover{
        box-shadow: 0px 9px 21px 0px rgba(127, 127, 127, 0.24);
        background: #FFF;
    }
    .main .section-main .se-con .se-governance-docs .se-list .list-container .se-item a{
        padding: 10px 40px 10px 10px;
    }
    .main .section-main .se-con .se-governance-docs .se-list .list-container .se-item a:after {
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 27px;
        height: 27px;
    }

    .main .section-main .se-con .se-governance-docs .se-list .se-pagination-container ul li.unbox {
        display: none;
    }

    /*投资者日志列表*/
    .main .section-main.section-main-investor-log{
        min-height: 50vh;
    }
    .main .section-main .se-con .se-log-list .se-list .se-item{
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 15px 0;
        height: unset;
    }
    .main .section-main .se-con .se-log-list .se-list .se-item .se-img-box{
        width: unset;
        height: unset;
    }

    .main .section-main .se-con .se-log-list .se-list .se-item .se-img-box .seimg,
    .main .section-main .se-con .se-log-list .se-list .se-item .se-img-box .seimg img{
        object-fit: contain;
        max-height: 150px;
        max-width: 100%;
    }

    .main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc{
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        padding: 10px 0 0;
    }
    .main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc .se-item-right-title{
        padding: 0;
        margin: 0;
        font-size: 16px;
        color: #000000;
    }
    .main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc .se-item-right-time{
        margin: unset;
        font-size: 14px;
        color: #000000;
        line-height: 18px;
        flex: 0 0 auto;
    }

    .main .section-main .se-con .se-log-list .se-list .se-item .se-item-right-ttc .se-item-right-content{
        font-size: 12px;
        color: #000000;
        line-height: 1.8;
        height: unset;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .main .section-main .se-con .se-log-list .se-page ul{
        margin: 0 auto;
    }
    .main .section-main .se-con .se-log-list .se-page ul li{
        font-size: 10px;
    }
    .main .section-main .se-con .se-log-list .se-page ul li.unbox{
        display: none;
    }

    /*投资者关系联络*/
    .main .section-main .se-con .se-contact{
        margin-top: 67px;
    }
    .main .section-main .se-con .se-contact .se-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 262px);
        gap: 21px;
        justify-items: center;
        align-items: stretch;
    }
    .main .section-main .se-con .se-contact .se-list .se-item {
        height: 262px;
    }
    .main .section-main .se-con .se-contact .se-list .se-item.active{
        /*box-shadow: 0px 9px 21px 0px rgba(127,127,127,0.24);*/
        border-radius: 5px;
        /*border: 1px solid #2C2C2C;*/
        border: 1px solid #B4B4B4;
    }
    .main .section-main .se-con .se-contact .se-list .se-item .se-item-word {
        font-size: 12px;
        line-height: 1.8;
    }


    /*弹窗*/
    .inverstment-modal.modal .modal-content {
        width: 100%;
        height: 100%;
        padding: 40px 5px 10px 10px;
    }
}

@media screen and (min-width: 1921px) {

    .section-index .se-limitw{
        width: 1430px;
    }
    .section .se-con{
        width: 1430px;
        padding: 5% 0 5vh;
    }
    .section-index .se-navbox .se-con{
        padding: 0;
    }
    .main .section-main .se-con .se-title {
        margin-bottom: 5%;
    }
    .main .section-main .se-con .se-title.dangling{
        margin-top: 5%;
    }
    .main .section-main .se-con .se-content .se-list {
        margin-top: 6%;
    }

    .main .section-main .se-con .se-governance .se-list .se-item .se-item-left{
        font-size: 21px;
    }

    .main .section-main .se-con .se-governance .se-list .se-item .se-item-right{
        font-size: 16px;
    }


}

.se-con .se-title .se-title-zh,
.se-word-box .title-zh{
    display: none;
}