@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw !important;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw !important;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}

@font-face {
    font-family: 'SourceHanSerifCN-Bold';
    src: url(../fonts/SourceHanSerifCN-Bold.otf);
}

@font-face {
    font-family: 'SourceHanSerifCN-Medium';
    src: url(../fonts/SourceHanSerifCN-Medium.otf);
}

@font-face {
    font-family: 'SourceHanSerifCN-SemiBold';
    src: url(../fonts/SourceHanSerifCN-SemiBold.otf);
}

@font-face {
    font-family: 'SourceHanSerifCN-Heavy';
    src: url(../fonts/SourceHanSerifCN-Heavy.otf);
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .18rem 'Microsoft YaHei', 'PingFang SC', arial, sans-serif;
    min-width: 320px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #a91a20;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
z-index:2;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    height: 1.33rem;
    transition: all .3s;
}

.header::after {
    content: "";
    position: absolute;
    height: 2rem;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
    opacity: 1;
    visibility: visible;
    background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.3),rgba(0,0,0,0.2),rgba(0,0,0,0));
    background-size: 100% 100%;
    transition: all .3s;
    z-index: -1;
}

.header.fixed {
    background-color: #A91A20;
}

.header.fixed::after {
    /* display: none; */
    height: 0;
}

.header>.container {
    height: 100%;
}

.header .logo {
    height: .77rem;
    color: #FFF;
    margin-right: .5rem;
}

.header .logo>img {
    margin-right: .2rem;
    height: 100%;
}

.header .logo .lo-txt {
    font-size: .2rem;
    line-height: 1.6;
}

.header .top {
    justify-content: flex-end;
    margin-top: .1rem;
}

.header .top>a {
    color: #FFF;
    font-size: .14rem;
    margin-right: .3rem;
    background-position: left center;
    background-repeat: no-repeat;
    font-family: 'PingFang SC-Bold';
}

.header .top>a:hover {
    color: #FCE7C8;
}

.header .top>.dbl2 {
   /* background-image: url(../images/home.svg);
    padding-left: .25rem; */
}

.header .top>.dbl3{
  /* background-image: url(../images/book.svg); 
    padding-left: .2rem;*/
    background-size: 14px;
}
.header .top>.dbl2,.header .top>.dbl3{

}
.header .top .search-btn {
    width: .22rem;
    height: .22rem;
    background: url(../images/search.svg)no-repeat center;
    background-size: 100%;
    cursor: pointer;
}

.search-content {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(169, 26, 32, .85);
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(../images/close.svg)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.search-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 7rem;
    height: .7rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .18rem;
    background: none;
    height: .7rem;
    padding-left: .15rem;
    width: calc(100% - 0.7rem);
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(../images/search.svg)no-repeat center;
    background-size: .3rem;
    height: .6rem;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}
.sjblj {
    display: none;
}
.nav li {
    font-family: 'PingFang SC-Bold';
}

.nav li>a {
    line-height: .5rem;
    color: #FFF;
    font-size: .2rem;
}

.nav li>a:hover {
    color: #FCE7C8;
}

.nav .drop {
    width: 1.4rem;
    left: 50%;
    top: .5rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    line-height: 2.4;
    margin-left: -.7rem;
    font-size: .16rem;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .1);
}

.nav .drop::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px transparent solid;
    border-right: 8px transparent solid;
    border-bottom: 8px #FFF solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.footer {
    background: url(../images/f-bg.jpg)no-repeat center;
    background-size: cover;
    padding-top: .45rem;
}

.footer .copyright {
    padding-top: .2rem;
    padding-bottom: .2rem;
    border-top: 1px rgba(255, 255, 255, .2) solid;
    margin-top: .3rem;
}

.footer .copyright p a {
    color: #FFF;
    opacity: .6;
    font-size: .14rem;
    line-height: 1.6;
    margin-right: .2rem;
}

.footer .copyright>a:last-child {
    margin-right: 0;
}

.footer .info {
    color: #FFF;
    line-height: 2.4;
    margin-top: .1rem;
    font-size: .16rem;
}

.footer .info>div {
    width: 40%;
}

.footer .link {
    width: 4.6rem;
    padding-right: 1.8rem;
    margin-right: 1.2rem;
}

.footer .link::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
}

.footer .title {
    line-height: 1.2;
    color: #FFF;
}

.footer .title .en {
    font-size: .32rem;
    text-transform: uppercase;
    opacity: .15;
    font-weight: bold;
    white-space: nowrap;
}

.footer .title .cn {
    font-size: .34rem;
    font-family: 'SourceHanSerifCN-Heavy';
    margin-top: -.2rem;
}

.footer .select-wrapper {
    width: 100%;
    position: relative;
    cursor: pointer;
    margin-top: .4rem;
}

.footer .select-button {
    width: 100%;
    height: .46rem;
    border: 0;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    padding: 0 .4rem 0 .2rem;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    color: #FFFFFF;
    font-size: .16rem;
}

.footer .select-down {
    position: absolute;
    top: 50%;
    right: .2rem;
    width: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-left: 5px transparent solid;
    border-right: 5px transparent solid;
    border-top: 5px #FFF solid;
}

.footer .select-list {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    /* bottom: .44rem; */
    top: 100%;
    overflow: hidden;
}

.footer .select-list ul {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 2.4;
    max-height: 7em;
}

.footer .select-list ul li {
    width: auto;
    padding-left: .2rem;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: .16rem;
}

.footer .select-list ul li:first-child {
    display: none;
}

.footer .select-list ul li.selected,
.footer .select-list ul li:hover {
    color: #fff;
    background: #A91A20;
}

@media (min-width:1025px) {
    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .nav .drop>a:hover {
        background-color: #A91A20;
        color: #FFF;
    }
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
    .header {
        height: 1.2rem;
    }
    .header .top>a,
    .header .logo .lo-txt {
        display: none;
    }
    .header .top {
        margin-top: 0;
    }
    .header .top .search-btn {
        width: 26px;
        height: 26px;
        margin-right: 60px;
    }
    .menu-btn {
        display: block;
    }
.sjblj {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #a91a20;
    padding: 0.1rem 0;
    margin: 0.4rem 0;
}
.sjblj a {
    line-height: 0.4rem;
    color: #fff;
    text-align: center;
    display: block;
    width: 25%;
    border-right: 1px solid #c07275;
    font-size: 0.2rem;
    margin: 0.1rem 0;
}
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #FFF;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem;
    }
    .nav li>a {
        line-height: 50px;
        color: #333;
        font-size: 16px;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 50px;
        width: 30px;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        background: none;
        box-shadow: none;
        margin-left: 0;
        font-size: 14px;
        padding-left: 20px;
    }
    .search-content .content {
        width: 80%;
        height: 60px;
    }
    .search-content .content input[type='text'],
    .home .gallery-thumbs .name {
        font-size: 17px;
        width: calc(100% - 70px);
    }
    .search-content .content input[type='submit'] {
        width: 60px;
        background-size: 30px;
    }
    .footer {
        height: auto;
    }
    .footer .link {
        margin-right: 1rem;
        padding-right: 1rem;
    }
    .footer .info,
    .footer .copyright>a,
    .footer .select-list ul li {
        font-size: 13px;
    }
    .footer .select-button {
        height: 36px;
        font-size: 14px;
    }
    .footer .select-list {
        /* bottom: 36px; */
    }
    .footer .title .en {
        font-size: 20px;
    }
    .footer .title .cn {
        font-size: 22px;
        margin-top: -13px;
    }
}

@media (max-width:950px) {
    .footer .link {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: .4rem;
    }
    .footer .link::after {
        display: none;
    }
}

@media (max-width:767px) {
    .header {
        height: 65px;
    }
    .header::after {
        height: 100px;
    }
    .header .logo {
        height: 40px;
    }
    .header .top .search-btn {
        margin-right: 50px;
    }
    .nav {
        top: 65px;
        height: calc(100vh - 65px);
    }
    .footer .info>div {
        width: 100%;
    }
    .footer .select-wrapper {
        margin-top: .3rem;
    }
}

@media (max-width:540px) {
    .header {
        height: 55px;
    }
    .header::after {
        height: 35px;
    }
    .header .logo {
        height: 35px;
    }
    .nav {
        top: 55px;
        height: calc(100vh - 55px);
    }
}

