@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%;
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .18rem 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
    padding-top: 1rem;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #11406C;
}


/*块级转化*/

.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.6rem;
    padding-right: 2.6rem;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

@font-face {
    font-family: 'SourceHanSerifCN-Bold';
    src: url('../fonts/SourceHanSerifCN-Bold.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Regular';
    src: url('../fonts/SourceHanSerifCN-Regular.otf');
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia.ttf');
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    height: 1rem;
    background: url(../images/header-bg.jpg)no-repeat center top;
    background-size: cover;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

.header .logo img {
    height: .68rem;
    max-width: 100% !important;
}

.header .search-btn {
    width: .21rem;
    height: .23rem;
    background: url(../images/search.png)no-repeat center top;
    background-size: 100%;
    cursor: pointer;
}

.search-content {
    background: #3ba7b9;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10001;
    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: 8rem;
    height: .8rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .2rem;
    background: none;
}

.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;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav li {
    font-family: 'SourceHanSerifCN-Regular';
}

.nav li>a {
    line-height: 1rem;
    padding: 0 .3rem;
    color: #FFF;
}

.nav .drop {
    width: 100%;
    left: 0;
    top: 1rem;
    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: #3ba7b9;
}

.nav .drop a {
    color: #FFF;
    font-size: .16rem;
    line-height: .5rem;
}

.nav .drop::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px transparent solid;
    border-right: 10px transparent solid;
    border-bottom: 10px #3ba7b9 solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.banner .swiper-slide {
    overflow: hidden;
}

.banner .swiper-pagination {
    bottom: .3rem;
}

.banner .swiper-pagination-bullet {
    background-color: #FFF;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 .1rem !important;
}

.banner .swiper-pagination-bullet-active {
    background-color: #e3851f;
}

.banner 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);
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
    width: 100%;
}

.banner .swiper-slide-active img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.footer {
    background-color: #333333;
    padding-top: .4rem;
    padding-bottom: .35rem;
    margin-top: .7rem;
}

.footer .link .tit {
    font-size: .22rem;
    color: rgba(255, 255, 255, .5);
}

.footer .link dl {
    margin-right: .35rem;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
}

.footer .link dl:last-child {
    margin-right: 0;
}

.footer .link dl::after {
    content: '';
    position: absolute;
    right: .2rem;
    top: .15rem;
    width: .1rem;
    height: .1rem;
    border-left: 2px rgba(255, 255, 255, .5) solid;
    border-bottom: 2px rgba(255, 255, 255, .5) solid;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.footer .link dl dt {
    line-height: .44rem;
    height: .44rem;
    color: rgba(255, 255, 255, .5);
    font-size: .14rem;
    padding-left: .2rem;
    padding-right: .4rem;
}

.footer .link dl dd {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: .44rem;
    background-color: #FFF;
    line-height: .44rem;
    z-index: 10;
    display: none;
}

.footer .link dl:hover dd {
    display: block;
}

.footer .link dl dd a {
    padding-left: .2rem;
    font-size: .14rem;
}

.copyright {
    border-top: 1px rgba(255, 255, 255, .5) solid;
    padding-top: .35rem;
    margin-top: .35rem;
}

.copyright .text {
    font-size: .14rem;
    color: #FFF;
    color: rgba(255, 255, 255, .5);
    text-align: right;
}

.copyright .text a {
    color: #FFF;
    color: rgba(255, 255, 255, .5);
}

.copyright .sns>div {
    width: .3rem;
    height: .3rem;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: .25rem;
    z-index: 9;
}

.copyright .sns>div:last-child {
    margin-right: 0;
}

.copyright .sns .wb {
    background-image: url(../images/wb.png);
    background-size: .3rem;
}

.copyright .sns .wx {
    background-image: url(../images/wx.png);
    background-size: .3rem;
}

.copyright .sns .qq {
    background-image: url(../images/qq.png);
    background-size: .23rem;
}

.copyright .sns>div .erwma {
    position: absolute;
    left: 50%;
    bottom: .4rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #FFF;
    width: 1rem;
    height: 1rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    padding: 5px;
    display: none;
}

.copyright .sns>div .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: 8px transparent solid;
    border-right: 8px transparent solid;
    border-top: 8px #FFF solid;
    bottom: -8px;
}

.copyright .sns>div .erwma img {
    width: 100%;
}

.copyright .sns>div:hover .erwma {
    display: block;
}

