@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;
}
/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}
/*= 清除浮动=*/

.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: 'PingFang-SC-Regular';
    src: url("../fonts/PingFang-SC-Regular.otf");
}

@font-face {
    font-family: 'PingFang-Light';
    src: url("../fonts/PingFang-Light.otf");
}

@font-face {
    font-family: 'PingFang-Medium';
    src: url("../fonts/PingFang-Medium.ttf");
}

@font-face {
    font-family: 'DIN-Medium';
    src: url("../fonts/DIN-Medium.otf");
}

@font-face {
    font-family: 'SourceHanSerifCN-Bold';
    src: url("../fonts/SourceHanSerifCN-Bold.otf");
}
/*原文件配置*/

body {
    color: #333;
    background: #e9e9e9;
    font: .18rem 'PingFang-SC-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #971d12;
}
/*块级转化*/

.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 {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-top: .25rem;
    padding-left: .65rem;
    align-items: flex-end;
    padding-right: .5rem;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3rem;
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    z-index: -1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header.fixed::after {
    height: 1.5rem;
}

.header .logo img {
    height: .82rem;
}

.header .top {
    position: absolute;
    right: 0;
    top: 0;
    width: 3.2rem;
    background-color: #971d12;
    height: .4rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
    padding-right: .85rem;
    font-size: .16rem;
    line-height: .4rem;
    padding-left: .5rem;
    font-family: 'PingFang-Light';
}

.header .top a {
    color: #FFF;
    margin-right: .2rem;
    padding-right: .2rem;
}

.header .top a::after,
.header .top .search-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: .2rem;
    background-color: rgba(255, 255, 255, .5);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.header .top .search-btn {
    width: .4rem;
    background: url(../images/search.png)no-repeat left center;
    background-size: .18rem;
    height: .2rem;
    cursor: pointer;
    margin-right: .2rem;
}

.header .top .btn {
    background: url(../images/menu1.png)no-repeat center;
    width: .16rem;
    height: .2rem;
    background-size: 100%;
    cursor: pointer;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    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);
}

.nav li>a {
    font-size: .2rem;
    font-family: 'PingFang-Light';
    color: #FFF;
    padding: 0 .3rem;
    line-height: .65rem;
}

.nav li.on a {
    color: #333;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.nav .drop {
    width: 100%;
    left: 0;
    top: .6rem;
    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: .4rem;
    font-size: .16rem;
}

.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%);
}

.search-content {
    background: #971d12;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
}

.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;
    padding-left: .15rem;
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(../images/search.png)no-repeat center;
    background-size: .3rem;
}

.m-search {
    display: none;
    border: 1px #FFF solid;
    margin-top: .3rem;
}

.m-search input[type='text'] {
    background: none;
    padding-left: .2rem;
    height: .8rem;
    color: #FFF;
}

.m-search input[type='text']::placeholder {
    color: #FFF;
}

.m-search input[type='submit'] {
    width: .8rem;
    background: url(../images/search.png)no-repeat center;
    background-size: .45rem;
}

.banner .swiper-slide {
    height: 100vh;
    overflow: hidden;
}

.banner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
    height: 30%;
    z-index: 1;
}

.banner .swiper-slide img {
    transition: all 5s;
    -webkit-transition: all 5s;
    -moz-transition: all 5s;
    -ms-transition: all 5s;
    -o-transition: all 5s;
}

.banner .swiper-slide-active img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.banner .swiper-pagination {
    width: 100%;
    bottom: .5rem;
    z-index: 2;
}

.banner .swiper-pagination-bullet {
    width: .14rem;
    height: .14rem;
    background-color: #b5ada5;
    margin: 0 .17rem !important;
    opacity: 1;
}

.banner .swiper-pagination-bullet-active {
    /* width: .44rem;
    height: .44rem;
    background: url(../images/banner-icon.png)no-repeat center;
    margin: 0 .1rem !important; */
		width: .24rem;
		height: .24rem;
		border: 1px solid #E0BB87;
		background-color: transparent;
		padding: 0.05rem;
		position: relative;
}

.banner .swiper-pagination-bullet-active::after{
	position: absolute;
	content: '';
	width: .14rem;
	height: .14rem;
	background: #E0BB87;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform:translate(-50%, -50%)
}

.footer {
    background: url(../images/f-bg.jpg)no-repeat center;
    background-size: cover;
    padding-top: 1rem;
}

.footer .content {
    padding-left: 1.3rem;
    padding-right: 2.4rem;
    color: rgba(255, 255, 255, .8);
}

.footer .copyright {
    background-color: rgba(0, 0, 0, .5);
    padding: .2rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .6rem;
}

.footer .copyright a {
    color: rgba(255, 255, 255, .6);
}

.footer .text-con {
    line-height: 1.5;
}

.footer .text-con .item {
    margin-bottom: .1rem;
}

.footer .text-con .item:last-child {
    margin-bottom: 0;
}

.footer .tit {
    font-size: .2rem;
}

.footer .tel {
    font-family: 'DIN-Medium';
    font-size: .3rem;
}

.footer .logo {
    margin-bottom: .3rem;
}

.footer .logo img {
    height: .82rem;
}

.footer .f-img a {
    margin-right: .25rem;
}

.footer .f-img a:last-child {
    margin-right: 0;
}

.footer .f-img img {
    height: .6rem;
}

.footer .f-img .wx,
.footer .f-img .wb {
    margin-right: .25rem;
    cursor: pointer;
}

.footer .f-img .wx span {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF solid;
    background: url(../images/wx.png)no-repeat center;
    background-size: .31rem;
}

.footer .f-img .wb span {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF solid;
    background: url(../images/douyin.png)no-repeat center;
    background-size: .3rem;
}

.footer .f-img .wx .erwma,
.footer .f-img .wb .erwma {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #FFF;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    padding: .1rem;
    width: 1.3rem;
    height: 1.3rem;
    bottom: .7rem;
    display: none;
}

