body,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ul,ol,li,form,button,input,textarea,th,td {
    font-weight: normal;
    margin: 0;
    padding: 0
}

/*滚动条*/
html {
    overflow-y: scroll;
}

:root {
    overflow-y: auto;
    overflow-x: hidden;
}

:root body {
    position: absolute;
}

body {
    width: 100vw;
    overflow: hidden;
}

/*双击选中
div{
    -moz-user-select:none;/*火狐*/
    -webkit-user-select:none;/*webkit浏览器*/
    -ms-user-select:none;/*IE10*/
    -khtml-user-select:none;/*早期浏览器*/
    user-select:none;
}
*/
body,button,input,select,textarea,h1,h2,h3,h4,h5,h6,i {
    font: normal 14px "PingFangSC-Regular", "Helvetica Neue", "Microsoft YaHei", Helvetica, STHeiTi, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}
a {
    text-decoration: none;
    color: #595757;
}
a:hover {
    text-decoration: none;
}
ol li, ul li { list-style:none; }
img,embed,object,video {
    max-width: 100%;
    border: 0;
}
button,input,textarea {
    font-size: 100%;
    vertical-align: middle;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none
}
table {
    border-spacing: 0;
    border-collapse: collapse
}
div,a {
    -webkit-tap-highlight-color: rgba(255,255,255,0)
}
input[type=button], input[type=submit], input[type=file], button {
    cursor:pointer;
    outline:0px;
    -webkit-appearance:none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.clearFloat {
    *zoom:1
}
.clearFloat:after {
    font-size: 0;
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: ' ';
}
ul {
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    user-select: none;
}
/*body::-webkit-scrollbar{*/
    /*width:0;*/
/*}*/
/*::-webkit-scrollbar {*/
    /*display: none;!*隐藏滚轮*!*/
/*}*/

/*
rem 布局
1920px 1rem=192px
750px 1rem =75px
*/

/*默认为1920 1rem=192px，媒体查询适配手机*/
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*height: 110px;*/
    height: 0.573rem;
    width: 100%;
    border-bottom: 1px solid #E8E9EB;
}
.logo-container {
    display: flex;
    align-items: center;
    margin-left: 3.78%;
}
.logo{
    display: block;
    background: url(../img/logo2024.png) no-repeat center;
    background-size: contain;
    /*width: 516px;*/
    width: 2.6875rem;
    /*height: 58px;*/
    height: 0.3rem;
}
.logo2{
    display: block;
    background: url(../img/logo2024.png) no-repeat center;
    background-size: contain;
    /*width: 516px;*/
    width: 2.6875rem;
    /*height: 58px;*/
    height: 0.3rem;
}
.header-menu-mobile {
    display: none;
    background: url("../img/daohan_icon@3x.png") no-repeat center;
    background-size: contain;
    cursor: pointer;

    /*height: 35px;*/
    /*width: 35px;*/
    height: 0.182rem;
    width: 0.182rem;

    margin-top: 10px;
    /*margin-top: 0.052rem;*/

    margin-right: 3%;
    /*margin-right: 3vw;*/
}
.open {
    background-image: url("../img/guanbi@3x.png");
}


/*导航*/
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    /*height: 0.354rem;*/
    width: 100%;
    border-bottom: 1px solid #E8E9EB;
    box-shadow: 0 1px #E8E9EB;

}
.nav {
    height: 100%;
    display: flex;
    margin-left: 3.75%;
}
.nav li{
    cursor: pointer;
    text-align: center;
    flex-grow: 1;
/*    width: 64px;*/

    height: 100%;
    line-height: 64px;
}
.nav li:nth-child(n+2){
    /*margin-left: 40px;*/
    margin-left: 0.28rem;
}
.nav li a {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;

    font-size: 16px;
    font-weight: bold;
    color: #595757;
    min-width: 64px;
}
.nav li a:hover,a.active {
    color: #D70110;
    border-bottom: 3px solid #D70110;
}
/*搜索*/
.search {
    margin-right: 3.75%;
}
.search form {
    display: flex;
    align-items: center;
}
.search .search-box {
    border: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    background: #F3F3F3;
    border-radius: 18px;
    width: 220px;
    height: 36px;
    padding: 0 20px;

}
.search input::-webkit-input-placeholder {
    opacity: 0.7;
    font-size: 12px;
    line-height: normal;
    color: #989595;
    text-align: left;
    /*padding-left: 19px;*/
}
.search .search-btn {
    border: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    background: url(../img/search@2x.png) no-repeat center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    margin-left: -35px;
    cursor: pointer;
}
.nav-container-m {
    display: none;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 99;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}