.copyright .logo {
    opacity: .5;
}

.copyright .logo img {
    height: .45rem;
}

.home-title .title {
    font-size: .36rem;
    text-transform: capitalize;
    font-family: 'SourceHanSerifCN-Bold';
}

.home-title .more {
    font-size: .16rem;
    font-family: 'SourceHanSerifCN-Regular';
    color: #999999;
    padding-right: .25rem;
    position: absolute;
    right: 0;
    bottom: .05rem;
}

.home-title .more::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: .2rem;
    height: .05rem;
    background: url(../images/more.png)no-repeat center;
    background-size: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-events {
    margin-top: .5rem;
}

.home-events .item {
    width: 32%;
    margin-right: 2%;
    margin-top: .4rem;
}

.home-events .item:last-child {
    margin-right: 0;
}

.home-events .item .pic {
    height: 3rem;
    overflow: hidden;
}

.home-events .item .text-con {
    height: 2.25rem;
    margin-left: .2rem;
    margin-right: .2rem;
    z-index: 2;
    margin-top: -.6rem;
    background-color: #FFF;
    border-top: 3px #e3851f solid;
    padding: .3rem .35rem 0 .35rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-events .item .tit {
    line-height: 1.6;
}

.home-events .item .all {
    margin-left: auto;
    margin-right: auto;
    margin-top: .25rem;
    border: 1px #6d1717 solid;
    font-size: .14rem;
    text-transform: uppercase;
    line-height: .4rem;
    padding: 0 .3rem;
    color: #6d1717;
}

.home-notice {
    margin-top: .8rem;
    background: url(../images/bg1.png)no-repeat center;
    background-size: cover;
    padding-top: .6rem;
    padding-bottom: .9rem;
}

.home-notice .item {
    margin-top: .5rem;
    background-color: #FFF;
    width: 48%;
    margin-right: 4%;
    padding: .3rem .4rem;
}

.home-notice .item:nth-child(even) {
    margin-right: 0;
}

.home-notice .item .date {
    background: url(../images/date.png)no-repeat left center;
    background-size: .2rem;
    font-family: 'Georgia';
    padding-left: .3rem;
}

.home-notice .item .tit {
    margin-top: .2rem;
}

.home-notice .all {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-image: linear-gradient(#fab369, #dd8e3a);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: -.25rem;
    z-index: 2;
}

.home-notice .all::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/jia.png)no-repeat center;
    background-size: .22rem;
    z-index: 3;
}

.home-notice .all::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #f9b368;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: .1;
    width: .7rem;
    height: .7rem;
}

.home-acad {
    margin-top: .8rem;
}

.home-acad .content {
    padding-bottom: .8rem;
    margin-top: .45rem;
}

.home-acad .sw-con {
    overflow: hidden;
    margin-right: 2.4rem;
}

.home-acad #gallery {
    margin-left: -1.85rem;
}

.home-acad #gallery .swiper-slide {
    width: 6.6rem;
    height: 4.6rem;
    overflow: hidden;
}

.home-acad .button {
    position: absolute;
    left: 2.8rem;
    top: 1.7rem;
    margin-top: 0;
    width: 1rem;
    height: .46rem;
}

.home-acad .swiper-button-white {
    height: 100%;
    width: 50%;
    background-color: #303054;
    background-size: .16rem;
}

.home-acad .swiper-button-prev {
    left: 0;
}

.home-acad .swiper-button-next {
    right: 0;
}

.home-acad #thumbs {
    background-color: #FFF;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 6.2rem;
    height: 4.7rem;
    box-shadow: 0 0 .15rem rgba(0, 0, 0, .1);
}

.home-acad #thumbs .swiper-slide {
    padding: .35rem .4rem;
}

.home-acad #thumbs .tit {
    font-weight: bold;
    line-height: 1.6;
    font-size: .22rem;
}

.home-acad #thumbs .text {
    color: #999;
    font-size: .16rem;
    line-height: 1.8;
    margin-top: .5rem;
}

.home-acad #thumbs .text::after {
    content: '';
    position: absolute;
    left: 0;
    top: -.25rem;
    height: 3px;
    width: .9rem;
    background-color: #999999;
}

.home-res {
    margin-top: .8rem;
   overflow:hidden;
}

.home-res .content {
    margin-left: -.2rem;
    margin-right: -.2rem;
    margin-top: .3rem;
    padding-bottom: .8rem;
}

