@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;
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

 :focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}

@font-face {
    font-family: 'SourceHanSerifCN-Bold';
    src: url('../fonts/SourceHanSerifCN-Bold.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Regular';
    src: url('../fonts/SourceHanSerifCN-Regular.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-SemiBold';
    src: url('../fonts/SourceHanSerifCN-SemiBold.otf');
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: 16px/30px 'SourceHanSerifCN-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #054372;
}


/*块级转化*/

.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 {
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:1440px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 140px;
    z-index: 999;
    padding-left: 2%;
    padding-right: 2%;
    border-bottom: 1px rgba(255, 255, 255, .5) solid;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 180%;
    background-image: linear-gradient(rgba(96, 167, 174, 1) 40%, rgba(96, 167, 174, 0));
    z-index: -1;
}

.header .logo img {
    height: 70px;
}

.header .top {
    margin-top: 35px;
    justify-content: flex-end;
}

.header .top .home {
    font-family: 'SourceHanSerifCN-SemiBold';
    background: url(../images/home.png)no-repeat left center;
    padding-left: 30px;
    color: #FFF;
    font-size: 18px;
    margin-right: 30px;
}

.header .top .search-con {
    width: 240px;
    height: 38px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: rgba(255, 255, 255, .15);
    border: 1px rgba(255, 255, 255, .2) solid;
    overflow: hidden;
}

.header .top .search-con input[type='text'] {
    width: 100%;
    background: none;
    padding-left: 20px;
    color: #FFF;
}

.header .top .search-con input[type='submit'] {
    width: 48px;
    background: url(../images/search.png)no-repeat center;
}

.header.fixed {
    background-color: #60a7ae;
}

.header.fixed::after {
    display: none;
}

.menu-btn {
    display: none;
    background: url(../images/menu.png)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 20px;
    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.png);
}

.nav li {
    margin-right: 26px;
}

.nav li:last-child {
    margin-right: 0;
}

.nav li>a {
    line-height: 68px;
    font-family: 'SourceHanSerifCN-Bold';
    color: #FFF;
    font-size: 20px;
    white-space: nowrap;
}

.nav .drop {
    width: 120px;
    margin-left: -60px;
    left: 50%;
    top: 65px;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    line-height: 2.4;
    white-space: nowrap;
}

.footer {
    background: url(../images/f-bg.png)no-repeat center bottom;
    width: 100%;
    height: 450px;
    background-size: cover;
    color: #FFF;
    align-items: flex-end;
}

.footer>.container {
    margin: 0;
}

.footer .logo img {
    height: 75px;
}

.footer .copyright {
    border-top: 1px rgba(255, 255, 255, .2) solid;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}

.footer .erwma-con .item {
    margin-right: 20px;
}

.footer .erwma-con .item:last-child {
    margin-right: 0;
}

.footer .erwma-con .item .erwma {
    margin-left: auto;
    margin-right: auto;
    width: 83px;
    height: 83px;
    overflow: hidden;
}

.footer .erwma-con .item .erwma img {
    width: 100%;
}

.footer .erwma-con .item .txt {
    font-family: 'SourceHanSerifCN-Bold';
    line-height: 1;
    margin-top: 10px;
}

.footer .address {
    text-align: right;
    font-size: 18px;
    line-height: 1.7;
    margin-right: 30px;
}

.footer a {
    color: #FFF;
}

@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 li:hover .drop a:hover {
        background-color: rgba(96, 167, 174, .1);
    }
    .footer a:hover {
        text-decoration: underline;
    }
}

@media (max-width:1680px) {
    .header {
        padding-left: 1%;
        padding-right: 1%;
    }
    .header .logo img,
    .footer .logo img {
        height:65px;
    }
    .header .top .home,
    .footer .address {
        font-size: 16px;
    }
    .nav li {
        margin-right:17px;
    }
    .nav li>a {
        font-size: 18px;
    }
}

@media (max-width:1600px) {
    .header {
        height: 125px;
    }
    .header .top {
        margin-top: 20px;
    }
    .header .logo img,
    .footer .logo img {
        height: 58px;
    }
}

@media (max-width:1440px) {
    .header {
        height: 115px;
    }
    .header .top {
        margin-top: 10px;
    }
    .header .logo img,
    .footer .logo img {
        height: 60px;
    }
    .nav li>a {
        font-size: 16px;
    }
    .nav .drop,
    .footer .address {
        font-size: 14px;
    }
}

@media (max-width:1366px) {
    body {
        font-size: 14px;
    }
    .header {
        height: 108px;
    }
    .header .top .home {
        font-size: 14px;
    }
    .header .top .search-con {
        height: 32px;
    }
    .header .logo img,
    .footer .logo img {
        height: 55px;
    }
    .nav li {
        margin-right: 15px;
    }
}

@media (max-width:1280px) {
    .nav li {
        margin-right: 10px;
    }
}