.search-m {
    margin: 0.4rem auto;
}
.search-m form {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-m .search-box-m {
    border: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    background-color: #F3F3F3;
    border-radius: 18px;
    width: calc(80% - 20px);
    height: 36px;
    padding: 0 20px;
    /*line-height: normal;*/
    font-size: 14px;
    color: #595757;
}
.search-m input::-webkit-input-placeholder {
    opacity: 0.7;
    font-size: 12px;
    line-height: normal;
    color: #989595;
    text-align: left;
    /*padding-left: 19px;*/
}

.search-m .search-btn-m {
    border: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    background: #F3F3F3 url(../img/search@2x.png) no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
    margin-left: -35px;
    cursor: pointer;
}

.nav-m {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav-m li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    margin-bottom: 0.1rem;
}
.nav-m li a {
    display: block;
    box-sizing: border-box;
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 18px;
    color: #595757;
    text-align: center;
}
.nav-m li a.active {
    color: #D70110;
    border-bottom: 3px solid #D70110;
}

@media screen and (max-width: 1000px) {
    .header {
        /*height: 115px;*/
        height: 1.533rem;
    }
    .logo {
        /*width: 498px;*/
        width: 6.64rem;
        /*height: 56px;*/
        height: 0.747rem;
    }
    .header-menu-mobile {
        display: block;
        /*width: 34px;*/
        width: 0.453rem;
        /*height: 28px;*/
        height: 0.373rem;
    }
    .nav-container {
        display: none;
    }
}

/*banner*/
.swiper-container {
    --swiper-pagination-color: #D6000E;
    width: 100%;
    /*max-height: 500px;*/
}
.swiper-slide {
    width: 100%;
}
.swiper-slide img {
    width: 100%;
    display: block;
}
#banner-swiper-mobile {
    display: none;
}

@media screen and (max-width: 1000px){
    #banner-swiper {
        display: none;
    }
    #banner-swiper-mobile {
        display: block;
        width: 100%;
        /*height: 410px;*/
    }
    #news-swiper {
        /*width: 696px;*/
        /*height: 410px;*/
    }
}



/*main*/
.main {
    margin: 0.2rem auto 0.4rem;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
}
.news {
    /*width: 876px;*/
    /*height: 500px;*/
    width: 70%;
}
.news-header,.key-header {
    border-bottom: 1px solid #E8E9EB;
    /*padding-bottom: 20px;*/
    padding-bottom: 0.1rem;
    display: flex;
    align-items: center;
}
.news-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/qiyedongtai@2x.png") no-repeat center;
    background-size: cover;
    margin-right: 5px;
}
.news-name {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #212121;
}
.news-wrapper {
    border-bottom: 1px solid #E8E9EB;
    /*margin-top: 20px;*/
    margin-top: 0.1rem;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
}
.news-top {
    width: 354px;
    height: 100%;
}
#news-swiper {
    width: 354px;
    max-width: 100%;
    /*width: 100%;*/
}
.swiper-item-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}