@media (max-width:375px) {
    .footer .info,
    .footer .copyright>a {
        font-size: 11px;
    }
}

.banner,
.banner .swiper-slide {
    overflow: hidden;
}

.banner img {
    width: 100%;
    transform: scale(1.05);
    transition: all 4s;
}

.banner .swiper-slide-active img {
    transform: scale(1);
}

.banner .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.6rem;
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    opacity: .6;
}

.banner .swiper-pagination {
    bottom: .3rem;
}

.banner .swiper-pagination-bullet {
    width: .48rem;
    height: .48rem;
    margin-right: .1rem !important;
    opacity: 1;
    background: none;
    overflow: hidden;
    text-indent: -9999px;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-family: 'arial';
}

.banner .swiper-pagination-bullet:last-child {
    margin-right: 0 !important;
}

.banner .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #FFF;
}

.banner .swiper-pagination-bullet-active {
    text-indent: 0;
    text-align: center;
    line-height: .46rem;
    font-family: 'arial';
    color: #FFF;
    opacity: 1;
    border: 1px #FFF dashed;
    font-size: .14rem;
}

.banner .swiper-pagination-bullet-active::after {
    display: none;
}

.home-title {
    line-height: 1.2;
}

.home-title .en {
    font-size: .32rem;
    font-weight: bold;
    background: linear-gradient( rgba(255, 177, 43, .7), rgba(255, 181, 53, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-transform: uppercase;
    opacity: .6;
}

.home-title .cn {
    font-family: 'SourceHanSerifCN-Heavy';
    color: #C30E1F;
    font-size: .36rem;
    margin-top: -.2rem;
}

.pub-more {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: .14rem;
    line-height: 1.2;
    padding-right: .12rem;
    text-transform: capitalize;
}

.pub-more::after {
    content: '+';
    color: #000;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1;
}

.pub-more:hover::after {
    color: #a91a20;
}

.c-more {
    text-align: center;
    margin-top: .4em;
}
.c-more .pub-more {
    position: relative;
}

.home-news {
    margin-top: .9rem;
}

.home-news .l-con {
    width: 8.9rem;
    margin-right: .25rem;
}

.home-news .focus {
    margin-top: .25rem;
}

.home-news .gallery-top {
    overflow: hidden;
}

.home-news .gallery-top .swiper-slide {
    overflow: hidden;
}

.home-news .gallery-top .pic {
    overflow: hidden;
    padding-top: 62.922%;
    width: 100%;
}

.home-news .gallery-top .pic img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.home-news .gallery-top .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: .9rem .5rem .55rem .5rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    color: #FFF;
    z-index: 9;
}

.home-news .gallery-top .title {
    font-size: .2rem;
    line-height: 1.5;
    margin-top: .1rem;
    font-family: 'PingFang SC-Bold';
}

.home-news .gallery-top .date {
    line-height: 1.2;
    font-family: 'PingFang SC-Semibold';
}

.home-news .gallery-top .date::before {
    content: '';
    position: absolute;
    left: -.5rem;
    top: 50%;
    height: 1px;
    width: .3rem;
    background-color: #FFF;
}

.home-news .gallery-top .date::before {
    content: '';
    position: absolute;
    left: -.5rem;
    top: 50%;
    height: 1px;
    width: .35rem;
    background-color: #FFF;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-news .gallery-top .date::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -.15rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF solid;
}

.home-news .gallery-thumbs {
    margin-top: -.2rem;
    padding-left: 1.15rem;
}

.home-news .gallery-thumbs .swiper-slide {
    height: 1.15rem;
    overflow: hidden;
    background-color: #000;
    border-right: 1px #FFF solid;
    cursor: pointer;
}

.home-news .gallery-thumbs .swiper-slide img {
    opacity: .7;
}

.home-news .gallery-thumbs .swiper-slide-active img {
    opacity: 1;
}

.home-news .gallery-thumbs .button {
    height: .55rem;
    width: 1.1rem;
    position: absolute;
    left: .6rem;
    bottom: 0;
    z-index: 10;
}

.home-news .gallery-thumbs .swiper-button-white {
    width: .55rem;
    height: .55rem;
    background: #D8D8D8 url(../images/prev.svg)no-repeat center;
    top: 0;
    margin-top: 0;
    background-size: .34rem;
}

.home-news .gallery-thumbs .swiper-button-prev {
    left: 0;
    background-color: #A91A20;
}

.home-news .gallery-thumbs .swiper-button-next {
    right: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-news .text-content {
    margin-top: .3rem;
}

.home-news .tabs {
    align-items: flex-end;
}

.home-news .tabs>div {
    margin-right: .2rem;
    padding-right: .3rem;
}

.home-news .tabs>div>span {
    font-size: .22rem;
    cursor: pointer;
    font-family: 'PingFang SC-Semibold';
}

.home-news .tabs>div .pub-more {
    display: none;
}

.home-news .tabs>div>span::after {
    content: '/';
    color: #333;
    font-size: .22rem;
    position: absolute;
    right: -.3rem;
    bottom: 0;
}

.home-news .tabs>div:last-child {
    margin-right: 0;
    padding-right: 0;
}

.home-news .tabs>div:last-child>span::after {
    display: none;
}

.home-news .tabs>div.on .pub-more {
    display: block;
}

.home-news .tabs>div.on>span {
    font-size: .3rem;
    color: #C30E1F;
    font-family: 'PingFang SC-Bold';
}

.home-news .tabs>div.on>span::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    bottom: -.1rem;
    background-color: #C30E1F;
}

.home-news .text-content .content {
    margin-top: .5rem;
}

.home-news .text-content .pic {
    display: none;
    width: 2.8rem;
    height: 1.8rem;
    overflow: hidden;
    margin-right: .3rem;
}

.home-news .text-content .tit {
    font-size: .2rem;
    line-height: 1.6;
    font-family: 'SourceHanSerifCN-Medium';
    margin-top: .15rem;
}

.home-news .text-content .des {
    display: none;
    font-size: .14rem;
    color: #9E9E9E;
    line-height: 1.7;
}

.home-news .text-content .date {
    font-size: .14rem;
    color: #9E9E9E;
    margin-top: .25rem;
}

.home-news .text-content .date .line {
    height: 1px;
    background-color: #D8D8D8;
    margin-right: .1rem;
}

.home-news .text-content .date .line::before {
    content: '';
    position: absolute;
    left: 15%;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #D8D8D8;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-news .text-content .con {
    overflow: hidden;
}

.home-news .text-content .item {
    /* padding-top: .37rem; */
    padding-bottom: .35rem;
}

.home-news .text-content .item .date {
    margin-top: .1rem;
}

.home-news .text-content .item.active .pic {
    display: block;
}
.home-news .text-content .item.active .des {
    display: -webkit-box;
}

.home-yaoke {
    overflow: hidden;
    z-index: 9;
    margin-top: 1rem;
    padding-bottom: 1.2rem;
    padding-top: .55rem;
}

.home-yaoke::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 11.6rem;
    z-index: 1;
    background: url(../images/bg1.png)no-repeat center;
    background-size: cover;
}

.home-yaoke::after {
    content: '';
    position: absolute;
    right: 0;
    top: .7rem;
    bottom: 0;
    width: 10.8rem;
    z-index: -1;
    background: url(../images/bg2.png)no-repeat center;
    background-size: cover;
}

.home-yaoke .home-title {
    z-index: 9;
}

.home-yaoke .content {
    z-index: 9;
    margin-top: .3rem;
}

.home-yaoke .content .title>span {
    font-size: .24rem;
    color: #A91A20;
    line-height: 1.2;
    font-family: 'PingFang SC-Bold';
}

.home-yaoke .content .con {
    width: 7.85rem;
    margin-right: .65rem;
}

.home-yaoke .sch .item {
    border-bottom: 1px rgba(169, 26, 32, 0.2) solid;
    padding-top: .2rem;
    padding-bottom: .2rem;
}

.home-yaoke .sch .item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background-color: #A91A20;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-yaoke .sch .item .pic {
    width: 2.95rem;
    height: 1.65rem;
    overflow: hidden;
    margin-right: .4rem;
}

.home-yaoke .sch .item .tit {
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.2;
    font-size: .2rem;
}