.footer .f-img .wx .erwma::after,
.footer .f-img .wb .erwma::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px transparent solid;
    border-right: 10px transparent solid;
    border-top: 10px #FFF solid;
    bottom: -10px;
}

.footer .f-img .wx .erwma img,
.footer .f-img .wb .erwma img {
    width: 100%;
    height: auto;
}

.footer .info {
    width: 2.4rem;
    align-items: flex-end;
}

.footer .info .item {
    margin-right: .3rem;
}

.footer .info .item:last-child {
    margin-right: 0;
}

.footer .info .item .icon {
    border: 1px #e1746d solid;
    width: .7rem;
    height: .7rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto .31rem;
    margin-left: auto;
    margin-right: auto;
}

.footer .info .item .txt {
    margin-top: .1rem;
    color: rgba(255, 255, 255, .8);
}

.footer .info .text {
    font-size: .2rem;
    text-align: right;
    margin-top: .2rem;
}

.home-title {
    background: url(../images/icon1.png)no-repeat left top;
    background-size: .44rem;
    padding-left: .65rem;
    font-family: 'SourceHanSerifCN-Bold';
    color: #971d12;
}

.home-title .cn {
    font-size: .3rem;
}

.home-title .en {
    font-size: .16rem;
    text-transform: uppercase;
}

.home-title .more {
    position: absolute;
    right: 0;
    font-size: .15rem;
    width: 1.16rem;
    height: .35rem;
    line-height: .35rem;
    color: #333;
    background: url(../images/more.png)no-repeat center;
    background-size: 100%;
    top: .05rem;
}

.home-news {
    background: url(../images/bg1.jpg)no-repeat center bottom;
    background-size: cover;
    padding-top: .9rem;
    padding-bottom: 2.35rem;
    overflow: hidden;
}

.home-news .home-title .line {
    font-size: .24rem;
    margin-top: .05rem;
    color: #515151;
    margin-left: .3rem;
    margin-right: .3rem;
}

.home-news .home-title {
    color: #515151;
}

.home-news .home-title .title {
    cursor: pointer;
}

.home-news .home-title .en {
    display: none;
}

.home-news .home-title .more {
    display: none;
}

.home-news .home-title .on {
    color: #971d12;
}

.home-news .home-title .on .more,
.home-news .home-title .on .en {
    display: block;
}

.home-news .content {
    margin-top: .45rem;
}

.home-news .text-pic {
    width: 9rem;
    background-color: #FFF;
    margin-right: .3rem;
}

.home-news .text-pic .pic {
    width: 100%;
    height: 4.1rem;
    overflow: hidden;
}

.home-news .text-pic .text-con {
    border-top: 5px #971d12 solid;
    height: 1.75rem;
    padding-left: .6rem;
    padding-right: 1.1rem;
}

.home-news .text-pic .date {
    width: 1.1rem;
    height: 1.2rem;
    background-color: #971d12;
    color: #FFF;
    font-family: 'DIN-Medium';
    font-size: .14rem;
    line-height: 1.5;
    margin-right: .35rem;
}

.home-news .text-pic .date span {
    font-size: .52rem;
    line-height: 1;
}

.home-news .text-pic .tit {
    font-family: 'PingFang-Medium';
    font-size: .2rem;
    margin-top: .3rem;
}

.home-news .text-pic .des {
    font-size: .16rem;
    font-family: 'PingFang-Light';
    color: #636363;
    margin-top: .1rem;
}

.home-news .text-pic .arrow {
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #dadada solid;
    background: url(../images/arrow1.png)no-repeat center;
    background-size: .07rem;
    position: absolute;
    right: .4rem;
    bottom: .4rem;
}

.home-news li {
    background-color: #FFF;
    border-top: 2px #971d12 solid;
    padding: .3rem .4rem;
    height: 1.68rem;
    margin-bottom: .4rem;
}

.home-news li:last-child {
    margin-bottom: 0;
}

.home-news li .tit {
    font-size: .2rem;
    margin-bottom: .2rem;
    height: .56rem;
}

.home-news li .date {
    font-family: 'DIN-Medium';
}

.home-news li .arrow {
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #dadada solid;
    background: url(../images/arrow1.png)no-repeat center;
    background-size: .07rem;
}

.home-notice {
    background: url(../images/bg2.png)no-repeat center top;
    background-size: cover;
    height: 5.75rem;
    z-index: 2;
    margin-top: -1.6rem;
    padding-top: .5rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
    overflow: hidden;
}

.home-notice .home-title {
    background-image: url(../images/icon2.png);
    color: #FFF;
    margin-left: auto;
    margin-right: auto;
    width: 1.9rem;
}

.home-notice .content {
    margin-top: 1rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.home-notice .swiper-slide {
    background-color: #FFF;
    height: 2.5rem;
    border-top: 5px #e7bb7f solid;
    padding: .2rem .3rem .4rem .3rem;
}

.home-notice .swiper-slide .date {
    color: #971d12;
    font-size: .24rem;
    font-family: 'DIN-Medium';
}

.home-notice .swiper-slide .date span {
    font-size: .6rem;
    margin-right: .05rem;
}

.home-notice .swiper-slide .tit {
    font-size: .2rem;
    font-family: 'PingFang-Medium';
    margin-top: .2rem;
}

.home-notice .swiper-button-next,
.home-notice .swiper-button-prev {
    width: .5rem;
    height: .5rem;
    margin-top: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: .25rem;
    border: 1px #FFFF solid;
}

.home-notice .swiper-button-prev {
    background-image: url(../images/prev.png);
}

.home-notice .swiper-button-next {
    background-image: url(../images/next.png);
}

.home-notice .more {
    top: auto;
    bottom: .4rem;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    left: 50%;
    background-image: url(../images/more1.png);
    color: #FFF;
}

.home-notice .swiper-pagination {
    display: none;
}

.home-figure {
    background: url(../images/bg3.jpg)no-repeat center top;
    background-size: cover;
    height: 8.1rem;
    padding-top: 1.1rem;
    overflow: hidden;
}

.home-figure .content {
    /* margin-top: 1rem; */
    padding-left: 1rem;
    padding-right: 1rem;
}

.home-figure .content .swiper-container {
    padding-top: 1rem;
}

.home-figure .item {
    width: 2rem;
    height: 2rem;
    border: 2px #971d12 dashed;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 10;
    padding-top: .4rem;
    padding-left: .25rem;
    padding-right: .25rem;
    cursor: pointer;
    margin-right: .5rem;
}

.home-figure .item:last-of-type {
    margin-right: 0;
}

.home-figure .item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
    z-index: -1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.home-figure .item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: .06rem;
    width: .14rem;
    height: .14rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #971d12;
    z-index: 1;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.home-figure .item:nth-child(even) {
    margin-top: .8rem;
}

.home-figure .item .num {
    z-index: 10;
    color: #971d12;
}

.home-figure .item .num span {
    font-size: .48rem;
    font-family: 'DIN-Medium';
}

.home-figure .item .text {
    font-family: 'PingFang-Medium';
    font-size: .16rem;
}

.home-figure .item .pic-con {
    position: absolute;
    left: 50%;
    top: -1rem;
    background-color: #FFF;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    padding: .1rem;
    z-index: 20;
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .15);
    display: none;
}