.home-res .content::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: .25rem;
    height: 1px;
    width: 6rem;
    background-color: #fff1e3;
    z-index: 2;
}

.home-res .content::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: .25rem;
    height: 1px;
    width: 6rem;
    background-color: #fff1e3;
    z-index: 2;
}

.home-res .swiper-container {
    padding: .2rem;
}

.home-res .swiper-slide {
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    background-color: #fff;
}

.home-res .pic {
    height: 3.65rem;
    overflow: hidden;
}

.home-res .pic::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
}

.home-res .play {
    position: absolute;
    left: .3rem;
    bottom: .3rem;
    width: .4rem;
    height: .4rem;
    background: url(../images/play.png)no-repeat center;
    cursor: pointer;
    z-index: 10;
    background-size: 100%;
}

.home-res .text-con {
    padding: .4rem .3rem;
}

.home-res .date {
    position: absolute;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #FFF;
    font-size: .12rem;
    left: .3rem;
    top: -.3rem;
    background-image: linear-gradient(#fab369, #dd8e3a);
}

.home-res .date span {
    font-size: .14rem;
    text-transform: capitalize;
}

.home-res .tit {
    line-height: 1.6;
}

.home-res .swiper-button-next,
.home-res .swiper-button-prev {
    bottom: 0;
    top: auto;
    margin-top: 0;
    width: .5rem;
    height: .5rem;
    background-color: #FFF;
    border: 1px #e19543 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-size: .15rem;
}

.home-res .swiper-button-prev {
    left: 6.5rem;
    background-image: url("../images/jtz.svg");
}

.home-res .swiper-button-next {
    right: 6.5rem;
      background-image: url("../images/jty.svg");
}

.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;
}

@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: #1d7d8c;
    }
    .home-title .more:hover,
    .home-events .item:hover .tit {
        text-decoration: underline;
    }
    .home-title .more:hover::after {
        transform: translateX(.1rem) translateY(-50%);
        -webkit-transform: translateX(.1rem) translateY(-50%);
        -moz-transform: translateX(.1rem) translateY(-50%);
        -ms-transform: translateX(.1rem) translateY(-50%);
        -o-transform: translateX(.1rem) translateY(-50%);
    }
    .home-events .item:hover .pic img,
    .home-res .swiper-slide: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);
    }
    .home-events .item:hover .text-con {
        box-shadow: 0 0 .15rem rgba(0, 0, 0, .1);
    }
    .home-events .item:hover .all {
        border-color: #999999;
        color: #999;
    }
    .home-notice .item:hover {
        background-image: linear-gradient(#fab369, #dd8e3a);
    }
    .home-notice .item:hover .date {
        background-image: url(../images/date-on.png);
        color: #FFF;
    }
    .home-notice .item:hover .tit {
        color: #FFF;
    }
    .home-res .swiper-button-next:hover,
    .home-res .swiper-button-prev:hover {
        background-color: #e19543;
    }
    .home-res .swiper-button-prev:hover {
        background-image: url("../images/jtzb.svg");
    }
    .home-res .swiper-button-next:hover {
        background-image: url("../images/jtyb.svg");
    }
}

@media (max-width:1199px) {
    .header {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .header .search-btn {
        margin-right: .3rem;
        width: .3rem;
        height: .32rem;
    }
    .menu-btn {
        display: block;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #3ba7b9;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem .3rem;
    }
    .nav li>a {
        padding: 0;
        font-size: 16px;
    }
    .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;
        padding-top: 0;
        background: none;
        padding-left: .2rem;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
    .nav .drop a {
        line-height: .7rem;
    }
    .nav .drop a,
    .footer .link .tit,
    .home-res .date span,
    .home-acad #thumbs .tit {
        font-size: 14px;
    }
    .footer .link dl dt,
    .footer .link dl dd a,
    .copyright .text,
    .home-events .item .all,
    .home-title .more,
    .home-res .date,
    .home-acad #thumbs .text {
        font-size: 12px;
    }
    .home-res .date {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    .home-res .swiper-button-next,
    .home-res .swiper-button-prev {
        width: .6rem;
        height: .6rem;
    }
    .home-acad .sw-con {
        margin-right: 0;
    }
    .home-acad #gallery {
        margin-left: 0;
    }
    .home-acad .button {
        width: 100%;
        height: .6rem;
        left: 0;
        top: 50%;
        margin-top: -.3rem;
    }
    .home-acad .swiper-button-white {
        width: .6rem;
    }
    .home-acad .swiper-button-prev {
        left: .2rem;
    }
    .home-acad .swiper-button-next {
        right: .2rem;
    }
    .home-acad #thumbs {
        position: static;
    }
    .home-acad #thumbs {
        width: 100%;
        height: auto;
        margin-top: .3rem;
    }
}

