@charset "UTF-8";
@font-face {  font-family: 'SourceHanSansCN';  src: url("../font/SourceHanSansCN-Bold.woff") format("woff");font-display: swap; font-style: normal;font-weight: 700 }
@font-face {  font-family: 'SourceHanSerifCN';  src: url("../font/5JmpIfU9sri4.woff") format("woff");font-display: swap; font-style: normal;font-weight: 700 }
.pb_sys_style1 .p_no_d {
    background: #AA0203 !important;
    color: #fff;
    border: 1px solid #AA0203 !important;
}
.header:before{
    opacity: 1;
    transition: all 0.3s;
}
.ny-header.scrolled:before{
    opacity: 1;
}
.ny-banner{
    position: relative;
    overflow: hidden;
}
.ny-banner>img{
    width: 100%;
    display: block;
}

/* 面包屑容器 - 相对定位参照 */
.ny-crumb-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom:0.3rem;
}

/* 面包屑 - 绝对定位左下角 */
.ny-crumb {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.2rem;
}
.ny-crumb-icon {
    width: 0.15rem;
    height: auto;
    margin-right: 0.08rem;
}
.ny-crumb-label {
    margin-right: 0.05rem;
}
.ny-crumb a {
    color: #fff;
    transition: opacity 0.3s;
}
.ny-crumb a:hover {
    opacity: 0.8;
}
.ny-crumb-sep {
    margin: 0 0.1rem;
}

/* ========== 内页导航 ========== */
.first-nav{
    background: #fff;
    width: 100%;
    position: relative;
    overflow: visible;
    box-shadow: 0 .04rem .73rem  rgba(209, 47, 48, 0.14);
}
.ny-nav-list {
    display: flex;
}
.ny-nav-list > li {
     position: relative;
}
.ny-nav-list > li > a {
    display: flex;
    align-items: center;
    padding: 0.42rem 0.4rem 0.34rem;
    font-size: 0.22rem;
    color: #333;
    transition: all 0.3s;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.ny-nav-list > li .s-link{
    position: absolute;
    top: 100%;
    /* left: 50%; */
    width: auto;
    padding: .22rem 0;
    /* transform: translateX(-50%); */
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    z-index: 999;
}
.ny-nav-list > li.active  .s-link{
    opacity: 1;
    visibility: visible;
}
.ny-nav-list > li .s-link a{
    display: block;
    padding: 0 0.3rem;
    font-size: 0.22rem;
    line-height: .24rem;
    color: #666;
    white-space: nowrap;
    transition: color 0.3s;
}

.ny-nav-list > li .s-link a:hover,
.ny-nav-list > li .s-link a.active{
    color: #aa0203;
}
.ny-nav-list > li .s-link a.current{
    color: #aa0203;
}
.ny-nav-list > li:hover .s-link,
.ny-nav-list > li.active .s-link{
    opacity: 1;
    visibility: visible;
}
.ny-nav{
    position: relative;
}
.ny-nav .nav-bj {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    top: 100%;
    width: 100%;
    z-index: -999;
    height: .68rem;
    background: #F9F9F9;
    transition: all 0.5s;
    transform-origin: center top;
}
.ny-nav .nav-bj.on,
.ny-nav .nav-bj.show{
    transform: translateX(-50%) scaleY(1);
    z-index: 1;
}

/* 下拉箭头 */
.arrow-down {
    display: inline-block;
    margin-left: 0.16rem;
    border: solid #333;
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: rotate(45deg);
    transition: all 0.3s;
    margin-top: -3px;
}

/* hover/激活状态 */
.ny-nav-list > li:hover > a,
.ny-nav-list > li.active > a {
    background: rgba(170, 2, 3, 0.1);
    color: #AA0203;
}
.ny-nav-list > li:hover .arrow-down,
.ny-nav-list > li.active .arrow-down {
    border-color: #AA0203;
}

/* ========== 二级导航 ========== */
.ny-sub-nav {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    left: 0;
    right: 0;
    top: 100%;
    background: #F9F9F9;
    width: 100%;
}
.active .ny-sub-nav {
  
    opacity: 1;
    visibility: visible;    
}
/* 通屏背景使用伪元素 */

.ny-sub-inner {
    display: flex;
    justify-content: center;
    padding: 0.22rem 0;
    white-space: nowrap;

}
.ny-sub-inner a {
    padding: 0 0.3rem;
    font-size: 0.22rem;
    color: #666;
    transition: color 0.3s;
}
.ny-sub-inner a:hover,
.ny-sub-inner a.current {
    color: #AA0203;
}

/* hover 显示二级菜单 - 结构调整后使用 :has() */
.ny-nav-list  li:hover .ny-sub-nav {
    opacity: 1;
    visibility: visible;
}


/* ========== 移动端适配（768px以下） ========== */

@media screen and (max-width: 768px) {
    .ny-nav-list {
        flex-wrap: wrap;
        justify-content:space-between;
    }
    .ny-nav-list > li > a {
        padding: 0.15rem 0.2rem;
        font-size: 0.14rem;
        justify-content: center;
    }

    /* 移动端二级菜单默认隐藏，点击展开 */
    .ny-sub-nav {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s;
    }
    .first-nav.open .ny-sub-nav {
        max-height: 1rem;
    }

    /* 移动端禁用 hover */
    .first-nav:has(.has-sub:hover) .ny-sub-nav {
        max-height: 0;
    }
    .first-nav.open .ny-sub-nav,
    .first-nav.open:has(.has-sub:hover) .ny-sub-nav {
        max-height: 1rem;
    }


    .ny-sub-inner {
        justify-content: flex-start;
        padding: 0.1rem 0.2rem;
    }
    .ny-sub-inner a{
        font-size: 0.14rem;
    }
}
@media screen and (max-width: 436px) {
    .ny-nav-list > li > a{
        padding: 0.1rem;
    }
}

/* ========== 历任领导页面 ========== */
.ny-leaders .leaders-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0 1.5rem;
}

.ny-leaders .leaders-col {
    width: 50%;
    position: relative;
}


.ny-leaders .leaders-col:last-child {
    padding-left: 1.07rem;
}

.ny-leaders .leaders-title {
    color: #AA0203;
    font-size: 0.48rem;
    margin-bottom: 0.53rem;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}

.ny-leaders .leaders-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ny-leaders .leaders-col:first-child .leaders-list{
    border-right: 1px solid rgba(151,151,151,0.22);
    padding-right: 1.07rem;
}

.ny-leaders .leader-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.53rem;
}

.ny-leaders .leader-item:last-child {
    margin-bottom: 0;
}

.ny-leaders .leader-photo {
    width: 1.38rem;
    height: 1.84rem;
    flex-shrink: 0;
    margin-right: 0.2rem;
}

.ny-leaders .leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ny-leaders .leader-info {
    display: flex;
    flex-direction: column;
    flex:1;
}

.ny-leaders .leader-name {
    font-size: 0.34rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.25rem;
    padding-left: 0.165rem;
}
.ny-leaders .line{
    display: inline-block;
    width: 100%;
    border-bottom: 1px dashed #AA0203;
    position: relative;
}
.ny-leaders .line::after{
    position: absolute;
    content: '';
    width: 0.24rem;
    height: 0.2rem;
    right: 0;
    top: 50%;
    background: url('../images/ny1-icon1.png') center center no-repeat;
    background-size: 100% auto;
    transform: translateY(-50%) translateX(100%);

}

.ny-leaders .leader-position {
    font-size: 0.20rem;
    color: #666;
    display: inline-block;
    margin-top: 0.25rem;
    padding-left: 0.165rem;
}

/* 历任领导页面 - 移动端适配 */
@media screen and (max-width: 1199px) {
    .ny-leaders .leaders-wrap{
        padding: 0.7rem 0.2rem;
    }
}
@media screen and (max-width: 768px) {
    /* 整体布局改为单列 */
    .ny-leaders .leaders-wrap {
        /* flex-direction: column; */
        padding: 0.4rem 0 0.8rem;
    }



    .ny-leaders .leaders-col:last-child {
        padding-left: 0;
    }

    /* 第一列：去掉右侧分隔线，改为底部分隔线 */
    .ny-leaders .leaders-col:first-child .leaders-list {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(151,151,151,0.22);
        padding-bottom: 0.4rem;
        margin-bottom: 0.4rem;
    }

    /* 标题字号缩小 */
    .ny-leaders .leaders-title {
        font-size: 0.36rem;
        margin-bottom: 0.4rem;
    }

    /* 照片尺寸缩小 */
    .ny-leaders .leader-photo {
        width: 1rem;
        height: 1.33rem;
    }

    /* 姓名字号缩小 */
    .ny-leaders .leader-name {
        font-size: 0.28rem;
        padding-left: 0.1rem;
        margin-bottom: 0.15rem;
    }

    /* 虚线装饰图标缩小 */
    .ny-leaders .line::after {
        width: 0.18rem;
        height: 0.15rem;
    }

    /* 职位字号缩小 */
    .ny-leaders .leader-position {
        font-size: 0.16rem;
        margin-top: 0.15rem;
        padding-left: 0.1rem;
    }

    /* 卡片间距缩小 */
    .ny-leaders .leader-item {
        margin-bottom: 0.4rem;
    }
    .ny-leaders .line{
        width: calc(100% - 0.36rem);
    }
}
@media screen and (max-width: 526px) {
    .ny-leaders .leaders-wrap {
        flex-direction: column;
    }
    /* 两列都改为 100% 宽度 */
    .ny-leaders .leaders-col {
        width: 100%;
    }
}

/* ========== 现任领导页面 ========== */
.ny-current-leaders .honor-principal {
    padding: 1.1rem 0 1.5rem;
}

/* 标题样式 */
.ny-current-leaders .section-title {
    display: flex;
    align-items: center;
    font-size: 0.48rem;
    color: #AA0203;
    font-weight: bold;
    margin-bottom: 0.53rem;
    font-family: 'SourceHanSerifCN', serif;
}


/* 卡片容器 */
.ny-current-leaders .principal-card {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.ny-current-leaders .principal-top{
    padding: 0.55rem;
    border: 1px solid  rgba(170, 2, 3, 0.2);
    /* border-bottom: 0px; */
    display: flex;
}

/* 照片 */
.ny-current-leaders .principal-photo {
    width: 2.15rem;
    flex-shrink: 0;
    margin-right: 0.3rem;
}
.ny-current-leaders .principal-photo img {
    width: 100%;
    object-fit: cover;
}

/* 信息区 */
.ny-current-leaders .principal-info {
    overflow: hidden;
}

/* 姓名 */
.ny-current-leaders .principal-name {
    display: block;
    font-size: 0.40rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

/* 虚线+图案 */
.ny-current-leaders .line {
    display: inline-block;
    width: 96%;
    border-bottom: 1px dashed #AA0203;
    position: relative;
}
.ny-current-leaders .line::after {
    position: absolute;
    content: '';
    width: 0.24rem;
    height: 0.2rem;
    right: 0;
    top: 50%;
    background: url('../images/ny1-icon1.png') center center no-repeat;
    background-size: 100% auto;
    transform: translateY(-50%) translateX(100%);
}

/* 简介文字 */
.ny-current-leaders p {
    font-size: 0.20rem !important;
    color: #464646;
    line-height: 0.32rem !important;
    margin-top: 0.32rem;
}

/* 隐藏的详细介绍 */
.ny-current-leaders .principal-desc2 {
    display: none;
    font-size: 0.20rem;
    color: #464646;
    line-height: 0.32rem;
    margin-top: 0.32rem;
}
.ny-current-leaders .principal-card.expanded .principal-desc2 {
    display: block;
}

/* 展开按钮 */
.ny-current-leaders .expand-btn {
    background: #AA0203;
    color: #fff;
    padding: 0.16rem 0;
    font-size: 0.20rem;
    cursor: pointer;
    clear: both;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ny-current-leaders .expand-icon {
    margin-left: 0.1rem;
    display: inline-block;
    transition: transform 0.3s;
}
.ny-current-leaders .expand-icon img{
    width: 0.14rem;
    position: relative;
    top: -2px;
}
.ny-current-leaders .principal-card.expanded .expand-icon {
    transform: rotate(180deg);
}

/* 右下角装饰图案 */
.ny-current-leaders .card-decoration {
    position: absolute;
    right: 0;
    bottom: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: url('../images/ny2-bg1.png') no-repeat center center;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
}

/* 现任领导页面 - 移动端适配 */
@media screen and (max-width: 768px) {
    .ny-current-leaders .principal-top{
        flex-direction: column;
        padding: .2rem;
    }
    .ny-current-leaders .honor-principal {
        padding: 0.4rem 0;
    }
    .ny-current-leaders .section-title {
        font-size: 0.36rem;
        margin-bottom: 0.15rem;
    }

    .ny-current-leaders .principal-card {
        padding: 0.3rem;
    }
    .ny-current-leaders .principal-photo {
        width: 2.15rem;
        margin: 0 auto;

    }
    .ny-current-leaders .principal-name {
        font-size: 0.28rem;
        margin-bottom: 0rem;
        margin-top: 0.1rem;
    }
    .ny-current-leaders .principal-desc,
    .ny-current-leaders .principal-desc2 {
        font-size: 0.14rem;
        margin-top: 0.05rem;
    }
    .ny-current-leaders .line::after {
        width: 0.18rem;
        height: 0.15rem;
    }
    .ny-current-leaders .card-decoration {
        width: 1rem;
        height: 1rem;
    }
}

/* ========== 领导团队模块 ========== */
.ny-current-leaders .leader-team {
    padding-bottom: 1.5rem;
}
.ny-current-leaders .leader-teamBox{
    background: #fff;
    box-shadow: 0px 2px 20px 0px rgba(170, 2, 3, 0.114);
    padding: 0.6rem 0.7rem;
}

.ny-current-leaders .leader-team-table {
    border-top: 1px solid rgba(170,2,3,0.1);
}

.ny-current-leaders .leader-team-row {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(170,2,3,0.1);

    font-size: 0.26rem;
    color: #333;
}

/* 奇数行淡红色背景 */
.ny-current-leaders .leader-team-row:nth-child(odd) {
    background: rgba(170, 2, 3, 0.05);
}

/* 姓名列 - 固定宽度 + 两端对齐 */
.ny-current-leaders .leader-team-row .leader-name {
    width: 2.2rem;
    flex-shrink: 0;
    text-align: justify;
    text-align-last: justify;
    font-weight: 500;
    padding: 0.24rem 0.7rem;

    font-weight: bold;
    color: #000;
}

/* 职务列 */
.ny-current-leaders .leader-team-row .leader-position {
    flex: 1;
    color: #333;
    padding: 0.24rem 0.7rem;
    border-left: 1px solid rgba(170,2,3,0.1);
}

/* 领导团队 - 移动端适配 */
@media screen and (max-width: 768px) {
    .ny-current-leaders .leader-team {
        padding-bottom: 0.8rem;
    }
    .ny-current-leaders .leader-team-row {
        font-size: 0.14rem;
    }
    .ny-current-leaders .leader-team-row .leader-name {
        padding: 0.15rem 0.3rem;
        width: 1.05rem;
    }
    .ny-current-leaders .leader-teamBox{
        padding: 0.2rem;
    }
    .ny-current-leaders .leader-team-row .leader-position{
        padding: 0.15rem 0.3rem;
    }
}


/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #AA0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #AA0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #AA0203;
}

@media (max-width: 1199px){

    #m_n_nav{
        display: block;
    }
    .ny-nav{
        display: none;
    }
}


.inner-page{
    padding: 1.24rem 0 2.13rem;
    background: url("../images/inner-page.png") no-repeat bottom center/100% auto;
}
.inner-page2{
    background-image: url("../images/inner-page2.png")
}
.inner-s1{
    width: 15.4rem;
    max-width: 100%;
    margin: 0 auto;
}
.inner-s1 .tit h2{
    font-size: .48rem;
    line-height: .54rem;
    color: #000000;
    font-family: 'SourceHanSerifCN', serif;
    text-align: center;
    font-weight: 700;
}

.inner-s1 .item1 ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 12.72rem;
    margin: 0 auto;
    max-width: 100%;
}
.inner-s1 .item1 li img{
    display: block;
    height: 1.23rem;
}
.inner-s1 .item1 li.li2{
    width: 1px;
    height: .48rem;
    background: #e4e4e4;
}
.inner-s1 .item1 .images img{
    display: block;
    width: 14.4rem;
    max-width: 100%;
    position: relative;
    z-index: 2;
    margin-left: .05rem;
}
.inner-s1 .item1 .images:after{
    position: absolute;
    content: '';
    bottom: 0;
    right: calc((100vw - 15.4rem) / -2);
    width: 7.95rem;
    height: 2.65rem;
    background: url("../images/n-img-7.png") no-repeat left center/auto 100%;
}
.inner-s1 .item1 .images{
    position: relative;
    margin-top: -3.3rem;
    pointer-events: none;
}
.inner-s1 .item1{
    margin-top: .54rem;
    padding-top: .36rem;
    background: url("../images/n-img-5.png") no-repeat top center/100% auto;
}
.inner-s1 .item2 a{
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    position: relative;
}
.inner-s1 .item2 .pic{
    padding-top: 5rem;
}
.inner-s1 .item2 .play{
    position: absolute;
    right: .27rem;
    bottom: .29rem;
    width: .68rem;
    height: .68rem;
    background: url("../images/n-img-9.png") no-repeat 50%/100%;
    z-index: 2;
opacity: 0;
}
.inner-s1 .item3 .li h3{
    font-size: .32rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s1 .item3 .li h4{
    font-size: .28rem;
    line-height: .36rem;
    color: #deb668;
    font-weight: 700;
    margin-top: .14rem;
}
.inner-s1 .item3 .li h4 p{
    font-size: .28rem;
    line-height: .36rem;
    color: #deb668;
    font-weight: 700;
    margin-top: .14rem;
}
.inner-s1 .item3 .li:before{
    position: absolute;
    content: '';
    left: 0;
    top: .72rem;
    width: .19rem;
    height: .19rem;
    background: url("../images/n-img-10.png") no-repeat 50%/100%;
}
.inner-s1 .item3 .li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,#deb668 0%, rgba(222, 182, 104, 0) 80%);
}
.inner-s1 .item3 .li:last-child:after{
    display: none;
}
.inner-s1 .item3 .li{
    padding: .6rem .5rem .7rem;
    position: relative;
    z-index: 2;
}
.inner-s1 .item3:after{
    position: absolute;
    content: '';
    top: 50%;
    right: -1.43rem;
    width: 4.66rem;
    height: 4.3rem;
    background: url("../images/n-img-11.png") no-repeat 50%/100%;
    transform: translateY(-50%);
    pointer-events: none;
}
.inner-s1 .item3{
    padding: .64rem 0 .07rem;
    position: relative;
}

/*inner-s2*/