.home-yaoke .sch .item .des {
    color: rgba(51, 51, 51, 0.6);
    line-height: 1.7;
    margin-top: .1rem;
    font-size: .16rem;
    font-family: 'PingFang SC-Semibold';
}

.home-yaoke .sch .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-yaoke .sch .item:last-child::after {
    display: none;
}

.home-yaoke .con>div:last-child {
    margin-top: .25rem;
    padding-top: .35rem;
}

.home-yaoke .con>div:last-child::after {
    content: '';
    position: absolute;
    left: -.45rem;
    top: 0;
    width: 7.4rem;
    height: 5rem;
    border: 1px #D8D8D8 solid;
    z-index: -1;
}

.home-yaoke .con .swiper-slide {
    /* padding-bottom: .3rem; */
}

.home-yaoke .con .pic-con {
    position: relative;
    width: 100%;
    padding-top: 68.5%;
}

.home-yaoke .con .pic-con::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(0,0,0,.8),rgba(0,0,0,0));
}

.home-yaoke .con .pic-con .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* margin-right: .3rem; */
}

.home-yaoke .con .pic-con .pic img { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-yaoke .con .pic-con .tit {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75%;
    font-size: .2rem;
    color: #ffffff;
    font-family: 'SourceHanSerifCN-SemiBold';
    font-weight: 600;
    line-height: 1.3;
    z-index: 2;
    padding: .2rem .34rem;
}

.home-yaoke .con .pic-con .tit a {
    color: inherit;
}

.home-yaoke .con .pic-content {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4.6rem;
}

.home-yaoke .con .pic-content .pic {
    width: 2.2rem;
    height: 1.45rem;
    overflow: hidden;
}

.home-yaoke .con .swiper-button-black {
    display: none;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
    box-shadow: .05rem .05rem .1rem rgba(0, 0, 0, .1);
    background-size: .1rem;
    margin-top: -.2rem;
    pointer-events: unset;
}

.home-yaoke .con .swiper-button-prev {
    left: -.2rem;
}

.home-yaoke .con .swiper-button-next {
    right: auto;
    left: 4.1rem;
}

.home-yaoke .con .swiper-pagination-progressbar {
    left: 0;
    width: 2.65rem;
    height: 4px;
    background-color: #D8D8D8;
    top: auto;
    bottom: 0;
}

.home-yaoke .con .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #A91A20;
}

.home-yaoke .con .swiper-pagination-bullets {
    right: 5%;
    bottom: 5%;
}

.home-yaoke .con .swiper-pagination-bullet {
    position: relative;
    width: .8em;
    height: .8em;
    opacity: .5;
    background: transparent;
    margin: 0 .2em;
}
.home-yaoke .con .swiper-pagination-bullet::after{
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
}

.home-yaoke .con .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.home-info {
    width: 7.25rem;
    margin-right: .9rem;
    margin-top: .8rem;
}

.home-info .home-title .pub-more,
.home-renwu .home-title .pub-more {
    bottom: auto;
    top: .1rem;
}

.home-info .tabs,
.home-renwu .tabs {
    margin-top: .3rem;
    align-items: flex-end;
}

.home-info .tabs>span,
.home-renwu .tabs>span {
    font-size: .2rem;
    line-height: 1.2;
    cursor: pointer;
    margin-right: .2rem;
    font-family: 'PingFang SC-Regular';
}

.home-info .tabs>span:last-child,
.home-renwu .tabs>span:last-child {
    margin-right: 0;
}

.home-info .tabs>span.on,
.home-renwu .tabs>span.on {
    font-size: .24rem;
    color: #A91A20;
    padding-left: 10px;
    font-family: 'PingFang SC-Semibold';
}

.home-info .tabs>span.on::before,
.home-renwu .tabs>span.on::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #A91A20;
}

.home-info .content {
    margin-top: .2rem;
}

.home-info .item {
    padding-top: .27rem;
    padding-bottom: .27rem;
    border-bottom: 1px #D8D8D8 solid;
}

.home-info .item:last-child {
    border-bottom: 0;
}

.home-info .item .date {
    width: .64rem;
    height: .66rem;
    background-color: #FFF;
    box-shadow: 0 .05rem .1rem rgba(0, 0, 0, .1);
    overflow: hidden;
    margin-right: .3rem;
}

.home-info .item .date>span:first-child {
    font-family: 'SourceHanSerifCN-Bold';
    font-size: .28rem;
    color: #A91A20;
}

.home-info .item .date>span:last-child {
    background-color: #A91A20;
    color: #FFF;
    line-height: .28rem;
    font-size: .14rem;
}

.home-info .item .tit {
    font-size: .2rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.6;
}

.home-renwu {
    margin-top: .8rem;
}

.home-renwu .content {
    margin-top: .25rem;
}

.home-renwu .item {
    margin-bottom: .33rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-renwu .item:last-child {
    margin-bottom: 0;
}

.home-renwu .item .pic {
    width: 2.85rem;
    height: 1.6rem;
    overflow: hidden;
}

.home-renwu .item .text-con {
    border-bottom: 1px #D8D8D8 solid;
    padding-left: .3rem;
}

.home-renwu .item .text-con::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 8px transparent solid;
    border-right: 8px transparent solid;
    border-bottom: 8px #D8D8D8 solid;
    z-index: 1;
}

.home-renwu .item .text-con::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 0;
    border-left: 8px transparent solid;
    border-right: 8px transparent solid;
    border-bottom: 8px #FFF solid;
    z-index: 2;
}

.home-renwu .item .tit {
    font-size: .2rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.2;
    margin-top: .25rem;
}

.home-renwu .item .des {
    font-size: .16rem;
    line-height: 1.7;
    margin-top: .15rem;
    font-family: 'PingFang SC-Semibold';
}


.character-imgs {
    display: flex;
    gap: .32rem;
    margin-top: .15rem;
    height: 5.88rem;
}

.character-imgs .img-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.character-imgs .img-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 31%);
    z-index: 2;
}

.character-imgs .img-item .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-imgs .img-item:hover .img {
    transform: scale(1.1);
}

.character-imgs .item-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0.2rem 0.27rem 0.2rem;
    z-index: 2;
}

.character-imgs .item-tit {
    font-size: .2rem;
    line-height: .3rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    margin-top: .15rem;
}

.character-imgs .item-con {
    font-size: .16rem;
    line-height: 0.3rem;
    margin-top: .04rem;
    font-family: 'PingFang SC-Semibold';
    opacity: 0.8
}

.character-imgs .item-icon {
    width: 0.55rem !important;
}

.home-party {
    background: #F6EDE5 url(../images/bg3.jpg)no-repeat center bottom;
    background-size: cover;
    margin-top: 1rem;
    padding-top: .55rem;
    padding-bottom: .9rem;
}

.home-party .content {
    margin-top: .3rem;
}

.home-party .l-con {
    width: 4.05rem;
    margin-right: .2rem;
    background-color: #A91A20;
    margin-top: .35rem;
}

.home-party .l-con .pic {
    width: 100%;
    overflow: hidden;
    padding-top: 57%;
}

.home-party .l-con .pic img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.home-party .l-con .pic>span {
    width: 1.25rem;
    line-height: .38rem;
    font-size: .16rem;
    color: #FCE7C8;
    background-color: #A91A20;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.home-party .l-con .text-con {
    padding: .15rem .2rem;
}

.home-party .l-con .item {
    color: #FFF;
    line-height: 1.3;
    margin-bottom: .2rem;
}

.home-party .l-con .item:last-child {
    margin-bottom: 0;
}

.home-party .l-con .item .date {
    font-size: .14rem;
}

.home-party .l-con .item .tit {
    font-family: 'SourceHanSerifCN-SemiBold';
    margin-top: .1rem;
}

.home-party .c-con {
    margin-right: .2rem;
    min-width: 0;
}

.home-party .c-con .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .9rem;
    height: .9rem;
    background: url(../images/play.svg)no-repeat center;
    cursor: pointer;
    background-size: 100%;
    z-index: 9;
}

.home-party .c-con .swiper-slide {
    overflow: hidden;
    padding-top: 71.4%;
    cursor: pointer;
}

.home-party .c-con .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.home-party .c-con .swiper-pagination {
    bottom: .25rem;
}

.home-party .c-con .swiper-pagination-bullet {
    width: .3rem;
    height: 6px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #FFF;
}