@media (max-width:767px) {
    .footer .link .tit {
        display: none;
    }
    .footer .link dl {
        width: 100%;
        flex: none;
        margin-right: 0;
        margin-bottom: .3rem;
    }
    .footer .link dl dt {
        height: .8rem;
        line-height: .8rem;
    }
    .footer .link dl::after {
        top: .35rem;
    }
    .footer .link dl dd {
        bottom: .8rem;
    }
    .copyright .logo {
        width: 100%;
        margin-bottom: .3rem;
    }
    .copyright .logo img {
        height: .55rem;
    }
    .copyright .text,
    .copyright .sns {
        width: 100%;
    }
    .copyright .text {
        text-align: center;
        margin-top: .3rem;
    }
    .home-title .title {
        font-size: 20px;
    }
    .home-events .item,
    .home-notice .item {
        width: 100%;
        margin-right: 0;
    }
    .home-events .item .pic {
        height: 4.2rem;
    }
    .home-res .content::after,
    .home-res .content::before {
        width: 3rem;
    }
    .home-res .swiper-button-prev {
        left: 3rem;
    }
    .home-res .swiper-button-next {
        right: 3rem;
    }
    .videoShow {
        width: 90%;
        height: 4.8rem;
    }
    .home-res .play {
        width: .6rem;
        height: .6rem;
    }
}

@font-face {
    font-family: 'sySong';
    src: url('../fonts/sySong.woff') format('woff');
}

.pub-banner {
    overflow: hidden;
}

.pub-banner img {
    width: 100%;
}

.pub-wrap {
    padding-bottom: .7rem;
}

.leftNav {
    width: 2.8rem;
    margin-top: .3rem;
    margin-right: .4rem;
}

.leftNav h2 {
    line-height: 0.8rem;
    color: #fff;
    background: #3ba7b9;
    font-family: 'sySong';
    font-size: 0.26rem;
    font-weight: bold;
    overflow: hidden;
    padding-left: 0.4rem;
}

.leftNav>ul {
    background: #fff;
    box-shadow: 0px 0.02rem 0.05rem 0px rgba(0, 0, 0, 0.1);
}

.leftNav ul li a {
    display: block;
    line-height: 0.66rem;
    padding-left: 0.4rem;
    border-bottom: 1px solid #e5e5e5;
}

.leftNav>ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-left: 0.03rem solid #3ba7b9;
    transform: scaleY(0);
    z-index: 1;
    transition: all 0.3s;
}

.leftNav>ul>li>a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.2rem;
    background: url(../images/left-sj.png) no-repeat;
    background-size: cover;
    width: 0.16rem;
    height: 0.16rem;
    display: none;
}

.leftNav>ul>li:first-child {
    border-top: none;
}

.leftNav>ul>li>a {
    position: relative;
}

.leftNav>ul>li.on>a {
    color: #3ba7b9;
    font-weight: 600;
}

.leftNav>ul>li.on>a::after,
.leftNav>ul>li:hover>a::after {
    display: block;
}

.leftNav>ul>li:hover>a {
    color: #3ba7b9;
    font-weight: 600;
}

.leftNav>ul>li.on::before,
.leftNav>ul>li:hover::before {
    transform: none;
}

.leftNav ul li a:hover {
    background-position: 0.31rem center;
    color: #3ba7b9;
}

.leftNav>ul>li>ul {
    display: none;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    padding-right: 0;
    border-bottom: 1px solid #e5e5e5;
}

.leftNav>ul>li>ul>li>a {
    font-size: 0.15rem;
    line-height: 0.46rem;
    padding-left: 0.6rem;
    color: #666666;
    border-bottom: none;
}

.pub-content {
    padding: .2rem .4rem .4rem .4rem;
    box-shadow: 0px 0.02rem 0.05rem 0px rgba(0, 0, 0, 0.1);
    margin-top: .3rem;
    border-top: 2px #009169 solid;
}

.pub-title {
    line-height: 0.66rem;
    border-bottom: 1px solid #d2d2d2;
}

.pub-title h3 {
    font-size: 0.26rem;
    font-weight: bold;
}