@media (max-width:1199px) {
    .header {
        height: 90px;
    }
    .menu-btn {
        display: block;
    }
    .header .top .home {
        display: none;
    }
    .header .top .search-con {
        width: 100%;
        border-color: rgba(96, 167, 174, .5);
        height: 38px;
    }
    .header .top .search-con input[type='text'] {
        color: #81c2c9;
    }
    .header .top .search-con input[type='submit'] {
        background-image: url(../images/search1.png);
    }
    .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 90px;
        overflow-y: scroll!important;
        display: none;
        background-color: #FFF;
        z-index: 999;
        height: calc(100vh - 90px);
        padding: 20px;
    }
    .nav {
        display: block;
    }
    .nav li {
        margin-right: 0;
    }
    .nav li>a {
        line-height: 60px;
        color: #333;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 60px;
        width: 30px;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.png)no-repeat center;
        background-size: 100%;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        padding-top: 0;
        background: none;
        padding-bottom: 0;
        margin-left: 0;
        padding-left: 20px;
    }
    .footer {
        height: auto;
        background: #60a7ae;
        padding-top: 20px;
        margin-top: 30px;
    }
    .footer .copyright {
        font-size: 12px;
        margin-top: 10px;
        padding-top: 10px;
        line-height: 1.6;
    }
}

@media (max-width:950px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .header {
        height: 80px;
    }
    .nav-con {
        top: 80px;
        height: calc(100vh - 80px);
    }
    .header .logo img,
    .footer .logo img {
        height: 50px;
    }
    .footer .erwma-con .item .erwma {
        width: 70px;
        height: 70px;
    }
    .footer .logo {
        justify-content: center;
        width: 100%;
    }
    .footer .con>div:last-child {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width:767px) {
    .header {
        height: 70px;
    }
    .nav-con {
        top: 70px;
        height: calc(100vh - 70px);
    }
    .header .logo img,
    .footer .logo img {
        height: 45px;
    }
    .footer .address {
        width: 100%;
        order: 2;
        text-align: center;
        margin-top: 20px;
        margin-right: 0;
        font-size: 12px;
    }
    .footer .address br {
        display: none;
    }
    .footer .erwma-con {
        order: 1;
    }
    .footer .erwma-con .item .txt {
        font-size: 12px;
    }
}

.banner,
.n-banner {
    overflow: hidden;
}

.banner img,
.n-banner img {
    width: 100%;
}

.banner .swiper-pagination {
    bottom: 40px;
}

.banner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #FFF;
    opacity: .5;
    margin: 0 10px !important;
}

.banner .swiper-pagination-bullet-active {
    width: 24px;
    height: 24px;
    background: url(../images/banner-on.png)no-repeat center;
    background-size: 100%;
    opacity: 1;
    animation: 10s linear infinite ani_turn2;
    -webkit-animation: 10s linear infinite ani_turn2;
}

@keyframes ani_turn2 {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.n-banner::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, .8));
    z-index: 1;
}

.pub-bg {
    background: url(../images/pub-bg.jpg)no-repeat center top;
    background-size: 100%;
    width: 100%;
    display: inline-block;
}

.sidebar {
    width: 360px;
    z-index: 20;
    background: #e3f0f1 url(../images/sidebar-bg.jpg)no-repeat center bottom;
    background-size: 100%;
    padding-bottom: 350px;
    min-height: 900px;
    transform: translateY(-93px);
    -webkit-transform: translateY(-93px);
    -moz-transform: translateY(-93px);
    -ms-transform: translateY(-93px);
    -o-transform: translateY(-93px);
    margin-right: 60px;
}

.sidebar .title {
    font-size: 30px;
    font-family: 'SourceHanSerifCN-Bold';
    color: #333;
    background: url(../images/title-bg.jpg)no-repeat center;
    line-height: 93px;
    background-size: cover;
    font-size: 36px;
    color: #FFF;
       padding: 25px 10px 25px 40px;
    line-height: 43px;
}

.sidebar li {
    font-family: 'SourceHanSerifCN-SemiBold';
}

.sidebar li>.tit {
    line-height: 100px;
    font-size: 28px;
    padding-left: 60px;
    border-bottom: 1px #accfd3 solid;
}

.sidebar li .sub {
    background-color: #cee7ea;
    line-height: 70px;
    font-size: 24px;
    display: none;
}

.sidebar li .sub a {
    border-bottom: 1px #accfd3 solid;
    padding-left: 75px;
}

.sidebar li.on>.tit {
    color: #6ab6bd;
}

.sidebar li.on .sub {
    display: block;
}

.title-con {
    margin-top: -93px;
    height: 93px;
    z-index: 20;
}

.title-con .title {
    font-family: 'SourceHanSerifCN-SemiBold';
    color: #FFF;
    line-height: 93px;
    font-size: 30px;
    padding-left: 40px;
    background: url(../images/arrow2.png)no-repeat left center;
}

.crumbs {
    background: url(../images/home1.png)no-repeat left center;
    padding-left: 20px;
    color: #FFF;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.crumbs a {
    color: #FFF;
    margin: 0 5px;
}

.crumbs span {
    color: #6ab6bd;
}

.img-list,
.txt-list {
    margin-top: 20px;
}

.img-list .item,
.txt-list .item {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px #d5d5d5 solid;
}

.img-list .item .pic {
    width: 175px;
    overflow: hidden;
    margin-right: 30px;
    height: 100px;
}

.img-list .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.img-list .item .date {
    width: 60px;
    margin-right: 15px;
    color: #83c7ce;
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.1;
}

.img-list .item .date span {
    font-size: 30px;
    font-family: 'SourceHanSerifCN-Bold';
    line-height: 1.3;
}

.img-list .item .date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 20px;
    background: url(../images/arrow1.png)no-repeat center;
    width: 100%;
}

.img-list .item .tit,
.txt-list .item .tit {
    font-size: 22px;
    line-height: 1.2;
    font-family: 'SourceHanSerifCN-SemiBold';
}