.inner-s2 .item1 h3{
    font-size: .48rem;
    line-height: 1;
    color: #aa0203;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s2 .item1 .desc{
    font-size: .18rem;
    line-height: .36rem;
    color: #333333;
    text-indent: 2em;
    margin-top: .56rem;
}
.inner-s2 .item1 .desc p + p{
    margin-top: .32rem;
}
.inner-s2 .item2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner-s2 .item2  li{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s2 .item2 li .num{
    position: relative;

}
.inner-s2 .item2 li .icon{
    position: relative;
    width: 1.52rem;
    height: 1.52rem;
    background: url("../images/n-img-23.png") no-repeat 50%/auto 100%;
}
.inner-s2 .item2 li .icon img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: .69rem;
    max-height: .72rem;
    margin: auto;
    transition: all .5s;
}
.inner-s2 .item2 li .icon .img-2{
    opacity: 0;
}
.inner-s2 .item2 li .hide{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    z-index: 2;
}
.inner-s2 .item2 li .hide h3,
.inner-s2 .item2 li .hide h4{
    color: #ffffff;
    text-align: center;
}
.inner-s2 .item2 li .hide h3{
    justify-content: center;
}
.inner-s2 .item2 li .icon:before{
    position: absolute;
    content: '';
    top: -.44rem;
    left: -.39rem;
    width: 2.63rem;
    height: 2.42rem;
    background: url("../images/n-img-24.png") no-repeat 50%/100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .icon:after{
    position: absolute;
    content: '';
    top: -0.05rem;
    bottom: -.05rem;
    right: -.05rem;
    left: -.05rem;
    background: #AA0203;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .num .line{
    position: absolute;
    left: 50%;
    top: calc(100% + .05rem);
    width: 1px;
    height: 2.24rem;
    background: #b31a1b;
    transform: translateX(-50%);
}
.inner-s2 .item2 li h3{
    display: flex;
    align-items: baseline;
    font-size: .2rem;
    line-height: 1;
    color: #deb668;
    font-weight: 700;
}
.inner-s2 .item2 li h3 span{
    display: block;
    font-size: .5rem;
    line-height: 1;
    margin-right: .03rem;
}
.inner-s2 .item2 li h4{
    font-size: .16rem;
    line-height: .24rem;
    color: #333333;
}
.inner-s2 .item2 li .show{
    flex: 1;
    margin-top: .05rem;
    margin-left: -.25rem;
}
.inner-s2 .item2 li:nth-child(2n+1){
    margin-top: .8rem;
}
.inner-s2 .item2 li.li1 .num .line{
    height: 0.58rem;
}
.inner-s2 .item2 li.li2 .num .line{
    height: 2.08rem;
}
.inner-s2 .item2 li.li3 .num .line{
    height: 0.88rem;
}
.inner-s2 .item2 li.li4 .num .line{
    height: 1.95rem;
}
.inner-s2 .item2 li.li5 .num .line{
    height: 0.9rem;
}
.inner-s2 .item2 li.li6 .num .line{
    height: 1.66rem;
}
.inner-s2 .item2 li:hover .icon .img-1{
    opacity: 1;
}
.inner-s2 .item2 li:hover .icon .img-2{
    opacity: .2;
}
.inner-s2 .item2 li:hover .show{
    opacity: 0;
    visibility: hidden;
}
.inner-s2 .item2 li:hover .hide{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:after{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:before{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2{
    margin-top: 1rem;
}

.inner-tit{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-tit h3{
    font-size: .52rem;
    line-height: 1;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    text-align: center;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
    text-align: center;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative;
}

.inner-s3 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: .76rem 0 .86rem .3rem;
}
.inner-s3 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: 1.1rem;
    transition: all .5s;
}
.inner-s3 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s3 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s3 .list li h3{
    font-size: .28rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s3 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .7;
    transition: all .5s;
}
.inner-s3 .list li .jt{
    align-self: center;
    margin-left: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s3 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-29.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s3 .list li:hover time,
.inner-s3 .list li:hover time span{
    color: #ffffff;
}
.inner-s3 .list li:hover h3,
.inner-s3 .list li:hover p{
    color: #ffffff;
}
.inner-s3 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s3 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner-s3 .list li{
    position: relative;
}
.inner-s3 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list{
    position: relative;
    margin-top: .66rem;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .69rem;
}
.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display: none;
    }
    .inner-s2 .item2 li .icon img{
        max-width: .45rem;
        max-height: .45rem;
    }
    .inner-s2 .item2 li .icon{
        margin: 0 auto;
        width: 1.1rem;
        height: 1.1rem;
    }
    .inner-s2 .item2 li .show{
        flex: auto;
        width: 100%;
        margin: .1rem 0 0 ;
    }
    .inner-s2 .item2 li h3 span{
        font-size: .3rem;
    }
    .inner-s2 .item2 li h4 br{
        display: none;
    }
    .inner-s2 .item2 li h4{
        font-size: .18rem;
        line-height: 1.5;
        text-align: center;
    }
    .inner-s2 .item2 li h3{
        justify-content: center;
    }
    .inner-s2 .item2 li:hover .icon:before,
    .inner-s2 .item2 li:hover .icon:after{
        opacity: 0;
        visibility: hidden;
    }
    .inner-s2 .item2 li:hover .show{
        opacity: 1;
        visibility: visible;
    }
    .inner-s2 .item2 li:nth-child(2n+1){
        margin-top: 0;
    }
    .inner-s2 .item2 li{
        width: 16.5%;
        flex-wrap: wrap;
    }
    .inner-s2 .item2 ul{
        gap: .2rem 0;
    }
    .inner-s2 .item2{
        margin-top: .3rem;
        margin-bottom: .4rem;
    }
    .inner-tit h3{
        font-size: .28rem;
        line-height: .3rem;
    }
    .inner-tit h4{
        font-size: .2rem;
        margin-top: .05rem;
    }
    .inner-tit .tit:after{
        top: -.1rem;
        right: -.5rem;
        width: 0.69rem;
        height: 0.74rem;
    }
    .inner-s3 .list li time span,
    .inner-s4 .list li time span{
        font-size: .32rem;
    }
    .inner-s3 .list li time,
    .inner-s4 .list li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner-s3 .list li h3,
    .inner-s4 .list li h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner-s3 .list li p,
    .inner-s4 .list li p{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .02rem;
    }
    .inner-s3 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}

/*inner_s2*/
.inner_s2 ul{
    display: flex;
    flex-wrap: wrap;
}
.inner_s2 li{
    position: relative;
    width: 30.5%;
    margin: .56rem 0  0 4.25%;
    border-radius: .2rem;
    background: #fff url("../images/n-img-8.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(188, 188, 188, 0.1011);
}
.inner_s2 li:nth-child(3n+1){
    margin-left: 0;
}
.inner_s2 li:nth-child(-n+3){
    margin-top: 0;
}
.inner_s2 li a{
    position: relative;
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    z-index: 2;
}
.inner_s2 li .pic{
    padding-top: 2.96rem;
}
.inner_s2 li time{
    position: absolute;
    left: 0;
    top: -.19rem;
    width: 1.31rem;
    font-size: .16rem;
    line-height: .38rem;
    color: #fff;
    background: #AA0203;
    text-align: center;
    border-radius: 0 50vw 50vw 0;
    z-index: 3;
    transition: .5s;
}
.inner_s2 li h3{
    font-size: .2rem;
    line-height: .32rem;
    color: #000000;
    height: .64rem;
    transition: .5s;
}
.inner_s2 li p{
    margin-top: .14rem;
    font-size: .16rem;
    line-height: .26rem;
    color: #666666;
    height: .52rem;
    transition: .5s;
}
.inner_s2 li .txt{
    position: relative;
    padding: .47rem .41rem;
}
.inner_s2 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203;
    box-shadow: 0 .02rem .29rem 0 rgba(170, 2, 3, 0.4724);
    border-radius: .2rem;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s2 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s2 li:hover p{
    color: #fff;
}
.inner_s2 li:hover time{
    background: #DEB668;
}
.inner_s2 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s2 {
    margin-top: .49rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}



.inner_s5 .dtl_l{
    width: 71.625%;
}
.inner_s5 .dtl_tit h1{
    font-size: .32rem;
    line-height: .42rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.inner_s5 .dtl_tit h2{
    font-size: .28rem;
    line-height: .38rem;
    color: #333333;
    text-align: center;
}
.inner_s5 .dtl_tit .cont{
    margin-top: .28rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner_s5 .dtl_tit .cont .li{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
    margin: 0 .18rem;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
    /* text-indent: 2em; */
    word-break: break-all;
}
.inner_s5 .dtl_txt p span{ 
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
   
    word-break: break-all;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}
.inner_s5 .dtl_r .top a:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.inner_s5 .dtl_r .top{
    margin-top: .41rem;
}
.inner_s5 .dtl_r .bot li a{
    display: block;
}
.inner_s5 .dtl_r .bot li time{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
    margin-left: -.1rem;
}
.inner_s5 .dtl_r .bot li time img{
    display: block;
    width: .2rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r .bot li h3{
    font-size: .18rem;
    line-height: .3rem;
    color: #333333;
    height: .6rem;
    padding-left: .21rem;
    margin-top: .13rem;
    transition: .5s;
}
.inner_s5 .dtl_r .bot li:hover h3{
    color: #AA0203;
}
.inner_s5 .dtl_r .bot li + li{
    margin-top: .32rem;
}
.inner_s5 .dtl_r .bot:before{
    position: absolute;
    content: '';
    left: 0;
    top: .1rem;
    bottom: -.35rem;
    width: 1px;
    background: #979797;
    opacity: .4;
}
.inner_s5 .dtl_r .bot{
    margin-top: .52rem;
    position: relative;
}

.inner_s5 .detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .detail2 .dtl_tit h1{
    margin: .23rem 0;
}
.inner_s5 .detail2 .dtl_tit .cont{
    margin-top: .38rem;
}
.inner_s5 .detail2 .dtl_r{
    margin-top: 0;
}


@charset "UTF-8";
.foot{
    margin-top: 0;
    padding-top: .54rem;
    background-image: url("../images/foot2.png");
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .67rem;
}

.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.n_banner .img img{
    display: block;
    width: 100%;
}
.n_banner .img:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 68.71%;
    background: url("../images/n-mask.png") repeat-x top center/auto 99%;
}
.n_banner .img:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 31.4%;
    background: url("../images/n-mask2.png") repeat-x top center/auto 99%;
}
.n_banner .n_top{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .2rem;
    z-index: 5;
}
.posi{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.posi img{
    display: block;
    width: .15rem;
    margin-right: .1rem;
}
.posi *{
    display: block;
    font-size: .14rem;
    line-height: 1;
    color: #FFFFFF;
    transition: .5s;
}
.posi span:not(:nth-child(2)){
    margin: 0 .04rem;
}
.posi a:hover,
.posi a.active{
    color: #AA0203;
}
.n_banner,
.n_banner .img{
    position: relative;
}

.n_erji li{
    position: relative;
}
.n_erji li + li{
    margin-left: .62rem;
}
.n_erji li h3{
    position: relative;
    font-size: .18rem;
    line-height: 1rem;
    color: #333333;
    min-width: 1.4rem;
    padding: 0 .1rem;
    text-align: center;
    transition: .5s;
}
.n_erji li a{
    display: block;
}
.n_erji li.active h3,
.n_erji li:hover h3{
    color: #AA0203;
    background: rgba(170, 2, 3, 0.1);
}
.n_dh{
    background: #fff;
    box-shadow: 0 0 .73rem rgba(207, 97, 97, 0.14);
}
.inner_page .bg-1{
    position: absolute;
    right: 0;
    top: -2.07rem;
    bottom: 2.82rem;
    width: 64.32vw;
    background: url("../images/n-img-5.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page .bg-2{
    position: absolute;
    left: 0;
    top: 6.21rem;
    bottom: -1.49rem;
    width: 53.65vw;
    background: url("../images/n-img-6.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page{
    position: relative;
    padding: 1.07rem 0 1.96rem;
    background: url("../images/inner-page.png") no-repeat bottom center/100% auto;
}

.n_title001 h2:after{
    position: absolute;
    content: '';
    right: -.19rem;
    bottom: 0;
    width: .6rem;
    height: .7rem;
    background: url("../images/tit-1.png") no-repeat 50%/100%;
}
.n_title001 h2{
    font-size: .42rem;
    line-height: 1;
    color: #333333;
    position: relative;
}
.n_title001 h4{
    font-size: .14rem;
    line-height: 1;
    color: #333333;
    opacity: .4;
    text-transform: uppercase;
    margin-top: .1rem;
}
.n_title002 h2:after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: .03rem;
    width: .72rem;
    background: #AA0203;
}
.n_title002 h2{
    font-size: .38rem;
    line-height: .5rem;
    color: #333333;
    padding-bottom: .24rem;
    position: relative;
}
.n_title002 .more a{
    display: block;
    font-size: .18rem;
    line-height: .24rem;
    color: #666666;
    padding: .11rem .2rem .12rem 0;
    background: url("../images/more-1.png") no-repeat right bottom/ auto 100%;
}
.n_title002{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*inner_s1*/

.inner_s1 li a{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: .42rem 0 .5rem;
}
.inner_s1 li .pic{
    width: 3.8rem;
    height: 2.13rem;
    border-radius: .1rem;
}
.inner_s1 li .txt-box{
    width: calc(100% - 5.5rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s1 li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial,sans-serif;
    flex-shrink: 0;
    margin-right: 1rem;
    transition: .5s;
}
.inner_s1 li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: bold;
    margin-right: .1rem;
    transition: .5s;
}
.inner_s1 li .txt{
    flex: 1;
    overflow: hidden;
}
.inner_s1 li h3{
    font-size: .24rem;
    line-height: .3rem;
    color: #333333;
    transition: .5s;
}
.inner_s1 li p{
    margin-top: .31rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    height: .56rem;
    opacity: .6;
    transition: .5s;
}
.inner_s1 li h6{
    margin-top: .61rem;
    height: .4rem;
    background: url("../images/n-img-2.png") no-repeat left center/auto 100%;
    transition: .5s;
}
.inner_s1 li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner_s1 li:after{
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: #AA0203 url("../images/n-img-4.png") no-repeat left bottom/contain;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s1 li{
    position: relative;
}
.inner_s1 li:hover time,
.inner_s1 li:hover time span,
.inner_s1 li:hover h3,
.inner_s1 li:hover p{
    color: #fff;
}
.inner_s1 li:hover h6{
    background-image: url("../images/n-img-3.png");
}
.inner_s1 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s1:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner_s1{
    margin-top: .47rem;
    position: relative;
}

/*inner_s2*/
.inner_s2 ul{
    display: flex;
    flex-wrap: wrap;
}
.inner_s2 li{
    position: relative;
    width: 30.5%;
    margin: .56rem 0  0 4.25%;
    border-radius: .2rem;
    background: #fff url("../images/n-img-8.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(188, 188, 188, 0.1011);
}
.inner_s2 li:nth-child(3n+1){
    margin-left: 0;
}
.inner_s2 li:nth-child(-n+3){
    margin-top: 0;
}
.inner_s2 li a{
    position: relative;
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    z-index: 2;
}
.inner_s2 li .pic{
    padding-top: 2.96rem;
}
.inner_s2 li time{
    position: absolute;
    left: 0;
    top: -.19rem;
    width: 1.31rem;
    font-size: .16rem;
    line-height: .38rem;
    color: #fff;
    background: #AA0203;
    text-align: center;
    border-radius: 0 50vw 50vw 0;
    z-index: 3;
    transition: .5s;
}
.inner_s2 li h3{
    font-size: .2rem;
    line-height: .32rem;
    color: #000000;
    height: .64rem;
    transition: .5s;
}
.inner_s2 li p{
    margin-top: .14rem;
    font-size: .16rem;
    line-height: .26rem;
    color: #666666;
    height: .52rem;
    transition: .5s;
}
.inner_s2 li .txt{
    position: relative;
    padding: .47rem .41rem;
}
.inner_s2 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-9.png") no-repeat bottom center/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(170, 2, 3, 0.4724);
    border-radius: .2rem;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s2 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s2 li:hover p{
    color: #fff;
}
.inner_s2 li:hover time{
    background: #DEB668;
}
.inner_s2 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s2 {
    margin-top: .49rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s3*/

.inner_s3 li a{
    position: relative;
    z-index: 2;
    padding: .58rem 0 .68rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s3 li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial,sans-serif;
    margin-right: 1.39rem;
    flex-shrink: 0;
    transition: .5s;
}
.inner_s3 li time span{
    display: block;
    font-size: .4rem;
    color: #aa0203;
    margin-right: .05rem;
    font-weight: bold;
    transition: .5s;
}
.inner_s3 li h3{
    font-size: .24rem;
    line-height: .3rem;
    color: #333333;
    transition: .5s;
}
.inner_s3 li p{
    margin-top: .2rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .6;
    transition: .5s;
}
.inner_s3 li .txt:after{
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-2.png") no-repeat 50%/100%;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s3 li .txt{
    flex: 1;
    position: relative;
    overflow: hidden;
    padding-right: 2.14rem;
}
.inner_s3 li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner_s3 li:after{
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: #AA0203 url("../images/n-img-10.png") no-repeat left bottom/contain;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: .5s;
}
.inner_s3 li{
    position: relative;
}
.inner_s3 li:hover time,
.inner_s3 li:hover time span{
    color: #fff;
}
.inner_s3 li:hover h3{
    color: #fff;
}
.inner_s3 li:hover p{
    color: #fff;
}
.inner_s3 li:hover .txt:after{
    background-image: url("../images/n-img-3.png");
}
.inner_s3 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s3:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner_s3{
    margin-top: .47rem;
    position: relative;
}

/*inner_s4*/

.inner_s4 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s4 li{
    width: 48.25%;
    position: relative;
    margin-top: .42rem;
    background: #fff url("../images/n-img-11.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .12rem 0 rgba(227, 227, 227, 0.5);
}
.inner_s4 li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s4 li a{
    position: relative;
    z-index: 2;
    padding: .39rem .68rem .39rem .43rem;
    display: flex;
    align-items: flex-start;
}
.inner_s4 li time{
    display: block;
    color: #AA0203;
    margin-right: .1rem;
    flex-shrink: 0;
    transition: .5s;
}
.inner_s4 li time span{
    display: block;
    font-size: .24rem;
    line-height: .32rem;
}
.inner_s4 li time em{
    display: block;
    font-size: .18rem;
    line-height: .21rem;
}
.inner_s4 li .line{
    display: block;
    width: .32rem;
    height: 1px;
    background: #AA0203;
    opacity: .3;
    flex-shrink: 0;
    margin: .15rem .1rem 0 0;
    transition: .5s;
}
.inner_s4 li h3{
    flex: 1;
    font-size: .2rem;
    line-height: .32rem;
    color: #333333;
    height: .64rem;
    transition: .5s;
}
.inner_s4 li:before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    width: .06rem;
    background: #AA0203;
}
.inner_s4 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203 url('../images/n-img-12.png') no-repeat bottom right/contain;
    box-shadow: 0 .02rem .12rem 0 rgba(170, 2, 3, 0.4963);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s4 li:hover time{
    color: #fff;
}
.inner_s4 li:hover .line{
    background: #fff;
}
.inner_s4 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s4 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s4 {
    margin-top: .48rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s5*/

.inner_s5 .dtl_l{
    width: 71.625%;
}
.inner_s5 .dtl_tit h1{
    font-size: .32rem;
    line-height: .42rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.inner_s5 .dtl_tit h2{
    font-size: .28rem;
    line-height: .38rem;
    color: #333333;
    text-align: center;
}
.inner_s5 .dtl_tit .cont{
    margin-top: .28rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner_s5 .dtl_tit .cont .li{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
    margin: 0 .18rem;
}
/* share */
.share{}
.social-share{display: flex;align-items: center;justify-content: flex-end;}
.social-share *{}
.social-share .icon-tencent:before{content:"\f07a"}
.social-share .icon-qq:before{content:"\f11a"}
.social-share .icon-weibo:before{content:"\f12a"}
.social-share .icon-wechat:before{content:"\f09a"}
.social-share .icon-douban:before{content:"\f10a"}
.social-share .icon-heart:before{content:"\f20a"}
.social-share .icon-like:before{content:"\f00a"}
.social-share .icon-qzone:before{content:"\f08a"}
.social-share .icon-linkedin:before{content:"\f01a"}
.social-share .icon-diandian:before{content:"\f05a"}
.social-share .icon-facebook:before{content:"\f03a"}
.social-share .icon-google:before{content:"\f04a"}
.social-share .icon-twitter:before{content:"\f06a"}
.social-share a:before{display:none}
.social-share a{position:relative;text-decoration:none;margin:0 .04rem 0;display:inline-block;outline:none;}
.social-share .social-share-icon{position:relative;display:inline-block;width: 0.18rem;height: 0.18rem;font-size: 0.16rem;border-radius: 50%;line-height: 0.18rem;color: #fff;text-align:center;vertical-align:middle;transition: 0.6s ease-out 0s;background: #fff;}
.social-share .social-share-icon:hover{}
.social-share .icon-weibo{}
.social-share .icon-weibo:hover{}
.social-share .icon-tencent{color:#56b6e7;border-color:#56b6e7}
.social-share .icon-tencent:hover{background:#56b6e7}
.social-share .icon-qq{}
.social-share .icon-qq:hover{}
.social-share .icon-qzone{color:#FDBE3D;border-color:#FDBE3D;}
.social-share .icon-qzone:hover{background: #FDBE3D;}
.social-share .icon-douban{color:#33b045;border-color:#33b045}
.social-share .icon-douban:hover{background:#33b045}
.social-share .icon-linkedin{color:#0077B5;border-color:#0077B5}
.social-share .icon-linkedin:hover{background:#0077B5}
.social-share .icon-facebook{color:#44619D;border-color:#44619D}
.social-share .icon-facebook:hover{background:#44619D}
.social-share .icon-google{color:#db4437;border-color:#db4437}
.social-share .icon-google:hover{background:#db4437}
.social-share .icon-twitter{color:#55acee;border-color:#55acee}
.social-share .icon-twitter:hover{background:#55acee}
.social-share .icon-diandian{color:#307DCA;border-color:#307DCA}
.social-share .icon-diandian:hover{background:#307DCA}
.social-share .icon-wechat{position:relative;color:#7bc549;border-color: #7bc549 !important;}
.social-share .icon-wechat:hover{}
.social-share .icon-wechat .wechat-qrcode{display:none;border:1px solid #eee;position:absolute;z-index: 100;bottom: -2.05rem;left: -.9rem;width: 2rem;min-height: 1.92rem;color:#666;font-size:12px;text-align:center;background-color:#fff;box-shadow:0 2px 10px #aaa;transition:all 200ms;-webkit-tansition:all 350ms;-moz-transition:all 350ms;top: auto;}
.social-share .icon-wechat .wechat-qrcode.bottom{top:40px;left:-84px}
.social-share .icon-wechat .wechat-qrcode.bottom:after{display:none}
.social-share .icon-wechat .wechat-qrcode h4{font-weight:normal;height: .26rem;line-height: .26rem;font-size: .12rem;background-color:#f3f3f3;margin:0;padding:0;color:#777}
.social-share .icon-wechat .wechat-qrcode .qrcode{width: 1.05rem;margin: .1rem auto;}
.social-share .icon-wechat .wechat-qrcode .qrcode img{max-width: 100%;margin: 0 auto;display: block;}
.social-share .icon-wechat .wechat-qrcode .qrcode table{margin:0 !important}
.social-share .icon-wechat .wechat-qrcode .help p{font-weight:normal;line-height: .16rem;padding:0;margin:0}
.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;top: -16px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color: transparent transparent #fff transparent;}
.social-share .icon-wechat:hover .wechat-qrcode{display:block}
.social-share .icon-wechat{background: url("../images/n-img-13.png") no-repeat 50%/100%}
.social-share .icon-weibo{background: url("../images/n-img-14.png") no-repeat 50%/100%}
.social-share .icon-qq{background: url("../images/n-img-15.png") no-repeat 50%/100%}

#share-2{
    display: flex;
    align-items: center;
    margin: 0 .18rem;
}
#share-2 span{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    /* text-indent: 2em; */
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}
.inner_s5 .dtl_r .top a:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.inner_s5 .dtl_r .top{
    margin-top: .41rem;
}
.inner_s5 .dtl_r .bot li a{
    display: block;
}
.inner_s5 .dtl_r .bot li time{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
    margin-left: -.1rem;
}
.inner_s5 .dtl_r .bot li time img{
    display: block;
    width: .2rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r .bot li h3{
    font-size: .18rem;
    line-height: .3rem;
    color: #333333;
    height: .6rem;
    padding-left: .21rem;
    margin-top: .13rem;
    transition: .5s;
}
.inner_s5 .dtl_r .bot li:hover h3{
    color: #AA0203;
}
.inner_s5 .dtl_r .bot li + li{
    margin-top: .32rem;
}
.inner_s5 .dtl_r .bot:before{
    position: absolute;
    content: '';
    left: 0;
    top: .1rem;
    bottom: -.35rem;
    width: 1px;
    background: #979797;
    opacity: .4;
}
.inner_s5 .dtl_r .bot{
    margin-top: .52rem;
    position: relative;
}

.inner_s5 .detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .detail2 .dtl_tit h1{
    margin: .23rem 0;
}
.inner_s5 .detail2 .dtl_tit .cont{
    margin-top: .38rem;
}
.inner_s5 .detail2 .dtl_r{
    margin-top: 0;
}

/*inner_s6*/
.inner_s6 .item1 img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: .89rem;
}
.inner_s6 .item1{
    padding: .78rem 0 .69rem;
    background: url("../images/n-img-21.png") no-repeat 50%/cover;
}
.inner_s6 .item2 .h2 h2:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -.16rem;
    width: .44rem;
    height: .53rem;
    background: url("../images/s3-img-2.png") no-repeat 50%/100%;
}
.inner_s6 .item2 .h2 h2{
    position: relative;
    font-size: .26rem;
    line-height: .36rem;
    color: #333333;
    padding-left: .28rem;
    font-family: 'SourceHanSerifCN-Bold',sans-serif;
}
.inner_s6 .item2 .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
}
.inner_s6 .item2 .desc{
    margin-top: .42rem;
}
.inner_s6 .item2 .desc img{max-width:100%;border:0 !important;}
.inner_s6 .item2 + .item2{
    margin-top: .91rem;
}
.inner_s6{
    margin-top: .48rem;
    padding-top: .36rem;
    padding-bottom: .96rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
    /* background: url("../images/n-img-23.png") no-repeat bottom right/contain; */
}

/*inner_s7*/
.n_sanji ul{
    display: flex;
    flex-wrap: wrap;
}
.n_sanji li{
    position: relative;
}
.n_sanji li + li{
    margin-left: .53rem;
}
.n_sanji li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .24rem;
    line-height: .49rem;
    color: #666666;
    padding: 0 .24rem;
    border-radius: 50vw;
    transition: .5s;
}
.n_sanji li a span{
    display: block;
    margin: 0 .17rem;
    flex-shrink: 0;
}
.n_sanji li a:before,
.n_sanji li a:after{
    content: '';
    width: .04rem;
    height: .04rem;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.n_sanji li.active a:before,
.n_sanji li:hover a:before,
.n_sanji li.active a:after,
.n_sanji li:hover a:after{
    opacity: 1;
    visibility: visible;
}
.n_sanji li.active a,
.n_sanji li:hover a{
    color: #fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
     display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .42rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: 0.16rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .35rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li:last-child .txt{
    border:none;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
    text-indent:2em;
}

.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    /* text-align: center; */
    margin-bottom: 0.64rem;
    margin-top: 0.3rem;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}
.inner_s8 .item5 h4{
    font-size:.22rem;
    line-height:1.5;
    color:#AA0203;
    font-weight:700;
    text-indent: 0.4rem;
}
.inner_s8 .item5 ul{
    margin-top:.2rem;
}
.inner_s8 .item5 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item5 ul li + li{
    margin-top: 0.1rem;
}
.inner_s8 .item5 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: 0.16rem;
    flex-shrink: 0;
}
.inner_s8 .item5 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item5 ul li .txt{
    flex: 1;
    overflow: hidden;
    /* padding-bottom: .34rem; */
    /* border-bottom: 1px solid #fceeee; */
}
.inner_s8 .item5 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item5 .desc {
    font-size:.18rem;
    line-height:.28rem;
    color:#333;
    text-indent:2em;
    margin-top:.4rem;
}
.inner_s8 .item5{
    margin-top:.8rem
}


/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65% !important;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 30.33% !important;
        margin: 0 1% !important;
    }
    .inner_s2 ul{
        gap: .3rem 1%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
        max-width: none;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
    .inner_s8 .item5{
        margin-top:.4rem
    }
    .inner_s8 .item3 .h2 h2{
        margin:0 0 .2rem;
    }
    .inner_s8 .item5 .desc{
        margin-top:.2rem;
    }
    .inner_s8{
        padding-bottom:.4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100% !important;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_s10 .item2 .form .top .li .spans{
    display: flex;
    flex-wrap: wrap;
}
.inner_s10 .item2 .form .top .li .spans span{
    display: block;
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    padding-left: .23rem;
    position: relative;
    cursor: pointer;
    margin-right: .49rem;
    margin-bottom: .1rem;
}
.inner_s10 .item2 .form .top .li .spans span:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    border: 1px solid #AA0203;
    opacity: .5;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span:after{
    position: absolute;
    content: '';
    width: .05rem;
    height: .05rem;
    left: .045rem;
    top: 50%;
    border-radius: 50%;
    background: #AA0203;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span.active:before,
.inner_s10 .item2 .form .top .li .spans span.active:after{
    opacity: 1;
}
.inner_s10 .item2 .form .top .li + .li{
    margin-top: .2rem;
}
.inner_s10 .item2 .form .top{
    margin-top: .2rem;
    margin-bottom: .52rem;
    padding-bottom: .42rem;
    border-bottom: 1px solid rgba(170, 2, 3, 0.2633);
}
.inner_s10 .item2 .form .bot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s10 .item2 .form .bot .li{
    width: 48.79%;
    margin-top: .3rem;
}
.inner_s10 .item2 .form .bot .li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s10 .item2 .form .bot .li h4{
    font-size: .2rem;
    line-height: .24rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .bot .li input{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    transition: .5s;
}
.inner_s10 .item2 .form .bot .li select{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    outline: none;
}
.inner_s10 .item2 .form .bot .li input::placeholder{
    color: rgba(51, 51, 51, 0.4);
}
.inner_s10 .item2 .form .bot .li input:focus{
    border-color: #AA0203;
}
.inner_s10 .item2 .form .bot .li .label{
    margin-top: .18rem;
}
.inner_s10 .item2 .form .bot .li1{
    width: 100%;
}
.inner_s10 .item2 .form .bot .li1 button{
    display: block;
    width: 2.06rem;
    font-size: .24rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
}
.inner_s10 .item2 .form {
    padding: .34rem .405rem ;
    margin-top: .5rem;
}
.inner_s10{
    padding: .53rem .36rem 0;
    background: url("../images/n-img-44.png") no-repeat top center/100% auto;
}

@media (max-width: 1025px) {
    .inner_s9{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s9 li a{
        padding: .2rem;
    }
    .inner_s9 li .pic {
        width: 1.8rem;
        height: 2.4rem;
    }
    .inner_s9 li .txt{
        width: calc(100% - 2rem);
        padding-right: 0;
    }
    .inner_s9 li h3{
        font-size: .22rem;
        line-height: .3rem;
    }
    .inner_s9 li p{
        font-size: .18rem;
        line-height: .28rem;
        height: 1.12rem;
        margin-top: .1rem;
    }
    .inner_s9 li{
        background-size: auto 60%;
    }
    .inner_s9 li + li{
        margin-top: .3rem;
    }
    .inner_s10 .itme-tit h2 span{
        font-size: .24rem;
        line-height: .3rem;
        margin: 0 .1rem;
    }
    .inner_s10 .itme-tit h2 i img{
        height: .1rem;
    }
    .inner_s10 .itme-tit h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s10 .item_con h3{
        font-size: .18rem;
        line-height: .28rem;
    }
    .inner_s10 .item_con .desc p{
        font-size: .16rem;
        line-height: 2;
    }
    .inner_s10 .item_con .desc p + p{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .desc{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .li + .li{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form h2{
        font-size: .2rem;
    }
    .inner_s10 .item2 .form .top .li h4{
        font-size: .16rem;
        line-height: .26rem;
    }
    .inner_s10 .item2 .form .top .li .spans span{
        font-size: .16rem;
        line-height: .26rem;
        margin: 0;
    }
    .inner_s10 .item2 .form .top .li .left{
        width: 1.3rem;
    }
    .inner_s10 .item2 .form .top .li .spans{
        gap: .1rem .2rem;
    }
    .inner_s10 .item2 .form .top .li + .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .top{
        margin-top: .2rem;
        margin-bottom: .2rem;
        padding-bottom: .2rem;
    }
    .inner_s10 .item2 .form .bot .li h4{
        font-size: .16rem;
    }
    .inner_s10 .item2 .form .bot .li .label{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li input{
        font-size: .15rem;
        height: .4rem;
        padding: 0 .1rem;
    }
    .inner_s10 .item2 .form .bot .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li1 button{
        font-size: .18rem;
        line-height: .4rem;
        width: 1.5rem;
    }
    .inner_s10 .item2 .form .bot .li1{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form{
        padding: 0;
        margin-top: .2rem;
    }
    .inner_s10 .item_con{
        margin-top: .2rem;
    }
    .inner_s10{
        padding: .2rem;
    }
}
@media (max-width: 769px) {
    .inner_s10 .itme-tit h2 i{
        display: none;
    }
    .inner_s10 .itme-tit h2{
        display: block;
        text-align: center;
    }
}
@media (max-width: 481px) {
    .inner_s9 li .pic {
        width: 1.4rem;
        height: 1.9rem;
    }
    .inner_s9 li .txt {
        width: calc(100% - 1.6rem);
    }
    .inner_s10 .item2 .form .bot .li{
        width: 100%;
    }
    .inner_s10 .item2 .form .bot{
        gap: .1rem 0;
    }
}

/*inner_s11*/

.inner_s11 li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #666666;
}
.inner_s11 li h4 i{
    color: #D4240B;
}
.inner_s11 li .label input{
    display: block;
    width: 100%;
    height: .54rem;
    font-size: .18rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid rgba(170, 2, 3, 0.2);
    border-radius: .06rem;
    outline: none;
}
.inner_s11 li .label textarea{
    display: block;
    width: 100%;
    height: 1.32rem;
    font-size: .18rem;
    color: rgba(51, 51, 51, 0.4);
    padding: .2rem;
    border: 1px solid rgba(170, 2, 3, 0.2);
    border-radius: .06rem;
    outline: none;
    font-family: "Microsoft Yahei", sans-serif;
}
.inner_s11 li .label p{
    font-size: .16rem;
    line-height: .24rem;
    color: #AA0203;
    margin-top: .15rem;
}
.inner_s11 li .label{
    margin-top: .15rem;
}
.inner_s11 li button{
    display: block;
    width: 2.4rem;
    font-size: .18rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 .02rem .25rem rgba(170, 2, 3, 0.285);
}
.inner_s11 li + li{
    margin-top: .22rem;
}
.inner_s11 ul{
    padding: .48rem 1.18rem .72rem;
    background: #FFFFFF;
    box-shadow: 0px 2px 19px 0px rgba(230, 230, 230, 0.5);

}
.inner_s11{
    margin-top: .45rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

@media (max-width: 1025px) {
    .inner_s11{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s11 ul{
        padding: .2rem;
    }
    .inner_s11 li h4{
        font-size: .18rem;
    }
    .inner_s11 li .label input{
        height: .44rem;
    }
    .inner_s11 li button{
        width: 1.8rem;
        height: .44rem;
        line-height: .44rem;
    }
    .inner_s11 li + li{
        margin-top: .1rem;
    }
} #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative;
}

.inner-s3 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: .76rem 0 .86rem .3rem;
}
.inner-s3 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: 1.1rem;
    transition: all .5s;
}
.inner-s3 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s3 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s3 .list li h3{
    font-size: .28rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s3 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .7;
    transition: all .5s;
}
.inner-s3 .list li .jt{
    align-self: center;
    margin-left: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s3 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-29.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s3 .list li:hover time,
.inner-s3 .list li:hover time span{
    color: #ffffff;
}
.inner-s3 .list li:hover h3,
.inner-s3 .list li:hover p{
    color: #ffffff;
}
.inner-s3 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s3 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner-s3 .list li{
    position: relative;
}
.inner-s3 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list{
    position: relative;
    margin-top: .66rem;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .69rem;
}
.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .22rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
   
    .inner-s1 .item3 .li h4 p{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
        top: 28%;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc, .inner-s2 .item1 .desc *{
        font-size: .18rem !important;;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 1.1rem;
        margin-right: .2rem;
        flex-shrink: 0;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display: none;
    }
    .inner-s2 .item2 li .icon img{
        max-width: .45rem;
        max-height: .45rem;
    }
    .inner-s2 .item2 li .icon{
        margin: 0 auto;
        width: 1.1rem;
        height: 1.1rem;
    }
    .inner-s2 .item2 li .show{
        flex: auto;
        width: calc(100% - 1.3rem);
        margin: 0;
    }
    .inner-s2 .item2 li h3 span{
        font-size: .3rem;
    }
    .inner-s2 .item2 li h4 br{
        display: none;
    }
    .inner-s2 .item2 li h4{
        font-size: .18rem;
        line-height: 1.5;
        text-align: left;
    }
    .inner-s2 .item2 li h3{
        justify-content: flex-start;
    }
    .inner-s2 .item2 li:hover .icon:before,
    .inner-s2 .item2 li:hover .icon:after{
        opacity: 0;
        visibility: hidden;
    }
    .inner-s2 .item2 li:hover .show{
        opacity: 1;
        visibility: visible;
    }
    .inner-s2 .item2 li:nth-child(2n+1){
        margin-top: 0;
    }
    .inner-s2 .item2 li{
        width: 32%;
        flex-wrap: wrap;
        align-items: center;
    }
    .inner-s2 .item2 ul{
        gap: .2rem 2%;
        justify-content: flex-start;
    }
    .inner-s2 .item2{
        margin-top: .3rem;
        margin-bottom: .4rem;
    }
    .inner-tit h3{
        font-size: .28rem;
        line-height: .3rem;
    }
    .inner-tit h4{
        font-size: .2rem;
        margin-top: .05rem;
    }
    .inner-tit .tit:after{
        top: -.1rem;
        right: -.5rem;
        width: 0.69rem;
        height: 0.74rem;
    }
    .inner-s3 .list li time span,
    .inner-s4 .list li time span{
        font-size: .32rem;
    }
    .inner-s3 .list li time,
    .inner-s4 .list li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner-s3 .list li h3,
    .inner-s4 .list li h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner-s3 .list li p,
    .inner-s4 .list li p{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .02rem;
    }
    .inner-s3 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
    .inner-s2 .item2 li .num{
        width:.9rem;
    }
    .inner-s2 .item2 li .icon{
         width:.9rem;
        height:.9rem
    }
}

/*inner_s2*/
.inner_s2 ul{
    display: flex;
    flex-wrap: wrap;
}
.inner_s2 li{
    position: relative;
    width: 30.5%;
    margin: .56rem 0  0 4.25%;
    border-radius: .2rem;
    background: #fff url("../images/n-img-8.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(188, 188, 188, 0.1011);
}
.inner_s2 li:nth-child(3n+1){
    margin-left: 0;
}
.inner_s2 li:nth-child(-n+3){
    margin-top: 0;
}
.inner_s2 li a{
    position: relative;
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    z-index: 2;
}
.inner_s2 li .pic{
    padding-top: 2.96rem;
}
.inner_s2 li time{
    position: absolute;
    left: 0;
    top: -.19rem;
    width: 1.31rem;
    font-size: .16rem;
    line-height: .38rem;
    color: #fff;
    background: #AA0203;
    text-align: center;
    border-radius: 0 50vw 50vw 0;
    z-index: 3;
    transition: .5s;
}
.inner_s2 li h3{
    font-size: .2rem;
    line-height: .32rem;
    color: #000000;
    height: .64rem;
    transition: .5s;
}
.inner_s2 li p{
    margin-top: .14rem;
    font-size: .16rem;
    line-height: .26rem;
    color: #666666;
    height: .52rem;
    transition: .5s;
}
.inner_s2 li .txt{
    position: relative;
    padding: .47rem .41rem;
}
.inner_s2 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203;
    box-shadow: 0 .02rem .29rem 0 rgba(170, 2, 3, 0.4724);
    border-radius: .2rem;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s2 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s2 li:hover p{
    color: #fff;
}
.inner_s2 li:hover time{
    background: #DEB668;
}
.inner_s2 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s2 {
    margin-top: .49rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}



.inner_s5 .dtl_l{
    width: 71.625%;
}
.inner_s5 .dtl_tit h1{
    font-size: .32rem;
    line-height: .42rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.inner_s5 .dtl_tit h2{
    font-size: .28rem;
    line-height: .38rem;
    color: #333333;
    text-align: center;
}
.inner_s5 .dtl_tit .cont{
    margin-top: .28rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner_s5 .dtl_tit .cont .li{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
    margin: 0 .18rem;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
    text-indent: 2em;
    word-break: break-all;
}
.inner_s5 .dtl_txt img{max-width:100%;height: auto !important;}
.inner_s5 .dtl_txt video{height:auto !important;}
.inner_s5 .dtl_txt p span{ 
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
   
    word-break: break-all;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    /* width: 100%; */
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
    
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}
.inner_s5 .dtl_r .top a:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.inner_s5 .dtl_r .top{
    margin-top: .41rem;
}
.inner_s5 .dtl_r .bot li a{
    display: block;
}
.inner_s5 .dtl_r .bot li time{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
    margin-left: -.1rem;
}
.inner_s5 .dtl_r .bot li time img{
    display: block;
    width: .2rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r .bot li h3{
    font-size: .18rem;
    line-height: .3rem;
    color: #333333;
    height: .6rem;
    padding-left: .21rem;
    margin-top: .13rem;
    transition: .5s;
}
.inner_s5 .dtl_r .bot li:hover h3{
    color: #AA0203;
}
.inner_s5 .dtl_r .bot li + li{
    margin-top: .32rem;
}
.inner_s5 .dtl_r .bot:before{
    position: absolute;
    content: '';
    left: 0;
    top: .1rem;
    bottom: -.35rem;
    width: 1px;
    background: #979797;
    opacity: .4;
}
.inner_s5 .dtl_r .bot{
    margin-top: .52rem;
    position: relative;
}

.inner_s5 .detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .detail2 .dtl_tit h1{
    margin: .23rem 0;
}
.inner_s5 .detail2 .dtl_tit .cont{
    margin-top: .38rem;
}
.inner_s5 .detail2 .dtl_r{
    margin-top: 0;
}


@charset "UTF-8";
.foot{
    margin-top: 0;
    padding-top: .54rem;
    background-image: url("../images/foot2.png");
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .67rem;
}

.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.n_banner .img img{
    display: block;
    width: 100%;
}
.n_banner .img:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 68.71%;
    background: url("../images/n-mask.png") repeat-x top center/auto 99%;
}
.n_banner .img:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 31.4%;
    background: url("../images/n-mask2.png") repeat-x top center/auto 99%;
}
.n_banner .n_top{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .2rem;
    z-index: 5;
}
.posi{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.posi img{
    display: block;
    width: .15rem;
    margin-right: .1rem;
}
.posi *{
    display: block;
    font-size: .14rem;
    line-height: 1;
    color: #FFFFFF;
    transition: .5s;
}
.posi span:not(:nth-child(2)){
    margin: 0 .04rem;
}
.posi a:hover,
.posi a.active{
    color: #AA0203;
}
.n_banner,
.n_banner .img{
    position: relative;
}

.n_erji li{
    position: relative;
}
.n_erji li + li{
    margin-left: .62rem;
}
.n_erji li h3{
    position: relative;
    font-size: .18rem;
    line-height: 1rem;
    color: #333333;
    min-width: 1.4rem;
    padding: 0 .1rem;
    text-align: center;
    transition: .5s;
}
.n_erji li a{
    display: block;
}
.n_erji li.active h3,
.n_erji li:hover h3{
    color: #AA0203;
    background: rgba(170, 2, 3, 0.1);
}
.n_dh{
    background: #fff;
    box-shadow: 0 0 .73rem rgba(207, 97, 97, 0.14);
}
.inner_page .bg-1{
    position: absolute;
    right: 0;
    top: -2.07rem;
    bottom: 2.82rem;
    width: 64.32vw;
    background: url("../images/n-img-5.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page .bg-2{
    position: absolute;
    left: 0;
    top: 6.21rem;
    bottom: -1.49rem;
    width: 53.65vw;
    background: url("../images/n-img-6.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page{
    position: relative;
    padding: 1.07rem 0 1.96rem;
    background: url("../images/inner-page.png") no-repeat bottom center/100% auto;
}

.n_title001 h2:after{
    position: absolute;
    content: '';
    right: -.19rem;
    bottom: 0;
    width: .6rem;
    height: .7rem;
    background: url("../images/tit-1.png") no-repeat 50%/100%;
}
.n_title001 h2{
    font-size: .42rem;
    line-height: 1;
    color: #333333;
    position: relative;
}
.n_title001 h4{
    font-size: .14rem;
    line-height: 1;
    color: #333333;
    opacity: .4;
    text-transform: uppercaset-qrcode .help p{font-weight:normal;line-height: .16rem;padding:0;margin:0}
.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;top: -16px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color: transparent transparent #fff transparent;}
.social-share .icon-wechat:hover .wechat-qrcode{display:block}
.social-share .icon-wechat{background: url("../images/n-img-13.png") no-repeat 50%/100%}
.social-share .icon-weibo{background: url("../images/n-img-14.png") no-repeat 50%/100%}
.social-share .icon-qq{background: url("../images/n-img-15.png") no-repeat 50%/100%}

#share-2{
    display: flex;
    align-items: center;
    margin: 0 .18rem;
}
#share-2 span{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}

.inner-s1 .item2 .play{
    position: absolute;
    right: .27rem;
    bottom: .29rem;
    width: .68rem;
    height: .68rem;
    background: url("../images/n-img-9.png") no-repeat 50%/100%;
    z-index: 2;
}
.inner-s1 .item3 .li h3{
    font-size: .32rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s1 .item3 .li h4{
    font-size: .28rem;
    line-height: .36rem;
    color: #deb668;
    font-weight: 700;
    margin-top: .14rem;
}
.inner-s1 .item3 .li:before{
    position: absolute;
    content: '';
    left: 0;
    top: .72rem;
    width: .19rem;
    height: .19rem;
    background: url("../images/n-img-10.png") no-repeat 50%/100%;
}
.inner-s1 .item3 .li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,#deb668 0%, rgba(222, 182, 104, 0) 80%);
}
.inner-s1 .item3 .li:last-child:after{
    display: none;
}
.inner-s1 .item3 .li{
    padding: .6rem .5rem .7rem;
    position: relative;
    z-index: 2;
}
.inner-s1 .item3:after{
    position: absolute;
    content: '';
    top: 50%;
    right: -1.43rem;
    width: 4.66rem;
    height: 4.3rem;
    background: url("../images/n-img-11.png") no-repeat 50%/100%;
    transform: translateY(-50%);
    pointer-events: none;
}
.inner-s1 .item3{
    padding: .64rem 0 .07rem;
    position: relative;
}

/*inner-s2*/

.inner-s2 .item1 h3{
    font-size: .48rem;
    line-height: 1;
    color: #aa0203;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s2 .item1 .desc{
    font-size: .18rem;
    line-height: .36rem;
    color: #333333;
    text-indent: 2em;
    margin-top: .56rem;
}
.inner-s2 .item1 .desc p + p{
    margin-top: .32rem;
}
.inner-s2 .item2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner-s2 .item2  li{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s2 .item2 li .num{
    position: relative;

}
.inner-s2 .item2 li .icon{
    position: relative;
    width: 1.52rem;
    height: 1.52rem;
    background: url("../images/n-img-23.png") no-repeat 50%/auto 100%;
}
.inner-s2 .item2 li .icon img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: .69rem;
    max-height: .72rem;
    margin: auto;
    transition: all .5s;
}
.inner-s2 .item2 li .icon .img-2{
    opacity: 0;
}
.inner-s2 .item2 li .hide{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    z-index: 2;
}
.inner-s2 .item2 li .hide h3,
.inner-s2 .item2 li .hide h4{
    color: #ffffff;
    text-align: center;
}
.inner-s2 .item2 li .hide h3{
    justify-content: center;
}
.inner-s2 .item2 li .icon:before{
    position: absolute;
    content: '';
    top: -.44rem;
    left: -.39rem;
    width: 2.63rem;
    height: 2.42rem;
    background: url("../images/n-img-24.png") no-repeat 50%/100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .icon:after{
    position: absolute;
    content: '';
    top: -0.05rem;
    bottom: -.05rem;
    right: -.05rem;
    left: -.05rem;
    background: #AA0203;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .num .line{
    position: absolute;
    left: 50%;
    top: calc(100% + .05rem);
    width: 1px;
    height: 2.24rem;
    background: #b31a1b;
    transform: translateX(-50%);
}
.inner-s2 .item2 li h3{
    display: flex;
    align-items: baseline;
    font-size: .16rem;
    line-height: 1;
    color: #deb668;
    font-weight: 700;
}
.inner-s2 .item2 li h3 span{
    display: block;
    font-size: .5rem;
    line-height: 1;
    margin-right: .03rem;
}
.inner-s2 .item2 li h4{
    font-size: .16rem;
    line-height: .24rem;
    color: #333333;
}
.inner-s2 .item2 li .show{
    flex: 1;
    margin-top: .05rem;
    margin-left: -.25rem;
}
.inner-s2 .item2 li:nth-child(2n+1){
    margin-top: .8rem;
}
.inner-s2 .item2 li.li1 .num .line{
    height: 0.58rem;
}
.inner-s2 .item2 li.li2 .num .line{
    height: 2.08rem;
}
.inner-s2 .item2 li.li3 .num .line{
    height: 0.88rem;
}
.inner-s2 .item2 li.li4 .num .line{
    height: 1.95rem;
}
.inner-s2 .item2 li.li5 .num .line{
    height: 0.9rem;
}
.inner-s2 .item2 li.li6 .num .line{
    height: 1.66rem;
}
.inner-s2 .item2 li:hover .icon .img-1{
    opacity: 1;
}
.inner-s2 .item2 li:hover .icon .img-2{
    opacity: .2;
}
.inner-s2 .item2 li:hover .show{
    opacity: 0;
    visibility: hidden;
}
.inner-s2 .item2 li:hover .hide{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:after{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:before{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2{
    margin-top: 1rem;
}

.inner-tit{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-tit h3{
    font-size: .52rem;
    line-height: 1;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative;
}

.inner-s3 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: .76rem 0 .86rem .3rem;
}
.inner-s3 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: 1.1rem;
    transition: all .5s;
}
.inner-s3 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s3 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s3 .list li h3{
    font-size: .28rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s3 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .7;
    transition: all .5s;
}
.inner-s3 .list li .jt{
    align-self: center;
    margin-left: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s3 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-29.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s3 .list li:hover time,
.inner-s3 .list li:hover time span{
    color: #ffffff;
}
.inner-s3 .list li:hover h3,
.inner-s3 .list li:hover p{
    color: #ffffff;
}
.inner-s3 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s3 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner-s3 .list li{
    position: relative;
}
.inner-s3 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list{
    position: relative;
    margin-top: .66rem;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .69rem;
}
.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display#fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

    

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        per .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100%;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_s10 .item2 .form .top .li .spans{
    display: flex;
    flex-wrap: wrap;
}
.inner_s10 .item2 .form .top .li .spans span{
    display: block;
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    padding-left: .23rem;
    position: relative;
    cursor: pointer;
    margin-right: .49rem;
    margin-bottom: .1rem;
}
.inner_s10 .item2 .form .top .li .spans span:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    border: 1px solid #AA0203;
    opacity: .5;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span:after{
    position: absolute;
    content: '';
    width: .05rem;
    height: .05rem;
    left: .045rem;
    top: 50%;
    border-radius: 50%;
    background: #AA0203;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span.active:before,
.inner_s10 .item2 .form .top .li .spans span.active:after{
    opacity: 1;
}
.inner_s10 .item2 .form .top .li + .li{
    margin-top: .2rem;
}
.inner_s10 .item2 .form .top{
    margin-top: .2rem;
    margin-bottom: .52rem;
    padding-bottom: .42rem;
    border-bottom: 1px solid rgba(170, 2, 3, 0.2633);
}
.inner_s10 .item2 .form .bot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s10 .item2 .form .bot .li{
    width: 48.79%;
    margin-top: .3rem;
}
.inner_s10 .item2 .form .bot .li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s10 .item2 .form .bot .li h4{
    font-size: .2rem;
    line-height: .24rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .bot .li input{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    transition: .5s;
}
.inner_s10 .item2 .form .bot .li select{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    outline: none;
}
.inner_s10 .item2 .form .bot .li input::placeholder{
    color: rgba(51, 51, 51, 0.4);
}
.inner_s10 .item2 .form .bot .li input:focus{
    border-color: #AA0203;
}
.inner_s10 .item2 .form .bot .li .label{
    margin-top: .18rem;
}
.inner_s10 .item2 .form .bot .li1{
    width: 100%;
}
.inner_s10 .item2 .form .bot .li1 button{
    display: block;
    width: 2.06rem;
    font-size: .24rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
}
.inner_s10 .item2 .form {
    padding: .34rem .405rem ;
    margin-top: .5rem;
}
.inner_s10{
    padding: .53rem .36rem 0;
    background: url("../images/n-img-44.png") no-repeat top center/100% auto;
}

@media (max-width: 1025px) {
    .inner_s9{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s9 li a{
        padding: .2rem;
    }
    .inner_s9 li .pic {
        width: 1.8rem;
        height: 2.4rem;
    }
    .inner_s9 li .txt{
        width: calc(100% - 2rem);
        padding-right: 0;
    }
    .inner_s9 li h3{
        font-size: .22rem;
        line-height: .3rem;
    }
    .inner_s9 li p{
        font-size: .18rem;
        line-height: .28rem;
        height: 1.12rem;
        margin-top: .1rem;
    }
    .inner_s9 li{
        background-size: auto 60%;
    }
    .inner_s9 li + li{
        margin-top: .3rem;
    }
    .inner_s10 .itme-tit h2 span{
        font-size: .24rem;
        line-height: .3rem;
        margin: 0 .1rem;
    }
    .inner_s10 .itme-tit h2 i img{
        height: .1rem;
    }
    .inner_s10 .itme-tit h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s10 .item_con h3{
        font-size: .18rem;
        line-height: .28rem;
    }
    .inner_s10 .item_con .desc p{
        font-size: .16rem;
        line-height: 2;
    }
    .inner_s10 .item_con .desc p + p{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .desc{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .li + .li{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form h2{
        font-size: .2rem;
    }
    .inner_s10 .item2 .form .top .li h4{
        font-size: .16rem;
        line-height: .26rem;
    }
    .inner_s10 .item2 .form .top .li .spans span{
        font-size: .16rem;
        line-height: .26rem;
        margin: 0;
    }
    .inner_s10 .item2 .form .top .li .left{
        width: 1.3rem;
    }
    .inner_s10 .item2 .form .top .li .spans{
        gap: .1rem .2rem;
    }
    .inner_s10 .item2 .form .top .li + .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .top{
        margin-top: .2rem;
        margin-bottom: .2rem;
        padding-bottom: .2rem;
    }
    .inner_s10 .item2 .form .bot .li h4{
        font-size: .16rem;
    }
    .inner_s10 .item2 .form .bot .li .label{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li input{
        font-size: .15rem;
        height: .4rem;
        padding: 0 .1rem;
    }
    .inner_s10 .item2 .form .bot .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li1 button{
        font-size: .18rem;
        line-height: .4rem;
        width: 1.5rem;
    }
    .inner_s10 .item2 .form .bot .li1{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form{
        padding: 0;
        margin-top: .2rem;
    }
    .inner_s10 .item_con{
        margin-top: .2rem;
    }
    .inner_s10{
        padding: .2rem;
    }
}
@media (max-width: 769px) {
    .inner_s10 .itme-tit h2 i{
        display: none;
    }
    .inner_s10 .itme-tit h2{
        display: block;
        text-align: center;
    }
}
@media (max-width: 481px) {
    .inner_s9 li .pic {
        width: 1.4rem;
        height: 1.9rem;
    }
    .inner_s9 li .txt {
        width: calc(100% - 1.6rem);
    }
    .inner_s10 .item2 .form .bot .li{
        width: 100%;
    }
    .inner_s10 .item2 .form .bot{
        gap: .1rem 0;
    }
}

/*inner_s11*/

.inner_s11 li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #666666;
}
.inner_s11 li h4 i{
    color: #D4240B;
}
.inner_s11 li .label input{
    display: block;
    width: 100%;
    height: .54rem;
    font-size: .18rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid rgba(170, 2, 3, 0.2);
    border-radius: .06rem;
    outline: none;
}
.inner_s11 li .label textarea{
    display: block;
    width: 100%;
    height: 1.32rem;
    font-size: .18rem;
    color: rgba(51, 51, 51, 0.4);
    padding: .2rem;
    border: 1px solid rgba(170, 2, 3, 0.2);
    border-radius: .06rem;
    outline: none;
    font-family: "Microsoft Yahei", sans-serif;
}
.inner_s11 li .label p{
    font-size: .16rem;
    line-height: .24rem;
    color: #AA0203;
    margin-top: .15rem;
}
.inner_s11 li .label{
    margin-top: .15rem;
}
.inner_s11 li button{
    display: block;
    width: 2.4rem;
    font-size: .18rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 .02rem .25rem rgba(170, 2, 3, 0.285);
}
.inner_s11 li + li{
    margin-top: .22rem;
}
.inner_s11 ul{
    padding: .48rem 1.18rem .72rem;
    background: #FFFFFF;
    box-shadow: 0px 2px 19px 0px rgba(230, 230, 230, 0.5);

}
.inner_s11{
    margin-top: .45rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

@media (max-width: 1025px) {
    .inner_s11{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s11 ul{
        padding: .2rem;
    }
    .inner_s11 li h4{
        font-size: .18rem;
    }
    .inner_s11 li .label input{
        height: .44rem;
    }
    .inner_s11 li button{
        width: 1.8rem;
        height: .44rem;
        line-height: .44rem;
    }
    .inner_s11 li + li{
        margin-top: .1rem;
    }
} #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative;
}

.inner-s3 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: .76rem 0 .86rem .3rem;
}
.inner-s3 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: 1.1rem;
    transition: all .5s;
}
.inner-s3 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s3 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s3 .list li h3{
    font-size: .28rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s3 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .7;
    transition: all .5s;
}
.inner-s3 .list li .jt{
    align-self: center;
    margin-left: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s3 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-29.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s3 .list li:hover time,
.inner-s3 .list li:hover time span{
    color: #ffffff;
}
.inner-s3 .list li:hover h3,
.inner-s3 .list li:hover p{
    color: #ffffff;
}
.inner-s3 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s3 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner-s3 .list li{
    position: relative;
}
.inner-s3 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list{
    position: relative;
    margin-top: .66rem;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .69rem;
}
.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display: none;
    }
    .inner-s2 .item2 li .icon img{
        max-width: .45rem;
        max-height: .45rem;
    }
    .inner-s2 .item2 li .icon{
        margin: 0 auto;
        width: 1.1rem;
        height: 1.1rem;
    }
    .inner-s2 .item2 li .show{
        flex: auto;
        width: 100%;
        margin: .1rem 0 0 ;
    }
    .inner-s2 .item2 li h3 span{
        font-size: .3rem;
    }
    .inner-s2 .item2 li h4 br{
        display: none;
    }
    .inner-s2 .item2 li h4{
        font-size: .18rem;
        line-height: 1.5;
        text-align: center;
    }
    .inner-s2 .item2 li h3{
        justify-content: center;
    }
    .inner-s2 .item2 li:hover .icon:before,
    .inner-s2 .item2 li:hover .icon:after{
        opacity: 0;
        visibility: hidden;
    }
    .inner-s2 .item2 li:hover .show{
        opacity: 1;
        visibility: visible;
    }
    .inner-s2 .item2 li:nth-child(2n+1){
        margin-top: 0;
    }
    .inner-s2 .item2 li{
        width: 16.5%;
        flex-wrap: wrap;
    }
    .inner-s2 .item2 ul{
        gap: .2rem 0;
    }
    .inner-s2 .item2{
        margin-top: .3rem;
        margin-bottom: .4rem;
    }
    .inner-tit h3{
        font-size: .28rem;
        line-height: .3rem;
    }
    .inner-tit h4{
        font-size: .2rem;
        margin-top: .05rem;
    }
    .inner-tit .tit:after{
        top: -.1rem;
        right: -.5rem;
        width: 0.69rem;
        height: 0.74rem;
    }
    .inner-s3 .list li time span,
    .inner-s4 .list li time span{
        font-size: .32rem;
    }
    .inner-s3 .list li time,
    .inner-s4 .list li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner-s3 .list li h3,
    .inner-s4 .list li h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner-s3 .list li p,
    .inn color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display: none;
    }
    .inner-s2 .item2 li .icon img{
        max-width: .45rem;
        max-height: .45rem;
    }
    .inner-s2 .item2 li .icon{
        margin: 0 auto;
        width: 1.1rem;
        height: 1.1rem;
    }
    .inner-s2 .item2 li .show{
        flex: auto;
        width: 100%;
        margin: .1rem 0 0 ;
    }
    .inner-s2 .item2 li h3 span{
        font-size: .3rem;
    }
    .inner-s2 .item2 li h4 br{
        display: none;
    }
    .inner-s2 .item2 li h4{
        font-size: .18rem;
        line-height: 1.5;
        text-align: center;
    }
    .inner-s2 .item2 li h3{
        justify-content: center;
    }
    .inner-s2 .item2 li:hover .icon:before,
    .inner-s2 .item2 li:hover .icon:after{
        opacity: 0;
        visibility: hidden;
    }
    .inner-s2 .item2 li:hover .show{
        opacity: 1;
        visibility: visible;
    }
    .inner-s2 .item2 li:nth-child(2n+1){
        margin-top: 0;
    }
    .inner-s2 .item2 li{
        width: 16.5%;
        flex-wrap: wrap;
    }
    .inner-s2 .item2 ul{
        gap: .2rem 0;
    }
    .inner-s2 .item2{
        margin-top: .3rem;
        margin-bottom: .4rem;
    }
    .inner-tit h3{
        font-size: .28rem;
        line-height: .3rem;
    }
    .inner-tit h4{
        font-size: .2rem;
        margin-top: .05rem;
    }
    .inner-tit .tit:after{
        top: -.1rem;
        right: -.5rem;
        width: 0.69rem;
        height: 0.74rem;
    }
    .inner-s3 .list li time span,
    .inner-s4 .list li time span{
        font-size: .32rem;
    }
    .inner-s3 .list li time,
    .inner-s4 .list li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner-s3 .list li h3,
    .inner-s4 .list li h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner-s3 .list li p,
    .inner-s4 .list li p{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .02rem;
    }
    .inner-s3 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}

/*inner_s2*/
.inner_s2 ul{
    display: flex;
    flex-wrap: wrap;
}
.inner_s2 li{
    position: relative;
    width: 30.5%;
    margin: .56rem 0  0 4.25%;
    border-radius: .2rem;
    background: #fff url("../images/n-img-8.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(188, 188, 188, 0.1011);
}
.inner_s2 li:nth-child(3n+1){
    margin-left: 0;
}
.inner_s2 li:nth-child(-n+3){
    margin-top: 0;
}
.inner_s2 li a{
    position: relative;
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    z-index: 2;
}
.inner_s2 li .pic{
    padding-top: 2.96rem;
}
.inner_s2 li time{
    position: absolute;
    left: 0;
    top: -.19rem;
    width: 1.31rem;
    font-size: .16rem;
    line-height: .38rem;
    color: #fff;
    background: #AA0203;
    text-align: center;
    border-radius: 0 50vw 50vw 0;
    z-index: 3;
    transition: .5s;
}
.inner_s2 li h3{
    font-size: .2rem;
    line-height: .32rem;
    color: #000000;
    height: .64rem;
    transition: .5s;
}
.inner_s2 li p{
    margin-top: .14rem;
    font-size: .16rem;
    line-height: .26rem;
    color: #666666;
    height: .52rem;
    transition: .5s;
}
.inner_s2 li .txt{
    position: relative;
    padding: .47rem .41rem;
}
.inner_s2 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203;
    box-shadow: 0 .02rem .29rem 0 rgba(170, 2, 3, 0.4724);
    border-radius: .2rem;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s2 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s2 li:hover p{
    color: #fff;
}
.inner_s2 li:hover time{
    background: #DEB668;
}
.inner_s2 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s2 {
    margin-top: .49rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}


.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display: none;
    }
    .inner-s2 .item2 li .icon img{
        max-width: .45rem;
        max-height: .45rem;
    }
    .inner-s2 .item2 li .icon{
        margin: 0 auto;
        width: 1.1rem;
        height: 1.1rem;
    }
    .inner-s2 .item2 li .show{
        flex: auto;
        width: 100%;
        margin: .1rem 0 0 ;
    }
    .inner-s2 .item2 li h3 span{
        font-size: .3rem;
    }
    .inner-s2 .item2 li h4 br{
        display: none;
    }
    .inner-s2 .item2 li h4{
        font-size: .18rem;
        line-height: 1.5;
        text-align: center;
    }
    .inner-s2 .item2 li h3{
        justify-content: center;
    }
    .inner-s2 .item2 li:hover .icon:before,
    .inner-s2 .item2 li:hover .icon:after{
        opacity: 0;
        visibility: hidden;
    }
    .inner-s2 .item2 li:hover .show{
        opacity: 1;
        visibility: visible;
    }
    .inner-s2 .item2 li:nth-child(2n+1){
        margin-top: 0;
    }
    .inner-s2 .item2 li{
        width: 16.5%;
        flex-wrap: wrap;
    }
    .inner-s2 .item2 ul{
        gap: .2rem 0;
    }
    .inner-s2 .item2{
        margin-top: .3rem;
        margin-bottom: .4rem;
    }
    .inner-tit h3{
        font-size: .28rem;
        line-height: .3rem;
    }
    .inner-tit h4{
        font-size: .2rem;
        margin-top: .05rem;
    }
    .inner-tit .tit:after{
        top: -.1rem;
        right: -.5rem;
        width: 0.69rem;
        height: 0.74rem;
    }
    .inner-s3 .list li time span,
    .inner-s4 .list li time span{
        font-size: .32rem;
    }
    .inner-s3 .list li time,
    .inner-s4 .list li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner-s3 .list li h3,
    .inner-s4 .list li h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner-s3 .list li p,
    .inner-s4 .list li p{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .02rem;
    }
    .inner-s3 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}


.inner-s5 .list ul{
    display: flex;
    flex-wrap: wrap;
}
.inner-s5 .list li{
    width: 31.5%;
    margin: .2rem 0 0 2%;
    position: relative;
}
.inner-s5 .list li:nth-child(-n+3){
    margin-top: 0;
}
.inner-s5 .list li:nth-child(3n+1){
    margin-left: 0;
}
.inner-s5 .list li a{
    display: flex;
    align-items: center;
    height: .66rem;
    padding: 0 .25rem;
    position: relative;
    z-index: 2;
}
.inner-s5 .list li .img{
    width: .24rem;
    height: .24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .1rem;
    flex-shrink: 0;
}
.inner-s5 .list li .img svg{
    display: block;
    width: 100%;
    height: 100%;
    color: #aa0203;
}
.inner-s5 .list li h3{
    flex: 1;
    font-size: .22rem;
    color: #333333;
}
.inner-s5 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border: .01rem solid #aa0203;
    border-radius: 50vw;
    transition: all .5s;
}
.inner-s5 .list li:hover .img svg{
    color: #ffffff;
}
.inner-s5 .list li:hover h3{
    color: #ffffff;
}
.inner-s5 .list li:hover:before{
    background: #aa0203;
}

.inner-s5 .list:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s5 .list{
    padding-top: .4rem;
    margin-top: .66rem;
    position: relative;
}

@media (max-width: 1025px) {
    .inner-s5 .list li{
        width: 32%;
        margin: 0;
    }
    .inner-s5 .list li a{
        height: .56rem;
    }
    .inner-s5 .list li a h3{
        font-size: .18rem;
    }
    .inner-s5 .list ul{
        gap: .2rem 2%;
    }
    .inner-s5 .list{
        margin-top: .3rem;
        padding-top: .2rem;
    }
}
@media (max-width: 769px) {
    .inner-s5 .list li{
        width: 49%;
    }
}
@media (max-width: 481px) {
    .inner-s5 .list li{
        width: 100%;
    }
}t li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}

/*inner_s2*/
.inner_s2 ul{
    display: flex;
    flex-wrap: wrap;
}
.inner_s2 li{
    position: relative;
    width: 30.5%;
    margin: .56rem 0  0 4.25%;
    border-radius: .2rem;
    background: #fff url("../images/n-img-8.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(188, 188, 188, 0.1011);
}
.inner_s2 li:nth-child(3n+1){
    margin-left: 0;
}
.inner_s2 li:nth-child(-n+3){
    margin-top: 0;
}
.inner_s2 li a{
    position: relative;
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    z-index: 2;
}
.inner_s2 li .pic{
    padding-top: 2.96rem;
}
.inner_s2 li time{
    position: absolute;
    left: 0;
    top: -.19rem;
    width: 1.31rem;
    font-size: .16rem;
    line-height: .38rem;
    color: #fff;
    background: #AA0203;
    text-align: center;
    border-radius: 0 50vw 50vw 0;
    z-index: 3;
    transition: .5s;
}
.inner_s2 li h3{
    font-size: .2rem;
    line-height: .32rem;
    color: #000000;
    height: .64rem;
    transition: .5s;
}
.inner_s2 li p{
    margin-top: .14rem;
    font-size: .16rem;
    line-height: .26rem;
    color: #666666;
    height: .52rem;
    transition: .5s;
}
.inner_s2 li .txt{
    position: relative;
    padding: .47rem .41rem;
}
.inner_s2 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203;
    box-shadow: 0 .02rem .29rem 0 rgba(170, 2, 3, 0.4724);
    border-radius: .2rem;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s2 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s2 li:hover p{
    color: #fff;
}
.inner_s2 li:hover time{
    background: #DEB668;
}
.inner_s2 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s2 {
    margin-top: .49rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}



.inner_s5 .dtl_l{
    width: 71.625%;
}
.inner_s5 .dtl_tit h1{
    font-size: .32rem;
    line-height: .42rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.inner_s5 .dtl_tit h2{
    font-size: .28rem;
    line-height: .38rem;
    color: #333333;
    text-align: center;
}
.inner_s5 .dtl_tit .cont{
    margin-top: .28rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner_s5 .dtl_tit .cont .li{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
    margin: 0 .18rem;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
    /* text-indent: 2em; */
    word-break: break-all;
}
.inner_s5 .dtl_txt p span{ 
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
   
    word-break: break-all;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}
.inner_s5 .dtl_r .top a:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.inner_s5 .dtl_r .top{
    margin-top: .41rem;
}
.inner_s5 .dtl_r .bot li a{
    display: block;
}
.inner_s5 .dtl_r .bot li time{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
    margin-left: -.1rem;
}
.inner_s5 .dtl_r .bot li time img{
    display: block;
    width: .2rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r .bot li h3{
    font-size: .18rem;
    line-height: .3rem;
    color: #333333;
    height: .6rem;
    padding-left: .21rem;
    margin-top: .13rem;
    transition: .5s;
}
.inner_s5 .dtl_r .bot li:hover h3{
    color: #AA0203;
}
.inner_s5 .dtl_r .bot li + li{
    margin-top: .32rem;
}
.inner_s5 .dtl_r .bot:before{
    position: absolute;
    content: '';
    left: 0;
    top: .1rem;
    bottom: -.35rem;
    width: 1px;
    background: #979797;
    opacity: .4;
}
.inner_s5 .dtl_r .bot{
    margin-top: .52rem;
    position: relative;
}

.inner_s5 .detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .detail2 .dtl_tit h1{
    margin: .23rem 0;
}
.inner_s5 .detail2 .dtl_tit .cont{
    margin-top: .38rem;
}
.inner_s5 .detail2 .dtl_r{
    margin-top: 0;
}


@charset "UTF-8";
.foot{
    margin-top: 0;
    padding-top: .54rem;
    background-image: url("../images/foot2.png");
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .67rem;
}

.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.n_banner .img img{
    display: block;
    width: 100%;
}
.n_banner .img:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 68.71%;
    background: url("../images/n-mask.png") repeat-x top center/auto 99%;
}
.n_banner .img:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 31.4%;
    background: url("../images/n-mask2.png") repeat-x top center/auto 99%;
}
.n_banner .n_top{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .2rem;
    z-index: 5;
}
.posi{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.posi img{
    display: block;
    width: .15rem;
    margin-right: .1rem;
}
.posi *{
    display: block;
    font-size: .14rem;
    line-height: 1;
    color: #FFFFFF;
    transition: .5s;
}
.posi span:not(:nth-child(2)){
    margin: 0 .04rem;
}
.posi a:hover,
.posi a.active{
    color: #AA0203;
}
.n_banner,
.n_banner .img{
    position: relative;
}

.n_erji li{
    position: relative;
}
.n_erji li + li{
    margin-left: .62rem;
}
.n_erji li h3{
    position: relative;
    font-size: .18rem;
    line-height: 1rem;
    color: #333333;
    min-width: 1.4rem;
    padding: 0 .1rem;
    text-align: center;
    transition: .5s;
}
.n_erji li a{
    display: block;
}
.n_erji li.active h3,
.n_erji li:hover h3{
    color: #AA0203;
    background: rgba(170, 2, 3, 0.1);
}
.n_dh{
    background: #fff;
    box-shadow: 0 0 .73rem rgba(207, 97, 97, 0.14);
}
.inner_page .bg-1{
    position: absolute;
    right: 0;
    top: -2.07rem;
    bottom: 2.82rem;
    width: 64.32vw;
    background: url("../images/n-img-5.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page .bg-2{
    position: absolute;
    left: 0;
    top: 6.21rem;
    bottom: -1.49rem;
    width: 53.65vw;
    background: url("../images/n-img-6.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page{
    position: relative;
    padding: 1.07rem 0 1.96rem;
    background: url("../images/inner-page.png") no-repeat bottom center/100% auto;
}

.n_title001 h2:after{
    position: absolute;
    content: '';
    right: -.19rem;
    bottom: 0;
    width: .6rem;
    height: .7rem;
    background: url("../images/tit-1.png") no-repeat 50%/100%;
}
.n_title001 h2{
    font-size: .42rem;
    line-height: 1;
    color: #333333;
    position: relative;
}
.n_title001 h4{
    font-size: .14rem;
    line-height: 1;
    color: #333333;
    opacity: .4;
    text-transform: uppercaset-qrcode .help p{font-weight:normal;line-height: .16rem;padding:0;margin:0}
.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;top: -16px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color: transparent transparent #fff transparent;}
.social-share .icon-wechat:hover .wechat-qrcode{display:block}
.social-share .icon-wechat{background: url("../images/n-img-13.png") no-repeat 50%/100%}
.social-share .icon-weibo{background: url("../images/n-img-14.png") no-repeat 50%/100%}
.social-share .icon-qq{background: url("../images/n-img-15.png") no-repeat 50%/100%}

#share-2{
    display: flex;
    align-items: center;
    margin: 0 .18rem;
}
#share-2 span{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}

.inner-s1 .item2 .play{
    position: absolute;
    right: .27rem;
    bottom: .29rem;
    width: .68rem;
    height: .68rem;
    background: url("../images/n-img-9.png") no-repeat 50%/100%;
    z-index: 2;
}
.inner-s1 .item3 .li h3{
    font-size: .32rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s1 .item3 .li h4{
    font-size: .28rem;
    line-height: .36rem;
    color: #deb668;
    font-weight: 700;
    margin-top: .14rem;
}
.inner-s1 .item3 .li:before{
    position: absolute;
    content: '';
    left: 0;
    top: .72rem;
    width: .19rem;
    height: .19rem;
    background: url("../images/n-img-10.png") no-repeat 50%/100%;
}
.inner-s1 .item3 .li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,#deb668 0%, rgba(222, 182, 104, 0) 80%);
}
.inner-s1 .item3 .li:last-child:after{
    display: none;
}
.inner-s1 .item3 .li{
    padding: .6rem .5rem .7rem;
    position: relative;
    z-index: 2;
}
.inner-s1 .item3:after{
    position: absolute;
    content: '';
    top: 50%;
    right: -1.43rem;
    width: 4.66rem;
    height: 4.3rem;
    background: url("../images/n-img-11.png") no-repeat 50%/100%;
    transform: translateY(-50%);
    pointer-events: none;
}
.inner-s1 .item3{
    padding: .64rem 0 .07rem;
    position: relative;
}

/*inner-s2*/

.inner-s2 .item1 h3{
    font-size: .48rem;
    line-height: 1;
    color: #aa0203;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s2 .item1 .desc{
    font-size: .18rem;
    line-height: .36rem;
    color: #333333;
    text-indent: 2em;
    margin-top: .56rem;
}
.inner-s2 .item1 .desc p + p{
    margin-top: .32rem;
}
.inner-s2 .item2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner-s2 .item2  li{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s2 .item2 li .num{
    position: relative;

}
.inner-s2 .item2 li .icon{
    position: relative;
    width: 1.52rem;
    height: 1.52rem;
    background: url("../images/n-img-23.png") no-repeat 50%/auto 100%;
}
.inner-s2 .item2 li .icon img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: .69rem;
    max-height: .72rem;
    margin: auto;
    transition: all .5s;
}
.inner-s2 .item2 li .icon .img-2{
    opacity: 0;
}
.inner-s2 .item2 li .hide{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    z-index: 2;
}
.inner-s2 .item2 li .hide h3,
.inner-s2 .item2 li .hide h4{
    color: #ffffff;
    text-align: center;
}
.inner-s2 .item2 li .hide h3{
    justify-content: center;
}
.inner-s2 .item2 li .icon:before{
    position: absolute;
    content: '';
    top: -.44rem;
    left: -.39rem;
    width: 2.63rem;
    height: 2.42rem;
    background: url("../images/n-img-24.png") no-repeat 50%/100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .icon:after{
    position: absolute;
    content: '';
    top: -0.05rem;
    bottom: -.05rem;
    right: -.05rem;
    left: -.05rem;
    background: #AA0203;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .num .line{
    position: absolute;
    left: 50%;
    top: calc(100% + .05rem);
    width: 1px;
    height: 2.24rem;
    background: #b31a1b;
    transform: translateX(-50%);
}
.inner-s2 .item2 li h3{
    display: flex;
    align-items: baseline;
    font-size: .16rem;
    line-height: 1;
    color: #deb668;
    font-weight: 700;
}
.inner-s2 .item2 li h3 span{
    display: block;
    font-size: .5rem;
    line-height: 1;
    margin-right: .03rem;
}
.inner-s2 .item2 li h4{
    font-size: .16rem;
    line-height: .24rem;
    color: #333333;
}
.inner-s2 .item2 li .show{
    flex: 1;
    margin-top: .05rem;
    margin-left: -.25rem;
}
.inner-s2 .item2 li:nth-child(2n+1){
    margin-top: .8rem;
}
.inner-s2 .item2 li.li1 .num .line{
    height: 0.58rem;
}
.inner-s2 .item2 li.li2 .num .line{
    height: 2.08rem;
}
.inner-s2 .item2 li.li3 .num .line{
    height: 0.88rem;
}
.inner-s2 .item2 li.li4 .num .line{
    height: 1.95rem;
}
.inner-s2 .item2 li.li5 .num .line{
    height: 0.9rem;
}
.inner-s2 .item2 li.li6 .num .line{
    height: 1.66rem;
}
.inner-s2 .item2 li:hover .icon .img-1{
    opacity: 1;
}
.inner-s2 .item2 li:hover .icon .img-2{
    opacity: .2;
}
.inner-s2 .item2 li:hover .show{
    opacity: 0;
    visibility: hidden;
}
.inner-s2 .item2 li:hover .hide{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:after{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:before{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2{
    margin-top: 1rem;
}

.inner-tit{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-tit h3{
    font-size: .52rem;
    line-height: 1;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative;
}

.inner-s3 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: .76rem 0 .86rem .3rem;
}
.inner-s3 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: 1.1rem;
    transition: all .5s;
}
.inner-s3 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s3 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s3 .list li h3{
    font-size: .28rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s3 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .7;
    transition: all .5s;
}
.inner-s3 .list li .jt{
    align-self: center;
    margin-left: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s3 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-29.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s3 .list li:hover time,
.inner-s3 .list li:hover time span{
    color: #ffffff;
}
.inner-s3 .list li:hover h3,
.inner-s3 .list li:hover p{
    color: #ffffff;
}
.inner-s3 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s3 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner-s3 .list li{
    position: relative;
}
.inner-s3 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list{
    position: relative;
    margin-top: .66rem;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .69rem;
}
.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display#fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        per .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100%;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_ty: visible;
}
.n_sanji li.active a,
.n_sanji li:hover a{
    color: #fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100%;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_s10 .item2 .form .top .li .spans{
    display: flex;
    flex-wrap: wrap;
}
.inner_s10 .item2 .form .top .li .spans span{
    display: block;
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    padding-left: .23rem;
    position: relative;
    cursor: pointer;
    margin-right: .49rem;
    margin-bottom: .1rem;
}
.inner_s10 .item2 .form .top .li .spans span:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    border: 1px solid #AA0203;
    opacity: .5;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span:after{
    position: absolute;
    content: '';
    width: .05rem;
    height: .05rem;
    left: .045rem;
    top: 50%;
    border-radius: 50%;
    background: #AA0203;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span.active:before,
.inner_s10 .item2 .form .top .li .spans span.active:after{
    opacity: 1;
}
.inner_s10 .item2 .form .top .li + .li{
    margin-top: .2rem;
}
.inner_s10 .item2 .form .top{
    margin-top: .2rem;
    margin-bottom: .52rem;
    padding-bottom: .42rem;
    border-bottom: 1px solid rgba(170, 2, 3, 0.2633);
}
.inner_s10 .item2 .form .bot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s10 .item2 .form .bot .li{
    width: 48.79%;
    margin-top: .3rem;
}
.inner_s10 .item2 .form .bot .li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s10 .item2 .form .bot .li h4{
    font-size: .2rem;
    line-height: .24rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .bot .li input{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    transition: .5s;
}
.inner_s10 .item2 .form .bot .li select{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    outline: none;
}
.inner_s10 .item2 .form .bot .li input::placeholder{
    color: rgba(51, 51, 51, 0.4);
}
.inner_s10 .item2 .form .bot .li input:focus{
    border-color: #AA0203;
}
.inner_s10 .item2 .form .bot .li .label{
    margin-top: .18rem;
}
.inner_s10 .item2 .form .bot .li1{
    width: 100%;
}
.inner_s10 .item2 .form .bot .li1 button{
    display: block;
    width: 2.06rem;
    font-size: .24rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
}
.inner_s10 .item2 .form {
    padding: .34rem .405rem ;
    margin-top: .5rem;
}
.inner_s10{
    padding: .53rem .36rem 0;
    background: url("../images/n-img-44.png") no-repeat top center/100% auto;
}

@media (max-width: 1025px) {
    .inner_s9{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s9 li a{
        padding: .2rem;
    }
    .inner_s9 li .pic {
        width: 1.8rem;
        height: 2.4rem;
    }
    .inner_s9 li .txt{
        width: calc(100% - 2rem);
        padding-right: 0;
    }
    .inner_s9 li h3{
        font-size: .22rem;
        line-height: .3rem;
    }
    .inner_s9 li p{
        font-size: .18rem;
        line-height: .28rem;
        height: 1.12rem;
        margin-top: .1rem;
    }
    .inner_s9 li{
        background-size: auto 60%;
    }
    .inner_s9 li + li{
        margin-top: .3rem;
    }
    .inner_s10 .itme-tit h2 span{
        font-size: .24rem;
        line-height: .3rem;
        margin: 0 .1rem;
    }
    .inner_s10 .itme-tit h2 i img{
        height: .1rem;
    }
    .inner_s10 .itme-tit h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s10 .item_con h3{
        font-size: .18rem;
        line-height: .28rem;
    }
    .inner_s10 .item_con .desc p{
        font-size: .16rem;
        line-height: 2;
    }
    .inner_s10 .item_con .desc p + p{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .desc{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .li + .li{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form h2{
        font-size: .2rem;
    }
    .inner_s10 .item2 .form .top .li h4{
        font-size: .16rem;
        line-height: .26rem;
    }
    .inner_s10 .item2 .form .top .li .spans span{
        font-size: .16rem;
        line-height: .26rem;
        margin: 0;
    }
    .inner_s10 .item2 .form .top .li .left{
        width: 1.3rem;
    }
    .inner_s10 .item2 .form .top .li .spans{
        gap: .1rem .2rem;
    }
    .inner_s10 .item2 .form .top .li + .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .top{
        margin-top: .2rem;
        margin-bottom: .2rem;
        padding-bottom: .2rem;
    }
    .inner_s10 .item2 .form .bot .li h4{
        font-size: .16rem;
    }
    .inner_s10 .item2 .form .bot .li .label{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li input{
        font-size: .15rem;
        height: .4rem;
        padding: 0 .1rem;
    }
    .inner_s10 .item2 .form .bot .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li1 button{
        font-size: .18rem;
        line-height: .4rem;
        width: 1.5rem;
    }
    .inner_s10 .item2 .form .bot .li1{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form{
        padding: 0;
        margin-top: .2rem;
    }
    .inner_s10 .item_con{
        margin-top: .2rem;
    }
    .inner_s10{
        padding: .2rem;
    }
}
@media (max-width: 769px) {
    .inner_s10 .itme-tit h2 i{
        display: none;
    }
    .inner_s10 .itme-tit h2{
        display: block;
        text-align: center;
    }
}
@media (max-width: 481px) {
    .inner_s9 li .pic {
        width: 1.4rem;
        height: 1.9rem;
    }
    .inner_s9 li .txt {
        width: calc(100% - 1.6rem);
    }
    .inner_s10 .item2 .form .bot .li{
        width: 100%;
    }
    .inner_s10 .item2 .form .bot{
        gap: .1rem 0;
    }
}

/*inner_s11*/

.inner_s11 li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #6666.45rem;
        max-height: .45rem;
    }
    .inner-s2 .item2 li .icon{
        margin: 0 auto;
        width: 1.1rem;
        height: 1.1rem;
    }
    .inner-s2 .item2 li .show{
        flex: auto;
        width: 100%;
        margin: .1rem 0 0 ;
    }
    .inner-s2 .item2 li h3 span{
        font-size: .3rem;
    }
    .inner-s2 .item2 li h4 br{
        display: none;
    }
    .inner-s2 .item2 li h4{
        font-size: .18rem;
        line-height: 1.5;
        text-align: center;
    }
    .inner-s2 .item2 li h3{
        justify-content: center;
    }
    .inner-s2 .item2 li:hover .icon:before,
    .inner-s2 .item2 li:hover .icon:after{
        opacity: 0;
        visibility: hidden;
    }
    .inner-s2 .item2 li:hover .show{
        opacity: 1;
        visibility: visible;
    }
    .inner-s2 .item2 li:nth-child(2n+1){
        margin-top: 0;
    }
    .inner-s2 .item2 li{
        width: 16.5%;
        flex-wrap: wrap;
    }
    .inner-s2 .item2 ul{
        gap: .2rem 0;
    }
    .inner-s2 .item2{
        margin-top: .3rem;
        margin-bottom: .4rem;
    }
    .inner-tit h3{
        font-size: .28rem;
        line-height: .3rem;
    }
    .inner-tit h4{
        font-size: .2rem;
        margin-top: .05rem;
    }
    .inner-tit .tit:after{
        top: -.1rem;
        right: -.5rem;
        width: 0.69rem;
        height: 0.74rem;
    }
    .inner-s3 .list li time span,
    .inner-s4 .list li time span{
        font-size: .32rem;
    }
    .inner-s3 .list li time,
    .inner-s4 .list li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner-s3 .list li h3,
    .inner-s4 .list li h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner-s3 .list li p,
    .inner-s4 .list li p{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .02rem;
    }
    .inner-s3 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}


.inner-s5 .list ul{
    display: flex;
    flex-wrap: wrap;
}
.inner-s5 .list li{
    width: 23.5%;
    margin: .2rem 0 0 2%;
    position: relative;
}
.inner-s5 .list li:nth-child(-n+4){
    margin-top: 0;
}
.inner-s5 .list li:nth-child(4n+1){
    margin-left: 0;
}
.inner-s5 .list li a{
    display: flex;
    align-items: center;
    height: .66rem;
    padding: 0 .25rem;
    position: relative;
    z-index: 2;
}
.inner-s5 .list li .img{
    width: .24rem;
    height: .24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .1rem;
    flex-shrink: 0;
}
.inner-s5 .list li .img svg{
    display: block;
    width: 100%;
    height: 100%;
    color: #aa0203;
}
.inner-s5 .list li h3{
    flex: 1;
    font-size: .22rem;
    color: #333333;
}
.inner-s5 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border: .01rem solid #aa0203;
    border-radius: 50vw;
    transition: all .5s;
}
.inner-s5 .list li:hover .img svg{
    color: #ffffff;
}
.inner-s5 .list li:hover h3{
    color: #ffffff;
}
.inner-s5 .list li:hover:before{
    background: #aa0203;
}

.inner-s5 .list:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s5 .list{
    padding-top: .4rem;
    margin-top: .66rem;
    position: relative;
}

@media (max-width: 1025px) {
    .inner-s5 .list li{
        width: 32%;
        margin: 0;
    }
    .inner-s5 .list li a{
        height: .56rem;
    }
    .inner-s5 .list li a h3{
        font-size: .18rem;
    }
    .inner-s5 .list ul{
        gap: .2rem 2%;
    }
    .inner-s5 .list{
        margin-top: .3rem;
        padding-top: .2rem;
    }
}
@media (max-width: 769px) {
    .inner-s5 .list li{
        width: 49%;
    }
}
@media (max-width: 481px) {
    .inner-s5 .list li{
        width: 100%;
    }
}t li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}

/*inner_s2*/
.inner_s2 ul{
    display: flex;
    flex-wrap: wrap;
}
.inner_s2 li{
    position: relative;
    width: 30.5%;
    margin: .56rem 0  0 4.25%;
    border-radius: .2rem;
    background: #fff url("../images/n-img-8.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(188, 188, 188, 0.1011);
}
.inner_s2 li:nth-child(3n+1){
    margin-left: 0;
}
.inner_s2 li:nth-child(-n+3){
    margin-top: 0;
}
.inner_s2 li a{
    position: relative;
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    z-index: 2;
}
.inner_s2 li .pic{
    padding-top: 2.96rem;
}
.inner_s2 li time{
    position: absolute;
    left: 0;
    top: -.19rem;
    width: 1.31rem;
    font-size: .16rem;
    line-height: .38rem;
    color: #fff;
    background: #AA0203;
    text-align: center;
    border-radius: 0 50vw 50vw 0;
    z-index: 3;
    transition: .5s;
}
.inner_s2 li h3{
    font-size: .2rem;
    line-height: .32rem;
    color: #000000;
    height: .64rem;
    transition: .5s;
}
.inner_s2 li p{
    margin-top: .14rem;
    font-size: .16rem;
    line-height: .26rem;
    color: #666666;
    height: .52rem;
    transition: .5s;
}
.inner_s2 li .txt{
    position: relative;
    padding: .47rem .41rem;
}
.inner_s2 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203;
    box-shadow: 0 .02rem .29rem 0 rgba(170, 2, 3, 0.4724);
    border-radius: .2rem;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s2 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s2 li:hover p{
    color: #fff;
}
.inner_s2 li:hover time{
    background: #DEB668;
}
.inner_s2 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s2 {
    margin-top: .49rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}



.inner_s5 .dtl_l{
    width: 71.625%;
}
.inner_s5 .dtl_tit h1{
    font-size: .32rem;
    line-height: .42rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.inner_s5 .dtl_tit h2{
    font-size: .28rem;
    line-height: .38rem;
    color: #333333;
    text-align: center;
}
.inner_s5 .dtl_tit .cont{
    margin-top: .28rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner_s5 .dtl_tit .cont .li{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
    margin: 0 .18rem;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
    /* text-indent: 2em; */
    word-break: break-all;
}
.inner_s5 .dtl_txt p span{ 
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
   
    word-break: break-all;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}
.inner_s5 .dtl_r .top a:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.inner_s5 .dtl_r .top{
    margin-top: .41rem;
}
.inner_s5 .dtl_r .bot li a{
    display: block;
}
.inner_s5 .dtl_r .bot li time{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
    margin-left: -.1rem;
}
.inner_s5 .dtl_r .bot li time img{
    display: block;
    width: .2rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r .bot li h3{
    font-size: .18rem;
    line-height: .3rem;
    color: #333333;
    height: .6rem;
    padding-left: .21rem;
    margin-top: .13rem;
    transition: .5s;
}
.inner_s5 .dtl_r .bot li:hover h3{
    color: #AA0203;
}
.inner_s5 .dtl_r .bot li + li{
    margin-top: .32rem;
}
.inner_s5 .dtl_r .bot:before{
    position: absolute;
    content: '';
    left: 0;
    top: .1rem;
    bottom: -.35rem;
    width: 1px;
    background: #979797;
    opacity: .4;
}
.inner_s5 .dtl_r .bot{
    margin-top: .52rem;
    position: relative;
}

.inner_s5 .detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .detail2 .dtl_tit h1{
    margin: .23rem 0;
}
.inner_s5 .detail2 .dtl_tit .cont{
    margin-top: .38rem;
}
.inner_s5 .detail2 .dtl_r{
    margin-top: 0;
}


@charset "UTF-8";
.foot{
    margin-top: 0;
    padding-top: .54rem;
    background-image: url("../images/foot2.png");
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .67rem;
}

.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.n_banner .img img{
    display: block;
    width: 100%;
}
.n_banner .img:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 68.71%;
    background: url("../images/n-mask.png") repeat-x top center/auto 99%;
}
.n_banner .img:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 31.4%;
    background: url("../images/n-mask2.png") repeat-x top center/auto 99%;
}
.n_banner .n_top{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .2rem;
    z-index: 5;
}
.posi{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.posi img{
    display: block;
    width: .15rem;
    margin-right: .1rem;
}
.posi *{
    display: block;
    font-size: .14rem;
    line-height: 1;
    color: #FFFFFF;
    transition: .5s;
}
.posi span:not(:nth-child(2)){
    margin: 0 .04rem;
}
.posi a:hover,
.posi a.active{
    color: #AA0203;
}
.n_banner,
.n_banner .img{
    position: relative;
}

.n_erji li{
    position: relative;
}
.n_erji li + li{
    margin-left: .62rem;
}
.n_erji li h3{
    position: relative;
    font-size: .18rem;
    line-height: 1rem;
    color: #333333;
    min-width: 1.4rem;
    padding: 0 .1rem;
    text-align: center;
    transition: .5s;
}
.n_erji li a{
    display: block;
}
.n_erji li.active h3,
.n_erji li:hover h3{
    color: #AA0203;
    background: rgba(170, 2, 3, 0.1);
}
.n_dh{
    background: #fff;
    box-shadow: 0 0 .73rem rgba(207, 97, 97, 0.14);
}
.inner_page .bg-1{
    position: absolute;
    right: 0;
    top: -2.07rem;
    bottom: 2.82rem;
    width: 64.32vw;
    background: url("../images/n-img-5.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page .bg-2{
    position: absolute;
    left: 0;
    top: 6.21rem;
    bottom: -1.49rem;
    width: 53.65vw;
    background: url("../images/n-img-6.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page{
    position: relative;
    padding: 1.07rem 0 1.96rem;
    background: url("../images/inner-page.png") no-repeat bottom center/100% auto;
}

.n_title001 h2:after{
    position: absolute;
    content: '';
    right: -.19rem;
    bottom: 0;
    width: .6rem;
    height: .7rem;
    background: url("../images/tit-1.png") no-repeat 50%/100%;
}
.n_title001 h2{
    font-size: .42rem;
    line-height: 1;
    color: #333333;
    position: relative;
}
.n_title001 h4{
    font-size: .14rem;
    line-height: 1;
    color: #333333;
    opacity: .4;
    text-transform: uppercaset-qrcode .help p{font-weight:normal;line-height: .16rem;padding:0;margin:0}
.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;top: -16px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color: transparent transparent #fff transparent;}
.social-share .icon-wechat:hover .wechat-qrcode{display:block}
.social-share .icon-wechat{background: url("../images/n-img-13.png") no-repeat 50%/100%}
.social-share .icon-weibo{background: url("../images/n-img-14.png") no-repeat 50%/100%}
.social-share .icon-qq{background: url("../images/n-img-15.png") no-repeat 50%/100%}

#share-2{
    display: flex;
    align-items: center;
    margin: 0 .18rem;
}
#share-2 span{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}

.inner-s1 .item2 .play{
    position: absolute;
    right: .27rem;
    bottom: .29rem;
    width: .68rem;
    height: .68rem;
    background: url("../images/n-img-9.png") no-repeat 50%/100%;
    z-index: 2;
}
.inner-s1 .item3 .li h3{
    font-size: .32rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s1 .item3 .li h4{
    font-size: .28rem;
    line-height: .36rem;
    color: #deb668;
    font-weight: 700;
    margin-top: .14rem;
}
.inner-s1 .item3 .li:before{
    position: absolute;
    content: '';
    left: 0;
    top: .72rem;
    width: .19rem;
    height: .19rem;
    background: url("../images/n-img-10.png") no-repeat 50%/100%;
}
.inner-s1 .item3 .li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,#deb668 0%, rgba(222, 182, 104, 0) 80%);
}
.inner-s1 .item3 .li:last-child:after{
    display: none;
}
.inner-s1 .item3 .li{
    padding: .6rem .5rem .7rem;
    position: relative;
    z-index: 2;
}
.inner-s1 .item3:after{
    position: absolute;
    content: '';
    top: 50%;
    right: -1.43rem;
    width: 4.66rem;
    height: 4.3rem;
    background: url("../images/n-img-11.png") no-repeat 50%/100%;
    transform: translateY(-50%);
    pointer-events: none;
}
.inner-s1 .item3{
    padding: .64rem 0 .07rem;
    position: relative;
}

/*inner-s2*/

.inner-s2 .item1 h3{
    font-size: .48rem;
    line-height: 1;
    color: #aa0203;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s2 .item1 .desc{
    font-size: .18rem;
    line-height: .36rem;
    color: #333333;
    text-indent: 2em;
    margin-top: .56rem;
}
.inner-s2 .item1 .desc p + p{
    margin-top: .32rem;
}
.inner-s2 .item2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner-s2 .item2  li{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s2 .item2 li .num{
    position: relative;

}
.inner-s2 .item2 li .icon{
    position: relative;
    width: 1.52rem;
    height: 1.52rem;
    background: url("../images/n-img-23.png") no-repeat 50%/auto 100%;
}
.inner-s2 .item2 li .icon img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: .69rem;
    max-height: .72rem;
    margin: auto;
    transition: all .5s;
}
.inner-s2 .item2 li .icon .img-2{
    opacity: 0;
}
.inner-s2 .item2 li .hide{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    z-index: 2;
}
.inner-s2 .item2 li .hide h3,
.inner-s2 .item2 li .hide h4{
    color: #ffffff;
    text-align: center;
}
.inner-s2 .item2 li .hide h3{
    justify-content: center;
}
.inner-s2 .item2 li .icon:before{
    position: absolute;
    content: '';
    top: -.44rem;
    left: -.39rem;
    width: 2.63rem;
    height: 2.42rem;
    background: url("../images/n-img-24.png") no-repeat 50%/100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .icon:after{
    position: absolute;
    content: '';
    top: -0.05rem;
    bottom: -.05rem;
    right: -.05rem;
    left: -.05rem;
    background: #AA0203;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .num .line{
    position: absolute;
    left: 50%;
    top: calc(100% + .05rem);
    width: 1px;
    height: 2.24rem;
    background: #b31a1b;
    transform: translateX(-50%);
}
.inner-s2 .item2 li h3{
    display: flex;
    align-items: baseline;
    font-size: .16rem;
    line-height: 1;
    color: #deb668;
    font-weight: 700;
}
.inner-s2 .item2 li h3 span{
    display: block;
    font-size: .5rem;
    line-height: 1;
    margin-right: .03rem;
}
.inner-s2 .item2 li h4{
    font-size: .16rem;
    line-height: .24rem;
    color: #333333;
}
.inner-s2 .item2 li .show{
    flex: 1;
    margin-top: .05rem;
    margin-left: -.25rem;
}
.inner-s2 .item2 li:nth-child(2n+1){
    margin-top: .8rem;
}
.inner-s2 .item2 li.li1 .num .line{
    height: 0.58rem;
}
.inner-s2 .item2 li.li2 .num .line{
    height: 2.08rem;
}
.inner-s2 .item2 li.li3 .num .line{
    height: 0.88rem;
}
.inner-s2 .item2 li.li4 .num .line{
    height: 1.95rem;
}
.inner-s2 .item2 li.li5 .num .line{
    height: 0.9rem;
}
.inner-s2 .item2 li.li6 .num .line{
    height: 1.66rem;
}
.inner-s2 .item2 li:hover .icon .img-1{
    opacity: 1;
}
.inner-s2 .item2 li:hover .icon .img-2{
    opacity: .2;
}
.inner-s2 .item2 li:hover .show{
    opacity: 0;
    visibility: hidden;
}
.inner-s2 .item2 li:hover .hide{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:after{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:before{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2{
    margin-top: 1rem;
}

.inner-tit{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-tit h3{
    font-size: .52rem;
    line-height: 1;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative;
}

.inner-s3 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: .76rem 0 .86rem .3rem;
}
.inner-s3 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: 1.1rem;
    transition: all .5s;
}
.inner-s3 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s3 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s3 .list li h3{
    font-size: .28rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s3 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .7;
    transition: all .5s;
}
.inner-s3 .list li .jt{
    align-self: center;
    margin-left: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s3 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-29.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s3 .list li:hover time,
.inner-s3 .list li:hover time span{
    color: #ffffff;
}
.inner-s3 .list li:hover h3,
.inner-s3 .list li:hover p{
    color: #ffffff;
}
.inner-s3 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s3 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner-s3 .list li{
    position: relative;
}
.inner-s3 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list{
    position: relative;
    margin-top: .66rem;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .69rem;
}
.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display#fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        per .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100%;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_ty: visible;
}
.n_sanji li.active a,
.n_sanji li:hover a{
    color: #fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100%;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_s10 .item2 .form .top .li .spans{
    display: flex;
    flex-wrap: wrap;
}
.inner_s10 .item2 .form .top .li .spans span{
    display: block;
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    padding-left: .23rem;
    position: relative;
    cursor: pointer;
    margin-right: .49rem;
    margin-bottom: .1rem;
}
.inner_s10 .item2 .form .top .li .spans span:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    border: 1px solid #AA0203;
    opacity: .5;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span:after{
    position: absolute;
    content: '';
    width: .05rem;
    height: .05rem;
    left: .045rem;
    top: 50%;
    border-radius: 50%;
    background: #AA0203;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span.active:before,
.inner_s10 .item2 .form .top .li .spans span.active:after{
    opacity: 1;
}
.inner_s10 .item2 .form .top .li + .li{
    margin-top: .2rem;
}
.inner_s10 .item2 .form .top{
    margin-top: .2rem;
    margin-bottom: .52rem;
    padding-bottom: .42rem;
    border-bottom: 1px solid rgba(170, 2, 3, 0.2633);
}
.inner_s10 .item2 .form .bot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s10 .item2 .form .bot .li{
    width: 48.79%;
    margin-top: .3rem;
}
.inner_s10 .item2 .form .bot .li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s10 .item2 .form .bot .li h4{
    font-size: .2rem;
    line-height: .24rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .bot .li input{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    transition: .5s;
}
.inner_s10 .item2 .form .bot .li select{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    outline: none;
}
.inner_s10 .item2 .form .bot .li input::placeholder{
    color: rgba(51, 51, 51, 0.4);
}
.inner_s10 .item2 .form .bot .li input:focus{
    border-color: #AA0203;
}
.inner_s10 .item2 .form .bot .li .label{
    margin-top: .18rem;
}
.inner_s10 .item2 .form .bot .li1{
    width: 100%;
}
.inner_s10 .item2 .form .bot .li1 button{
    display: block;
    width: 2.06rem;
    font-size: .24rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
}
.inner_s10 .item2 .form {
    padding: .34rem .405rem ;
    margin-top: .5rem;
}
.inner_s10{
    padding: .53rem .36rem 0;
    background: url("../images/n-img-44.png") no-repeat top center/100% auto;
}

@media (max-width: 1025px) {
    .inner_s9{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s9 li a{
        padding: .2rem;
    }
    .inner_s9 li .pic {
        width: 1.8rem;
        height: 2.4rem;
    }
    .inner_s9 li .txt{
        width: calc(100% - 2rem);
        padding-right: 0;
    }
    .inner_s9 li h3{
        font-size: .22rem;
        line-height: .3rem;
    }
    .inner_s9 li p{
        font-size: .18rem;
        line-height: .28rem;
        height: 1.12rem;
        margin-top: .1rem;
    }
    .inner_s9 li{
        background-size: auto 60%;
    }
    .inner_s9 li + li{
        margin-top: .3rem;
    }
    .inner_s10 .itme-tit h2 span{
        font-size: .24rem;
        line-height: .3rem;
        margin: 0 .1rem;
    }
    .inner_s10 .itme-tit h2 i img{
        height: .1rem;
    }
    .inner_s10 .itme-tit h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s10 .item_con h3{
        font-size: .18rem;
        line-height: .28rem;
    }
    .inner_s10 .item_con .desc p{
        font-size: .16rem;
        line-height: 2;
    }
    .inner_s10 .item_con .desc p + p{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .desc{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .li + .li{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form h2{
        font-size: .2rem;
    }
    .inner_s10 .item2 .form .top .li h4{
        font-size: .16rem;
        line-height: .26rem;
    }
    .inner_s10 .item2 .form .top .li .spans span{
        font-size: .16rem;
        line-height: .26rem;
        margin: 0;
    }
    .inner_s10 .item2 .form .top .li .left{
        width: 1.3rem;
    }
    .inner_s10 .item2 .form .top .li .spans{
        gap: .1rem .2rem;
    }
    .inner_s10 .item2 .form .top .li + .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .top{
        margin-top: .2rem;
        margin-bottom: .2rem;
        padding-bottom: .2rem;
    }
    .inner_s10 .item2 .form .bot .li h4{
        font-size: .16rem;
    }
    .inner_s10 .item2 .form .bot .li .label{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li input{
        font-size: .15rem;
        height: .4rem;
        padding: 0 .1rem;
    }
    .inner_s10 .item2 .form .bot .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li1 button{
        font-size: .18rem;
        line-height: .4rem;
        width: 1.5rem;
    }
    .inner_s10 .item2 .form .bot .li1{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form{
        padding: 0;
        margin-top: .2rem;
    }
    .inner_s10 .item_con{
        margin-top: .2rem;
    }
    .inner_s10{
        padding: .2rem;
    }
}
@media (max-width: 769px) {
    .inner_s10 .itme-tit h2 i{
        display: none;
    }
    .inner_s10 .itme-tit h2{
        display: block;
        text-align: center;
    }
}
@media (max-width: 481px) {
    .inner_s9 li .pic {
        width: 1.4rem;
        height: 1.9rem;
    }
    .inner_s9 li .txt {
        width: calc(100% - 1.6rem);
    }
    .inner_s10 .item2 .form .bot .li{
        width: 100%;
    }
    .inner_s10 .item2 .form .bot{
        gap: .1rem 0;
    }
}

/*inner_s11*/

.inner_s11 li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #6666
}



    x: 1;
    position: relative;
    overflow: hidden;
    padding-right: 2.14rem;
}
.inner_s3 li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner_s3 li:after{
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: #AA0203 url("../images/n-img-10.png") no-repeat left bottom/contain;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: .5s;
}
.inner_s3 li{
    position: relative;
}
.inner_s3 li:hover time,
.inner_s3 li:hover time span{
    color: #fff;
}
.inner_s3 li:hover h3{
    color: #fff;
}
.inner_s3 li:hover p{
    color: #fff;
}
.inner_s3 li:hover .txt:after{
    background-image: url("../images/n-img-3.png");
}
.inner_s3 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s3:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner_s3{
    margin-top: .47rem;
    position: relative;
}

/*inner_s4*/

.inner_s4 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s4 li{
    width: 48.25%;
    position: relative;
    margin-top: .42rem;
    background: #fff url("../images/n-img-11.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .12rem 0 rgba(227, 227, 227, 0.5);
}
.inner_s4 li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s4 li a{
    position: relative;
    z-index: 2;
    padding: .39rem .68rem .39rem .43rem;
    display: flex;
    align-items: flex-start;
}
.inner_s4 li time{
    display: block;
    color: #AA0203;
    margin-right: .1rem;
    flex-shrink: 0;
    transition: .5s;
}
.inner_s4 li time span{
    display: block;
    font-size: .24rem;
    line-height: .32rem;
}
.inner_s4 li time em{
    display: block;
    font-size: .18rem;
    line-height: .21rem;
}
.inner_s4 li .line{
    display: block;
    width: .32rem;
    height: 1px;
    background: #AA0203;
    opacity: .3;
    flex-shrink: 0;
    margin: .15rem .1rem 0 0;
    transition: .5s;
}
.inner_s4 li h3{
    flex: 1;
    font-size: .2rem;
    line-height: .32rem;
    color: #333333;
    height: .64rem;
    transition: .5s;
}
.inner_s4 li:before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    width: .06rem;
    background: #AA0203;
}
.inner_s4 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203 url('../images/n-img-12.png') no-repeat bottom right/contain;
    box-shadow: 0 .02rem .12rem 0 rgba(170, 2, 3, 0.4963);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s4 li:hover time{
    color: #fff;
}
.inner_s4 li:hover .line{
    background: #fff;
}
.inner_s4 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s4 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s4 {
    margin-top: .48rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s5*/

.inner_s5 .dtl_l{
    width: 71.625%;
}
.inner_s5 .dtl_tit h1{
    font-size: .32rem;
    line-height: .42rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.inner_s5 .dtl_tit h2{
    font-size: .28rem;
    line-height: .38rem;
    color: #333333;
    text-align: center;
}
.inner_s5 .dtl_tit .cont{
    margin-top: .28rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner_s5 .dtl_tit .cont .li{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
    margin: 0 .18rem;
}
/* share */
.share{}
.social-share{display: flex;align-items: center;justify-content: flex-end;}
.social-share *{}
.social-share .icon-tencent:before{content:"\f07a"}
.social-share .icon-qq:before{content:"\f11a"}
.social-share .icon-weibo:before{content:"\f12a"}
.social-share .icon-wechat:before{content:"\f09a"}
.social-share .icon-douban:before{content:"\f10a"}
.social-share .icon-heart:before{content:"\f20a"}
.social-share .icon-like:before{content:"\f00a"}
.social-share .icon-qzone:before{content:"\f08a"}
.social-share .icon-linkedin:before{content:"\f01a"}
.social-share .icon-diandian:before{content:"\f05a"}
.social-share .icon-facebook:before{content:"\f03a"}
.social-share .icon-google:before{content:"\f04a"}
.social-share .icon-twitter:before{content:"\f06a"}
.social-share a:before{display:none}
.social-share a{position:relative;text-decoration:none;margin:0 .04rem 0;display:inline-block;outline:none;}
.social-share .social-share-icon{position:relative;display:inline-block;width: 0.18rem;height: 0.18rem;font-size: 0.16rem;border-radius: 50%;line-height: 0.18rem;color: #fff;text-align:center;vertical-align:middle;transition: 0.6s ease-out 0s;background: #fff;}
.social-share .social-share-icon:hover{}
.social-share .icon-weibo{}
.social-share .icon-weibo:hover{}
.social-share .icon-tencent{color:#56b6e7;border-color:#56b6e7}
.social-share .icon-tencent:hover{background:#56b6e7}
.social-share .icon-qq{}
.social-share .icon-qq:hover{}
.social-share .icon-qzone{color:#FDBE3D;border-color:#FDBE3D;}
.social-share .icon-qzone:hover{background: #FDBE3D;}
.social-share .icon-douban{color:#33b045;border-color:#33b045}
.social-share .icon-douban:hover{background:#33b045}
.social-share .icon-linkedin{color:#0077B5;border-color:#0077B5}
.social-share .icon-linkedin:hover{background:#0077B5}
.social-share .icon-facebook{color:#44619D;border-color:#44619D}
.social-share .icon-facebook:hover{background:#44619D}
.social-share .icon-google{color:#db4437;border-color:#db4437}
.social-share .icon-google:hover{background:#db4437}
.social-share .icon-twitter{color:#55acee;border-color:#55acee}
.social-share .icon-twitter:hover{background:#55acee}
.social-share .icon-diandian{color:#307DCA;border-color:#307DCA}
.social-share .icon-diandian:hover{background:#307DCA}
.social-share .icon-wechat{position:relative;color:#7bc549;border-color: #7bc549 !important;}
.social-share .icon-wechat:hover{}
.social-share .icon-wechat .wechat-qrcode{display:none;border:1px solid #eee;position:absolute;z-index: 100;bottom: -2.05rem;left: -.9rem;width: 2rem;min-height: 1.92rem;color:#666;font-size:12px;text-align:center;background-color:#fff;box-shadow:0 2px 10px #aaa;transition:all 200ms;-webkit-tansition:all 350ms;-moz-transition:all 350ms;top: auto;}
.social-share .icon-wechat .wechat-qrcode.bottom{top:40px;left:-84px}
.social-share .icon-wechat .wechat-qrcode.bottom:after{display:none}
.social-share .icon-wechat .wechat-qrcode h4{font-weight:normal;height: .26rem;line-height: .26rem;font-size: .12rem;background-color:#f3f3f3;margin:0;padding:0;color:#777}
.social-share .icon-wechat .wechat-qrcode .qrcode{width: 1.05rem;margin: .1rem auto;}
.social-share .icon-wechat .wechat-qrcode .qrcode img{max-width: 100%;margin: 0 auto;display: block;}
.social-share .icon-wechat .wechat-qrcode .qrcode table{margin:0 !important}
.social-share .icon-wechat .wechat-qrcode .help p{font-weight:normal;line-height: .16rem;padding:0;margin:0}
.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;top: -16px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color: transparent transparent #fff transparent;}
.social-share .icon-wechat:hover .wechat-qrcode{display:block}
.social-share .icon-wechat{background: url("../images/n-img-13.png") no-repeat 50%/100%}
.social-share .icon-weibo{background: url("../images/n-img-14.png") no-repeat 50%/100%}
.social-share .icon-qq{background: url("../images/n-img-15.png") no-repeat 50%/100%}

#share-2{
    display: flex;
    align-items: center;
    margin: 0 .18rem;
}
#share-2 span{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    /* text-indent: 2em; */
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}
.inner_s5 .dtl_r .top a:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.inner_s5 .dtl_r .top{
    margin-top: .41rem;
}
.inner_s5 .dtl_r .bot li a{
    display: block;
}
.inner_s5 .dtl_r .bot li time{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
    margin-left: -.1rem;
}
.inner_s5 .dtl_r .bot li time img{
    display: block;
    width: .2rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r .bot li h3{
    font-size: .18rem;
    line-height: .3rem;
    color: #333333;
    height: .6rem;
    padding-left: .21rem;
    margin-top: .13rem;
    transition: .5s;
}
.inner_s5 .dtl_r .bot li:hover h3{
    color: #AA0203;
}
.inner_s5 .dtl_r .bot li + li{
    margin-top: .32rem;
}
.inner_s5 .dtl_r .bot:before{
    position: absolute;
    content: '';
    left: 0;
    top: .1rem;
    bottom: -.35rem;
    width: 1px;
    background: #979797;
    opacity: .4;
}
.inner_s5 .dtl_r .bot{
    margin-top: .52rem;
    position: relative;
}

.inner_s5 .detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .detail2 .dtl_tit h1{
    margin: .23rem 0;
}
.inner_s5 .detail2 .dtl_tit .cont{
    margin-top: .38rem;
}
.inner_s5 .detail2 .dtl_r{
    margin-top: 0;
}

/*inner_s6*/
.inner_s6 .item1 img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: .89rem;
}
.inner_s6 .item1{
    padding: .78rem 0 .69rem;
    background: url("../images/n-img-21.png") no-repeat 50%/cover;
}
.inner_s6 .item2 .h2 h2:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -.16rem;
    width: .44rem;
    height: .53rem;
    background: url("../images/s3-img-2.png") no-repeat 50%/100%;
}
.inner_s6 .item2 .h2 h2{
    position: relative;
    font-size: .26rem;
    line-height: .36rem;
    color: #333333;
    padding-left: .28rem;
    font-family: 'SourceHanSerifCN-Bold',sans-serif;
}
.inner_s6 .item2 .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
}
.inner_s6 .item2 .desc{
    margin-top: .42rem;
}
.inner_s6 .item2 .desc img{max-width:100%;border:0 !important;}
.inner_s6 .item2 + .item2{
    margin-top: .91rem;
}
.inner_s6{
    margin-top: .48rem;
    padding-top: .36rem;
    padding-bottom: .96rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
    /* background: url("../images/n-img-23.png") no-repeat bottom right/contain; */
}

/*inner_s7*/
.n_sanji ul{
    display: flex;
    flex-wrap: wrap;
}
.n_sanji li{
    position: relative;
}
.n_sanji li + li{
    margin-left: .53rem;
}
.n_sanji li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .24rem;
    line-height: .49rem;
    color: #666666;
    padding: 0 .24rem;
    border-radius: 50vw;
    transition: .5s;
}
.n_sanji li a span{
    display: block;
    margin: 0 .17rem;
    flex-shrink: 0;
}
.n_sanji li a:before,
.n_sanji li a:after{
    content: '';
    width: .04rem;
    height: .04rem;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.n_sanji li.active a:before,
.n_sanji li:hover a:before,
.n_sanji li.active a:after,
.n_sanji li:hover a:after{
    opacity: 1;
    visibility: visible;
}
.n_sanji li.active a,
.n_sanji li:hover a{
    color: #fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65% !important;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 30.33% !important;
        margin: 0 1% !important;
    }
    .inner_s2 ul{
        gap: .3rem 1%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
        max-width: none;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100% !important;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_s10 .item2 .form .top .li .spans{
    display: flex;
    flex-wrap: wrap;
}
.inner_s10 .item2 .form .top .li .spans span{
    display: block;
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    padding-left: .23rem;
    position: relative;
    cursor: pointer;
    margin-right: .49rem;
    margin-bottom: .1rem;
}
.inner_s10 .item2 .form .top .li .spans span:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    border: 1px solid #AA0203;
    opacity: .5;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span:after{
    position: absolute;
    content: '';
    width: .05rem;
    height: .05rem;
    left: .045rem;
    top: 50%;
    border-radius: 50%;
    background: #AA0203;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span.active:before,
.inner_s10 .item2 .form .top .li .spans span.active:after{
    opacity: 1;
}
.inner_s10 .item2 .form .top .li + .li{
    margin-top: .2rem;
}
.inner_s10 .item2 .form .top{
    margin-top: .2rem;
    margin-bottom: .52rem;
    padding-bottom: .42rem;
    border-bottom: 1px solid rgba(170, 2, 3, 0.2633);
}
.inner_s10 .item2 .form .bot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s10 .item2 .form .bot .li{
    width: 48.79%;
    margin-top: .3rem;
}
.inner_s10 .item2 .form .bot .li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s10 .item2 .form .bot .li h4{
    font-size: .2rem;
    line-height: .24rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .bot .li input{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    transition: .5s;
}
.inner_s10 .item2 .form .bot .li select{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    outline: none;
}
.inner_s10 .item2 .form .bot .li input::placeholder{
    color: rgba(51, 51, 51, 0.4);
}
.inner_s10 .item2 .form .bot .li input:focus{
    border-color: #AA0203;
}
.inner_s10 .item2 .form .bot .li .label{
    margin-top: .18rem;
}
.inner_s10 .item2 .form .bot .li1{
    width: 100%;
}
.inner_s10 .item2 .form .bot .li1 button{
    display: block;
    width: 2.06rem;
    font-size: .24rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
}
.inner_s10 .item2 .form {
    padding: .34rem .405rem ;
    margin-top: .5rem;
}
.inner_s10{
    padding: .53rem .36rem 0;
    background: url("../images/n-img-44.png") no-repeat top center/100% auto;
}

@media (max-width: 1025px) {
    .inner_s9{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s9 li a{
        padding: .2rem;
    }
    .inner_s9 li .pic {
        width: 1.8rem;
        height: 2.4rem;
    }
    .inner_s9 li .txt{
        width: calc(100% - 2rem);
        padding-right: 0;
    }
    .inner_s9 li h3{
        font-size: .22rem;
        line-height: .3rem;
    }
    .inner_s9 li p{
        font-size: .18rem;
        line-height: .28rem;
        height: 1.12rem;
        margin-top: .1rem;
    }
    .inner_s9 li{
        background-size: auto 60%;
    }
    .inner_s9 li + li{
        margin-top: .3rem;
    }
    .inner_s10 .itme-tit h2 span{
        font-size: .24rem;
        line-height: .3rem;
        margin: 0 .1rem;
    }
    .inner_s10 .itme-tit h2 i img{
        height: .1rem;
    }
    .inner_s10 .itme-tit h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s10 .item_con h3{
        font-size: .18rem;
        line-height: .28rem;
    }
    .inner_s10 .item_con .desc p{
        font-size: .16rem;
        line-height: 2;
    }
    .inner_s10 .item_con .desc p + p{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .desc{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .li + .li{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form h2{
        font-size: .2rem;
    }
    .inner_s10 .item2 .form .top .li h4{
        font-size: .16rem;
        line-height: .26rem;
    }
    .inner_s10 .item2 .form .top .li .spans span{
        font-size: .16rem;
        line-height: .26rem;
        margin: 0;
    }
    .inner_s10 .item2 .form .top .li .left{
        width: 1.3rem;
    }
    .inner_s10 .item2 .form .top .li .spans{
        gap: .1rem .2rem;
    }
    .inner_s10 .item2 .form .top .li + .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .top{
        margin-top: .2rem;
        margin-bottom: .2rem;
        padding-bottom: .2rem;
    }
    .inner_s10 .item2 .form .bot .li h4{
        font-size: .16rem;
    }
    .inner_s10 .item2 .form .bot .li .label{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li input{
        font-size: .15rem;
        height: .4rem;
        padding: 0 .1rem;
    }
    .inner_s10 .item2 .form .bot .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li1 button{
        font-size: .18rem;
        line-height: .4rem;
        width: 1.5rem;
    }
    .inner_s10 .item2 .form .bot .li1{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form{
        padding: 0;
        margin-top: .2rem;
    }
    .inner_s10 .item_con{
        margin-top: .2rem;
    }
    .inner_s10{
        padding: .2rem;
    }
}
@media (max-width: 769px) {
    .inner_s10 .itme-tit h2 i{
        display: none;
    }
    .inner_s10 .itme-tit h2{
        display: block;
        text-align: center;
    }
}
@media (max-width: 481px) {
    .inner_s9 li .pic {
        width: 1.4rem;
        height: 1.9rem;
    }
    .inner_s9 li .txt {
        width: calc(100% - 1.6rem);
    }
    .inner_s10 .item2 .form .bot .li{
        width: 100%;
    }
    .inner_s10 .item2 .form .bot{
        gap: .1rem 0;
    }
}

/*inner_s11*/

.inner_s11 li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #666666;
}
.inner_s11 li h4 i{
    color: #D4240B;
}
.inner_s11 li .label input{
    display: block;
    width: 100%;
    height: .54rem;
    font-size: .18rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid rgba(170, 2, 3, 0.2);
    border-radius: .06rem;
    outline: none;
}
.inner_s11 li .label textarea{
    display: block;
    width: 100%;
    height: 1.32rem;
    font-size: .18rem;
    color: rgba(51, 51, 51, 0.4);
    padding: .2rem;
    border: 1px solid rgba(170, 2, 3, 0.2);
    border-radius: .06rem;
    outline: none;
    font-family: "Microsoft Yahei", sans-serif;
}
.inner_s11 li .label p{
    font-size: .16rem;
    line-height: .24rem;
    color: #AA0203;
    margin-top: .15rem;
}
.inner_s11 li .label{
    margin-top: .15rem;
}
.inner_s11 li button{
    display: block;
    width: 2.4rem;
    font-size: .18rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 .02rem .25rem rgba(170, 2, 3, 0.285);
}
.inner_s11 li + li{
    margin-top: .22rem;
}
.inner_s11 ul{
    padding: .48rem 1.18rem .72rem;
    background: #FFFFFF;
    box-shadow: 0px 2px 19px 0px rgba(230, 230, 230, 0.5);

}
.inner_s11{
    margin-top: .45rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

@media (max-width: 1025px) {
    .inner_s11{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s11 ul{
        padding: .2rem;
    }
    .inner_s11 li h4{
        font-size: .18rem;
    }
    .inner_s11 li .label input{
        height: .44rem;
    }
    .inner_s11 li button{
        width: 1.8rem;
        height: .44rem;
        line-height: .44rem;
    }
    .inner_s11 li + li{
        margin-top: .1rem;
    }
} #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display#fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        per .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100%;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_ty: visible;
}
.n_sanji li.active a,
.n_sanji li:hover a{
    color: #fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* flex-shrink: 0; */
    width: 100%;
}
.inner_s8 .item4 .right h3{
    font-size: .46rem;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #aa0203;
    font-weight: bold;
    text-align: right;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item4{
    margin-top: -0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: relative;
}

/*手机端内页菜单*/

#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #aa0203;
}

#bnt_back {
    position: absolute;
    left: 15px;
    top: 0px;
}

#bnt_back img {
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#bnt_back svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    vertical-align: middle;
    width: 26px;
}

#m_n_nav i {
}

#m_n_nav h1 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px;
    line-height: 50px;
}

#bnt_sub_nav {
    position: absolute;
    right: 15px;
    top: 0px;
    height: 50px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bnt_sub_nav svg {
    fill: rgb(255, 255, 255);
    height: 20px;
    vertical-align: middle;
    width: 20px;
}

#bnt_sub_nav img {
    display: block;
    height: 20px;
}

#bnt_sub_nav.on img {
    transform: rotate(-180deg);
}

#sub_nav_content {
    background: rgb(240, 243, 245);
    display: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 5px;
    z-index: 9;
}

#sub_nav_content ul {
    display: none;
}
#sub_nav_content ul li {
    display: block;
    line-height: 28px;

}

#sub_nav_content ul li a {
    display: block;

    height: 30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    color: rgb(83, 84, 85);
}

#sub_nav_content ul li.on a {
    color: #aa0203;
}

#sub_nav_content dl {
    font-size: 0px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    padding: 10px 0px;
}

#sub_nav_content dt {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 999;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    /*float: left;*/
    line-height: 30px;
    padding: 0 20px;
}
#sub_nav_content dt i{
    float: right;
    font-family: simsun;
    font-style: normal;
    font-weight: bold;
    font-size: .16rem;
}
#sub_nav_content dt a {

    display: inline-block;
    width: 88%;
    color: rgb(91, 83, 73);
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0;
    display: none;
}

#sub_nav_content dt a {
}



#sub_nav_content dd {
    display: none;
}

#sub_nav_content dd .box {
    padding: 0px;
}

#sub_nav_content dd a {
    padding: 0px 25px;
    line-height: 30px;
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 12px;
    color: rgb(91, 83, 73);
    display: block;
    height: 30px;
}

#sub_nav_content dd a.on {
    color: #aa0203;
}

@media (max-width: 1199px){
    .n_banner .img:before{
        display: none;
    }
    #m_n_nav{
        display: block;
    }
    .n_dh{
        display: none;
    }
    .rightBox{
        width: 100%;
        padding-top: 0;
    }
    .n_title001{
        display: none;
    }

    .inner_page{
        padding: .3rem 0 .8rem;
    }
    .n_sanji{
        margin-top: 0;

    }
    .n_sanji ul{
        justify-content: center;
        gap: .1rem .2rem;
    }
    .n_sanji li + li{
        margin-left: 0;
    }
}
@media (max-width: 1025px){
    .n_banner .n_top{
        bottom: .15rem;
    }
    .inner_s1 li time{
        width: 100%;
        font-size: .18rem;
        margin-right: 0;
    }
    .inner_s1 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s1 li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s1 li p{
        font-size: .16rem;
        line-height: .26rem;
        height: .52rem;
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        height: .35rem;
        margin-top: .4rem;
    }
    .inner_s1 li .txt-box {
        width: calc(100% - 4rem);
        display: block;
    }
    .inner_s1 li a{
        padding: .2rem 0;
    }
    .inner_s1:before{
        display: none;
    }
    .inner_s1{
        margin-top: 0;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner_s2 li .pic{
        padding-top: 60.65%;
    }
    .inner_s2 li .txt{
        padding: .2rem;
    }
    .inner_s2 li h3{
        line-height: .3rem;
        height: .6rem;
    }
    .inner_s2 li p{
        margin-top: .05rem;
    }
    .inner_s2 li a,
    .inner_s2 li:after{
        border-radius: .1rem;
    }
    .inner_s2 li{
        width: 32%;
        margin: 0;
    }
    .inner_s2 ul{
        gap: .3rem 2%;
    }
    .inner_s2{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .inner_s3 li time span{
        font-size: .3rem;
        margin-right: .05rem;
    }
    .inner_s3 li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner_s3 li h3{
        font-size: .2rem;
    }
    .inner_s3 li p{
        margin-top: .05rem;
    }
    .inner_s3 li .txt:after{
        width: .3rem;
        height: .3rem;
    }
    .inner_s3 li .txt{
        padding-right: .5rem;
    }
    .inner_s3 li a{
        padding: .25rem 0;
    }
    .inner_s3:before{
        display: none;
    }
    .inner_s3{
        margin-top: 0;
    }
    .inner_s4 li a{
        padding: .2rem;
    }
    .inner_s4 li:before{
        width: .03rem;
    }
    .inner_s4 li{
        width: 49%;
        margin: 0;
    }
    .inner_s4 ul{
        gap: .26rem 2%;
    }
    .inner_s4{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s5 .dtl_l{
        width: 100%;
    }
    .inner_s5 .dtl_tit h1{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner_s5 .dtl_tit .cont .li,
    #share-2{
        margin: 0;
    }
    .inner_s5 .dtl_tit .cont{
        margin-top: .15rem;
        gap: .1rem .2rem;
    }
    .inner_s5 .dtl_tit{
        padding-bottom: .15rem;
    }
    .inner_s5 .dtl_txt p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_txt p + p{
        margin-top: .1rem;
    }
    .inner_s5 .dtl_txt{
        margin-top: .25rem;
    }
    .inner_s5 .dtl_page{
        margin-top: .25rem;
        padding-top: .15rem;
    }
    .inner_s5 .dtl_page .ll{
        flex: inherit;
        width: 100%;
    }
    .inner_s5 .dtl_page p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s5 .dtl_page p + p{
        margin-top: .05rem;
    }
    .inner_s5 .dtl_page .rr{
        width: 100%;
        margin: .2rem 0 0;
    }
    .inner_s5 .dtl_page .rr a{
        margin: 0 auto;
    }
    .inner_s5 .dtl_r{
        width: 100%;
        margin-top: .4rem;
    }
    .inner_s5 .dtl_r .top a .pic{
        padding-top: 61.5%;
    }
    .inner_s5 .dtl_r .top a h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_r .bot li h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .05rem;
    }
    .inner_s5 .dtl_r .bot li + li{
        margin-top: .2rem;
    }
    .inner_s5 .dtl_r .bot{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r .top{
        margin-top: .3rem;
    }
    .inner_s5 .dtl_r h2 img{
        width: .26rem;
        margin-right: .05rem;
    }
    .inner_s5 .dtl_r h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s5 .dtl_tit h2{
        font-size: .22rem;
        line-height: 1.5;
    }
    .inner_s5 .detail2 .dtl_tit h1{
        margin: .05rem 0;
    }
    .inner_s5 .detail2 .dtl_tit .cont{
        margin-top: .15rem;
    }
    .inner_s5 .detail2 .dtl_r{
        margin-top: .4rem;
    }
    .inner_s6 .item1{
        padding: .2rem 0;
    }
    .inner_s6 .item1 img{
        height: auto;
        max-height: .5rem;
    }
    .inner_s6 .item2 .h2 h2{
        font-size: .24rem;
        padding-left: .2rem;
    }
    .inner_s6 .item2 .h2 h2:before{
        width: .3rem;
        height: .36rem;
        bottom: -.05rem;
    }
    .inner_s6 .item2 .desc p{
        font-size: .18rem;
        line-height: 1.85;
    }
    .inner_s6 .item2 .desc{
        margin-top: .1rem;
    }
    .inner_s6 .item2 + .item2{
        margin-top: .3rem;
    }
    .inner_s6{
        margin-top: 0;
        padding-top: 0;
        border: none;
    }
    .n_sanji li a span{
        margin: 0 .1rem;
    }
    .n_sanji li a{
        font-size: .2rem;
        padding: 0 .15rem;
        line-height: .46rem;
    }
    .inner_s7 .item1{
        margin-top: .3rem;
        padding: .2rem;
    }
    .n_title002 h2{
        font-size: .26rem;
        line-height: .3rem;
        padding-bottom: .15rem;
    }
    .n_title002 .more a{
        font-size: .16rem;
        padding: .05rem .15rem .05rem 0;
    }
    .inner_s7 .item1 h3{
        font-size: .24rem;
        line-height: .3rem;
    }
    .inner_s7 .item1 .desc p, .inner_s7 .item1 .desc p *{
        font-size: .18rem !important;
        line-height: 1.85;
    }
    .inner_s7 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s7 .item1 .desc{
        margin-top: .15rem;
    }
    .inner_s7 .item1 h6{
        margin-top: .15rem;
    }
    .inner_s7 .item1 .left {
        width: 2.4rem;
    }
    .inner_s7 .item1 .pic {
        height: 3.2rem;
    }
    .inner_s7 .item1 .right {
        width: calc(100% - 2.6rem);
    }
    .inner_s7 .item1 .content{
        margin-top: .26rem;
    }
    .inner_s7 .item2 .content{
        padding: .2rem;
    }
    .inner_s7 .item2 .left{
        width: 100%;
    }
    .inner_s7 .item2 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .n_list01 li h3{
        background-size: .18rem;
        padding-left: 0.26rem;
    }
    .n_list01 li a {
        height: 0.68rem;
    }
    .n_list01{
        margin-top: .1rem;
    }
    .inner_s7 .item2{
        margin-top: .4rem;
        padding: .3rem 0 0;
    }
    .inner_s7 .item2 .bg1{
        display: none;
    }
    .inner_s7 .swiper a .pic{
        padding-top: 145.89%;
    }
    .inner_s7 .swiper{
        margin-top: .26rem;
    }
    .inner_s7 .item3{
        padding: .2rem;
        margin-top: .4rem;
    }
    .inner_s8 .item1 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .desc p, .inner_s8 .desc p *{
        line-height: 1.85 !important;
    }
    .inner_s8 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .desc{
        margin-top: .1rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .5rem;
    }
    .inner_s8 .item1 .ul .li h3 span{
        font-size: .16rem;
        margin: .05rem 0 0 .05rem;
    }
    .inner_s8 .item1 .ul .li h4{
        font-size: .18rem;
    }
    .inner_s8 .item1 .ul{
        margin-top: .2rem;
    }
    .inner_s8 .item1 .left{
        width: 100%;
    }
    .inner_s8 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item1 .img-box{
        width: 3rem;
        margin: 0 auto;
    }
    .inner_s8 .item2 .bg3,
    .inner_s8 .item2 .bg4{
        display: none;
    }
    .inner_s8 .item2 .bg1{
        height: 1.4rem;
    }
    .inner_s8 .item2 .left{
        width: 100%;
    }
    .inner_s8 .item2 .left h6{
        display: none;
    }
    .inner_s8 .item2 .left h3{
        font-size: .26rem;
        line-height: .3rem;
        margin-top: 0;
    }
    .inner_s8 .item2 .left h4{
        font-size: .22rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s8 .item2 .left h5 img{
        width: .16rem;
    }
    .inner_s8 .item2 .left h5{
        margin-top: .1rem;
    }
    .inner_s8 .item2 .right{
        width: 100%;
        margin-top: 0;
    }
    .inner_s8 .item2{
        padding: 1.5rem 0 .4rem;
        margin-top: .4rem;
    }
    .inner_s8 .item3 .h2 h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner_s8 .item3 .left{
        width: 100%;
    }
    .inner_s8 .item3 .left .img-box{
        width: 3rem;
        height: auto;
        margin: 0 auto;
    }
    .inner_s8 .item3 .right{
        width: 100%;
        margin-top: .3rem;
    }
    .inner_s8 .item3 ul li .img{
        margin-right: .2rem;
    }
    .inner_s8 .item3 ul li .txt{
        padding-bottom: .1rem;
    }
    .inner_s8 .item3 ul li + li{
        margin-top: .15rem;
    }
    .inner_s8 .item3 .content{
        margin-top: .26rem;
    }
    .inner_s8 .item3{
        margin-top: .4rem;
    }
    .inner_s8 .item3 .bg1{
        display: none;
    }
    .inner_s8 .item4 .right h3{
        font-size: .34rem;
        text-align: center;
    }
    .inner_s8 .item4 .right{
        margin-left: 0;
        text-align: center;
    }
    .inner_s8 .item4 .desc p + p{
        margin-top: .1rem;
    }
    .inner_s8 .item4 .left{
        margin-top: 0;
    }
    .inner_s8 .item4{
        margin-top: .4rem;
    }
}
@media (max-width: 769px){
    .inner_s1 li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
        border-radius: .1rem;
    }
    .inner_s1 li .txt-box{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s1 li h3{
        margin-top: .05rem;
    }
    .inner_s1 li h6{
        margin-top: .15rem;
        height: .3rem;
    }
    .inner_s2 li{
        width: 100%;
    }
    .inner_s2 li time{
        top: -.38rem;
    }
    .inner_s3 li time{
        width: 100%;
        margin-right: 0;
        margin-bottom: .05rem;
    }
    .inner_s3 li .txt{
        width: 100%;
        flex: inherit;
    }
    .inner_s3 li a{
        flex-wrap: wrap;
        padding: .2rem 0;
    }
    .inner_s4 li{
        width: 100%;
    }
    .inner_s8 .item2 .bg1 {
        height: 17.5vw;
    }
    .inner_s8 .item2 .bg2{
        top: 17.4vw;
    }
}
@media (max-width: 481px){
    .inner_s7 .item1 .left{
        width: 100%;
    }
    .inner_s7 .item1 .pic{
        width: 2rem;
        height: 2.7rem;
        margin: 0 auto;
    }
    .inner_s7 .item1 .right{
        width: 100%;
        margin-top: .2rem;
    }
    .inner_s8 .item2 .bg1 {
        height: 1rem;
    }
    .inner_s8 .item2 .bg2{
        top: .98rem;
    }
    .inner_s8 .item2 {
        padding: 1.3rem 0 .4rem;
    }
    .inner_s8 .item1 .ul .li h3{
        font-size: .4rem;
    }
    .inner_s8 .item1 .ul .li.li2{
        height: .7rem;
    }
}

/*2025-08-19*/

.n_sanji2{
    margin-top: .48rem;
}
.n_sanji2 ul{
    justify-content: center;
}

@media (max-width: 1199px) {
    .n_sanji2{
        display: none;
    }
}

/*2025-08-23*/

.inner_s9 li a{
    position: relative;
    z-index: 2;
    padding: .27rem .37rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_s9 li .pic{
    width: 2.15rem;
    height: 2.87rem;
}
.inner_s9 li .txt{
    width: calc(100% - 2.71rem);
    padding-right: .15rem;
}
.inner_s9 li h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    transition: .5s;
}
.inner_s9 li p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    -webkit-line-clamp: 4;
    height: 1.28rem;
    margin-top: .28rem;
}
.inner_s9 li:after{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: .04rem;
    background: #AA0203;
}
.inner_s9 li + li{
    margin-top: .52rem;
}
.inner_s9 li:hover h3{
    color: #AA0203;
}
.inner_s9 li{
    position: relative;
    background: rgba(170, 2, 3, 0.0164) url("../images/n-img-41.png") no-repeat right .04rem bottom/auto 2.72rem;
}
.inner_s9{
    margin-top: .41rem;
    padding-top: .79rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}

/*inner_s10*/
.inner_s10 .itme-tit h2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_s10 .itme-tit h2 i{
    flex: 1;
    display: flex;
}
.inner_s10 .itme-tit h2 i img{
    display: block;
    height: .2rem;
    object-fit: cover;
}
.inner_s10 .itme-tit h2 i:first-child{
    justify-content: flex-end;
}
.inner_s10 .itme-tit h2 i:first-child img{
    object-position: right center;
}
.inner_s10 .itme-tit h2 i:last-child img{
    object-position: left center;
}
.inner_s10 .itme-tit h2 span{
    display: block;
    font-size: .38rem;
    line-height: .5rem;
    color: #333;
    margin: 0 .25rem;
    flex-shrink: 0;
    font-weight: bold;
}
.inner_s10 .itme-tit h3{
    font-size: .34rem;
    line-height: .44rem;
    color: #AA0203;
    text-align: center;
    margin-top: .18rem;
}
.inner_s10 .item_con h3{
    font-size: .24rem;
    line-height: .32rem;
    color: #333;
    font-weight: bold;
}
.inner_s10 .item_con .desc p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s10 .item_con .desc p + p{
    margin-top: .2rem;
}
.inner_s10 .item_con .desc{
    margin-top: .23rem;
}
.inner_s10 .item_con .li + .li{
    margin-top: .5rem;
}
.inner_s10 .item_con{
    margin-top: .48rem;
}
.inner_s10 .item2 .form h2{
    font-size: .24rem;
    line-height: .32rem;
    color: #AA0203;
    font-weight: bold;
    text-align: center;
}
.inner_s10 .item2 .form .top .li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s10 .item2 .form .top .li .left{
    width: 1.6rem;
    margin-right: .15rem;
    flex-shrink: 0;
}
.inner_s10 .item2 .form .top .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .top .li .right{
    flex: 1;
}
.inner_s10 .item2 .form .top .li .spans{
    display: flex;
    flex-wrap: wrap;
}
.inner_s10 .item2 .form .top .li .spans span{
    display: block;
    font-size: .2rem;
    line-height: .3rem;
    color: #3A3F63;
    padding-left: .23rem;
    position: relative;
    cursor: pointer;
    margin-right: .49rem;
    margin-bottom: .1rem;
}
.inner_s10 .item2 .form .top .li .spans span:before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    border: 1px solid #AA0203;
    opacity: .5;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span:after{
    position: absolute;
    content: '';
    width: .05rem;
    height: .05rem;
    left: .045rem;
    top: 50%;
    border-radius: 50%;
    background: #AA0203;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.inner_s10 .item2 .form .top .li .spans span.active:before,
.inner_s10 .item2 .form .top .li .spans span.active:after{
    opacity: 1;
}
.inner_s10 .item2 .form .top .li + .li{
    margin-top: .2rem;
}
.inner_s10 .item2 .form .top{
    margin-top: .2rem;
    margin-bottom: .52rem;
    padding-bottom: .42rem;
    border-bottom: 1px solid rgba(170, 2, 3, 0.2633);
}
.inner_s10 .item2 .form .bot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s10 .item2 .form .bot .li{
    width: 48.79%;
    margin-top: .3rem;
}
.inner_s10 .item2 .form .bot .li:nth-child(-n+2){
    margin-top: 0;
}
.inner_s10 .item2 .form .bot .li h4{
    font-size: .2rem;
    line-height: .24rem;
    color: #3A3F63;
    font-weight: bold;
}
.inner_s10 .item2 .form .bot .li input{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    transition: .5s;
}
.inner_s10 .item2 .form .bot .li select{
    display: block;
    width: 100%;
    height: .37rem;
    font-size: .14rem;
    color: rgba(51, 51, 51, 0.4);
    padding: 0 .2rem;
    border: 1px solid #DAE0F2;
    border-radius: .06rem;
    outline: none;
}
.inner_s10 .item2 .form .bot .li input::placeholder{
    color: rgba(51, 51, 51, 0.4);
}
.inner_s10 .item2 .form .bot .li input:focus{
    border-color: #AA0203;
}
.inner_s10 .item2 .form .bot .li .label{
    margin-top: .18rem;
}
.inner_s10 .item2 .form .bot .li1{
    width: 100%;
}
.inner_s10 .item2 .form .bot .li1 button{
    display: block;
    width: 2.06rem;
    font-size: .24rem;
    line-height: .54rem;
    color: #FFFFFF;
    border-radius: 50vw;
    background: #AA0203;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
}
.inner_s10 .item2 .form {
    padding: .34rem .405rem ;
    margin-top: .5rem;
}
.inner_s10{
    padding: .53rem .36rem 0;
    background: url("../images/n-img-44.png") no-repeat top center/100% auto;
}

@media (max-width: 1025px) {
    .inner_s9{
        padding-top: 0;
        margin-top: 0;
        border: none;
    }
    .inner_s9 li a{
        padding: .2rem;
    }
    .inner_s9 li .pic {
        width: 1.8rem;
        height: 2.4rem;
    }
    .inner_s9 li .txt{
        width: calc(100% - 2rem);
        padding-right: 0;
    }
    .inner_s9 li h3{
        font-size: .22rem;
        line-height: .3rem;
    }
    .inner_s9 li p{
        font-size: .18rem;
        line-height: .28rem;
        height: 1.12rem;
        margin-top: .1rem;
    }
    .inner_s9 li{
        background-size: auto 60%;
    }
    .inner_s9 li + li{
        margin-top: .3rem;
    }
    .inner_s10 .itme-tit h2 span{
        font-size: .24rem;
        line-height: .3rem;
        margin: 0 .1rem;
    }
    .inner_s10 .itme-tit h2 i img{
        height: .1rem;
    }
    .inner_s10 .itme-tit h3{
        font-size: .2rem;
        line-height: .3rem;
        margin-top: .1rem;
    }
    .inner_s10 .item_con h3{
        font-size: .18rem;
        line-height: .28rem;
    }
    .inner_s10 .item_con .desc p{
        font-size: .16rem;
        line-height: 2;
    }
    .inner_s10 .item_con .desc p + p{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .desc{
        margin-top: .1rem;
    }
    .inner_s10 .item_con .li + .li{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form h2{
        font-size: .2rem;
    }
    .inner_s10 .item2 .form .top .li h4{
        font-size: .16rem;
        line-height: .26rem;
    }
    .inner_s10 .item2 .form .top .li .spans span{
        font-size: .16rem;
        line-height: .26rem;
        margin: 0;
    }
    .inner_s10 .item2 .form .top .li .left{
        width: 1.3rem;
    }
    .inner_s10 .item2 .form .top .li .spans{
        gap: .1rem .2rem;
    }
    .inner_s10 .item2 .form .top .li + .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .top{
        margin-top: .2rem;
        margin-bottom: .2rem;
        padding-bottom: .2rem;
    }
    .inner_s10 .item2 .form .bot .li h4{
        font-size: .16rem;
    }
    .inner_s10 .item2 .form .bot .li .label{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li input{
        font-size: .15rem;
        height: .4rem;
        padding: 0 .1rem;
    }
    .inner_s10 .item2 .form .bot .li{
        margin-top: .1rem;
    }
    .inner_s10 .item2 .form .bot .li1 button{
        font-size: .18rem;
        line-height: .4rem;
        width: 1.5rem;
    }
    .inner_s10 .item2 .form .bot .li1{
        margin-top: .2rem;
    }
    .inner_s10 .item2 .form{
        padding: 0;
        margin-top: .2rem;
    }
    .inner_s10 .item_con{
        margin-top: .2rem;
    }
    .inner_s10{
        padding: .2rem;
    }
}
@media (max-width: 769px) {
    .inner_s10 .itme-tit h2 i{
        display: none;
    }
    .inner_s10 .itme-tit h2{
        display: block;
        text-align: center;
    }
}
@media (max-width: 481px) {
    .inner_s9 li .pic {
        width: 1.4rem;
        height: 1.9rem;
    }
    .inner_s9 li .txt {
        width: calc(100% - 1.6rem);
    }
    .inner_s10 .item2 .form .bot .li{
        width: 100%;
    }
    .inner_s10 .item2 .form .bot{
        gap: .1rem 0;
    }
}

/*inner_s11*/

.inner_s11 li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #6666.45rem;
        max-height: .45rem;
    }
    .inner-s2 .item2 li .icon{
        margin: 0 auto;
        width: 1.1rem;
        height: 1.1rem;
    }
    .inner-s2 .item2 li .show{
        flex: auto;
        width: 100%;
        margin: .1rem 0 0 ;
    }
    .inner-s2 .item2 li h3 span{
        font-size: .3rem;
    }
    .inner-s2 .item2 li h4 br{
        display: none;
    }
    .inner-s2 .item2 li h4{
        font-size: .18rem;
        line-height: 1.5;
        text-align: center;
    }
    .inner-s2 .item2 li h3{
        justify-content: center;
    }
    .inner-s2 .item2 li:hover .icon:before,
    .inner-s2 .item2 li:hover .icon:after{
        opacity: 0;
        visibility: hidden;
    }
    .inner-s2 .item2 li:hover .show{
        opacity: 1;
        visibility: visible;
    }
    .inner-s2 .item2 li:nth-child(2n+1){
        margin-top: 0;
    }
    .inner-s2 .item2 li{
        width: 16.5%;
        flex-wrap: wrap;
    }
    .inner-s2 .item2 ul{
        gap: .2rem 0;
    }
    .inner-s2 .item2{
        margin-top: .3rem;
        margin-bottom: .4rem;
    }
    .inner-tit h3{
        font-size: .28rem;
        line-height: .3rem;
    }
    .inner-tit h4{
        font-size: .2rem;
        margin-top: .05rem;
    }
    .inner-tit .tit:after{
        top: -.1rem;
        right: -.5rem;
        width: 0.69rem;
        height: 0.74rem;
    }
    .inner-s3 .list li time span,
    .inner-s4 .list li time span{
        font-size: .32rem;
    }
    .inner-s3 .list li time,
    .inner-s4 .list li time{
        font-size: .18rem;
        margin-right: .2rem;
    }
    .inner-s3 .list li h3,
    .inner-s4 .list li h3{
        font-size: .2rem;
        line-height: .3rem;
    }
    .inner-s3 .list li p,
    .inner-s4 .list li p{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .02rem;
    }
    .inner-s3 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}


.inner-s5 .list ul{
    display: flex;
    flex-wrap: wrap;
}
.inner-s5 .list li{
    width: 23.5%;
    margin: .2rem 0 0 2%;
    position: relative;
}
.inner-s5 .list li:nth-child(-n+4){
    margin-top: 0;
}
.inner-s5 .list li:nth-child(4n+1){
    margin-left: 0;
}
.inner-s5 .list li a{
    display: flex;
    align-items: center;
    height: .66rem;
    padding: 0 .25rem;
    position: relative;
    z-index: 2;
}
.inner-s5 .list li .img{
    width: .24rem;
    height: .24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .1rem;
    flex-shrink: 0;
}
.inner-s5 .list li .img svg{
    display: block;
    width: 100%;
    height: 100%;
    color: #aa0203;
}
.inner-s5 .list li h3{
    flex: 1;
    font-size: .22rem;
    color: #333333;
}
.inner-s5 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border: .01rem solid #aa0203;
    border-radius: 50vw;
    transition: all .5s;
}
.inner-s5 .list li:hover .img svg{
    color: #ffffff;
}
.inner-s5 .list li:hover h3{
    color: #ffffff;
}
.inner-s5 .list li:hover:before{
    background: #aa0203;
}

.inner-s5 .list:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s5 .list{
    padding-top: .4rem;
    margin-top: .66rem;
    position: relative;
}

@media (max-width: 1025px) {
    .inner-s5 .list li{
        width: 32%;
        margin: 0;
    }
    .inner-s5 .list li a{
        height: .56rem;
    }
    .inner-s5 .list li a h3{
        font-size: .18rem;
    }
    .inner-s5 .list ul{
        gap: .2rem 2%;
    }
    .inner-s5 .list{
        margin-top: .3rem;
        padding-top: .2rem;
    }
}
@media (max-width: 769px) {
    .inner-s5 .list li{
        width: 49%;
    }
}
@media (max-width: 481px) {
    .inner-s5 .list li{
        width: 100%;
    }
}t li .jt{
        width: .35rem;
        height: .35rem;
        margin-left: .2rem;
    }
    .inner-s3 .list li a{
        padding: .25rem 0;
    }
    .inner-s3 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s3 .list{
        margin-top: .3rem;
    }
    .pagination{
        padding-top: .3rem;
    }
    .inner-s3 .list li h3{
        max-height: .6rem;
    }
    .inner-s3 .list li p{
        height: .52rem;
    }
    .inner-s4 .list li .jt{
        width: .35rem;
        height: .35rem;
        margin-top: .2rem;
    }
    .inner-s4 .list li .text {
        width: calc(100% - 4.2rem);
    }
    .inner-s4 .list li a{
        padding: .25rem 0;
    }
    .inner-s4 .list li:after{
        left: -.15rem;
        right: -.15rem;
        background-size: contain;
    }
    .inner-s4 .list{
        margin-top: .3rem;
    }
}
@media (max-width: 769px) {
    .inner-s1 .item1 li img{
        height: .45rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -1.2rem;
    }
    .inner-s2 .item2 li{
        width: 33.33%;
    }
    .inner-s3 .list li .txt{
        flex: auto;
        width: 100%;
        order: 0;
    }
    .inner-s3 .list li time{
        order: 1;
    }
    .inner-s3 .list li .jt{
        order: 1;
    }
    .inner-s3 .list li a{
        gap: .1rem 0;
        padding: .2rem 0;
    }
    .inner-s4 .list li .pic{
        width: 100%;
        height: auto;
        padding-top: 56.05%;
    }
    .inner-s4 .list li time{
        width: 100%;
        margin-right: 0;
    }
    .inner-s4 .list li .txt{
        flex: auto;
        width: 100%;
        margin-top: .1rem;
    }
    .inner-s4 .list li .text{
        width: 100%;
        margin-top: .2rem;
    }
}
@media (max-width: 481px) {
    .inner-s1 .item1 .images{
        margin-top: -10vw;
    }
    .inner-s1 .item1 li.li2{
        display: none;
    }
    .inner-s1 .item1 ul{
        gap: 0 .2rem;
        justify-content: center;
    }
    .inner-s2 .item2 li{
        width: 49%;
    }
}

/*inner_s2*/
.inner_s2 ul{
    display: flex;
    flex-wrap: wrap;
}
.inner_s2 li{
    position: relative;
    width: 30.5%;
    margin: .56rem 0  0 4.25%;
    border-radius: .2rem;
    background: #fff url("../images/n-img-8.png") no-repeat bottom right/contain;
    box-shadow: 0 .02rem .29rem 0 rgba(188, 188, 188, 0.1011);
}
.inner_s2 li:nth-child(3n+1){
    margin-left: 0;
}
.inner_s2 li:nth-child(-n+3){
    margin-top: 0;
}
.inner_s2 li a{
    position: relative;
    display: block;
    border-radius: .2rem;
    overflow: hidden;
    z-index: 2;
}
.inner_s2 li .pic{
    padding-top: 2.96rem;
}
.inner_s2 li time{
    position: absolute;
    left: 0;
    top: -.19rem;
    width: 1.31rem;
    font-size: .16rem;
    line-height: .38rem;
    color: #fff;
    background: #AA0203;
    text-align: center;
    border-radius: 0 50vw 50vw 0;
    z-index: 3;
    transition: .5s;
}
.inner_s2 li h3{
    font-size: .2rem;
    line-height: .32rem;
    color: #000000;
    height: .64rem;
    transition: .5s;
}
.inner_s2 li p{
    margin-top: .14rem;
    font-size: .16rem;
    line-height: .26rem;
    color: #666666;
    height: .52rem;
    transition: .5s;
}
.inner_s2 li .txt{
    position: relative;
    padding: .47rem .41rem;
}
.inner_s2 li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #AA0203;
    box-shadow: 0 .02rem .29rem 0 rgba(170, 2, 3, 0.4724);
    border-radius: .2rem;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_s2 li:hover h3{
    color: #fff;
    font-weight: bold;
}
.inner_s2 li:hover p{
    color: #fff;
}
.inner_s2 li:hover time{
    background: #DEB668;
}
.inner_s2 li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner_s2 {
    margin-top: .49rem;
    padding-top: .56rem;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}



.inner_s5 .dtl_l{
    width: 71.625%;
}
.inner_s5 .dtl_tit h1{
    font-size: .32rem;
    line-height: .42rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.inner_s5 .dtl_tit h2{
    font-size: .28rem;
    line-height: .38rem;
    color: #333333;
    text-align: center;
}
.inner_s5 .dtl_tit .cont{
    margin-top: .28rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner_s5 .dtl_tit .cont .li{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
    margin: 0 .18rem;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
    /* text-indent: 2em; */
    word-break: break-all;
}
.inner_s5 .dtl_txt p span{ 
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
   
    word-break: break-all;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}
.inner_s5 .dtl_r .top a:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.inner_s5 .dtl_r .top{
    margin-top: .41rem;
}
.inner_s5 .dtl_r .bot li a{
    display: block;
}
.inner_s5 .dtl_r .bot li time{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
    margin-left: -.1rem;
}
.inner_s5 .dtl_r .bot li time img{
    display: block;
    width: .2rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r .bot li h3{
    font-size: .18rem;
    line-height: .3rem;
    color: #333333;
    height: .6rem;
    padding-left: .21rem;
    margin-top: .13rem;
    transition: .5s;
}
.inner_s5 .dtl_r .bot li:hover h3{
    color: #AA0203;
}
.inner_s5 .dtl_r .bot li + li{
    margin-top: .32rem;
}
.inner_s5 .dtl_r .bot:before{
    position: absolute;
    content: '';
    left: 0;
    top: .1rem;
    bottom: -.35rem;
    width: 1px;
    background: #979797;
    opacity: .4;
}
.inner_s5 .dtl_r .bot{
    margin-top: .52rem;
    position: relative;
}

.inner_s5 .detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .detail2 .dtl_tit h1{
    margin: .23rem 0;
}
.inner_s5 .detail2 .dtl_tit .cont{
    margin-top: .38rem;
}
.inner_s5 .detail2 .dtl_r{
    margin-top: 0;
}


@charset "UTF-8";
.foot{
    margin-top: 0;
    padding-top: .54rem;
    background-image: url("../images/foot2.png");
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .67rem;
}

.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.n_banner .img img{
    display: block;
    width: 100%;
}
.n_banner .img:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 68.71%;
    background: url("../images/n-mask.png") repeat-x top center/auto 99%;
}
.n_banner .img:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 31.4%;
    background: url("../images/n-mask2.png") repeat-x top center/auto 99%;
}
.n_banner .n_top{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .2rem;
    z-index: 5;
}
.posi{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.posi img{
    display: block;
    width: .15rem;
    margin-right: .1rem;
}
.posi *{
    display: block;
    font-size: .14rem;
    line-height: 1;
    color: #FFFFFF;
    transition: .5s;
}
.posi span:not(:nth-child(2)){
    margin: 0 .04rem;
}
.posi a:hover,
.posi a.active{
    color: #AA0203;
}
.n_banner,
.n_banner .img{
    position: relative;
}

.n_erji li{
    position: relative;
}
.n_erji li + li{
    margin-left: .62rem;
}
.n_erji li h3{
    position: relative;
    font-size: .18rem;
    line-height: 1rem;
    color: #333333;
    min-width: 1.4rem;
    padding: 0 .1rem;
    text-align: center;
    transition: .5s;
}
.n_erji li a{
    display: block;
}
.n_erji li.active h3,
.n_erji li:hover h3{
    color: #AA0203;
    background: rgba(170, 2, 3, 0.1);
}
.n_dh{
    background: #fff;
    box-shadow: 0 0 .73rem rgba(207, 97, 97, 0.14);
}
.inner_page .bg-1{
    position: absolute;
    right: 0;
    top: -2.07rem;
    bottom: 2.82rem;
    width: 64.32vw;
    background: url("../images/n-img-5.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page .bg-2{
    position: absolute;
    left: 0;
    top: 6.21rem;
    bottom: -1.49rem;
    width: 53.65vw;
    background: url("../images/n-img-6.png") repeat-x top center/cover;
    z-index: -1;
}
.inner_page{
    position: relative;
    padding: 1.07rem 0 1.96rem;
    background: url("../images/inner-page.png") no-repeat bottom center/100% auto;
}

.n_title001 h2:after{
    position: absolute;
    content: '';
    right: -.19rem;
    bottom: 0;
    width: .6rem;
    height: .7rem;
    background: url("../images/tit-1.png") no-repeat 50%/100%;
}
.n_title001 h2{
    font-size: .42rem;
    line-height: 1;
    color: #333333;
    position: relative;
}
.n_title001 h4{
    font-size: .14rem;
    line-height: 1;
    color: #333333;
    opacity: .4;
    text-transform: uppercaset-qrcode .help p{font-weight:normal;line-height: .16rem;padding:0;margin:0}
.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;top: -16px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color: transparent transparent #fff transparent;}
.social-share .icon-wechat:hover .wechat-qrcode{display:block}
.social-share .icon-wechat{background: url("../images/n-img-13.png") no-repeat 50%/100%}
.social-share .icon-weibo{background: url("../images/n-img-14.png") no-repeat 50%/100%}
.social-share .icon-qq{background: url("../images/n-img-15.png") no-repeat 50%/100%}

#share-2{
    display: flex;
    align-items: center;
    margin: 0 .18rem;
}
#share-2 span{
    font-size: .16rem;
    line-height: .24rem;
    color: #666666;
}

.inner_s5 .dtl_tit{
    padding-bottom: .28rem;
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.inner_s5 .dtl_txt p{
    font-size: .2rem;
    line-height: 1.6;
    color: #464646;
    text-indent: 2em;
}
.inner_s5 .dtl_txt p + p{
    margin-top: .39rem;
}
.inner_s5 .dtl_txt p img{
    display: block;
    width: auto;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
}
.inner_s5 .dtl_txt{
    margin-top: .3rem;
}
.inner_s5 .dtl_page{
    margin-top: .73rem;
    padding-top: .73rem;
    border-top: 1px solid rgba(170, 2, 3, 0.54);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s5 .dtl_page p{
    font-size: .2rem;
    line-height: .32rem;
    color: #666666;
    transition: .5s;
}
.inner_s5 .dtl_page p + p{
    margin-top: .2rem;
}
.inner_s5 .dtl_page p:hover{
    color: #AA0203;
    font-weight: bold;
}
.inner_s5 .dtl_page .ll{
    flex: 1;
}
.inner_s5 .dtl_page .rr{
    flex-shrink: 0;
    margin: .22rem 0 0 .2rem;
}
.inner_s5 .dtl_page .rr a{
    display: block;
    width: 1.41rem;
}
.inner_s5 .dtl_page .rr a img{
    display: block;
    width: 100%;
}
.inner_s5 .dtl_r{
    width: 24.1875%;
    margin-top: 1.22rem;
}
.inner_s5 .dtl_r h2 img{
    display: block;
    width: .29rem;
    margin-right: .11rem;
}
.inner_s5 .dtl_r h2{
    display: flex;
    align-items: center;
    font-size: .3rem;
    line-height: .4rem;
    color: #AA0203;
}
.inner_s5 .dtl_r .top a{
    display: block;
    position: relative;
}
.inner_s5 .dtl_r .top a .pic{
    padding-top: 2.38rem;
}
.inner_s5 .dtl_r .top a h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: .12rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #FFFFFF;
    padding: 0 .22rem;
    z-index: 3;
}

.inner-s1 .item2 .play{
    position: absolute;
    right: .27rem;
    bottom: .29rem;
    width: .68rem;
    height: .68rem;
    background: url("../images/n-img-9.png") no-repeat 50%/100%;
    z-index: 2;
}
.inner-s1 .item3 .li h3{
    font-size: .32rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s1 .item3 .li h4{
    font-size: .28rem;
    line-height: .36rem;
    color: #deb668;
    font-weight: 700;
    margin-top: .14rem;
}
.inner-s1 .item3 .li:before{
    position: absolute;
    content: '';
    left: 0;
    top: .72rem;
    width: .19rem;
    height: .19rem;
    background: url("../images/n-img-10.png") no-repeat 50%/100%;
}
.inner-s1 .item3 .li:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,#deb668 0%, rgba(222, 182, 104, 0) 80%);
}
.inner-s1 .item3 .li:last-child:after{
    display: none;
}
.inner-s1 .item3 .li{
    padding: .6rem .5rem .7rem;
    position: relative;
    z-index: 2;
}
.inner-s1 .item3:after{
    position: absolute;
    content: '';
    top: 50%;
    right: -1.43rem;
    width: 4.66rem;
    height: 4.3rem;
    background: url("../images/n-img-11.png") no-repeat 50%/100%;
    transform: translateY(-50%);
    pointer-events: none;
}
.inner-s1 .item3{
    padding: .64rem 0 .07rem;
    position: relative;
}

/*inner-s2*/

.inner-s2 .item1 h3{
    font-size: .48rem;
    line-height: 1;
    color: #aa0203;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-s2 .item1 .desc{
    font-size: .18rem;
    line-height: .36rem;
    color: #333333;
    text-indent: 2em;
    margin-top: .56rem;
}
.inner-s2 .item1 .desc p + p{
    margin-top: .32rem;
}
.inner-s2 .item2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner-s2 .item2  li{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s2 .item2 li .num{
    position: relative;

}
.inner-s2 .item2 li .icon{
    position: relative;
    width: 1.52rem;
    height: 1.52rem;
    background: url("../images/n-img-23.png") no-repeat 50%/auto 100%;
}
.inner-s2 .item2 li .icon img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: .69rem;
    max-height: .72rem;
    margin: auto;
    transition: all .5s;
}
.inner-s2 .item2 li .icon .img-2{
    opacity: 0;
}
.inner-s2 .item2 li .hide{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    z-index: 2;
}
.inner-s2 .item2 li .hide h3,
.inner-s2 .item2 li .hide h4{
    color: #ffffff;
    text-align: center;
}
.inner-s2 .item2 li .hide h3{
    justify-content: center;
}
.inner-s2 .item2 li .icon:before{
    position: absolute;
    content: '';
    top: -.44rem;
    left: -.39rem;
    width: 2.63rem;
    height: 2.42rem;
    background: url("../images/n-img-24.png") no-repeat 50%/100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .icon:after{
    position: absolute;
    content: '';
    top: -0.05rem;
    bottom: -.05rem;
    right: -.05rem;
    left: -.05rem;
    background: #AA0203;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s2 .item2 li .num .line{
    position: absolute;
    left: 50%;
    top: calc(100% + .05rem);
    width: 1px;
    height: 2.24rem;
    background: #b31a1b;
    transform: translateX(-50%);
}
.inner-s2 .item2 li h3{
    display: flex;
    align-items: baseline;
    font-size: .16rem;
    line-height: 1;
    color: #deb668;
    font-weight: 700;
}
.inner-s2 .item2 li h3 span{
    display: block;
    font-size: .5rem;
    line-height: 1;
    margin-right: .03rem;
}
.inner-s2 .item2 li h4{
    font-size: .16rem;
    line-height: .24rem;
    color: #333333;
}
.inner-s2 .item2 li .show{
    flex: 1;
    margin-top: .05rem;
    margin-left: -.25rem;
}
.inner-s2 .item2 li:nth-child(2n+1){
    margin-top: .8rem;
}
.inner-s2 .item2 li.li1 .num .line{
    height: 0.58rem;
}
.inner-s2 .item2 li.li2 .num .line{
    height: 2.08rem;
}
.inner-s2 .item2 li.li3 .num .line{
    height: 0.88rem;
}
.inner-s2 .item2 li.li4 .num .line{
    height: 1.95rem;
}
.inner-s2 .item2 li.li5 .num .line{
    height: 0.9rem;
}
.inner-s2 .item2 li.li6 .num .line{
    height: 1.66rem;
}
.inner-s2 .item2 li:hover .icon .img-1{
    opacity: 1;
}
.inner-s2 .item2 li:hover .icon .img-2{
    opacity: .2;
}
.inner-s2 .item2 li:hover .show{
    opacity: 0;
    visibility: hidden;
}
.inner-s2 .item2 li:hover .hide{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:after{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2 li:hover .icon:before{
    opacity: 1;
    visibility: visible;
}
.inner-s2 .item2{
    margin-top: 1rem;
}

.inner-tit{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-tit h3{
    font-size: .52rem;
    line-height: 1;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}
.inner-tit h4{
    font-size: .24rem;
    line-height: 1;
    color: #deb668;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 600;
    margin-top: .1rem;
    text-transform: uppercase;
}
.inner-tit .tit:after{
    position: absolute;
    content: '';
    top: -.22rem;
    right: -.7rem;
    width: .99rem;
    height: 1.04rem;
    background: url("../images/n-img-26.png") no-repeat 50%/100% auto;
}
.inner-tit .tit{
    position: relative;
}

.inner-s3 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: .76rem 0 .86rem .3rem;
}
.inner-s3 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: 1.1rem;
    transition: all .5s;
}
.inner-s3 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s3 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s3 .list li h3{
    font-size: .28rem;
    line-height: .4rem;
    color: #333333;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s3 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .24rem;
    color: #333333;
    opacity: .7;
    transition: all .5s;
}
.inner-s3 .list li .jt{
    align-self: center;
    margin-left: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s3 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-29.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s3 .list li:hover time,
.inner-s3 .list li:hover time span{
    color: #ffffff;
}
.inner-s3 .list li:hover h3,
.inner-s3 .list li:hover p{
    color: #ffffff;
}
.inner-s3 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s3 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}
.inner-s3 .list li{
    position: relative;
}
.inner-s3 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s3 .list{
    position: relative;
    margin-top: .66rem;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: .69rem;
}
.pagination a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.14rem;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.pagination a:hover {
    background: #AA0203;
    color: #fff;
    border: 1px solid #AA0203;
}

.inner-s4 .list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    padding: .72rem 0 .68rem;
}
.inner-s4 .list li .pic{
    width: 3.8rem;
    height: 2.13rem;
}
.inner-s4 .list li .text{
    width: calc(100% - 5.16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner-s4 .list li time{
    display: flex;
    align-items: baseline;
    font-size: .24rem;
    line-height: 1;
    color: #cccccc;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-right: .7rem;
    transition: all .5s;
}
.inner-s4 .list li time span{
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #aa0203;
    font-weight: 700;
    margin-right: .05rem;
    transition: all .5s;
}
.inner-s4 .list li .txt{
    flex: 1;
    overflow: hidden;
}
.inner-s4 .list li h3{
    font-size: .28rem;
    line-height: .36rem;
    color: #333333;
    max-height: .72rem;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
    transition: all .5s;
}
.inner-s4 .list li p{
    margin-top: .14rem;
    font-size: .18rem;
    line-height: .28rem;
    color: #333333;
    opacity: .6;
    transition: all .5s;
}
.inner-s4 .list li .jt{
    margin-top: .3rem;
    width: .4rem;
    height: .4rem;
    background: url("../images/n-img-27.png") no-repeat 50%/100%;
    transition: all .5s;
}
.inner-s4 .list li:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list li:after{
    position: absolute;
    content: '';
    left: calc((100vw - 16rem) / -2);
    right: calc((100vw - 16rem) / -2);
    top: 0;
    bottom: 0;
    background: #AA0203 url("../images/n-img-31.png") no-repeat left bottom/auto 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.inner-s4 .list li:hover time,
.inner-s4 .list li:hover time span{
    color: #ffffff;
}
.inner-s4 .list li:hover h3,
.inner-s4 .list li:hover p{
    color: #ffffff;
}
.inner-s4 .list li:hover .jt{
    background-image: url("../images/n-img-28.png");
}
.inner-s4 .list li:hover:after{
    opacity: 1;
    visibility: visible;
}

.inner-s4 .list li{
    position: relative;
}
.inner-s4 .list:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #e8e4e4;
}
.inner-s4 .list{
    position: relative;
    margin-top: .66rem;
}

@media (max-width: 1025px) {
    .inner-s1 .tit h2{
        font-size: .26rem;
        line-height: .3rem;
    }
    .inner-s1 .item1 li img{
        height: .7rem;
    }
    .inner-s1 .item1{
        margin-top: .2rem;
        padding-top: .2rem;
    }
    .inner-s1 .item1 .images{
        margin-top: -2rem;
    }
    .inner-s1 .item1 .images img{
        width: 100%;
    }
    .inner-s1 .item1 .images:after{
        right: -.15rem;
        width: 41.40625vw;
        height: 13.8vw;
    }
    .inner-s1 .item2 .pic{
        padding-top: 42vw;
    }
    .inner-s1 .item2 a{
        border-radius: .1rem;
    }
    .inner-s1 .item2 .play{
        width: .45rem;
        height: .45rem;
        right: .2rem;
        bottom: .2rem;
    }
    .inner-s1 .item3 .li h3{
        font-size: .2rem;
        line-height: .3rem;
        padding-left: .2rem;
    }
    .inner-s1 .item3 .li h4{
        font-size: .18rem;
        line-height: .26rem;
        margin-top: .05rem;
    }
    .inner-s1 .item3 .li:before{
        top: .28rem;
        width: .15rem;
        height: .15rem;
    }
    .inner-s1 .item3 .li{
        padding: .2rem 0;
    }
    .inner-s1 .item3:after{
        width: 24.27vw;
        height: 22.39vw;
        right: -.15rem;
    }
    .inner-s1 .item3{
        padding-top: .3rem;
        padding-bottom: 0;
    }
    .inner-page{
        padding: .4rem 0;
    }
    .inner-s2 .item1 h3{
        font-size: .26rem;
        line-height: 1.5;
    }
    .inner-s2 .item1 .desc{
        font-size: .18rem;
        line-height: 1.85;
        margin-top: .1rem;
    }
    .inner-s2 .item1 .desc p + p{
        margin-top: .1rem;
    }
    .inner-s2 .item2 li .num{
        width: 100%;
    }
    .inner-s2 .item2 li .hide{
        display: none;
    }
    .inner-s2 .item2 li .num .line{
        display#fff;
    background: #AA0203;
}
.n_sanji{
    position: relative;
    margin-top: -.63rem;
}

.inner_s7 .item1 .left{
    width: 3.07rem;
}
.inner_s7 .item1 .pic{
    height: 4.09rem;
}
.inner_s7 .item1 .right{
    width: calc(100% - 3.48rem);
    align-self: center;
}
.inner_s7 .item1 h3{
    font-size: .3rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
}
.inner_s7 .item1 .desc p,
.inner_s7 .item1 .desc p *{
    font-size: .2rem !important;
    line-height: 1.6 !important;
    color: #464646;
}
.inner_s7 .item1 .desc p + p{
    margin-top: .29rem;
}
.inner_s7 .item1 .desc{
    margin-top: .41rem;
    height: 1.57rem;
    overflow-y: auto;
    padding-right: .1rem;
}
.inner_s7 .item1 .desc::-webkit-scrollbar {width:4px;height: 8px;background-color: #F5F5F5;}
.inner_s7 .item1 .desc::-webkit-scrollbar-track {border-radius: 0;background-color: #E2E2E2;}
.inner_s7 .item1 .desc::-webkit-scrollbar-thumb {border-radius: 0; background-color: #AA0203;}

.inner_s7 .item1 h6 a img{
    display: block;
    height: .05rem;
    margin-left: .1rem;
}
.inner_s7 .item1 h6 a{
    display: flex;
    align-items: center;
    font-size: .18rem;
    line-height: .24rem;
    color: #AA0203;
}
.inner_s7 .item1 h6{
    margin-top: .6rem;
}
.inner_s7 .item1 .content{
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_s7 .item1{
    margin-top: .85rem;
    padding: .5rem .6rem .7rem;
    background: #FCF3F3 url("../images/n-img-26.png") no-repeat bottom right/5.27rem;
}
.inner_s7 .item2 .left{
    width: 47.65%;
}
.n_list01 li a{
    height: .81rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.n_list01 li h3{
    flex: 1;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    padding-left: .36rem;
    background: url("../images/n-img-27.png") no-repeat left center/.24rem;
    transition: .5s;
}
.n_list01 li time{
    display: block;
    font-size: .2rem;
    line-height: 1;
    color: #AA0203;
    margin-left: .2rem;
    flex-shrink: 0;
}
.n_list01 li:not(:last-child):before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #D8D8D8;
    opacity: .4;
}
.n_list01 li:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #AA0203;
    transition: .5s;
}
.n_list01 li{
    position: relative;
}
.n_list01 li:hover:after{
    left: 0;
    width: 100%;
}
.n_list01 li:hover h3{
    color: #AA0203;
    font-weight: bold;
}
.n_list01{
    margin-top: .13rem;
}
.inner_s7 .item2 .right{
    width: 47.65%;
}
.inner_s7 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: .52rem .47rem .28rem;
    background: #fff;
    box-shadow: 0 .02rem .22rem 0 rgba(170, 2, 3, 0.0881);
}
.inner_s7 .item2 .bg1{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 1.25rem;
    background: url("../images/n-img-28.png") no-repeat 50%/100% 100%;
    z-index: 1;
}
.inner_s7 .item2 .bg2{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 4.81rem;
    background: url("../images/n-img-29.png") no-repeat 50%/cover;
    transform: translateX(-50%);
}
.inner_s7 .item2{
    margin-top: .84rem;
    position: relative;
    padding: .72rem .5rem .13rem;
}

.inner_s7 .swiper a{
    display: block;
}
.inner_s7 .swiper a .pic{
    padding-top: 3.91rem;
}
.inner_s7 .swiper .btn{
    width: .4rem;
    height: .4rem;
    background: #fff no-repeat 50%/.1rem;
    border-radius: 50vw;
    transition: .5s;
}
.inner_s7 .swiper .prev{
    left: -.2rem;
    background-image: url("../images/prev-1.png");
}
.inner_s7 .swiper .next{
    right: -.2rem;
    background-image: url("../images/next-1.png");
}
.inner_s7 .swiper .prev:hover{
    background-image: url("../images/prev-2.png");
}
.inner_s7 .swiper .next:hover{
    background-image: url("../images/next-2.png");
}
.inner_s7 .swiper .btn:hover{
    background-color: #AA0203;
}
.inner_s7 .swiper{
    position: relative;
    margin-top: .4rem;
}
.inner_s7 .item3{
    margin-top: .84rem;
    padding: .66rem .5rem .82rem .6rem;
    background: #FCF3F3;
}
/*inner_s8*/
.inner_s8 .desc p,
.inner_s8 .desc p *{
    font-size: .18rem !important;
    line-height: .32rem !important;
    color: #333333;
    text-indent: 2em;
}
.inner_s8 .desc p + p{
    margin-top: .32rem;
}
.inner_s8 .img-box img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.inner_s8 .item1 .left{
    width: 54.6875%;
}
.inner_s8 .item1 h2{
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-size: .42rem;
    line-height: .5rem;
    color: #aa0203;
    font-weight: bold;
    font-family: 'SourceHanSerifCN', serif;
}
.xxls{width:100%;margin-top: 1rem;}
.xxls img{max-width:100%;}
.inner_s8 .item1 .desc{
    margin-top: .37rem;
}
.inner_s8 .item1 .ul{
    margin-top: .98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inner_s8 .item1 .ul .li h3{
    display: flex;
    align-items: flex-start;
    font-size: .76rem;
    color: #deb668;
    line-height: 1;
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.inner_s8 .item1 .ul .li h3 span{
    font-size: .2rem;
    line-height: 1;
    font-family: "Microsoft Yahei", sans-serif;
    font-weight: normal;
    margin: .1rem 0 0 .1rem;
}
.inner_s8 .item1 .ul .li h4{
    font-size: .2rem;
    line-height: .3rem;
    color: #999999;
    margin-top: 0;
}
.inner_s8 .item1 .ul .li.li2{
    width: 1px;
    height: .9rem;
    background: #e4e0e0;
}
.inner_s8 .item1 .right{
    width: 31.25%;
}
.inner_s8 .item1{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .left{
    width: 31%;
}
.inner_s8 .item2 .left h6 img{
    display: block;
    width: .29rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h3{
    font-size: .42rem;
    line-height: .46rem;
    color: #deb668;
    font-weight: bold;
    text-align: center;
    margin-top: .24rem;
    font-family: 'SourceHanSerifCN', serif;
}
.inner_s8 .item2 .left h4{
    font-size: .3rem;
    line-height: .34rem;
    color: #fff;
    text-align: center;
    margin-top: .16rem;
}
.inner_s8 .item2 .left h5 img{
    display: block;
    width: .21rem;
    margin: 0 auto;
}
.inner_s8 .item2 .left h5{
    margin-top: .39rem;
}
.inner_s8 .item2 .right{
    width: 67.875%;
    margin-top: 1.13rem;
}
.inner_s8 .item2 .desc p,
.inner_s8 .item2 .desc p *{
    color: #fff;
}
.inner_s8 .item2 .content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item2 .bg1{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 3.36rem;
    background: url("../images/n-img-34.png") no-repeat top center/100% auto;
    transform: translateX(-50%);
    z-index: 1;
}
.inner_s8 .item2 .bg1:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 37.79%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0 ,#AA0203 100%);
}
.inner_s8 .item2 .bg2{
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 1.27rem;
    width: 100vw;
    background: #AA0203;
    transform: translateX(-50%);
}
.inner_s8 .item2 .bg3{
    position: absolute;
    left: calc(.42rem + (100vw - 16rem) / -2);
    top: .09rem;
    width: 2.43rem;
    height: 2.17rem;
    background: url("../images/n-img-36.png") no-repeat top center/100% 100%;
    z-index: 2;
}
.inner_s8 .item2 .bg4{
    position: absolute;
    right: calc((100vw - 16rem) / -2);
    bottom: .48rem;
    width: 1.45rem;
    height: 1.45rem;
    background: url("../images/n-img-35.png") no-repeat top center/100% 100%;
}
.inner_s8 .item2 {
    position: relative;
    padding: 2.08rem 0 .58rem;
    margin-top: .71rem;
}
.inner_s8 .item3 .left{
    width: 22.5%;
}
.inner_s8 .item3 .left .img-box{
    height:5.6rem;
}
.inner_s8 .item3 .left .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inner_s8 .item3 .right{
    width: 71.75%;
}
.inner_s8 .item3 ul li{
    display: flex;
    align-items: flex-start;
}
.inner_s8 .item3 ul li + li{
    margin-top: .3rem;
}
.inner_s8 .item3 ul li .img{
    width: .24rem;
    margin-top: .02rem;
    margin-right: .42rem;
    flex-shrink: 0;
}
.inner_s8 .item3 ul li .img img{
    display: block;
    width: 100%;
}
.inner_s8 .item3 ul li .txt{
    flex: 1;
    overflow: hidden;
    padding-bottom: .34rem;
    border-bottom: 1px solid #fceeee;
}
.inner_s8 .item3 ul li h3{
    font-size: .18rem;
    line-height: .32rem;
    color: #333333;
}
.inner_s8 .item3 .h2 h2{
    font-size: .42rem;
    line-height: .4rem;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    text-align: center;
}
.inner_s8 .item3 .h2 h2 span{
    color: #aa0203;
    text-align: center;
     font-family: 'SourceHanSerifCN', serif;
    font-weight: bold;
}
.inner_s8 .item3 .content{
    margin-top: .62rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner_s8 .item3 .bg1{
    position: absolute;
    bottom: -0.65rem;
    right: calc((100vw - 16rem) / -2);
    width: 7.71rem;
    height: 1.47rem;
    background: url("../images/n-img-39.png") no-repeat 50%/100% 100%;
}
.inner_s8 .item3{
    margin-top: 1.23rem;
    position: relative;
}
.inner_s8 .item4 .left{
    /* flex: 1; */
    overflow: hidden;
    margin-top: 0.5rem;
}
.inner_s8 .item4 .desc p + p{
    margin-top: 0.6rem;
}
.inner_s8 .item4 .right{
    /* margin-left: .8rem; */
    /* fle