.news-swiper-img {
    height: 208px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
#news-swiper img {
    /*width: 100%;*/
    /*height: auto;*/

    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
#news-sp {
    /*bottom: 100px;*/
    top:175px;
    height: 30px;
}
.news-top-title {
    /*font-size: 16px;*/
    font-size: 17px;
    font-weight: bold;
    color: #212121;
    line-height: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.news-top-desc {
    font-size: 14px;
    color: #595757;
    line-height: 24px;
}

.news-list {
    /*margin-top: 10px;*/
    box-sizing: border-box;
    margin-left: 70px;
    margin-left: 0.36rem;
}
.news-item {
    /*height: 80px;*/
    margin: 20px 0;
}
.news-item:hover .news-list-title {
    color: #D6000E;
}
.news-item:hover .news-list-date {
    color: #D6000E;
}
.news-item a {
    display: block;
    height: 100%;
    box-sizing: border-box;
}
.news-list-title:before {
    content: ' ';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #D6000E;
    left: -16px;
    top: 10px;
}
.news-list-title {
    position: relative;
    display: inline-block;
    /*width: 440px;*/
    /*height: 26px;*/
    /*line-height: 30px;*/
    margin-bottom: 10px;

    font-size: 15px;
    color: #212121;
    line-height: 26px;
}

/*.info-title {*/
    /*font-size: 15px;*/
    /*color: #212121;*/
    /*line-height: 26px;*/
/*}*/
.news-list-date {
    font-size: 14px;
    color: #989595;
}

.more-mobile {
    display: none;
    text-align: center;
    margin: 30px auto;
    font-size: 18px;
    color: #212121;
    position: relative;
}
.more-mobile a span {
    display: inline-block;
    position: relative;
}
.more-mobile a span::after{
    content: "";
    width: 8px;
    height: 8px;
    border:  solid #D6000E;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    right: -40%;
}

/*关键信息*/
.key {
    /*width: 360px;*/
    width: 28.12%;
}
.key-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/xinxigongkai@2x.png") no-repeat center;
    background-size: cover;
    margin-right: 5px;
}
.key-name {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #212121;
}
.key-list {
    background: #FFFAF4;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.10);
    margin-top: 20px;
}
.key-list li {
    width: 100%;
    height: 82px;

    position: relative;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.key-list li:after {
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #D6000E;
    content: '';
    display: block;
    z-index: 2;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.key-list li:hover {
    background: #FFFDFB;
    box-shadow: 0 0 24px 0	rgba(0,0,0,0.10);
}
.key-list li:hover:after {
    width: 100%
}
.key-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 30px;*/
    box-sizing: border-box;
    width: 100%;
    height: 82px;
}
.key-item-name-wrapper {
    /*width: 100%;*/
    /*height: 82px;*/
    height: 60px;
}
.key-item-name {
    font-size: 16px;
    font-weight: bold;
    color: #212121;
    margin-bottom: 20px;
}
.key-item-name-bottom {
    width: 22px;
    height: 2px;
    background: #D6000E;
}

.key-list li:hover .key-item-name-bottom {
    width: 0;
    height: 0;
    background: transparent;
}
.key-list li:hover .key-item-name-bottom-hover {
    width: 28px;
    height: 10px;
    background: url("../img/tiaozhuan@2x.png") no-repeat center;
    background-size: cover;
}
.key-item-name-about {
    width: 34px;
    height: 34px;
    background: url("../img/qiyejieshao@2x.png") no-repeat center;
    background-size: cover;
}
.key-item-name-operation {
    width: 34px;
    height: 34px;
    background: url("../img/qiyejinji@2x.png") no-repeat center;
    background-size: cover;
}
.key-item-name-notice {
    width: 34px;
    height: 34px;
    background: url("../img/gonggao@2x.png") no-repeat center;
    background-size: cover;
}
.key-item-name-others {
    width: 34px;
    height: 34px;
    background: url("../img/qita@2x.png") no-repeat center;
    background-size: cover;
}


.notice {
    margin: 0.2rem auto;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
}
.notice-header {
    width: 150px;
}
.notice-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    /*width: 0.1rem;*/
    /*height: 0.1rem;*/
    background-image: url("../img/tongzhi@2x.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

    /*margin-right: 5px;*/
    margin-right: 0.025rem;
}
.notice-name {
    font-size: 20px;
    /*font-size: 0.1rem;*/
    font-weight: bold;
    color: #212121;
}
.notice-list{
    width: 1000px;
}
.notice-list .bd .tempWrap{ width:100% !important; }
.notice-list .bd ul {
    overflow: hidden;
    zoom: 1;
}
.notice-list .bd ul li {
    margin-left: 30px;
    float: left;
    height: 24px;
    line-height: 24px;
    text-align: left;
    _display:inline;
    width: auto !important;
}
.notice-list .bd ul li span {
    margin-left: 10px;
}

.notice-list-title {
    font-size: 15px;
    color: #212121;
    line-height: 26px;
}
.notice-list-date {
    font-size: 14px;
    color: #989595;
}


.notice-mobile {
    display: none;

}
.notice-header-mobile {
    border-bottom: 1px solid #E8E9EB;
    padding-bottom: 0.1rem;
}
.notice-list-mobile {
    /*height: 400px;*/
}
.notice-list-mobile li {
    width: 100%;
    margin: 20px 0;

}
.notice-list-mobile li:hover .notice-list-title-mobile {
    color: #D6000E;
}
.notice-list-mobile li:hover .notice-list-date-mobile {
    color: #D6000E;
}
.notice-list-mobile li a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}