.img-list .item .des,
.txt-list .item .des {
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

.page {
    margin-top: 70px;
    line-height: 26px;
    font-size: 14px;
}

.page a {
    border: 1px #DCDCDC solid;
    width: 28px;
    height: 28px;
    margin: 0 5px;
}

.page .idx,
.page .last {
    width: 50px;
}

.page .prev,
.page .next {
    background: url(../images/arrow.png)no-repeat center;
    background-size: 10px;
}

.page .prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.page .on {
    background-color: #60a7ae;
    color: #FFF;
    border-color: #60a7ae;
}

.txt-list .item .date {
    width: 107px;
    height: 89px;
    background: url(../images/date.png)no-repeat center;
    background-size: 100% 100%;
    color: #83c7ce;
    line-height: 1.1;
    font-size: 14px;
    font-family: 'SourceHanSerifCN-SemiBold';
    margin-right: 30px;
}

.txt-list .item .date span {
    font-family: 'SourceHanSerifCN-Bold';
    font-size: 30px;
    margin-bottom: 5px;
}

.teacher-list {
    margin-top: 30px;
    overflow: hidden;
}

.teacher-list .item {
    width: 49%;
    height: 203px;
    background: url(../images/teacher-bg.png)no-repeat center;
    background-size: 100% 100%;
    padding: 25px 40px 0 50px;
    margin-top: 30px;
}

.teacher-list .item .img-con {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 40px;
    z-index: 10;
}

.teacher-list .item .img-con::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #6ab6bd dashed;
    z-index: -1;
}

.teacher-list .item .img-con .pic {
    overflow: hidden;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.teacher-list .item .name {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 10px;
}

.teacher-list .item .name span {
    font-size: 22px;
    font-family: 'SourceHanSerifCN-Bold';
    margin-right: 10px;
}

.teacher-list .item .des {
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

.details {
    margin-top: 50px;
  overflow:hidden;
}

.details h1 {
    font-size: 24px;
    line-height: 1.3;
    color: #6ab6bd;
}

.details .info {
    background-color: #eef6f6;
    width: 100%;
    line-height: 45px;
    margin-top: 30px;
    font-size: 14px;
}

.details .info span {
    margin-right: 20px;
    color: #666666;
}

.details .info span:last-child {
    margin-right: 0;
}

.details .body {
    font-family: 'SourceHanSerifCN-Regular';
    line-height: 2;
    margin-top: 40px;
}

.details .body p {
   font-family: 'SourceHanSerifCN-Regular'!important;
    line-height: 2!important;
      font-size: 18px!important;
}
.details .body p span{
  font-family: 'SourceHanSerifCN-Regular'!important;
    line-height: 2!important;
      font-size: 18px!important;
  word-break: break-all;
}
.details .body img {
    max-width: 100%;
   display: block;
    margin: auto;
  height:auto!important;
}
.details .body img.my-img{
  display: inline;
}
.details .body table{
   margin: auto;
}
.details .prev {
    margin-top: 40px;
}

.details .prev a {
    background-color: #f4f9f9;
    width: 180px;
    height: 50px;
    color: #6ab6bd;
}

.details .prev a:first-child::before {
    content: '';
    width: 16px;
    height: 12px;
    background: url(../images/prev.png)no-repeat center;
    background-size: 100%;
    margin-right: 10px;
}

.details .prev a:last-child::after {
    content: '';
    width: 16px;
    height: 12px;
    background: url(../images/prev.png)no-repeat center;
    background-size: 100%;
    margin-left: 10px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

@media (min-width:1025px) {
    .sidebar li a:hover::after {
        content: '';
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        width: 40px;
        height: 16px;
        background: url(../images/arrow1.png)no-repeat center;
        background-size: 100%;
    }
    .img-list .item:hover .pic 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);
    }
    .img-list .item:hover .des,
    .txt-list .item:hover .des {
        color: #83c7ce;
    }
    .txt-list .item:hover .date {
        background-image: url(../images/date-on.png);
        color: #FFF;
    }
    .teacher-list .item:hover {
        background-image: url(../images/teacher-bg1.png);
        color: #FFF;
    }
    .teacher-list .item:hover .img-con::after {
        border-color: #FFF;
    }
    .teacher-list .item:hover .des {
        color: #FFF;
    }
}

@media (max-width:1680px) {
    .sidebar .title {
        font-size: 32px;
    }
    .sidebar li>.tit {
        font-size: 24px;
    }
    .sidebar li .sub {
        font-size: 20px;
    }
}

@media (max-width:1400px) {
    .sidebar {
        width: 320px;
    }
    .sidebar .title,
    .img-list .item .date span {
        font-size: 28px;
    }
    .sidebar li>.tit,
    .img-list .item .tit,
    .txt-list .item .tit,
    .teacher-list .item .name span,
    .details h1 {
        font-size: 20px;
    }
    .sidebar li .sub,
    .teacher-list .item .name {
        font-size: 16px;
    }
    .title-con .title {
        font-size: 26px;
    }
}

@media (max-width:1199px) {
    .sidebar {
        width: 260px;
        margin-right: 20px;
    }
    .sidebar .title,
    .img-list .item .date span,
    .txt-list .item .date span {
        font-size: 24px;
    }
    .sidebar li>.tit {
        font-size: 16px;
    }
    .sidebar li .sub {
        font-size: 14px;
    }
    .title-con .title {
        font-size: 22px;
    }
    .img-list .item,
    .txt-list .item {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .img-list .item .tit,
    .txt-list .item .tit {
        font-size: 16px;
    }
    .sidebar .title {
        padding-left: 20px;
    }
    .sidebar li>.tit {
        padding-left: 30px;
        line-height: 70px;
    }
    .sidebar li .sub {
        line-height: 60px;
    }
    .sidebar li .sub a {
        padding-left: 50px;
    }
    .txt-list .item .date {
        margin-right: 20px;
        width: 85px;
        height: 70px;
    }
    .teacher-list .item {
        padding-right: 20px;
        padding-left: 20px;
        height: 180px;
    }
    .teacher-list .item .img-con {
        margin-right: 20px;
        width: 130px;
        height: 130px;
    }
    .teacher-list .item .img-con::after {
        width: 140px;
        height: 140px;
    }
    .details h1 {
        font-size: 18px;
    }
    .details .body p {
        margin-bottom: 20px;
    }
}

@media (max-width:950px) {
    .sidebar {
        margin-right: 0;
        width: 100%;
        min-height: auto;
        background: #e3f0f1;
        padding-bottom: 0;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        margin-top: 20px;
    }
    .sidebar .title {
        line-height: 60px;
        font-size: 20px;
    }
    .sidebar .title::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background: url(../images/arrow3.png)no-repeat center;
        background-size: 100%;
    }
    .sidebar.cur ul {
        display: block;
    }
    .sidebar ul,
    .title-con {
        display: none;
    }
    .txt-list .item .date,
    .img-list .item .date {
        font-size: 12px;
    }
    .txt-list .item .date span {
        font-size: 20px;
    }
    .teacher-list .item {
        margin-top: 20px;
        height: 160px;
    }
    .teacher-list .item .name {
        margin-top: 5px;
    }
    .teacher-list .item .img-con {
        width: 110px;
        height: 110px;
    }
    .teacher-list .item .img-con::after {
        width: 120px;
        height: 120px;
    }
}

@media (max-width:767px) {
    .img-list .item .tit {
        font-size: 14px;
    }
    .img-list .item .des {
        font-size: 12px;
    }
    .teacher-list .item {
        width: 100%;
    }
}

@media (max-width:540px) {
    .sidebar .title {
        font-size: 18px;
    }
    .img-list .item .pic {
        width: calc(100% - 60px - 15px);
        margin-right: 0;
        height: auto;
        padding-top: 48%;
    }
    .img-list .item .text-con {
        margin-top: 20px;
        padding-left: 75px;
    }
    .page .idx,
    .page .last {
        display: none;
    }
}

.pic:before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .6;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.home-title {
    align-items: flex-end;
}

.home-title .more {
    line-height: 26px;
    border-top: 1px #60a7ae solid;
    border-bottom: 1px #60a7ae solid;
    color: #60a7ae;
    position: absolute;
    right: 0;
    bottom: 0;
}

.home-title .more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background-color: #333;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-title .more::before {
    content: '';
    position: absolute;
    right: 0;
    top: -1px;
    height: 1px;
    width: 0;
    background-color: #333;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-news {
    overflow: hidden;
    background: url(../images/bg1.jpg)no-repeat center bottom;
    background-size: 100%;
    padding-top: 70px;
}