.home-party .c-con .swiper-pagination-bullet-active {
    width: .5rem;
}

.home-party .r-con {
    width: 4.3rem;
    padding-top: .35rem;
}

.home-party .r-con .title {
    line-height: .38rem;
    width: 1.25rem;
    font-size: .16rem;
    background-color: #A91A20;
    color: #FCE7C8;
}

.home-party .r-con .item {
    margin-bottom: .28rem;
}

.home-party .r-con .item:last-child {
    margin-bottom: 0;
}

.home-party .r-con .item .pic {
    width: 1.4rem;
    height: .78rem;
    overflow: hidden;
    margin-right: .25rem;
}

.home-party .r-con .item .tit {
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.6;
    font-size: .2rem;
}

.home-party .r-con .text-con {
    margin-top: .22rem;
}

.maskBg {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0
}

.videoShow {
    width: 12.8rem;
    height: 7.6rem;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.maskBg.active {
    opacity: 1;
}

.videoShow.active {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.videoShow .close {
    color: #FFF;
    position: absolute;
    right: 0;
    top: -.3rem;
    background: url(../images/close-white.svg)no-repeat left center;
    background-size: .2rem;
    padding-left: .3rem;
    cursor: pointer;
}

.home-content {
    background: url(../images/bg4.jpg)no-repeat center top;
    background-size: cover;
    overflow: hidden;
}

.home-media {
    padding-top: 2.4rem;
}

.home-media .title {
    width: 8.86rem;
    position: absolute;
    left: 50%;
    top: 1.2rem;
    margin-left: -4.43rem;
}

.home-media .title img {
    width: 100%;
}

.home-media .home-title .pub-more {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-media .share {
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 1;
}

.home-media .share>div {
    width: .46rem;
    margin-right: .2rem;
    cursor: pointer;
}

.home-media .share>div>img {
    width: 100%;
}

.home-media .share .erwma {
    display: none;
    width: 1.2rem;
    height: 1.2rem;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    top: .46rem;
}

.home-media .content {
    margin-top: .35rem;
}

.home-media .con {
    width: 4.65rem;
    height: 7.38rem;
    background: url(../images/tbg3.jpg)no-repeat center top;
    background-size: cover;
    padding: .3rem .5rem;
    margin-right: .3rem;
}

.home-media .con .item {
    border-bottom: 1px dashed #FFF;
    padding-top: .3rem;
    padding-bottom: .3rem;
}

.home-media .con .item .pic {
    width: .97rem;
    height: .48rem;
    margin-right: .2rem;
    background-color: #FFF;
}

.home-media .con .item .pic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.home-media .con .item .tit {
    font-size: .2rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.5;
    color: #FFF;
}

.home-media .con .more {
    color: #FFF;
    font-size: .16rem;
    line-height: 1.6;
    margin-top: .3rem;
}

.home-media .pic-content .pic {
    overflow: hidden;
    height: 3.64rem;
}

.home-media .pic-content .pic video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-media .pic-content .pic .btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .9rem;
    height: .9rem;
    background: url(../images/play.svg) no-repeat center;
    cursor: pointer;
    background-size: 100%;
    z-index: 9;
}

.home-media .pic-content .pic .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding-top: .4rem;
    padding-bottom: .1rem;
    padding-right: .2rem;
    background-image: linear-gradient(rgba(169, 26, 32, 0), rgba(169, 26, 32, 1));
}

.home-media .pic-content .pic .text-con .icon {
    width: .32rem;
    height: .32rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: .1rem;
}

.home-media .pic-content .pic .text-con .tit {
    font-size: .2rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.2;
    color: #FFF;
}

.home-media .pic-content .dou {
    background-image: url(../images/dou.svg);
}

.home-media .pic-content .wx {
    background-image: url(../images/wx.svg);
}

.home-media .pic-content .wb {
    background-image: url(../images/wb.svg);
}
.home-media .pic-content .bil{
    background-image: url(../images/bil.png);
}

.home-media .pic-content .pic1 {
    width: 63%;
}

.home-media .pic-content .pic2 {
    width: 36%;
}

.home-media .pic-content .pic1 .text-con {
    padding-left: .2rem;
}

.home-media .pic-content .pic2 .text-con {
    padding-left: .1rem;
}

.home-media .pic-content .pic:nth-child(3),
.home-media .pic-content .pic:nth-child(4) {
    /* margin-top: .1rem; */
}

.home-picture {
    padding-top: 1.7rem;
}

.home-picture .title {
    position: absolute;
    right: 0;
    top: 1.4rem;
    width: 9.35rem;
}

.home-picture .title img {
    width: 100%;
}

.home-picture .content {
    margin-top: .3rem;
}

.home-picture .l-con {
    width: 3.6rem;
}

.home-picture .l-con .pic1 {
    overflow: hidden;
    width: 100%;
    /* padding-top: 105.2%; */
    height: 3.8rem;
}

.home-picture .l-con img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-picture .l-con .pic2 {
    margin-top: .05rem;
    overflow: hidden;
    /* padding-top: 80%; */
    height: 2.87rem;
}

.home-picture .c-con {
    margin-right: .1rem;
    margin-left: .1rem;
}

.home-picture .c-con .card {
    overflow: hidden;
    width: 100%;
    background-color: #A91A20;
    height: 3.8rem;
    cursor: pointer;
}

.home-picture .c-con .card img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-picture .c-con .card:last-child {
    margin-top: .05rem;
    overflow: hidden;
    height: 2.87rem;
}

.home-picture .c-con .card .text-con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-left: .3rem;
    padding-top: .1rem;
    opacity: 0;
}

.home-picture .c-con .card .text-con a {
    color: #FFF;
    font-family: 'SourceHanSerifCN-SemiBold';
    font-size: .22rem;
    margin-top: .4rem;
    line-height: 1.6;
    width: 48%;
}

.home-picture .c-con .card .text-con a::after {
    content: '';
    width: .08rem;
    height: .16rem;
    background: url(../images/arrow3.svg)no-repeat right center;
    background-size: 100%;
    margin-left: .35rem;
}

.home-picture .c-con .card .text-con a:nth-child(2) {
    width: 22%;
}

.home-picture .c-con .card .text-con a:nth-child(3) {
    width: 28%;
}

.home-spe {
    padding-top: .9rem;
    margin-bottom: .9rem;
}

.home-spe .swiper-container {
    margin-top: .5rem;
    padding-bottom: 1rem;
    margin-right: -1.6rem;
}

.home-spe .swiper-wrapper {
    align-items: flex-end;
    transition-timing-function: ease-out;
}

.home-spe .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 2.15rem;
    overflow: hidden;
    flex-shrink: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.home-spe .swiper-slide .item-box {
    width: 3.75rem;
    height: 2.15rem;
    transition: all .5s;
}

.home-spe .swiper-slide .tit {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    color: #FFE9BC;
    font-size: .32rem;
    font-family: 'SourceHanSerifCN-Heavy';
    letter-spacing: 15px;
    white-space: nowrap;
}


.home-spe.inited  .swiper-slide-active,
.home-spe.inited  .swiper-slide-active .item-box {
    width: 6.48rem;
    height: 3.2rem;
}

.home-spe .swiper-slide-active .tit {
    font-size: .42rem;
}

.home-spe .swiper-pagination {
    width: 2.45rem;
    height: 4px;
    bottom: 0;
    top: auto;
}

.home-spe .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #AB1E24;
}

.home-spe .swiper-control {
    position: absolute;
    bottom: .1rem;
    left: 0;
    display: flex;
    align-items: center;
}
.home-spe .swiper-pagination {
    position: relative;
    top: unset;
    bottom: unset;
    margin: 0 .2rem;
}
.home-spe .swiper-button-prev,
.home-spe .swiper-button-next {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: 0;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background: url(../images/arrow.svg) no-repeat center;
    background-color: #ffffff;
    background-size: 36%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0,.1);
    margin: 0;
}
.home-spe .swiper-button-prev {
    transform: rotate(-180deg);
}

/* 重要：修复激活状态偏移 */

.home-spe .swiper-slide-active,
.home-spe .swiper-slide-next,
.home-spe .swiper-slide-prev,
.home-spe .swiper-slide-duplicate-active {
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    -moz-transform: translate3d(0, 0, 0) !important;
    -ms-transform: translate3d(0, 0, 0) !important;
    -o-transform: translate3d(0, 0, 0) !important;
}