.home-figure .item .pic-con::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px transparent solid;
    border-right: 10px transparent solid;
    border-top: 10px #FFF solid;
}

.home-figure .item .pic-con .pic {
    width: 2.2rem;
    height: 1.25rem;
    margin-right: .1rem;
    overflow: hidden;
}

.home-figure .item .pic-con .pic:last-child {
    margin-right: 0;
}

.home-figure .item.left .pic-con {
    left: 0;
    transform: unset;
}
.home-figure .item.left .pic-con::after {
    left: 14%;
}

.home-figure .item.right .pic-con {
    right: 0;
    left: unset;
    transform: unset;
}
.home-figure .item.right .pic-con::after {
    left: 85%;
}

.home-figure .item.on {
    z-index: 11;
}

.home-figure .item.on .pic-con{
    display: block;
}

.home-video {
    background: url(../images/bg4.png)no-repeat center top;
    background-size: 100%;
    padding-left: 2.4rem;
    padding-top: 1.8rem;
    margin-top: -2.1rem;
    z-index: 10;
}

.home-video .home-title {
    background-image: url(../images/icon2.png);
    color: #FFF;
}

.home-video .home-title .more {
    color: #FFF;
    background-image: url(../images/more1.png);
    right: .3rem;
    top: .4rem;
}

.home-video .content {
    width: 7rem;
    padding-top: .8rem;
}

.home-video .item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
    z-index: 1;
}

.home-video .item .text {
    position: absolute;
    left: 0;
    bottom: .2rem;
    width: 100%;
    font-family: 'PingFang-Medium';
    color: #FFF;
    z-index: 4;
    font-size: .16rem;
    padding-left: .2rem;
}

.home-video .pic-content {
    width: 9.5rem;
}

.home-video .pic-con {
    margin-top: .6rem;
}

.home-video .pic-con a {
    height: 2.8rem;
    overflow: hidden;
}

.home-video .pic-con a:first-child {
    margin-right: .1rem;
}

.home-video .pic1 {
    margin-top: .1rem;
    overflow: hidden;
    height: 3.68rem;
}

.home-video .pic2 {
    margin-top: .1rem;
    overflow: hidden;
    height: 4.46rem;
}

.home-video .play {
    overflow: hidden;
    height: 4.59rem;
    width: 7.19rem;
    margin-top: -.5rem;
    z-index: 10;
}

.home-video .play span {
    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: .79rem;
    height: .79rem;
    background: url(../images/play.png)no-repeat center;
    background-size: 100%;
    z-index: 10;
    cursor: pointer;
}

.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.svg)no-repeat left center;
    background-size: .2rem;
    padding-left: .3rem;
    cursor: pointer;
}

.home-bg {
    background: url(../images/bg5.jpg)no-repeat center top;
    background-size: cover;
    padding-bottom: 1.35rem;
    padding-top: 5.15rem;
    margin-top: -4.25rem;
    overflow: hidden;
}

.home-special .content {
    margin-top: .45rem;
}

.home-special .swiper-slide {
    overflow: hidden;
    height: 2.85rem;
}

.home-special .swiper-slide-prev {
    -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

.home-special .swiper-slide-next {
    -webkit-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.home-special .swiper-button-next,
.home-special .swiper-button-prev {
    border: 1px #971d12 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: .44rem;
    height: .44rem;
    margin-top: 0;
    top: -1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: .23rem;
}

.home-special .swiper-button-prev {
    background-image: url(../images/prev1.png);
    left: auto;
    right: .8rem;
}

.home-special .swiper-button-next {
    background-image: url(../images/next1.png);
}

.home-tool {
    margin-top: 1.2rem;
    padding-left: .3rem;
    padding-right: .3rem;
}

.home-tool .swiper-slide {
    overflow: hidden;
}

.home-tool .icon {
    width: 1.11rem;
    height: 1.11rem;
    margin-left: auto;
    margin-right: auto;
    background: url(../images/tbg.png)no-repeat center;
    background-size: cover;
}

.home-tool .icon img {
    width: .6rem;
}

.home-tool .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 2rem;
    left: -2rem;
    border-top: 1px #971d12 dashed;
}

.home-tool .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 2rem;
    right: -2rem;
    border-top: 1px #971d12 dashed;
}

.home-tool .text {
    font-family: 'PingFang-Medium';
    font-size: .2rem;
    margin-top: .2rem;
}

.home-tool .swiper-button-black {
    background-size: .18rem;
    margin-top: 0;
    top: .46rem;
    width: .2rem;
    height: .2rem;
}

.home-tool .swiper-slide:first-child .icon::before {
    display: none;
}

.home-tool .swiper-slide:last-child .icon::after {
    display: none;
}