.home-news .content {
    margin-top: 50px;
}

.home-news .focus {
    width: 57.5%;
    margin-right: 3%;
}

.home-news .focus .pic {
    overflow: hidden;
    padding-top: 56%;
}

.home-news .focus .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-news .focus .tit {
    font-size: 22px;
    line-height: 1.6;
    color: #FFF;
    font-family: 'SourceHanSerifCN-SemiBold';
    z-index: 10;
    margin-left: 20px;
    margin-top: -35px;
    background: url(../images/tbg1.png)no-repeat center;
    background-size: cover;
    overflow: hidden;
    height: 114px;
    padding: 20px 30px 0 30px;
    width: 73.4%;
}

.home-news .focus .button {
    width: 20%;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 40px;
    z-index: 9;
}

.home-news .focus .swiper-button-white {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #83c7ce url(../images/next.png)no-repeat center;
    margin-top: 0;
    top: 0;
}

.home-news .focus .swiper-button-next {
    right: 0;
}

.home-news .focus .swiper-button-prev {
    left: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-news .focus .swiper-pagination {
    position: initial;
    width: auto;
}

.home-news .focus .all {
    font-size: 14px;
}

.home-news .focus .cur {
    font-size: 26px;
    color: #83c7ce;
    font-family: 'YaHei';
}

.home-news .first {
    border-bottom: 1px #c6cdcd solid;
    padding-bottom: 25px;
}

.home-news .first .date {
    color: #054372;
    line-height: 1;
    font-size: 14px;
    font-family: 'YaHei';
    margin-right: 25px;
    margin-top: 5px;
}

.home-news .first .date span {
    font-size: 36px;
    margin-bottom: 10px;
}

.home-news .first .tit {
    font-family: 'SourceHanSerifCN-SemiBold';
    line-height: 1.6;
    font-size: 22px;
}

.home-news .first .des {
    margin-top: 25px;
    color: #666;
    line-height: 1.8;
}
.home-news .first .des .ellipsis-2{
    line-height: 1.8rem;
   height:3.6rem;
}
.home-news .con {
    margin-top: 10px;
}

.home-news .item {
    line-height: 56px;
    padding-left: 20px;
}

.home-news .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #999;
}

.home-news .item .tit {
    font-size: 18px;
    margin-right: 15px;
}