@media (min-width:1025px) {
    .home-news .gallery-top .swiper-slide:hover .pic img,
    .home-news .text-content .first:hover .pic img,
    .home-yaoke .sch .item:hover .pic img,
    .home-yaoke .con .pic:hover img,
    .home-party .l-con .pic:hover img,
    .home-party .c-con .swiper-slide:hover img,
    .home-media .pic-content .pic:hover img,
    .home-picture .l-con .pic1:hover img,
    .home-picture .l-con .pic2:hover img,
    .home-picture .c-con .card:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-news .gallery-thumbs .swiper-button-next:hover,
    .home-news .text-content .first:hover .date .line,
    .home-news .text-content .item:hover .date .line {
        background-color: #A91A20;
    }
    .home-news .text-content .first:hover .date .line::before,
    .home-news .text-content .item:hover .date .line::before {
        left: 90%;
        background-color: #A0272C;
    }
    .home-news .text-content .first:hover .date,
    .home-news .text-content .item:hover .date {
        color: #A0272C;
    }
    .home-yaoke .sch .item:hover::after {
        width: 100%;
    }
    .home-renwu .item.active{
        padding: .28rem 0.2rem;
        background: url(../images/tbg1.png)no-repeat center;
        background-size: cover;
    }
    .home-renwu .item.active .text-con {
        border-bottom: 0;
        color: #FFF;
    }
    .home-renwu .item.active .text-con::after,
    .home-party .r-con .item:hover .pic,
    .home-renwu .item.active .text-con::after,
    .home-party .r-con .item.active .pic
    {
        display: none;
    }
    .home-renwu .item.active .des {
        color: #FFF;
    }
    .home-renwu .item.active .text-con::before{
        border: 0;
        width: .55rem;
        height: 8px;
        background: url(../images/arrow1.svg)no-repeat right bottom;
        background-size: 100%;
        left: 0;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        bottom: .2rem;
        z-index: 2;
        left: .3rem;
    }
    .home-party .r-con .item:hover {
        background: url(../images/tbg2.jpg)no-repeat right bottom;
        background-size: cover;
        color: #FFF;
        padding: .24rem .3rem;
    }
    .home-media .con .more:hover {
        text-decoration: underline;
        color: #FCE7C8;
    }
    .home-picture .c-con .card .text-con a:hover,
    .home-party .l-con .item:hover .tit,
    .home-media .con .item:hover .tit {
        color: #FCE7C8;
    }
    .home-media .share>div:hover .erwma {
        display: block;
    }
    .home-picture .c-con .card.on>img {
        opacity: .2;
    }
    .home-picture .c-con .card.on .text-con {
        opacity: 1;
    }
}

@media (max-width:1199px) {

    .home-spe .swiper-slide.placeholder {
        display: none !important;
    }
    .banner .swiper-pagination-bullet,
    .home-yaoke .sch .item .des,
    .home-renwu .item .des,
    .home-party .l-con .pic>span,
    .home-party .r-con .title {
        font-size: 13px;
    }
    .banner .swiper-pagination-bullet {
        width: 32px;
        height: 32px;
    }
    .banner .swiper-pagination-bullet-active {
        line-height: 32px;
    }
    .banner .swiper-pagination {
        bottom: 10px;
    }
    .home-title .en {
        font-size: 22px;
    }
    .home-title .cn {
        font-size: 24px;
        margin-top: -13px;
    }
    .home-news .gallery-top .title,
    .home-news .text-content .tit,
    .home-info .item .tit,
    .home-renwu .item .tit,
    .home-party .r-con .item .tit,
    .home-media .con .item .tit,
    .home-media .pic-content .pic .text-con .tit {
        font-size: 15px;
    }
    .pub-more,
    .home-news .text-content .date,
    .home-news .text-content .des,
    .home-party .l-con .item .date,
    .home-media .con .more {
        font-size: 12px;
    }
    .home-news .text-content .item {
        padding-top: .25rem;
    }
    .home-news .tabs>div>span,
    .home-yaoke .con .pic-con .tit,
    .home-yaoke .sch .item .tit,
    .home-info .tabs>span,
    .home-renwu .tabs>span {
        font-size: 16px;
    }
    .home-news .tabs>div.on>span,
    .home-info .tabs>span.on,
    .home-renwu .tabs>span.on {
        font-size: 18px;
    }
    .home-yaoke .content .title>span {
        font-size: 19px;
    }
    .home-yaoke .con .swiper-button-black {
        width: 32px;
        height: 32px;
    }
    .home-info .item .date {
        width: 48px;
        height: 48px;
    }
    .home-info .item .date>span:first-child {
        font-size: 20px;
    }
    .home-info .item .date>span:last-child {
        font-size: 12px;
        line-height: 18px;
    }
    .home-party .l-con .pic>span,
    .home-party .r-con .title {
        width: 90px;
        line-height: 30px;
    }
    .home-party .c-con .play {
        width: 60px;
        height: 60px;
    }
    .videoShow {
        width: 90%;
    }
    .home-media .share {
        right: 60px;
    }
    .home-media .share>div {
        width: 32px;
    }
    .home-picture .c-con .card .text-con {
        opacity: 1;
    }
    .home-picture .c-con .card.on img {
        opacity: .2;
    }
    .home-spe .swiper-container {
        margin-right: 0;
    }
    .home-spe .swiper-slide .tit {
        font-size: 26px !important;
        letter-spacing: 7px;
    }
    .home-spe.inited .swiper-slide-active,
    .home-spe .swiper-slide-active {
        height: 2.15rem;
    }
}

@media (max-width:950px) {
    .home-news .l-con,
    .home-info {
        margin-right: 0;
        width: 100%;
    }
    .home-news .gallery-thumbs {
        padding-left: 80px;
    }
    .home-news .gallery-thumbs .button {
        width: 74px;
        height: 38px;
        left: 44px;
    }
    .home-news .gallery-thumbs .swiper-button-white {
        width: 38px;
        height: 38px;
        background-size: 24px;
    }
    .home-yaoke::after {
        display: none;
    }
    .home-yaoke::before {
        width: 100%;
    }
    .home-yaoke .content .con {
        margin-right: .4rem;
    }
    .home-renwu .item .text-con {
        padding-bottom: .3rem;
    }
    .home-renwu .item .pic {
        width: 3.6rem;
        height: 2rem;
    }
    .home-party .l-con {
        margin-right: 3%;
        width: 48.5%;
        order: 1;
    }
    .home-party .r-con {
        order: 2;
        width: 48.5%;
    }
    .home-party .c-con {
        margin-right: 0;
        order: 3;
        min-width: 100%;
        margin-top: .3rem;
    }
    .home-party .l-con .text-con {
        padding: .2rem;
    }
    .home-party .r-con .item .pic {
        width: 2rem;
        height: 1.2rem;
    }
    .home-media .content {
        display: block;
    }
    .home-media .con {
        width: 100%;
        margin-right: 0;
        height: auto;
    }
    .home-media .pic-content {
        margin-top: .3rem;
    }
}

@media (max-width:767px) {
    .home-yaoke .content .con {
        width: 100%;
        margin-right: 0;
    }
    .home-yaoke .content .sch {
        margin-top: .5rem;
    }
    .home-yaoke .con .swiper-pagination-progressbar {
        width: 2.2rem;
    }
    .home-party .l-con {
        width: 100%;
        margin-right: 0;
    }
    .home-party .r-con {
        width: 100%;
        order: 3;
    }
    .videoShow {
        height: 3.8rem;
    }
    .home-media,
    .home-picture {
        padding-top: 1rem;
    }
    .home-media .title,
    .home-media .share,
    .home-picture .title {
        display: none;
    }
    .home-picture .l-con {
        order: 1;
        width: 49.5%;
    }
    .home-picture .l-con:last-child {
        order: 2;
        margin-left: 1%;
    }
    .home-picture .c-con {
        margin-left: 0;
        margin-right: 0;
        order: 3;
    }
    .home-picture .c-con {
        width: 100%;
        flex: none;
        margin-top: .05rem;
    }
    .home-picture .c-con .card .text-con a {
        font-size: 13px;
    }
    .home-picture .c-con .card .text-con {
        padding-left: .2rem;
    }
    .home-picture .c-con .card .text-con a::after {
        margin-left: .2rem;
    }
    .home-spe .swiper-slide .tit {
        font-size: 22px !important;
        letter-spacing: 3px;
    }
    .home-spe .swiper-control {
        width: 100%;
        justify-content: center;
    }
    .home-spe .swiper-container {
        padding-bottom: 60px;
    }
    .home-spe .swiper-button-prev, .home-spe .swiper-button-next {
        width: 30px;
        height: 30px;
    }
}