.notice-list-title-mobile {
    line-height: 30px;
    overflow:hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    font-size: 15px;
    color: #212121;
    line-height: 26px;
}
.notice-list-date-mobile {
    height: 30px;
    line-height: 30px;

    font-size: 14px;
    color: #989595;
}
@media screen and (max-width: 1440px) {
    .main,.notice {
        width: 92%;
    }
}

@media screen and (max-width: 1200px){
    .main {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .news {
        width: 92%;
        max-width: 998px;
        margin: 0 auto 50px;
    }
    .news-wrapper {
        justify-content: space-between;
    }

    .key {
        width: 92%;
        max-width: 998px;
        margin: 0 auto;
    }
    .notice {
        display: none;
    }
    .notice-mobile {
        display: block;
        width: 92%;
        max-width: 998px;
        margin: 50px auto 0;
    }
}

@media screen and (max-width: 1000px){

    .news-wrapper {
        flex-direction: column;
        justify-content: center;
        border-bottom: 0;
    }
    #news-sp {
        /*bottom: 100px;*/
        top:150px;
        height: 30px;
    }
    .news-top {
        width: 100%;
    }
    .news-top-title {
        background-color: #FFFAF4;
        margin-top: 13px;
    }
    .news-list {
        padding-left: 16px;
        width: 100%;
        margin-left: 0;
    }
    /*#news-swiper {*/
        /*width: 700px;*/
        /*height: 400px;*/
        /*padding-bottom: ;*/
    /*}*/
    /*.news-slide {*/
        /*padding-bottom: 100%;*/
        /*position: relative;*/
    /*}*/
    /*.news-slide img {*/
        /*position:absolute;*/
        /*top:0;*/
        /*bottom:0;*/
        /*left:0;*/
        /*right:0;*/
        /*width:100%;*/
        /*margin:auto;*/
    /*}*/
    .notice-list-mobile li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }
    .more-mobile {
        display: block;
    }
}



/*footer*/
.footer-container {
    margin-top: 80px;
    color: #595757;
    background-color: #EEE8E0;
    font-size: 12px;
    line-height: 22px;
    padding: 15px 0;
    box-sizing: border-box;
}
.footer {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 80%;

    margin: 0 auto;
    flex-wrap: wrap;
    max-width: 1280px;
}
.copyright-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;

}

.footer-logo {
    width: 104px;
    height: 58px;
    background: url("../img/footer-logo@2x.png") no-repeat center;
    background-size: contain;
    margin-bottom: 14px;
}

.footer-QRcode {
    width: 118px;
    height: 118px;
    background: url("../img/erweima@2x.png") no-repeat center;
    background-size: contain;
    box-sizing: border-box;
}
@media screen  and (max-width: 900px) {
    .footer {
        flex-direction: column;
    }
    .copyright-container {
        align-items: center;
    }
    .copyright-container,.footer-QRcode {
        margin: 10px auto;
    }
}

/*list_news*/


/*资讯列表*/
.info-list-container {
    margin: 0.2rem auto;
    max-width: 1280px;
}