.home-news .item .date {
    color: #999;
    font-family: 'YaHei';
}

.home-content {
    background: url(../images/bg2.png)no-repeat center bottom;
    background-size: 100%;
    padding-bottom: 120px;
    overflow: hidden;
    padding-top: 90px;
}

.home-notice,
.home-party {
    width: 48%;
}

.home-notice .content {
    margin-top: 80px;
}

.home-notice .item {
    height: 88px;
    width: 91.2%;
    margin-top: 25px;
    padding-right: 30px;
    z-index: 10;
}

.home-notice .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/tbg2.png)no-repeat left top;
    background-size: 100% 100%;
    z-index: 1;
}

.home-notice .item:nth-child(odd) {
    transform: translateX(8.8%);
    -webkit-transform: translateX(8.8%);
    -moz-transform: translateX(8.8%);
    -ms-transform: translateX(8.8%);
    -o-transform: translateX(8.8%);
}

.home-notice .item .date {
    width: 95px;
    font-size: 14px;
    color: #83c7ce;
    line-height: 1;
    font-family: 'YaHei';
    margin-right: 30px;
    z-index: 10;
}

.home-notice .item .date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #ebf6f7;
}

.home-notice .item .date span {
    font-size: 30px;
    margin-bottom: 10px;
}

.home-notice .item .tit {
    font-size: 18px;
    z-index: 10;
}

.home-party .content {
    margin-top: 35px;
}

.home-party .item {
    margin-top: 25px;
    width: 48%;
    height: 200px;
    border: 1px #dcf0f6 solid;
    z-index: 10;
    padding: 25px 30px;
}

.home-party .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF url(../images/tbg4.png)no-repeat right bottom;
    background-size: 100% 100%;
    z-index: 1;
}

.home-party .item .date {
    z-index: 10;
    font-size: 18px;
    line-height: 1;
    font-family: 'YaHei';
    color: #054372;
}

.home-party .item .date::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -8px;
    height: 15px;
    z-index: -1;
    background-color: #ebe6bd;
}

.home-party .item .tit {
    z-index: 10;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 15px;
}

.home-party .item .more {
    background: url(../images/more1.png)no-repeat right center;
    padding-right: 25px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 10;
    color: #999;
    line-height: 1;
}

.home-party .item:nth-child(even) {
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
}

.home-keyan {
    z-index: 9;
    padding-top: 125px;
    padding-bottom: 170px;
    background: url(../images/bg3.png)no-repeat center top;
    background-size: 100% 100%;
    height: 800px;
    margin-top: -55px;
}

.home-keyan .content {
    margin-top: 20px;
}

.home-keyan .swiper-container {
    padding-top: 50px;
}

.home-keyan .swiper-slide>div {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    z-index: 10;
}

.home-keyan .pic {
    overflow: hidden;
    z-index: 10;
    padding-top: 56.6%;
}

.home-keyan .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-keyan .text-con {
    background-color: #FFF;
    height: 145px;
    padding: 20px 30px;
    z-index: 10;
}

.home-keyan .date {
    font-size: 14px;
    font-family: 'YaHei';
    color: #83c7ce;
    line-height: 1.1;
    padding-bottom: 35px;
    background: url(../images/icon1.png)no-repeat center bottom;
    background-size: 39px;
    margin-right: 25px;
}

.home-keyan .date span {
    font-size: 30px;
    line-height: 1.2;
}

.home-keyan .tit {
    font-size: 18px;
    line-height: 1.6;
}

.home-keyan .arrow {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 16px;
    background: url(../images/arrow1.png)no-repeat center;
    background-size: 100%;
}

.home-keyan .home-title .more {
    z-index: 20;
}

.home-keyan .swiper-button-next,
.home-keyan .swiper-button-prev,
.home-stu .swiper-button-next,
.home-stu .swiper-button-prev {
    width: 57px;
    height: 53px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.home-keyan .swiper-button-next,
.home-stu .swiper-button-next {
    background-image: url(../images/next1.png);
    right: -80px;
}

.home-keyan .swiper-button-prev,
.home-stu .swiper-button-prev {
    background-image: url(../images/prev1.png);
    left: -80px;
}

.home-box {
    background: url(../images/bg4.png)no-repeat center top;
    background-size: 100% 100%;
    height: 1093px;
    z-index: 10;
    margin-top: -40px;
    padding-top: 110px;
    overflow: hidden;
}

.home-pinggu {
    margin-right: 70px;
}

.home-pinggu .content {
    margin-top: 30px;
}

.home-pinggu .item {
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-pinggu .item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.home-pinggu .item .con {
    margin-right: 30px;
}

.home-pinggu .item .tit {
    font-size: 18px;
    line-height: 1.7;
}

.home-pinggu .item .date {
    font-size: 14px;
    font-family: 'YaHei';
    color: #054372;
    line-height: 1.1;
    white-space: nowrap;
    margin-right: 20px;
}

.home-pinggu .item .date span {
    font-size: 30px;
    margin-bottom: 5px;
}

.home-pinggu .item .date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 16px;
    background: url(../images/arrow1.png)no-repeat center bottom;
}

.home-pinggu .item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    background: url(../images/line1.png)no-repeat right bottom;
    height: 38px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-pinggu .item .pic {
    width: 175px;
    overflow: hidden;
    height: 100px;
}

.home-teacher {
    width: 695px;
}

.home-teacher .home-title {
    margin-left: 20px;
    z-index: 20;
}

.home-teacher .content {
    height: 640px;
    justify-content: flex-end;
    margin-top: 70px;
    z-index: 1;
}

.home-teacher .media1-cor {
    position: absolute;
    left: 0;
    width: 280px;
    bottom: 80px;
    z-index: 20;
}

.home-teacher .d-media-swiper1-nav .slider {
    height: 420px;
    overflow: hidden;
}

.home-teacher .media1-cor .picture {
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 130px;
    height: 130px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-teacher .media1-cor .picture img,
.home-teacher .media1-col .pic img {
    object-position: top;
}

.home-teacher .media1-cor .picture::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 40%;
    background-image: linear-gradient(rgba(5, 67, 114, 0), rgba(5, 67, 114, .8));
    z-index: 1;
}

.home-teacher .media1-cor .swiper-slide-prev .picture {
    transform: translateX(70px);
    -webkit-transform: translateX(70px);
    -moz-transform: translateX(70px);
    -ms-transform: translateX(70px);
    -o-transform: translateX(70px);
}

.home-teacher .media1-cor .swiper-slide-next {
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
}

.home-teacher .media1-cor .swiper-slide-next .picture {
    transform: translateX(130px);
    -webkit-transform: translateX(130px);
    -moz-transform: translateX(130px);
    -ms-transform: translateX(130px);
    -o-transform: translateX(130px);
}

.home-teacher .media1-cor .name {
    font-size: 18px;
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    z-index: 10;
    color: #FFF;
}

.home-teacher .media1-col {
    width: 520px;
    height: 520px;
    z-index: 10;
}

.home-teacher .media1-col::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 672px;
    height: 747px;
    right: -80px;
    top: -120px;
    background: url(../images/tbg6.png)no-repeat center;
    background-size: 100%;
}