@media (max-width:540px) {
    .home-picture .c-con .card .text-con .p-txt {
        display: none;
    }
    .home-picture .c-con .card .text-con .m-txt {
        display: block;
    }
    .home-picture .c-con .card:last-child .text-con {
        padding-top: .1rem;
    }
    .home-picture .c-con .card:last-child .text-con a {
        margin-top: .2rem;
    }
    .home-picture .c-con .card .text-con .m-txt a {
        width: 60%;
    }
    .home-picture .c-con .card .text-con .m-txt a:nth-child(even) {
        width: 40%;
    }
    .home-picture .c-con .card .text-con a::after {
        margin-left: .1rem;
    }
    .home-spe .swiper-slide .tit {
        font-size: 20px !important;
    }
}

@media (max-width:375px) {
    .home-news .text-content .pic {
        width: 100%;
        margin-right: 0;
        height: auto;
        padding-top: 64%;
    }
    .home-news .text-content .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .home-picture .c-con .card .text-con {
        padding-top: .2rem;
    }
    .home-picture .c-con .card .text-con a {
        font-size: 12px;
    }
}

@media (max-width:320px) {
    .home-title .en {
        font-size: 20px;
    }
    .home-yaoke .sch .item .pic {
        width: 100%;
        margin-right: 0;
        height: auto;
        padding-top: 64%;
        margin-bottom: .3rem;
    }
    .home-yaoke .sch .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
}

.n-banner {
    overflow: hidden;
    /* margin-top: 1.33rem; */
}

.n-banner img {
    width: 100%;
}

.sidebar {
    width: 3.25rem;
    background: #A91A20;
    background-size: 100%;
    padding-bottom: .2rem;
    margin-right: .5rem;
    margin-top: -1.3rem;
    z-index: 99;
}

.sidebar .title {
    height: 1.3rem;
    line-height: 1.3rem;
    color: #FFF;
    font-size: .36rem;
    font-family: 'SourceHanSerifCN-Heavy';
    z-index: 99;
}

.sidebar>ul {
    min-height: 4rem;
    background: #F7FBFF;
    margin-left: .2rem;
    padding: .1rem .3rem 1.6rem .3rem;
}

.sidebar>ul>li {
    position: relative;
    border-bottom: 1px dashed rgba(0, 150, 214, 0.2);
}

.sidebar>ul>li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #A91A20;
    transition: all .5s;
}

.sidebar>ul>li>a {
    line-height: .45rem;
    font-size: .24rem;
    color: #474747;
    padding: .1rem 0;
    padding-left: .25rem;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.sidebar>ul>li .arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: .3rem;
    height: .65rem;
    background: url(../images/arrow2.svg)no-repeat center;
    background-size: .18rem;
    cursor: pointer;
}

.sidebar>ul>li:hover::after,
.sidebar>ul>li.on::after {
    width: 100%;
    /* border-bottom: 1px solid #A91A20; */
}

.sidebar>ul>li.on>a {
    color: #A91A20;
    font-family: 'SourceHanSerifCN-Bold';
}

.sidebar .sub {
    padding-bottom: .2rem;
}

.sidebar .sub>a {
    line-height: 2;
    padding-left: .3rem;
}

.pub-content {
    margin-top: .4rem;
    padding-bottom: .7rem;
    min-height: 6rem;
}
.pub-content .flex-align-center{
    
flex-wrap: wrap;
}

.pub-title .line {
    height: 1px;
    background-color: #A91A20;
    margin-right: .2rem;
}

.pub-title .line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    background-color: #A91A20;
}

.pub-title .title {
    font-size: .3rem;
    border-left: 5px solid #A91A20;
    padding-left: .15rem;
    line-height: 1;
    font-weight: bold;
    margin-right: .3rem;
    font-family: 'SourceHanSerifCN-Heavy';
}

.pub-title .crumbs {
    background: url(../images/crumbs.svg)no-repeat left 2px;
    background-size: .16rem;
    padding-left: .3rem;
    color: #414141;
    font-size: .16rem;
    flex-wrap: wrap;
}

.pub-title .crumbs a {
    color: #414141;
}

.pub-title .crumbs a::after {
    
  
}

.img-list {
    margin-top: .3rem;
}

.img-list .item {
    padding: .35rem 0;
    border-bottom: 1px #D3DDED dashed;
}

.img-list .item .pic {
    overflow: hidden;
    width: 2.85rem;
    height: 2rem;
    margin-right: .4rem;
}

.img-list .item .tit {
    font-size: .22rem;
    line-height: 1;
    overflow: hidden;
    height: .22rem;
    margin-top: .2rem;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.img-list .item .date {
    font-size: .16rem;
    color: #A91A20;
    line-height: 1;
    margin-top: .15rem;
    background: url(../images/date.svg)no-repeat left center;
    background-size: .15rem;
    padding-left: .3rem;
}

.img-list .item .des {
    font-size: .16rem;
    color: #666;
    line-height: 1.9;
    margin-top: .15rem;
    overflow: hidden;
    height: .61rem;
}

.img-list .item .arrow {
    margin-top: .1rem;
    height: .2rem;
}

.img-list .item .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: .2rem;
    height: .2rem;
    background: url(../images/arrow3.svg)no-repeat center;
    background-size: .18rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.page {
    margin-top: .7rem;
    line-height: .3rem;
    font-size: .16rem;
    margin-bottom: .5rem;
}

.page a {
    border: 1px #DCDCDC solid;
    width: .3rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    height: .3rem;
    margin: 0 .05rem;
}

.page .idx,
.page .last {
    width: .48rem;
}

.page .prev,
.page .next {
    background: url(../images/arrow.svg)no-repeat center;
    background-size: .1rem;
}

.page .prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.page .on {
    background-color: #A91A20;
    color: #FFF;
    border-color: #A91A20;
}

.txt-list {
    margin-top: .3rem;
}

.txt-list .item {
    border-bottom: 1px #D1D1D1 dashed;
    line-height: .8rem;
}

.txt-list .item::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 5px;
    height: 5px;
    border: 1px #D1D1D1 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
}

.txt-list .item .date {
    color: #999;
}

.txt-list .item .tit {
    font-size: .2rem;
    padding-left: .25rem;
    margin-right: .2rem;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.txt-list .item .tit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border: 1px #A91A20 solid;
    background-color: #A91A20;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.txt-list .item .tit::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    width: 4px;
    height: 4px;
    border: 1px #A91A20 solid;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

.details {
    margin-top: .4rem;
}
.details img{
    border: none !important;
}

.details h1 {
    font-size: .24rem;
    line-height: 1.4;
    font-family: 'SourceHanSerifCN-Medium';
}

.details .info {
    font-size: .16rem;
    color: #5A5A5A;
    margin-top: .15rem;
    background-color: #F5F5F5;
    line-height: .5rem;
    margin-top: .2rem;
}

.details .info span {
    margin-right: .2rem;
}

.details .info span:last-child {
    margin-right: 0;
}

.details .body {
    line-height: 2;
    margin-top: .3rem;
}

.details .body p {
    text-indent: 2em;
    margin-bottom: .1rem;
    font-size: 0.16rem;
}

.details .body img {
    max-width: 100% !important;
}

.details .prev-next {
    margin-top: 1rem;
    padding-top: .3rem;
    border-top: 1px #BBCAE2 solid;
    line-height: 1.8;
}

.details .prev-next span {
    color: #A91A20;
}

.about-page {
    background: url(../images/ab-bg.png) no-repeat bottom;
    background-size: 100% auto;
}

.about {
    margin-top: .3rem;
    line-height: 1.8;
    margin-right: -1.6rem;
    text-indent: 2em;
}

.about>* {
    padding-right: 1.6rem;
}

.about>p {
    margin: 1.6em 0;
}

.about .fl {
    float: left;
}

.about .fr {
    float: right;
}

.about img {
    display: block;
    max-width: 100%;
    height: auto;
}

.about .part1 {
    padding-top: .4em;
    padding-bottom: .4em;
    padding-left: 2em;
    background: rgba(245, 238, 232, 0.7216);
}

.about .part1>* {
    margin: 2em 0;
}

.about .part1 img {
    max-width: 4.8rem;
    margin-right: 2em;
    float: left;
}

.about .part1 .item {
    display: flex;
    align-items: flex-start;
}

.about .part1 .img-box {
    position: relative;
    width: 4rem;
    margin-left: 2em;
    flex-shrink: 0;
}
.about .part1 .img-box::after{
    content: "";
    position: absolute;
    top: -1em;
    right: -1em;
    width: 100%;
    height: 100%;
    background: #a91a20;
}
.about .part1 .img-box img {
    position: relative;
    width: 100%;
    margin-right: 0;
    z-index: 1;
}

.about .part2 {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2em;
    padding-top: 2em;
    padding-left: 2em;
}
.about .part2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%; 
    background: url(../images/ab-part-bg.jpg) no-repeat center;
    background-size: cover;
    z-index: -1;
}
.about .part2 img {
    width: 4.3rem;
}
.about .part2 .l .p1 {
    color: #ffffff;
}
.about .part2 .l .p2 {
    padding: 2em;
    background: #FFFAF6;
    margin-top: 2em;
}