@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: #971d12;
        color: #FFF;
    }
    .footer .copyright a:hover {
        color: #FFF;
    }
    .footer .f-img .wb:hover span {
        background-color: #FFF;
        background-image: url(../images/douyin1.png);
    }
    .footer .f-img .wx:hover span {
        background-color: #FFF;
        background-image: url(../images/wx1.png);
    }
    .footer .f-img .wx:hover .erwma,
    .footer .f-img .wb:hover .erwma {
        display: block;
    }
    .home-title .more:hover {
        color: #971d12;
    }
    .home-news .text-pic:hover .pic img,
    .home-video .item: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 .text-pic:hover .tit {
        text-decoration: underline;
    }
    .home-news .text-pic:hover .arrow,
    .home-news li:hover .arrow {
        background-color: #e7bb7f;
        border-color: #e7bb7f;
    }
    .home-news li:hover,
    .home-figure .item:hover::after {
        background-color: #971d12;
    }
    .home-news li:hover .date,
    .home-news li:hover .tit,
    .home-figure .item:hover .text,
    .home-figure .item:hover .num,
    .home-notice .more:hover,
    .home-video .home-title .more:hover {
        color: #FFF;
    }
    .home-figure .item:hover::before {
        background-color: #FFF;
    }
    .home-notice .more:hover,
    .home-video .home-title .more:hover {
        text-decoration: underline;
    }
    .home-figure .item:hover {
        z-index: 20;
    }
}

@media (max-width:1199px) {
    .header {
        padding-left: .2rem;
        height: 1.2rem;
        align-items: center;
        padding-top: 0;
    }
    .header::after {
        height: 2rem;
    }
    .header .top {
        display: none;
    }
    .header.on {
        background-color: #971d12;
    }
    .header.on::after,
    .nav .drop::after {
        display: none;
    }
    .menu-btn,
    .m-search {
        display: block;
    }
    .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #971d12;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem .3rem;
    }
    .nav {
        display: block;
        margin-top: .2rem;
    }
    .nav li>a {
        font-size: 16px;
        padding: 0;
        line-height: 1rem;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 1rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: .32rem;
        height: .32rem;
        position: absolute;
        left: .1rem;
        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;
        padding-left: .2rem;
    }
    .nav .drop a {
        color: #FFF;
    }
    .footer .content {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .banner .swiper-slide {
        height: auto;
    }
    .banner .swiper-slide img {
        width: 100%;
        height: auto;
    }
    .footer {
        padding-top: .5rem;
    }
    .home-news li .tit {
        height: 38px;
    }
    .nav .drop a,
    .footer .tit,
    .footer .info .text,
    .home-news .text-pic .tit,
    .home-news li .tit,
    .home-notice .swiper-slide .tit,
    .home-notice .swiper-slide .date,
    .home-video .item .text,
    .home-tool .text {
        font-size: 14px;
    }
    .footer .tel {
        font-size: 24px;
    }
    .home-news .text-pic .des,
    .home-news .text-pic .date,
    .home-figure .item .text,
    .home-title .more {
        font-size: 12px;
    }
    .home-notice {
        padding-left: 0;
        padding-right: 0;
    }
    .home-notice .swiper-slide {
        height: auto;
    }
    .home-notice .swiper-pagination {
        display: block;
        text-align: center;
        width: 100%;
    }
    .home-notice .content {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .home-notice .swiper-button-next,
    .home-notice .swiper-button-prev {
        display: none;
    }
    .home-notice .swiper-pagination-bullet {
        width: .16rem;
        height: .16rem;
        background-color: #FFF;
        margin: 0 .1rem !important;
    }
    .home-video {
        padding-left: .2rem;
        background-size: 130%;
    }
    .home-video .content {
        width: 6.25rem;
    }
    .home-video .pic-content {
        width: 8.6rem;
    }
}

@media (max-width:950px) {
    .footer .info {
        width: 3.4rem;
    }
    .home-news .text-pic .text-con {
        height: auto;
        padding-bottom: .8rem;
    }
    .home-news li {
        height: 1.9rem;
    }
    .home-figure .content {
        padding-left: 0;
        padding-right: 0;
    }
    .home-figure .item {
        width: 2.3rem;
        height: 2.3rem;
    }
    .home-figure .item::after {
        width: 2rem;
        height: 2rem;
    }
    .home-figure .item .num span {
        font-size: 24px;
    }
}

@media (max-width:767px) {
    .nav .drop a {
        line-height: 2;
    }
    .footer .logo-con {
        order: 1;
        width: 100%;
    }
    .footer .text-con {
        order: 2;
        width: 100%;
        margin-top: .3rem;
        text-align: center;
    }
    .footer .info {
        width: 100%;
        order: 3;
        align-items: center;
        margin-top: .3rem;
    }
    .home-title .cn {
        font-size: 16px;
    }
    .home-news {
        padding-top: .6rem;
    }
    .home-title .en {
        font-size: 12px;
    }
    .home-news .text-pic {
        width: 100%;
        margin-right: 0;
    }
    .home-news .text-pic .text-con {
        padding-bottom: .6rem;
        padding-left: .4rem;
        padding-right: .9rem;
    }
    .home-news ul {
        margin-top: .3rem;
    }
    .home-news li {
        height: auto;
        margin-bottom: .3rem;
    }
    .home-news .text-pic .date span,
    .home-notice .swiper-slide .date span {
        font-size: 24px;
    }
    .home-news .home-title .line {
        margin-right: .1rem;
        margin-left: .1rem;
    }
    .home-news .home-title .on .more {
        display: none;
    }
    .home-notice {
        height: auto;
        padding-bottom: 1.4rem;
    }
    .home-notice .home-title {
        width: 120px;
    }
    .home-notice .content {
        margin-top: .6rem;
    }
    .home-title .more {
        width: 1.6rem;
        height: .5rem;
        line-height: .5rem;
    }
    .home-notice .more {
        bottom: .3rem;
    }
    .home-figure {
        padding-top: .6rem;
    }
    .home-figure .item:nth-child(even) {
        margin-top: 0;
    }
    .home-figure .item {
        width: 2rem;
        height: 2rem;
        margin-bottom: .3rem;
    }
    .home-figure .item::after {
        width: 1.7rem;
        height: 1.7rem;
    }
    .home-figure .content {
        margin-top: .5rem;
    }
    .home-video {
        display: block;
        padding-right: .2rem;
        background-size: 280%;
        padding-top: 1rem;
        margin-top: -1.6rem;
    }
    .home-video .content,
    .home-video .pic-content {
        width: 100%;
    }
    .home-video .home-title .more {
        right: 0;
        top: .1rem;
    }
    .home-video .pic-con {
        margin-top: .3rem;
    }
    .videoShow {
        width: 90%;
        height: 4rem;
    }
    .home-bg {
        margin-top: -11.2rem;
        padding-top: 11.8rem;
    }
    .home-tool {
        padding-left: 0;
        padding-right: 0;
    }
    .home-tool .swiper-button-next {
        right: 0;
    }
    .home-tool .swiper-button-prev {
        left: 0;
    }
}

.n-banner {
    overflow: hidden;
}

.n-banner img {
    width: 100%;
}

@font-face {
    font-family: 'PingFang-SC-Semibold';
    src: url("../fonts/PingFang-SC-Semibold.ttf");
}

.slide {
    width: 3.4rem;
    z-index: 11;
    margin-top: -1.2rem;
    margin-right: .4rem;
}

.slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: .65rem;
    background-color: #971d12;
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.slide .title {
    color: #e7bb7f;
    font-size: .4rem;
    line-height: 1.2rem;
    font-family: 'PingFang-SC-Semibold';
}

.slide ul {
    margin-left: .2rem;
    background-color: #FFF;
    padding-top: .4rem;
    padding-left: .4rem;
    padding-right: .4rem;
    padding-bottom: 1.7rem;
}

.slide ul li {
    border-bottom: 1px #e5e5e5 solid;
}

.slide ul li>a {
    font-size: .22rem;
    line-height: .8rem;
    height: .8rem;
}

.slide ul li>a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: .2rem;
    background: url(../images/arrow2.png)no-repeat center;
    background-size: .18rem;
}