.home-teacher .media1-col::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 600px;
    height: 600px;
    right: 20px;
    top: -50px;
    border: 1px #d1e8ee dashed;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-teacher .media1-col .pic {
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-teacher .media1-col .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-teacher .media1-col .name {
    position: absolute;
    right: 100px;
    background-color: #83c7ce;
    writing-mode: vertical-rl;
    color: #FFF;
    font-size: 26px;
    top: 0;
    width: 45px;
    height: 190px;
    border-radius: 0 0 25px 25px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    -ms-border-radius: 0 0 25px 25px;
    -o-border-radius: 0 0 25px 25px;
    letter-spacing: 3px;
    padding-top: 20px;
}

.home-teacher .media1-col .txt {
    position: absolute;
    right: 40px;
    background-color: rgba(235, 230, 189, .7);
    writing-mode: vertical-rl;
    color: #054372;
    top: 70px;
    width: 40px;
    height: 190px;
    border-radius: 0 0 25px 25px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    -ms-border-radius: 0 0 25px 25px;
    -o-border-radius: 0 0 25px 25px;
    letter-spacing: 3px;
    padding-top: 20px;
}

.home-teacher .media1-col .txt span {
    margin-bottom: 10px;
}

.home-teacher .media1-col .text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-teacher .media1-col .des {
    color: #054372;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    background-color: #dcf0f6;
    width: 380px;
    height: 91px;
    border-radius: 45px;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    -ms-border-radius: 45px;
    -o-border-radius: 45px;
    padding: 15px 30px 0 30px;
    line-height: 1.8;
}

.home-teacher .d-media-swiper1-for {
    padding-bottom: 50px;
}
.home-teacher .d-media-swiper1-for .ellipsis-2{
   line-height:2rem;
  height:4rem;
}
.home-teacher .media1-col .button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    z-index: 20;
    height: 20px;
}

.home-teacher .media1-col .button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 20px;
    background-color: #83c7ce;
    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-teacher .media1-col .swiper-button-next,
.home-teacher .media1-col .swiper-button-prev {
    width: 41px;
    height: 20px;
    background: url(../images/prev2.png)no-repeat center;
    background-size: 100%;
    top: 0;
    margin-top: auto;
}

.home-teacher .media1-col .swiper-button-prev {
    left: 0;
}

.home-teacher .media1-col .swiper-button-next {
    right: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-stu {
    background: url(../images/bg5.png)no-repeat center bottom;
    background-size: 100%;
    margin-top: -205px;
    z-index: 11;
}

.home-stu .content {
    margin-top: 30px;
}

.home-stu .swiper-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-stu .pic {
    /* height: 335px; */
    width: 100%;
    overflow: hidden;
    padding-top: 100%;
}

.home-stu .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-stu .pic::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 95%;
    height: 95%;
    background: url(../images/line2.png)no-repeat center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-size: 100% 100%;
}

.home-stu .tit {
    font-size: 18px;
    line-height: 1.7;
    padding-bottom: 20px;
    background: url(../images/line3.png)no-repeat center bottom;
    margin-top: 20px;
}