.about .part3 {
    display: flex;
    align-items: flex-start;
    gap: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 1.4em;
    background: linear-gradient(270deg, rgba(255, 244, 234, 0.5) 0%, #FFF9F3 100%);
}
.about .part3 img{
    width: 4rem;
}
.about .part3 p {
    margin-bottom: 1em;
}
.about .part3 p:last-child {
    margin-bottom: 0;
}


.photo {
    margin-top: .3rem;
}

.photo .item {
    margin-top: .2rem;
    width: 32.5%;
    margin-right: 1.2%;
}

.photo .item:nth-of-type(3n) {
    margin-right: 0;
}

.photo .item .pic {
    overflow: hidden;
    padding-top: 67%;
}

.photo .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.photo .item .tit {
    font-size: .22rem;
    line-height: .66rem;
    height: .66rem;
    overflow: hidden;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.teacher-list {
    padding-left: .1rem;
}

.teacher-list .item {
    width: calc(48% - .3rem);
    margin-top: .7rem;
    background: #FFF;
    box-shadow: 0 0 .2rem rgba(196, 219, 223, .5);
    margin-left: .3rem;
    height: 1.8rem;
    padding-top: .25rem;
    padding-right: .4rem;
}

.teacher-list .item:hover .des {
    color: #a91a20;
}

.teacher-list .item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 4px;
    background-color: #A91A20;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    height: 0;
}

.teacher-list .item .pic-con {
    transform: translate(-.3rem, -.45rem);
    -webkit-transform: translate(-.3rem, -.45rem);
    -moz-transform: translate(-.3rem, -.45rem);
    -ms-transform: translate(-.3rem, -.45rem);
    -o-transform: translate(-.3rem, -.45rem);
    width: 1.4rem;
    z-index: 10;
}

.teacher-list .item .pic-con .pic {
    width: 100%;
    overflow: hidden;
    padding-top: 136%;
    z-index: 9;
}

.teacher-list .item .pic-con .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.teacher-list .item .name {
    font-size: .16rem;
}

.teacher-list .item .name span {
    font-size: .22rem;
    margin-right: .1rem;
    font-family: 'SourceHanSerifCN-Bold';
}

.teacher-list .item .des {
    font-size: .16rem;
    line-height: 1.6;
    margin-top: .1rem;
    color: #999;
}

.teacher-details {
    margin-top: .3rem;
}

.teacher-details .info-con {
    border: 1px rgba(0, 0, 0, .08) solid;
    padding: .15rem;
    
    background-size: 2.8rem;
}

.teacher-details .info-con .pic {
    width: 2.7rem;
    height: 3.5rem;
    z-index: 11;
    margin-right: .7rem;
}

.teacher-details .info-con .pic::after {
    content: '';
    position: absolute;
    left: -.15rem;
    top: -.15rem;
    bottom: -.15rem;
    background-color: #A91A20;
    z-index: -1;
    width: 2.65rem;
    -webkit-clip-path: polygon(0 0, 60% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 60% 0%, 100% 100%, 0% 100%);
}

.teacher-details .info-con .name {
    font-weight: bold;
    font-size: .28rem;
    line-height: 2;
    margin-top: .2rem;
    font-family: 'SourceHanSerifCN-Medium';
}

.teacher-details .info-con .name span {
    position: relative;
    margin-right: .2rem;
}

.teacher-details .info-con .name span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.1rem;
    width: .6rem;
    width: 100%;
    height: 3px;
    background-color: #A91A20;
}

.teacher-details .info-con .mod {
    font-weight: bold;
    margin-top: .4rem;
}

.teacher-details .info-con .des {
    line-height: 2.2;
    margin-top: .2rem;
}

.teacher-details .content {
    line-height: 2.2;
    margin-top: .4rem;
}

.jigou {
    overflow: hidden;
    margin-top: 0.2rem;
}

.jigou>a {
    position: relative;
    width: 32%;
    line-height: .58rem;
    /* border: 1px rgba(0, 0, 0, .1) solid; */
    margin-right: 2%;
    font-size: .2rem;
    margin-top: .4rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    text-align: left;
    padding: 1.3em 1em;
    line-height: 1.4;
    background: rgba(169,26,32,.1);
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-size: 1em;
    background-position: 95%;
    transition: all .5s;
}

.jigou>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: .2em;
    height: 1.4em;
    transform: translateY(-50%);
    background: #A91A20;
    transition: all .5s;
}

.jigou>a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0%;
    width: 0;
    height: 100%;
    background: #A91A20;
    transition: all .5s;
    z-index: -1;
}

.jigou>a:hover {
    color: #ffffff;
    background-image: url(../images/arrow-white.png);
}
.jigou>a:hover::before{
    background: #fc9804;
}
.jigou>a:hover::after {
    width: 100%;
}

.jigou>a:nth-of-type(3n) {
    margin-right: 0;
}

.jigou1 {
    overflow: hidden;
    margin-top: 0.2rem;
}