.slide ul li.on>a {
    color: #971d12;
}

.slide ul li.on>a::after {
    background-image: url(../images/arrow3.png);
}

.slide ul li.on>a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -.4rem;
    width: 2px;
    background-color: #af1c0e;
    height: .5rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.pub-content {
    /* background-color: #f3f3f3; */
    border-top: 2px #971d12 solid;
    margin-top: .4rem;
    padding-bottom: 1.2rem;
    padding-left: .4rem;
    padding-right: .4rem;
    background-image: linear-gradient(#f3f3f3, #e9e9e9);
    min-width: 0;
}

.pub-title {
    border-bottom: 1px #dfdfdf solid;
    line-height: 1rem;
}

.pub-title span {
    font-family: 'PingFang-SC-Semibold';
    font-size: .32rem;
    color: #971d12;
}

.crumbs {
    font-size: .14rem;
    color: #666;
}

.crumbs a {
    color: #666;
}

.jigou .item {
    line-height: .7rem;
    background-color: #e7e7e7;
    border-left: 2px #971d12 solid;
    padding-left: .2rem;
    width: 32%;
    margin-right: 2%;
    font-size: .2rem;
    margin-top: .3rem;
}

.jigou .item:nth-of-type(3n),
.teacher .item:nth-of-type(3n) {
    margin-right: 0;
}

.teacher .item {
    margin-top: .4rem;
    width: 30%;
    margin-right: 4.7%;
    height: 4.15rem;
    border-bottom: 2px #971d12 solid;
    background-color: #FFF;
}

.teacher .item .pic {
    overflow: hidden;
    width: 100%;
    height: 3.4rem;
}

.teacher .item .text {
    z-index: 10;
    height: 1rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.teacher .item .text::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #971d12;
    opacity: .7;
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
    z-index: -1;
}

.teacher .item .text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    -webkit-clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.teacher .item .text span {
    z-index: 10;
    font-size: .24rem;
}

.page {
    margin-top: .6rem;
}

.page a,
.page .text {
    background-color: #FFF;
    line-height: .50rem;
    height: .50rem;
    border: 1px #cecece solid;
    padding: 0 .2rem;
    margin-left: -1px;
    font-size: .16rem;
    font-family: 'PingFang-Medium';
}

.page .text input {
    width: .45rem;
    height: .26rem;
    background-color: #ececec;
    font-size: .16rem;
    margin-left: .05rem;
    margin-right: .05rem;
    font-family: 'PingFang-Medium';
}

.teacher-details {
    margin-top: .3rem;
}

.teacher-details .pic {
    margin-right: .3rem;
    padding-right: .1rem;
    width: 3.15rem;
    z-index: 9;
    padding-bottom: .1rem;
}

.teacher-details .pic::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #971d12;
    width: 50%;
    height: 50%;
}

.teacher-details .pic img {
    width: 100%;
    z-index: 10;
}

.teacher-details .name {
    font-size: .24rem;
    color: #971d12;
}

.teacher-details .text {
    font-size: .16rem;
    color: #666666;
    line-height: 1.7;
}

.teacher-details .text p {
    text-indent: .32rem;
    margin-top: .2rem;
}

.img-list .item {
    width: 32%;
    margin-right: 2%;
    margin-top: .3rem;
    background-color: #efefef;
}

.img-list .item:nth-of-type(3n) {
    margin-right: 0;
}

.img-list .item .pic {
    width: 100%;
    height: 1.9rem;
    overflow: hidden;
}

.img-list .item .text {
    line-height: .6rem;
    font-size: .2rem;
    border: 1px #e5e5e5 solid;
    border-top: 2px #971d12 solid;
}