.position {
    font-size: 0.14rem;
    color: #888;
}

.position a {
    color: #888;
    margin: 0 0.05rem;
    vertical-align: middle;
}

.page {
    margin-top: .4rem;
}

.page a {
    line-height: .3rem;
    border: 1px #c5b7b7 solid;
    font-size: .16rem;
    padding: 0 .1rem;
    margin-right: .1rem;
}

.page a:last-child {
    margin-right: 0;
}

.page a.on {
    background-color: #3ba7b9;
    color: #FFF;
    border-color: #3ba7b9;
}

.text-list .item {
    padding: .3rem 0;
    width: 100%;
    border-bottom: 1px dashed #ccc;
}

.text-list .item:first-child {
    margin-top: 0;
}

.text-list .item .date {
    width: 1.2rem;
    height: .8rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
    margin-right: .3rem;
}

.text-list .item .date span {
    font-weight: bold;
    color: #3ba7b9;
    font-size: .36rem;
}

.text-list .item .date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 70%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #3ba7b9;
}

.text-list .item .tit {
    font-size: .22rem;
    padding-left: 0;
}

.text-list .item .des {
    color: #666;
    margin-top: .15rem;
    font-size: .16rem;
}

.news-list .item {
    padding: .3rem 0;
    border-bottom: 1px #c5c5c5 dashed;
}

.news-list .item .pic {
    width: 2.6rem;
    height: 1.8rem;
    overflow: hidden;
    margin-right: .3rem;
}

.news-list .item .tit {
    font-size: .22rem;
    line-height: 1.8;
}

.news-list .item .des {
    color: #666;
    line-height: 1.8;
    margin-top: .1rem;
    font-size: .16rem;
}

.news-list .item .date {
    position: absolute;
    left: 0;
    bottom: .1rem;
    font-size: .18rem;
    color: #9E9E9E;
    font-family: Arial, Helvetica, sans-serif;
}

.details {
    padding-top: .5rem;
    padding-bottom: 1rem;
}

.details h1 {
    font-weight: normal;
    font-size: .26rem;
}

.details .info {
    color: #A8A8A8;
    font-size: .14rem;
    line-height: 2;
    border-bottom: 1px rgba(141, 141, 141, .3) solid;
    margin-top: .2rem;
    padding-bottom: .1rem;
}

.details .body {
    line-height: 2;
    font-size: .16rem;
    color: #2C2C2C;
}

.details .body p {

    text-indent: .32rem;
}

.details .body img {
    max-width: 100%;
    margin: 0.3rem auto;
    height: auto !important;
   display: block;
}

.details .prev-next {
    line-height: 2;
    margin-top: .6rem;
    font-size: .16rem;
}

.details .prev-next span {
    color: #3ba7b9;
}

.about {
    margin-top: .4rem;
}

.about .con {
    align-items: flex-end;
}

.about .pic {
    width: 5.3rem;
    height: 3.4rem;
    overflow: hidden;
}

.about .con .text-con {
    background-color: #3ba7b9;
    color: #FFF;
    padding: .6rem .3rem;
    font-size: .16rem;
    line-height: 1.8;
    text-indent: .28rem;
    clip-path: polygon(95% 0%, 100% 20px, 100% 100%, 0% 100%, 0% 0%);
}

.about .body {
    font-size: .16rem;
    line-height: 1.8;
}

.about .body p {
    margin-top: .3rem;
    text-indent: .28rem;
}

.teacher .item {
    margin-top: .6rem;
    width: 23%;
    margin-right: 2.5%;
}

.teacher .item:nth-of-type(4n) {
    margin-right: 0;
}

.teacher .item .pic {
    width: 100%;
    overflow: hidden;
    height: 3.4rem;
}

.teacher .item .name {
    font-size: .24rem;
    font-weight: bold;
    margin-top: .2rem;
}

.teacher .item .des {
    margin-top: .15rem;
    color: #666;
    line-height: 1.6;
}

.teacher-details .content {
    margin-top: 50px;
}

.teacher-details .pic-con {
    width: 2.8rem;
    margin-left: .2rem;
    margin-top: .2rem;
    z-index: 2;
    margin-right: .6rem;
}

.teacher-details .pic img {
    width: 100%;
}

.teacher-details .pic::after {
    content: '';
    position: absolute;
    left: -.2rem;
    top: -.2rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    width: 2.3rem;
    height: 3rem;
    z-index: -1;
    background-color: #3ba7b9;
}