.jigou1>a {
    width: 15.75%;
    line-height: .40rem;
    border: 1px rgba(0, 0, 0, .1) solid;
    margin-right: 1%;
    font-size: .18rem;
    margin-top: .1rem;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.jigou1>a:nth-of-type(6n) {
    margin-right: 0;
}


@media (min-width:1025px) {
    .sidebar>ul>li:hover>a {
        font-weight: bold;
        color: #A91A20;
    }
    .pub-title .crumbs a:hover,
    .img-list .item:hover .des {
        color: #A91A20;
    }
    .img-list .item:hover .pic img,
    .photo .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .img-list .item:hover .tit,
    .txt-list .item:hover .tit {
        font-weight: bold;
    }
    .img-list .item:hover .arrow::before {
        transform: translateX(.15rem);
        -webkit-transform: translateX(.15rem);
        -moz-transform: translateX(.15rem);
        -ms-transform: translateX(.15rem);
        -o-transform: translateX(.15rem);
    }
    .txt-list .item:hover {
        border-bottom-color: #A91A20;
    }
    .txt-list .item:hover::after {
        border-color: #A91A20;
    }
    .teacher-list .item:hover::after {
        height: 100%;
    }
    .jigou>a:hover {
        /* background: #A91A20; */
        /* color: #FFF; */
    }
}

@media (max-width:1199px) {
    .n-banner {
        overflow: hidden;
        /* margin-top: 1.2rem; */
    }
    .warpper {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .page {
        line-height: 22px;
        margin-top: .4rem;
        margin-bottom: 0;
    }
    .page a {
        width: 24px;
        height: 24px;
    }
    .page .idx,
    .page .last {
        width: 50px;
    }
    .img-list .item .date {
        padding-left: 20px;
        background-size: 16px;
        line-height: 2;
        background-size: 12px;
        padding-left: 20px;
    }
    .page,
    .pub-title .crumbs,
    .img-list .item .des,
    .txt-list .item .date,
    .details .info,
    .img-list .item .date,
    .leader .card .text,
    .teacher-list .item .des,
    .teacher-list .item .name {
        font-size: 12px;
    }
    .img-list .item .tit,
    .img-list .item .des {
        height: auto;
    }
    .sidebar {
        margin-right: .3rem;
    }
    .sidebar .title {
        height: 90px;
        line-height: 90px;
        font-size: 24px;
    }
    .sidebar>ul>li>a {
        line-height: 60px;
        font-size: 16px;
    }
    .pub-title .title,
    .details h1,
    .teacher-details .info-con .name {
        font-size: 18px;
    }
    .img-list .item .tit,
    .txt-list .item .tit,
    .photo .item .tit {
        font-size: 15px;
    }
    .txt-list .item {
        line-height: 48px;
    }
    .txt-list .item .tit {
        padding-left: 25px;
    }
    .leader .card .name {
        line-height: 38px;
        font-size: 18px;
    }
    .photo .item .tit {
        height: 40px;
        line-height: 40px;
    }
    .teacher-list .item .name span {
        font-size: 16px;
    }
    .teacher-list .item {
        height: 130px;
    }
    .jigou>a {
        font-size: 14px;
        /* line-height: 40px; */
    }

    .about {
        margin-right: 0;
    }
    .about>*{
        padding-right: 0;
    }
    .about .part1,
    .about .part2,
    .about .part3 {
        padding-right: 2em;
    }


}

@media (max-width:950px) {
    .sidebar {
        display: none;
    }
    .img-list .item .pic {
        width: 30%;
        height: auto;
        padding-top: 22%;
    }
    .img-list .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .teacher-list .item .pic-con {
        width: 30%;
    }
    .teacher-list .item .pic-con::after {
        width: 65px;
        height: 70px;
    }
    .teacher-details .info-con {
        display: block;
        border: 0;
    }
    .teacher-details .info-con .pic {
        margin-left: auto;
        margin-right: auto;
    }
    .teacher-details .info-con .name {
        text-align: center;
        margin-top: .3rem;
    }
    .teacher-details .info-con .mod {
        text-align: center;
    }
    .teacher-details .info-con .name::after {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
    .jigou>a {
        width: 49%;
        margin-right: 2%;
    }
    .jigou>a:nth-of-type(3n) {
        margin-right: 2%;
    }
    .jigou>a:nth-of-type(2n) {
        margin-right: 0%;
    }

    .jigou1>a {
        width: 32%;
        margin-right: 1%;
    }

    .jigou1>a:nth-of-type(3n) {
        margin-right: 0;
    }
    .footer .link {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: .4rem;
    }
    .footer .link::after {
        display: none;
    }

    .summary .banner .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
    }
    .summary .banner .swiper-pagination-bullet-active {
        font-size: 8px;
        line-height: 20px;
    }
}

@media (max-width:767px) {
    .n-banner {
        overflow: hidden;
        /* margin-top: 65px; */
    }
    .pub-bg {
        padding-bottom: 1rem;
    }
    .img-list {
        margin-top: 0;
    }
    .img-list .item {
        padding-left: 0;
        padding-right: 0;
    }
    .img-list .item .pic {
        width: 35%;
        height: auto;
        padding-top: 20%;
        margin-right: .3rem;
    }
    .img-list .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .img-list .item .date::after {
        width: 36px;
        height: 33px;
        left: -20px;
        top: -10px;
    }
    .img-list .item .text-con {
        padding-top: 10px;
    }
    .img-list .item .tit {
        margin-top: .15rem;
    }
    .img-list .item .des {
        margin-top: .1rem;
    }
    .about .pic {
        float: none;
        width: 100%;
        margin-left: 0;
    }
    .photo .item {
        width: 49%;
        margin-right: 2%;
    }
    .photo .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .photo .item:nth-child(even) {
        margin-right: 0;
    }
    .teacher-list {
        padding-left: 0;
    }
    .teacher-list .item {
        margin-top: .5rem;
        padding-top: .2rem;
        padding-right: .2rem;
        width: calc(48% - .2rem);
    }
    .teacher-list .item .pic-con {
        transform: translate(-.15rem, -.3rem);
        -webkit-transform: translate(-.15rem, -.3rem);
        -moz-transform: translate(-.15rem, -.3rem);
        -ms-transform: translate(-.15rem, -.3rem);
        -o-transform: translate(-.15rem, -.3rem);
    }
    .teacher-list .item .pic-con {
        width: 35%;
    }
    .teacher-list .item .des {
        margin-top: 5px;
    }

    .about .part1 .item {
        flex-direction: column-reverse;
    }
    .about .part1 img {
        max-width: 100%;
        margin-bottom: 1em;
    }
    .about .part1 .item .img-box {
        width: 100%;
        margin-left: 0;
    }
    .about .part2 {
        gap: 0;
        flex-direction: column;
    }
    .about .part2 img {
        width: 100%;
    }
    .about .part3 {
        gap: 1em;
        flex-direction: column;
    }
    .about .part3 img {
        width: 100%;
    }
}

@media (max-width:540px) {
    .pub-title .crumbs {
        background-size: 0.19rem;
    }
    .n-banner {
        overflow: hidden;
        /* margin-top: 55px; */
    }
    .img-list .item .pic {
        margin-right: 0;
        width: 100%;
        padding-top: 65%;
    }
    .img-list .item .text-con {
        padding-top: 20px;
    }
    .teacher-list .item {
        width: 100%;
        height: auto;
        padding-right: .3rem;
    }
    .teacher-list .item .pic-con {
        width: 30%;
        margin-right: .2rem;
    }
    .jigou>a {
        width: 100%;
        margin-right: 0;
    }
    .jigou>a:nth-of-type(3n) {
        margin-right: 0%;
    }
    .jigou>a:nth-of-type(2n) {
        margin-right: 0;
    }
    .jigou1>a {
        width: 32%;
    }
    .jigou1>a:nth-of-type(3n) {
        margin-right: 1%;
    }
    .jigou1>a:nth-of-type(2n) {
        margin-right: 1%;
    }
}

.kefu {
    position: fixed;
    right: .1rem;
    width: 1.15rem;
    background: url(../images/k-bg.jpg)no-repeat center;
    background-size: cover;
    z-index: 99;
    top: 30%;
    padding-top: .6rem;
    padding-bottom: .45rem;
    display: none;
}

.kefu .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 1.21rem;
    top: -.6rem;
}

.kefu .logo img {
    width: 100%;
}

.kefu .con>a {
    border-bottom: 1px dotted rgba(255, 177, 43, .7);
    color: #FFF;
    padding-top: .2rem;
    padding-bottom: .15rem;
}

.kefu .con>a .icon {
    height: .34rem;
    width: .34rem;
    margin-left: auto;
    margin-right: auto;
}

.kefu .con>a .icon img {
    width: 100%;
}

.kefu .con>a .tit {
    line-height: 1.2;
    margin-top: .05rem;
}

.kefu .con>a:hover .tit {
    /* text-decoration: underline; */
}

.kefu .con>a:hover .icon,
.kefu .con>a:hover .tit{
    transform: scale(1.2);
}


.kefu .con>a:nth-child(1) .icon {
    width: .26rem;
    height: .24rem;
}

.kefu .con>a:nth-child(2) .icon {
    width: .3rem;
    height: .3rem;
}

.kefu .con>a:nth-child(3) .icon {
    width: .3rem;
    height: .3rem;
}

.kefu .back-top {
    position: absolute;
    left: 50%;
    bottom: -.2rem;
    width: 1.6rem;
    height: .82rem;
    background: url(../images/back-top.svg)no-repeat center;
    background-size: 100%;
    color: #A91A20;
    font-size: .2rem;
    line-height: 1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.kefu .back-top::before {
    content: '';
    width: .36rem;
    height: .16rem;
    background: url(../images/top.svg)no-repeat center;
    background-size: 100%;
}

@media (max-width:1199px) {
.videoShow .close {
    top: -0.6rem;
}
    .kefu {
        display: none !important;
    }
}


/* 分页边距 */
.p_pages>span {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}
/* 颜色 颜色变化过就处出现不生效的问题 */
.pb_sys_style1 .p_no_d {
    border: 1px solid #a91a20 !important;
    color: #fff;
    background-color: #a91a20 !important;
}