.img-details h1 {
    font-size: .3rem;
    font-family: 'PingFang-SC-Semibold';
    margin-top: .4rem;
}

.img-details .info {
    color: #666;
    font-size: .16rem;
    margin-top: .3rem;
}

.img-details .info span {
    margin: 0 .05rem;
}

.img-details .gallery-top {
    margin-top: .4rem;
}

.img-details .gallery-top .swiper-slide {
    height: 5.5rem;
    overflow: hidden;
}

.img-details .gallery-top .swiper-pagination {
    width: auto;
    color: #FFF;
    font-family: 'Georgia';
    font-size: .2rem;
    z-index: 10;
    bottom: .25rem;
    left: .2rem;
}

.img-details .gallery-top .swiper-pagination::after {
    content: '';
    position: absolute;
    right: -.2rem;
    width: 1px;
    height: .4rem;
    background-color: rgba(255, 255, 255, .3);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.img-details .gallery-top .swiper-pagination-current {
    color: #e7bb7f;
}

.img-details .gallery-top .text {
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: .7rem;
    line-height: .7rem;
    padding-left: 1rem;
    color: #FFF;
}

.img-details .gallery-thumbs {
    margin-top: .3rem;
    padding-left: .45rem;
    padding-right: .45rem;
    margin-left: 1.34rem;
    margin-right: 1.4rem;
}

.img-details .gallery-thumbs .swiper-slide {
    height: .9rem;
}

.img-details .gallery-thumbs .swiper-button-next,
.img-details .gallery-thumbs .swiper-button-prev {
    width: .28rem;
    height: .9rem;
    background-color: #f9f9f9;
    top: 0;
    margin-top: 0;
    background-size: .12rem;
}

.img-details .gallery-thumbs .swiper-button-prev {
    left: 0;
}

.img-details .gallery-thumbs .swiper-button-next {
    right: 0;
}

.img-details .gallery-thumbs .swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 3px #971d12 solid;
}

.img-details .prev {
    width: 1.2rem;
    height: .87rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

.img-details .prev.next {
    left: auto;
    right: 0;
}

.img-details .prev .text {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #FFF;
    font-size: .16rem;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 10;
    display: none;
}

.img-details .prev::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/tbg1.png)no-repeat center;
    background-size: cover;
    left: .05rem;
    top: .05rem;
    z-index: -1;
}

.notice li {
    border-bottom: 1px #dadada dashed;
    padding-top: .1rem;
    padding-bottom: .1rem;
}

.notice li a {
    padding: .1rem;
}

.notice li .date {
    width: .8rem;
    height: .8rem;
    background: url(../images/tbg2.png)no-repeat center;
    background-size: cover;
    margin-right: .4rem;
    color: #FFF;
    font-size: .16rem;
    padding-top: .1rem;
}

.notice li .date span {
    font-size: .22rem;
}

.notice li .tit {
    font-size: .2rem;
}

.notice li:hover a {
    background-color: #971d12;
}

.notice li:hover .date {
    background-image: url(../images/tbg3.png);
}

.notice li:hover .tit,
.notice li:hover .date {
    color: #FFF;
}

.pub-bg {
    background: url(../images/bg6.jpg)no-repeat center bottom;
    background-size: 100%;
}

.news-details .bg {
    background-color: #ebe9e8;
    margin-top: .3rem;
    padding: .3rem
}

.news-details .title {
    font-size: .3rem;
    font-family: 'PingFang-Medium';
}

.news-details .info {
    margin-top: .3rem;
    color: #666;
}

.news-details .info span {
    margin: 0 .05rem;
}

.news-details .body {
    margin-top: .4rem;
    line-height: 1.7;
}

.news-details .body img {
    max-width: 100%;
    margin: .16rem auto;
}
.news-details .body table, .news-details .body video, .news-details .iframe { margin-left: auto; margin-right: auto; margin-top: .1rem; margin-bottom: .1rem; }
.news-details .body p {
    text-indent: .36rem;
 
}

.news-details .text {
    text-align: right;
}

.news-details .prev {
    margin-top: .6rem;
    padding-top: .4rem;
    line-height: 2.5;
    border-top: 1px #c4c1c0 solid;
    padding-right: 1.8rem;
}

.news-details .back {
    position: absolute;
    right: 0;
    top: .5rem;
    width: ;
    line-height: .56rem;
    height: .56rem;
    background-color: #971d12;
    border-radius: .28rem;
    -webkit-border-radius: .28rem;
    -moz-border-radius: .28rem;
    -ms-border-radius: .28rem;
    -o-border-radius: .28rem;
    color: #e7bb7f;
    padding: 0 .3rem;
}

.news-details .back::before {
    content: '';
    width: .18rem;
    height: .15rem;
    background: url(../images/back.png)no-repeat center;
    background-size: 100%;
    margin-right: .05rem;
}

.news .item {
    border-bottom: 1px dashed #dadada;
    margin-top: .3rem;
    padding-bottom: .3rem;
}

.news .item .pic {
    width: 2.85rem;
    height: 1.6rem;
    overflow: hidden;
    margin-right: .3rem;
}

.news .item .date {
    color: #971d12;
    font-family: 'PingFang-Medium';
    font-size: .16rem;
}

.news .item .tit {
    font-size: .22rem;
    color: #000;
    margin-top: .1rem;
}

.news .item .des {
    font-size: .16rem;
    color: #666;
    margin-top: .1rem;
}

.about {
    margin-top: .4rem;
    line-height: 1.8;
}

.about .pic {
    float: right;
    margin-left: .3rem;
    width: 4.6rem;
}

.about img {
    max-width: 100%;
    margin-bottom: .3rem;
}

.about p {
    text-indent: .36rem;
    margin-bottom: .3rem;
}