.teacher-details .name {
    font-size: .24rem;
    font-weight: bold;
    color: #3ba7b9;
    margin-top: .3rem;
}

.teacher-details .des {
    margin-top: .2rem;
    color: #666;
}

.teacher-details .body {
    border-left: 1px #dcdcdc solid;
    padding-left: .3rem;
    padding-top: .2rem;
}

.teacher-details .body .item {
    margin-bottom: .6rem;
}

.teacher-details .body .item:last-child {
    margin-bottom: 0;
}

.teacher-details .body .title {
    line-height: .6rem;
    font-size: .26rem;
    color: #3ba7b9;
    font-family: 'sySong';
}

.teacher-details .body .title::after {
    content: '';
    position: absolute;
    left: -.45rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .3rem;
    height: .3rem;
    background: url(../images/sz-dot.png)no-repeat center;
    background-size: 100%;
}

.teacher-details .body .text {
    margin-top: .1rem;
    line-height: 1.8;
    opacity: .8;
}

@media (min-width:1025px) {
    .page a:hover {
        background-color: #3ba7b9;
        color: #FFF;
        border-color: #3ba7b9;
    }
    .news-list .item:hover {
        border-color: #3ba7b9;
    }
    .news-list .item:hover .pic img,
    .teacher .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);
    }
}

@media (max-width:1199px) {
    .leftNav {
        width: 3.2rem;
    }
    .leftNav>ul>li>a,
    .text-list .item .tit,
    .news-list .item .tit,
    .about .body,
    .about .con .text-con {
        font-size: 14px;
    }
    .leftNav>ul>li>ul>li>a {
        font-size: 13px;
    }
    .leftNav>h2 {
        font-size: 16px;
        line-height: .9rem;
        height: .9rem;
    }
    .leftNav ul li a {
        line-height: .8rem;
    }
    .text-list .item .date span {
        font-size: 20px;
    }
    .text-list .item .des,
    .news-list .item .date,
    .news-list .item .des,
    .details .info,
    .details .body,
    .details .prev-next,
    .page a {
        font-size: 12px;
    }
    .pub-title h3,
    .details h1,
    .teacher .item .name,
    .teacher-details .body .title,
    .teacher-details .name {
        font-size: 18px;
    }
    .position {
        display: none;
    }
    .about {
        padding: 0 .2rem;
    }
    .about .con .text-con {
        padding: .2rem;
    }
    .page a {
        line-height: .6rem;
        padding: 0 .2rem;
    }
}

@media (max-width:950px) {
    .news-list .item .pic {
        width: 3.4rem;
        height: 2.2rem;
    }
    .about {
        padding: 0;
    }
    .about .pic {
        width: 6.5rem;
        height: auto;
    }
    .about .pic {
        width: 100%;
        margin-right: 0;
    }
    .about .con .text-con {
        clip-path: none;
        padding: .2rem;
        line-height: 2;
    }
}

@media (max-width:767px) {
    .search-content .content {
        width: 90%;
    }
    .leftNav {
        width: 100%;
        margin-right: 0;
    }
    .leftNav>ul {
        display: none;
    }
    .leftNav>h2 {
        text-align: left;
        padding-left: 0.15rem;
        font-weight: 600;
    }
    .leftNav>h2::before,
    .leftNav>h2::after {
        display: none;
    }
    .leftNav>h2 span {
        width: 0.7rem;
        height: 0.7rem;
        background: url(../images/sub_left_down2.png) no-repeat center center;
        background-size: .2rem;
        cursor: pointer;
        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%);
    }
    .pub-content {
        padding: .2rem;
    }
    .news-list .item .pic {
        width: 100%;
        margin-right: 0;
        height: 3.8rem;
    }
    .news-list .item .tit {
        margin-top: .2rem;
    }
    .news-list .item .date {
        position: inherit;
        left: auto;
        bottom: auto;
        margin-top: .15rem;
        background-size: .24rem;
    }
    .about .body {
        line-height: 2;
    }
    .teacher .item {
        width: 49%;
        margin-right: 2%;
    }
    .teacher .item:nth-of-type(2n) {
        margin-right: 0;
    }
    .teacher-details {
        display: block;
        margin-top: .6rem;
    }
    .teacher-details .pic-con {
        margin-right: 0;
        margin-left: auto;
        margin-right: auto;
    }
}