.home-stu .swiper-slide>div {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-stu .swiper-slide:nth-child(even) {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
}

.masked-image {
    width: 100%;
    height: 335px;
    mask-image: url('../images/mask.png');
    --webkit-mask-image: url('../images/mask.png');
    mask-mode: alpha;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    overflow: hidden;
}
.table-scroll {
    overflow-x: auto;
}
@media (min-width:1025px) {
    .home-title .more:hover::after,
    .home-title .more:hover::before {
        width: 100%;
    }
    .pic:hover:before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .home-news .focus .swiper-button-white:hover {
        background-color: #e0d896;
    }
    .home-news .focus .swiper-slide:hover .pic img,
    .home-keyan .swiper-slide:hover .pic img,
    .home-pinggu .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);
    }
    .home-news .item:hover::after {
        background-color: #054372;
    }
    .home-news .item:hover .date,
    .home-notice .item:hover .date {
        color: #054372;
    }
    .home-notice .item:hover::after {
        background-image: url(../images/tbg3.png);
    }
    .home-notice .item:hover .date::after {
        background-color: #c4d8e3;
    }
    .home-notice .item:hover::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 1px #83c7ce solid;
        z-index: -1;
        transform: translate(5px, 5px);
        -webkit-transform: translate(5px, 5px);
        -moz-transform: translate(5px, 5px);
        -ms-transform: translate(5px, 5px);
        -o-transform: translate(5px, 5px);
        z-index: -1;
    }
    .home-party .item:hover {
        border-color: #83c7ce;
    }
    .home-party .item:hover::after {
        background-image: url(../images/tbg5.png);
        background-color: #dcf0f6;
    }
    .home-party .item:hover::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 1px #83c7ce solid;
        z-index: -1;
        transform: translate(5px, 5px);
        -webkit-transform: translate(5px, 5px);
        -moz-transform: translate(5px, 5px);
        -ms-transform: translate(5px, 5px);
        -o-transform: translate(5px, 5px);
        z-index: -1;
    }
    .home-keyan .swiper-slide:hover>div {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
    }
    .home-keyan .swiper-slide:hover>div::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 1px #144e7a solid;
        z-index: -1;
        transform: translate(5px, 5px);
        -webkit-transform: translate(5px, 5px);
        -moz-transform: translate(5px, 5px);
    }
    .home-keyan .swiper-slide:hover .date {
        background-image: url(../images/icon1-hover.png);
        color: #054372;
    }
    .home-keyan .swiper-slide:hover .arrow,
    .home-pinggu .item:hover .date::after {
        background-image: url(../images/arrow4.png);
    }
    .home-pinggu .item:hover::after {
        display: none;
    }
    .home-pinggu .item:hover::before {
        width: 100%;
    }
    .home-stu .swiper-slide:hover .tit {
        background-image: url(../images/line4.png);
    }
    .home-stu .swiper-slide:hover>div {
        margin-top: -30px;
    }
}

@media (max-width: 1610px) {
    .home-keyan .swiper-button-next,
    .home-stu .swiper-button-next {
        right: 15px;
    }
    .home-keyan .swiper-button-prev,
    .home-stu .swiper-button-prev {
        left: 15px;
    }
}

@media (max-width:1440px) {
    .home-news .focus .tit,
    .home-news .first .tit {
        font-size: 20px;
    }
    
}

@media (max-width:1366px) {
    .home-news .focus .tit,
    .home-news .first .tit {
        font-size: 18px;
    }
    .home-news .first .date span {
        font-size: 32px;
    }
    .home-news .item {
        line-height: 55px;
    }
}