@media (min-width:1025px) {
    .crumbs a:hover,
    .news .item:hover .tit {
        color: #971d12;
    }
    .jigou .item:hover {
        background-color: #971d12;
        color: #e7bb7f;
    }
    .teacher .item:hover .pic img,
    .img-list .item:hover .pic img,
    .news .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);
    }
    .teacher .item:hover {
        border-bottom-color: #e7bb7f;
    }
    .teacher .item:hover .text {
        color: #FFF;
    }
    .teacher .item:hover .text::after {
        background-color: #e7bb7f;
    }
    .teacher .item:hover .text::before,
    .img-details .gallery-thumbs .swiper-button-next:hover,
    .img-details .gallery-thumbs .swiper-button-prev:hover {
        background-color: #971d12;
    }
    .img-details .gallery-thumbs .swiper-button-next:hover {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
    }
    .img-details .gallery-thumbs .swiper-button-prev:hover {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
    }
    .img-details .prev:hover::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #971d12;
        opacity: .8;
        z-index: 2;
    }
    .img-details .prev:hover .text {
        display: block;
    }
}

@media (max-width:1199px) {
    .jigou .item,
    .teacher .item .text span,
    .teacher-details .text,
    .img-list .item .text,
    .img-details .gallery-top .text,
    .notice li .tit,
    .news .item .tit {
        font-size: 14px;
    }
    .slide {
        display: none;
    }
    .crumbs,
    .page a,
    .page .text,
    .page .text input,
    .img-details .gallery-top .swiper-pagination,
    .img-details .info,
    .notice li .date,
    .news-details .info,
    .news .item .date,
    .news .item .des {
        font-size: 12px;
    }
    .pub-title span,
    .teacher-details .name,
    .img-details h1,
    .news-details .title {
        font-size: 20px;
    }
    .teacher .item {
        height: 4.6rem;
    }
    .teacher .item .pic {
        height: 4.2rem;
    }
    .img-list .item .pic {
        height: 2.6rem;
    }
    .img-details .gallery-top .swiper-slide {
        height: 9rem;
    }
    .notice li .date {
        width: 60px;
        height: 60px;
        padding-top: 10px;
        margin-right: .2rem;
    }
    .notice li .date span {
        font-size: 16px;
    }
}

@media (max-width:767px) {
    .pub-content {
        padding-left: .2rem;
        padding-right: .2rem;
        min-width: 100%;
    }
    .jigou .item,
    .teacher .item,
    .img-list .item {
        width: 49%;
    }
    .jigou .item:nth-of-type(3n),
    .teacher .item,
    .teacher .item:nth-of-type(3n),
    .img-list .item,
    .img-list .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .jigou .item:nth-of-type(2n),
    .teacher .item:nth-of-type(2n),
    .img-list .item:nth-of-type(2n) {
        margin-right: 0;
    }
    .page .text,
    .page .go {
        display: none;
    }
    .teacher-details {
        display: block;
    }
    .teacher-details .pic {
        margin-left: auto;
        margin-right: auto;
    }
    .teacher-details .name {
        margin-top: .3rem;
    }
    .img-list .item .pic {
        height: 2.2rem;
    }
    .img-details .gallery-top .swiper-slide {
        height: 5rem;
    }
    .news .item .pic {
        width: 100%;
        margin-right: 0;
        height: 3.8rem;
    }
    .news .item .date {
        margin-top: .3rem;
    }
    .about .pic {
        width: 100%;
        margin-left: 0;
    }
		
		.home-figure .item .text{
			font-size: 10px;
		}
}



/* 2024-11-14新增 */
.q-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.q-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.1rem;
    background: url(../images/q-header-bg.jpg) no-repeat center;
    background-size: cover;
}
.q-header .logo img{
    width: auto;
    height: 1.1rem;
}
.q-header .title {
    font-weight: 500;
    font-size: .42rem;
    color: #FFFFFF;
    margin-left: .5rem;
}

.q-container {
    flex: 1;
    padding: 1rem 0;
    background: url(../images/q-bg.png) no-repeat bottom;
    background-size: cover;
}

.q-box {
    width: 8rem;
    border-radius: .2rem;
    background: url(../images/q-box-bg.png) no-repeat center;
    background-size: 100% 100%;
    background-color: #FFFFFF;
    margin: 0 auto;
    padding: .7rem .5rem;
    box-shadow: 0px 0px .3rem rgba(151,29,18,.2);
}

.q-box .tip {
	text-align: center;
    margin-top: .2rem;
}
.q-box  .tip .tit {
	display: flex;
	align-items: center;
	font-size: .18rem;
	color: #971D12;
	line-height: .72rem;
}
.q-box  .tip .tit span {
	padding: 0 .2rem;
}
.q-box .tip .tit::before,
.q-box .tip .tit::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #D2D2D2;
}
.q-box .tip .txt {
	font-size: .14rem;
	color: #505050;
	line-height: .24rem;
}

.q-box .form {
    width: 4.6rem;
    margin: 0 auto;
}
.q-box .form .item {
    display: flex;
    align-items: center;
    margin-bottom: .3rem;
}
.q-box .form .item .name{
    position: relative;
	display: inline-block;
	width: 4em;
    font-weight: 500;
    font-size: .22rem;
    color: #333333;
	text-align-last: justify;
    flex-shrink: 0;
}
.q-box .form .item .name::after {
	content: ":";
	position: absolute;
	right: -0.05rem;
	top: 50%;
	transform: translate(100%,-50%);
}
.q-box .form .item .val {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: .35rem;
}
.q-box .form .item .val input {
    width: 100%;
    flex: 1;
    height: .43rem;
    font-size: .2rem;
    background: #FFFFFF;
    padding: 0 .1rem;
    box-shadow: 0px 0.02rem 0.03rem 0px rgba(194,194,194,0.2);
    border-radius: .1rem;
    border: 1px solid #C4BDBD;
}
.q-box .form .item .val .code {
    width: 1.53rem;
    height: .49rem;
    background: #FFFFFF;
    margin-left: .25rem;
    flex-shrink: 0;
}
.q-box .form .item .val .code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.q-box .form .operate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem;
}
.q-box .form .operate .btn {
    width: 2.19rem;
    font-weight: 500;
    font-size: .22rem;
    color: #FFFFFF;
    line-height: .5rem;
    text-align: center;
    background: #971D12;
    border-radius: .1rem;
}
.q-box .form .operate .btn.reset {
    color: #971D12;
    background: #E6E6E6;
}