.info-list li {
    position: relative;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    background-color: #fafafa;
    border: 1px solid #F2F2F2;
    /*height: 320px;*/
    /*height: 1.667rem;*/
    height: 1.2rem;
    min-height: 200px;
    margin: 0 auto 10px;
    padding: 10px;
    box-sizing: border-box;
}
.info-list li:after {
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #D6000E;
    content: '';
    display: block;
    z-index: 2;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.info-list li:hover {
    background: #FFFDFB;
    box-shadow: 0 0 24px 0	rgba(0,0,0,0.10);
}
.info-list li:hover:after {
    width: 100%
}

.info-list li a {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.info-list li .img {
    /*width: 337px;*/
    width: 1.755rem;
    /*height: 198px;*/
    height: 1.03rem;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    overflow:hidden;
}
.info-list li .img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.info-list li .info {
    width: 615px;
    height: 1.03rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 40px;
}
.info-title{
    font-size: 20px;
    color: #212121;

    line-height: 30px;
    overflow: hidden;
    text-overflow:ellipsis;
    -o-text-overflow:ellipsis;
    -icab-text-overflow: ellipsis;
    -khtml-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 17px;


}
.info-list li .info .p {
    font-size: 15px;
    color: #595757;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    margin-bottom: 17px;


}
.info-list li .date {
    background: #D2D1CF;
    width:100px;height:100px;
    display: flex;justify-content: center;align-items: center;flex-direction: column;
    color: #ffffff;
}
.info-list li:hover .date {
    background: url(../img/riqi@2x.png) no-repeat center center;background-size: cover;
}
.info-list li .date .date-day {
    font-size: 24px;
    margin-bottom: 5px;
}
.info-list li .date .date-year {
    font-size: 14px;
}
.date-mobile {
    display: none;
    font-size: 14px;
    color: #989595;
    text-align: justify;
    line-height: 14px;
}

.page-wrapper {
    margin: 40px auto 0;
}
.page-m-wrapper {
    margin: 40px auto 0;
    display: none;
}
@media screen and (max-width: 1440px) {
    .info-list-container {
        max-width: 80%;
    }
}

@media screen and (max-width: 1280px) {
    .info-list-container {
        width: 85%;
        max-width: 998px;
    }
    .info-list li .date {
        display: none;
    }
    .info-list .p {
        display: none;
    }
    .info-list .date-mobile {
        display: block;
        /*font-size: 24px;*/
    }

}
@media screen and (max-width: 1000px) {
    .inside-banner {
        height: 4.51rem;
    }
    .inside-nav {
        width: 9.253rem;
        height: 1.067rem;
        margin-bottom: 0.533rem;
    }
    .inside-nav li {
        line-height: 1.067rem;
    }
    .inside-nav a:hover, a.active {
        color: #D70110;
        border-bottom: 1px solid #D6000E;
    }

    .info-list-container{
        width: 94%;
    }
    .info-list li {
        height: 2.88rem;
        /*height: 216px;*/
        padding: 0 5px;
    }
    .info-list li .img {
        /*!*width: 258px;*!*/
        width: 3.44rem;
        /*!*height: 152px;*!*/
        height: 2.027rem;
        /*!*margin-right: ;*!*/
    }
    .info-list li .info {
        width: 5.07rem;
        height: 2.027rem;
    }
    .info-list li .info-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .page-wrapper {
        display: none;
    }
    .page-m-wrapper {
        display: block;
    }
}

/*3、资讯详情*/
.info-loc {
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #212121;
    line-height: 30px;
    padding: 10px 5px;
}
.info-line-red {
    background: #D6000E;
    width: 100%;
    height: 2px;
    /*margin: 30px auto 30px;*/
    margin: 0.156rem auto;
}
.info-detail-title {
    font-family: PingFangSC-Semibold;
    font-size: 30px;
    color: #212121;
    /*margin-bottom: 22px;*/
    margin-bottom: 0.115rem;
}
.info-detail-related {
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #989595;
}
.info-line-grey {
    background: #EAEAEA;
    width: 100%;
    height: 1px;
    /*margin: 20px auto 10px;*/
    margin: 0.1rem auto 0.05rem;
}
.info-text {
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #212121;
    line-height: 30px;
}
.info-nav {
    line-height:28px;
    margin: 50px auto 0;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.info-nav li {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    width: 310px;

    background: #D6000E;
    padding: 0 5px;
    box-sizing: border-box;
}
.info-nav li:nth-child(-n+2) {
    margin-right: 20px;
}
.info-nav a {
    display: inline-block;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.info-nav-prev::before {
    content: "";
    width: 8px;
    height: 8px;
    border:  solid #ffffff;
    border-width: 2px 0 0 2px;
    transform: translate(-50%, -50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 8px;
}
.info-nav-next::after {
    content: "";
    width: 8px;
    height: 8px;
    border:  solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 1px;
}
.info-nav-title-m {
    display: none;
}
/*@media screen and (max-width: 1440px) {*/
    /*.info-container {*/
        /*width: 80%;*/
    /*}*/

/*}*/
/*@media screen and (max-width: 1280px) {*/
    /*.info-container {*/
        /*width: 85%;*/
    /*}*/

/*}*/
@media screen and (max-width: 1000px) {
    /*.inside-banner {*/
        /*height: 4.51rem;*/
    /*}*/
    /*.inside-nav {*/
        /*width: 9.253rem;*/
        /*height: 1.067rem;*/
        /*margin-bottom: 0.533rem;*/
    /*}*/
    /*.inside-nav li {*/
        /*line-height: 1.067rem;*/
    /*}*/
    /*.inside-nav a:hover, a.active {*/
        /*color: #D70110;*/
        /*border-bottom: 1px solid #D6000E;*/
    /*}*/
    .info-container {
        width: 95%;
    }
    .info-source {
        display: none;
    }
    .info-nav-title {
        display: none;
    }
    .info-nav-title-m {
        display: inline-block;
    }
}

/*二级页面导航*/
.inside-banner {
    width: 100%;
    height: 338px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.inside-nav {
    text-align:center;
    font-size: 16px;
    width: 5.5rem;
    height: 64px;
    border-radius: 32px;
    background: #ffffff;
    margin-bottom: 69px;
    display: flex;
    justify-content: center;
}
.inside-nav li {
    cursor: pointer;
    text-align: center;
    flex-grow: 1;
    max-width: 64px;
    width: 64px;
    height: 100%;
    line-height: 64px;
}
.inside-nav li:nth-child(n+2){
    margin-left: 0.3rem;
}
.inside-nav li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;

    font-size: 16px;
    color: #212121;
    min-width: 64px;
}

.inside-nav a:hover, a.active {
    color: #D70110;
    border-bottom: 3px solid #D6000E;
}

.inside-banner-m {
    width: 100%;
    /*height: 338px;*/
    height: 4.51rem;
    display: none;
    position: relative;
}
.inside-nav-btn-container {
    position: absolute;
    width: 80%;
    left: 50%;
    margin-left: -40%;
    top: 60%;
}
.inside-nav-btn {
    width: 80%;
    /*height: 80px;*/
    height: 1.2rem;
    /*line-height: 80px;*/
    line-height: 1.2rem;
    background: #ffffff;
    /*padding: 0 30px;*/
    padding: 0 0.4rem;
    cursor: pointer;
    margin: 0 auto;
    font-size: 20px;
    color: #212121;
    text-align: left;
    background: #FFFFFF;
    box-shadow: 0 6px 16px 0 rgba(52,36,19,0.10);
    border-radius: 39px;
    border-radius: 39px;
    position: relative;
}
.inside-nav-btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border: solid #989595;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10%;
}
.inside-nav-m {
    display: none;
    width: 80%;
    margin: 0 auto;
    background: #FDF9F4;
    border-radius: 3px;
    position: relative;
    z-index: 999;
}
.inside-nav-m li {
    /*height: 80px;*/
    height: 1.4rem;
    /*line-height: 80px;*/
    line-height: 1.4rem;
    font-size: 20px;
    color: #D6000E;
    text-align: left;
    padding-left: 20px;
}
@media screen and (max-width: 1000px) {
    .inside-banner {
        display: none;
    }
    .inside-banner-m {
        display: block;
    }
}