@media (max-width:1199px) {
    .banner .swiper-pagination {
        bottom: 10px;
    }
    .home-title img {
        height: 48px;
    }
    .home-news {
        padding-top: 40px;
    }
    .home-news .focus .tit {
        padding: 15px;
    }
    .home-news .focus .cur {
        font-size: 22px;
    }
    .home-news .focus .tit,
    .home-news .first .tit,
    .home-news .item .tit,
    .home-notice .item .tit,
    .home-party .item .tit,
    .home-keyan .tit,
    .home-stu .tit,
    .home-pinggu .item .tit {
        font-size: 16px;
    }
    .home-title .more {
        font-size: 12px;
    }
    .home-news .focus .tit {
        width: 65%;
    }
    .home-news .focus .button {
        width: 28%;
    }
    .home-news .first {
        padding-bottom: 15px;
    }
    .home-news .first .des {
        margin-top: 10px;
    }
    .home-news .item {
        line-height: 48px;
    }
    .home-news .focus .tit {
        height: 100px;
    }
    .home-party .item .date {
        font-size: 14px;
    }
    .home-content {
        padding-top: 40px;
    }
    .home-notice .content {
        margin-top: 60px;
    }
    .home-party .content {
        margin-top: 15px;
    }
    .home-keyan {
        padding-top: 80px;
        padding-bottom: 80px;
        height: auto;
    }
    .home-keyan .content {
        margin-top: 30px;
    }
    .home-keyan .swiper-container {
        padding-top: 0;
    }
    .home-keyan .text-con {
        padding: 20px;
    }
    .home-stu .swiper-slide:nth-child(even) {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .home-party .item {
        height: 170px;
        padding: 20px;
    }
    .home-party .item .more {
        bottom: 20px;
    }
    .home-box {
        margin-top: 0;
        background: none;
        height: auto;
    }
    .home-teacher {
        width: 100%;
        margin-top: 40px;
    }
    .home-stu {
        background: none;
        margin-top: 40px;
    }
    .home-stu .content {
        margin-top: 0;
    }
    .home-teacher .content {
        display: block;
        height: auto;
    }
    .home-teacher .media1-cor {
        position: relative;
        left: auto;
        bottom: auto;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 70px;
        z-index: 50;
    }
    .home-teacher .d-media-swiper1-nav .slider {
        height: auto;
    }
    .home-teacher .media1-cor .swiper-slide-next .picture,
    .home-teacher .media1-cor .swiper-slide-prev .picture,
    .home-teacher .media1-cor .swiper-slide-next {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .home-teacher .media1-col {
        margin-left: auto;
        margin-right: auto;
    }
    .home-teacher .media1-cor .picture {
        width: 100%;
        padding-top: 100%;
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        margin-left: auto;
        margin-right: auto;
        height: auto;
    }
    .home-teacher .media1-cor .picture img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .home-pinggu {
        margin-right: 0;
    }
}

@media (max-width:950px) {
    .home-news .focus,
    .home-notice,
    .home-party {
        width: 100%;
        margin-right: 0;
    }
    .home-news .text-con {
        margin-top: 30px;
    }
    .home-news .focus .tit {
        height: 85px;
    }
    .home-notice .content,
    .home-party {
        margin-top: 40px;
    }
    .home-notice .item:nth-child(odd) {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .home-notice .item {
        width: 100%;
        margin-top: 20px;
        height: 75px;
        padding-right: 20px;
    }
    .home-notice .item .date {
        margin-right: 20px;
    }
    .home-notice .item .date span,
    .home-keyan .date span,
    .home-pinggu .item .date span {
        font-size: 28px;
    }
    .home-party .item {
        padding: 20px;
        height: 160px;
        margin-top: 20px;
    }
    .home-party .item:nth-child(even) {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .home-content,
    .home-keyan,
    .home-stu {
        background: none;
        padding-bottom: 0;
    }
    .home-keyan {
        margin-top: 0;
        padding-top: 40px;
    }
    .home-keyan .text-con {
        border: 1px #83c7ce solid;
    }
    .home-stu .swiper-container {
        padding-bottom: 0;
        padding-top: 20px;
    }
    .home-teacher .media1-col::before {
        display: none;
    }
    .home-teacher .media1-col .name {
        font-size: 24px;
    }
    .home-box {
        padding-top: 70px;
    }
.pub-content {
    width: 100%;
}
}

@media (max-width:767px) {
    .home-title img {
        height: 45px;
    }
    .home-news .content,
    .home-teacher .media1-cor {
        margin-top: 30px;
    }
    .home-teacher .media1-col::after {
        display: none;
    }
    .home-teacher .media1-col {
        width: 90%;
        height: auto;
    }
    .home-teacher .content {
        margin-top: 40px;
    }
    .home-teacher .media1-col .name {
        font-size: 20px;
    }
}

@media (max-width:540px) {
    .home-title img {
        height: 40px;
    }
    .home-news .focus .tit {
        margin-left: 0;
        height: 75px;
    }
    .home-news .focus .button {
        height: 30px;
    }
    .home-news .focus .swiper-button-white {
        width: 30px;
        height: 30px;
    }
    .home-news .focus .button {
        width: 33%;
    }
    .home-news .focus .cur {
        font-size: 18px;
    }
    .home-news .focus .tit,
    .home-news .first .tit,
    .home-news .item .tit,
    .home-stu .tit,
    .home-notice .item .tit,
    .home-party .item .tit,
    .home-keyan .tit,
    .home-stu .tit,
    .home-pinggu .item .tit,
    .home-teacher .media1-cor .name {
        font-size: 14px;
    }
    .home-news .first .date,
    .home-news .first .des,
    .home-news .item .date,
    .home-notice .item .date,
    .home-pinggu .item .date,
    .home-party .item .date,
    .home-party .item .more {
        font-size: 12px;
    }
    .home-news .first .date {
        margin-top: 0;
        margin-right: 15px;
    }
    .home-news .item {
        padding-left: 15px;
    }
    .home-party .item,
    .home-teacher .media1-col .des {
        width: 100%;
    }
    .home-party .item .more {
        bottom: 20px;
    }
    .home-teacher .media1-col .txt {
        top: 40px;
        right: 30px;
    }
    .home-teacher .media1-col .name {
        font-size: 18px;
        right: 80px;
    }
    .home-pinggu .item .con {
        margin-right: 0;
        width: 100%;
    }
    .home-pinggu .item {
        display: block;
    }
    .home-pinggu .item .tit {
        margin-left: 60px;
        margin-top: 20px;
    }
    .home-pinggu .item .pic {
        width: auto;
        flex: 1;
        padding-top: 45%;
        overflow: hidden;
    }
    .home-pinggu .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .home-box {
        padding-top: 50px;
    }
    .home-notice .item .date span,
    .home-keyan .date span,
    .home-pinggu .item .date span {
        font-size: 24px;
    }
    .home-keyan .text-con {
        height: 130px;
    }
}


@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {
    .home-news .item .tit {
        max-height: 56px;
    }
    .banner img,
    .home-news .focus .pic img,
    .home-keyan .pic img,
    .home-pinggu .item .pic img,
    .home-teacher .media1-col .pic img,
    .home-teacher .media1-cor .picture img,
    .home-stu .pic img {
        font-family: 'object-fit: cover;';
    }
}


.pb_sys_style1 .p_no_d {
    border: 1px solid #60a7ae!important;
    background-color: #60a7ae!important;
}
.pb_sys_common .p_t{
    margin-bottom:5px!important;
}
.pb_sys_common .p_fun_d, .pb_sys_common .p_no_d, .pb_sys_common .p_no_o, .pb_sys_common .p_fun a, .pb_sys_common .p_no a,
.pb_sys_common .p_goto input, .pb_sys_common .p_search input,
.pb_sys_common .p_goto a, .pb_sys_common .p_search a{
  margin-bottom:5px!important;
  border: 1px solid #60a7ae!important;
}