.q-num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: .35rem;
}
.q-num span {
    font-weight: 400;
    font-size: .16rem;
    color: #971D12;
    padding: 0 .2rem;
    border-right: 0.02rem solid #B8B8B8;
}
.q-num span:last-of-type {
    border-right: 0;
}

.q-box .result .msg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.q-box .result .msg img {
    width: 1.8rem;
    height: 1rem;
    flex-shrink: 0;
    object-fit: contain;
}
.q-box .result .msg span {
    font-weight: bold;
    font-size: .28rem;
    color: #8D190F;
}
.q-box .result .user {
    width: 5.8rem;
    padding: .14rem .4rem;
    background: rgba(212,155,105,0.2);
    border-radius: .1rem;
    margin: .6rem auto .8rem auto;
}
.q-box .result .user li {
    display: flex;
    align-items: center;
    font-size: .24rem;
    color: #333333;
    padding: .16rem 0;
    border-bottom: 0.02rem solid rgba(51,51,51,.15);
}
.q-box .result .user li:last-of-type {
    border-bottom: 0;
}
.q-box .result .user li .name {
    width: 36%;
    text-align: right;
    flex-shrink: 0;
}
.q-box .result .user li .name span{
    position: relative;
	display: inline-block;
	width: 4em;
    color: #333333;
	text-align-last: justify;
    flex-shrink: 0;
}
.q-box .result .user li .name span::after {
	content: ":";
	position: absolute;
	right: -0.02rem;
	top: 50%;
	transform: translate(100%,-50%);
}
.q-box .result .user li .val {
    /* width: 64%; */
    flex: 1;
    text-align: left;
    padding-left: .28rem;
    word-break: break-word;
}

.q-box .result .year {
    display: flex;
    align-items: center;
    width: 5.2rem;
    margin: 0 auto;
}
.q-box .result .year span {
    font-size: .32rem;
    color: #971D12;
    font-weight: 500;
    padding: 0 .3rem;
}
.q-box .result .year i {
    position: relative;
    flex: 1;
    height: 1px;
    background: #971D12;
}
.q-box .result .year i::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: .06rem;
    height: .06rem;
    background: #971D12;
    border-radius: 50%;
    transform: translateY(-50%);
}
.q-box .result .year i:last-of-type::before {
    right: unset;
    left: 0;
}
.q-box .result.s2 {

}
.q-box .result.s2 .user {
    width: 5.2rem;
    padding: 0;
    background: transparent;
    margin: 0 auto;
    margin-top: .2rem;
}
.q-box .result.s2 .user li .name {
    width: 50%;
    text-align: center;
}
.q-box .result.s2 .user li .val {
    padding-left: 0;
}

@media (max-width: 767px) {
    .q-header {
        height: auto;
        flex-direction: column;
        padding: .2rem;
    }
    .q-header .logo img {
        display: block;
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
    .q-header .title {
        margin-top: .1rem;
        margin-left: 0;
    }
    .q-container {
        padding: .4rem .2rem;
    }
    .q-box {
        width: 100%;
    }
    .q-box .tip {
        margin-top: .4rem;
    }
    .q-box .tip .tit {
        font-size: 14px;
    }
    .q-box .tip .txt {
        font-size: 12px;
        line-height: 1.8;
    }
    .q-num span {
        font-size: 12px;
    }
    .q-box .form {
        width: 100%;
    }
    .q-box .form .item {
        align-items: flex-start;
        flex-direction: column;
    }
    .q-box .form .item .val {
        width: 100%;
        margin-left: 0;
    }
    .q-box .form .item .name {
        font-size: 16px;
    }
    .q-box .form .item .val input {
        font-size: 15px;
        height: .7rem;
        margin-top: .1rem;
    }
    .q-box .form .item .val .code {
        width: 2.2rem;
        height: .7rem;
    }
    .q-box .form .operate .btn {
        width: auto;
        flex: 1;
        font-size: 16px;
        line-height: .7rem;
        margin-right: .4rem;
    }
    .q-box .form .operate .btn:last-of-type {
        margin-right: 0;
    }
    .q-box .result .msg span {
        font-size: 14px;
    }
    .q-box .result .user {
        width: 100%;
    }
    .q-box .result .user li {
        font-size: 16px;
        padding: .24rem 0;
    }
    .q-box .result .user li .name {
        width: 30%;
    }
    .q-box .result.s2 .user li .name {
        width: 40%;
    }
    .q-box .result .year span {
        font-size: 20px;
    }
    .q-box .result .year,
    .q-box .result.s2 .user {
        width: 100%;
    }
}
#list-page { width: 100%; font-family: 'PingFang-SC-Regular', 'Microsoft YaHei', arial, sans-serif;  text-align: center; margin: .4rem 0 0 !important; }
#list-page .p_pages a, #list-page span, #list-page .p_goto a {font-size: 15px; width: auto; height: auto; margin-top: 5px; transition: all .25s; }
#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {padding: 10px 12px; border: 1px solid #ccc; border-radius: 4px; color: #971d12;}
#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {background: #971d12; font-weight: bold; color: #fff; border-color: #971d12;} 
#list-page .p_t{ padding: 0 2px 0 0; color: #777;}
#list-page .p_first, #list-page .p_first_d, #list-page .p_last, #list-page .p_last_d{display: inline-block; }
#list-page .p_pages span{color: #aaa; }
#list-page .p_goto input { font-family: 'Arial'; color: #333; border-radius: 4px; width: 40px; height: 34px; line-height: 34px; vertical-align: bottom; background: none; border-color: #ccc; }
#list-page .p_goto input:focus, #list-page .p_goto input:hover { border-color: #971d12; }