@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

@font-face {
    font-family: 'Alibaba-PuHuiTi-Bold';
    src: url('../fonts/Alibaba-PuHuiTi-Bold.ttf');
}

@font-face {
    font-family: 'Alibaba-PuHuiTi-Light';
    src: url('../fonts/Alibaba-PuHuiTi-Light.ttf');
}

@font-face {
    font-family: 'Alibaba-PuHuiTi-Regular';
    src: url('../fonts/Alibaba-PuHuiTi-Regular.ttf');
}

@font-face {
    font-family: 'Futura-Book';
    src: url('../fonts/Futura-Book.otf');
}

body {
    color: #333;
    background: #ffffff;
    font: .18rem 'Alibaba-PuHuiTi-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #760008;
}


/*块级转化*/

.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.1rem;
    padding-right: 2.1rem;
}

@media (max-width:1199px) {
    .container {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-left: .4rem;
    padding-right: 1.3rem;
    height: 1.2rem;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2rem;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header .logo img {
    height: .78rem;
}

.header .top {
    color: #FFF;
    justify-content: flex-end;
    font-size: .16rem;
}

.header .top span {
    margin: 0 .1rem;
}

.header .top a {
    color: #FFF;
}

.header .search-btn {
    position: absolute;
    right: .3rem;
    top: 50%;
    width: .6rem;
    height: .6rem;
    border: 1px #FFF solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: url(../images/search.png)no-repeat center;
    background-size: .23rem;
    cursor: pointer;
}

.header.fixed::after {
    height: 100%;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav {
    justify-content: flex-end;
}

.nav li>a {
    line-height: .6rem;
    padding: 0 .2rem;
    font-family: 'Alibaba-PuHuiTi-Bold';
    color: #FFF;
    font-size: .2rem;
}

.nav li:last-child>a {
    padding-right: 0;
}

.nav .drop {
    width: 100%;
    left: 0;
    top: .6rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    line-height: 2.4;
    font-size: .16rem;
}

.search-content {
    background: rgba(118, 0, 8, .9);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(../images/close.svg)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.search-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 7rem;
    height: .7rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .18rem;
    background: none;
    padding-left: .15rem;
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(../images/search.png)no-repeat center;
    background-size: .3rem;
}

.n-banner {
    overflow: hidden;
}

.n-banner img {
    width: 100%;
}

.footer {
    background: url(../images/f-bg.jpg)no-repeat center;
    background-size: cover;
    height: 2.45rem;
}

.footer .logo img {
    height: .78rem;
}

.footer .copyright {
    font-family: 'Alibaba-PuHuiTi-Light';
    color: #FFF;
    font-size: .14rem;
    border-top: 1px rgba(255, 255, 255, .2) solid;
    margin-top: .2rem;
    padding-top: .2rem;
}

.footer .text-info {
    color: #FFF;
}

.footer .text-info>div {
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: .4rem;
    line-height: 2;
}

.footer .text-info .address {
    background-image: url(../images/address.png);
    background-size: .16rem;
}

.footer .text-info .tel {
    background-image: url(../images/tel.png);
    background-size: .17rem;
}

@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: #f8f8f8;
    }
}

@media (max-width:1199px) {
    .menu-btn {
        display: block;
    }
    .header::after {
        height: 100%;
    }
    .header .search-btn {
        right: 1rem;
    }
    .header.on {
        background-color: #760008;
    }
    .header .top {
        display: block;
    }
    .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #760008;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem .3rem;
    }
    .nav {
        display: block;
    }
    .nav li>a {
        font-size: 16px;
        padding: 0;
        line-height: .9rem;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: .9rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: .32rem;
        height: .32rem;
        position: absolute;
        left: .1rem;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        background: none;
        padding-left: .2rem;
    }
    .nav .drop a {
        color: #FFF;
    }
    .header .top,
    .search-content .content input[type='text'],
    .nav .drop a {
        font-size: 14px;
    }
    .footer .copyright {
        font-size: 12px;
    }
    .search-content .content {
        width: 80%;
    }
}

@media (max-width:767px) {
    .footer {
        height: auto;
        padding-top: .3rem;
        padding-bottom: .3rem;
    }
    .footer>div {
        width: 100%;
    }
    .footer .logo {
        justify-content: center;
    }
    .footer .text-info {
        margin-top: .3rem;
    }
}

.crumbs {
    font-size: .14rem;
    text-align: right;
}

.pub-content {
    margin-top: .3rem;
    min-width: 0;
}

.sidebar {
    width: 3.2rem;
    z-index: 10;
    margin-top: -2rem;
    margin-right: .85rem;
}

.sidebar .title {
    color: #FFF;
}

.sidebar .title .cn {
    font-size: .4rem;
}

.sidebar .title .en {
    font-size: .16rem;
    text-transform: uppercase;
    font-family: 'Futura-Book';
}

.sidebar ul {
    background-color: #760008;
    margin-top: .6rem;
    z-index: 10;
    padding-top: .3rem;
    padding-bottom: 5px;
}

.sidebar ul::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.48rem;
    background: url(../images/tbg.png)no-repeat center;
    background-size: cover;
    top: -.3rem;
    z-index: -1;
}

.sidebar li {
    border-bottom: 1px rgba(255, 255, 255, .2) solid;
}

.sidebar li:last-child {
    border-bottom: 0;
}

.sidebar li a {
    color: #FFF;
    padding-top: .15rem;
    padding-bottom: .15rem;
    z-index: 10;
}

.sidebar li .cn {
    font-size: .28rem;
}

.sidebar li .en {
    font-family: 'Futura-Book';
    margin-top: .05rem;
    color: #994046;
}

.sidebar li.on a::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    left: -.05rem;
    right: -.05rem;
    background-color: #bea779;
    z-index: -1;
}

.sidebar li.on .en {
    color: #e6d5b4;
}


/* 人才招聘 */

.pub-bg1 {
    background: url(../images/job-bg.jpg)no-repeat center bottom;
    background-size: 100%;
    padding-bottom: 1.7rem;
}

.job .list {
    margin-top: .3rem;
}

.job .list li {
    width: 100%;
    background: #FFF url(../images/tbg1.jpg)no-repeat right center;
    margin-bottom: .1rem;
    border-top: 1px #710002 solid;
    padding: 0 .4rem;
    height: .93rem;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .05);
}

.job .list li>a {
    height: 100%;
}

.job .list .tit {
    margin-right: .3rem;
    font-size: .2rem;
}

.job .list .date {
    color: #710002;
    font-size: .16rem;
}

.page {
    margin-top: .5rem;
    font-size: .16rem;
}

.page a {
    width: .34rem;
    line-height: .32rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #FFF;
    border: 1px #cccccc solid;
    height: .34rem;
    margin: 0 .03rem;
}

.page .prev {
    background: #FFF url(../images/prev.png)no-repeat center;
    background-size: .13rem;
}

.page .next {
    background: #FFF url(../images/next.png)no-repeat center;
    background-size: .13rem;
}

.page span {
    margin-left: .05rem;
    margin-right: .05rem;
}

.page .on {
    background-color: #95000a;
    color: #FFF;
    border-color: #95000a;
}

.page input[type='text'] {
    width: .5rem;
    height: .34rem;
    border: 1px #cccccc solid;
    margin-left: .1rem;
    margin-right: .1rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.page input[type='submit'] {
    color: #FFF;
    background-color: #95000a;
    height: .34rem;
    padding: 0 .2rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    margin-left: .1rem;
}


/* 关于 */

.about {
    background: url(../images/about-bg.jpg)no-repeat center bottom;
    background-size: 100%;
    padding-bottom: .7rem;
}

.about .bg {
    background: url(../images/about-bg1.jpg)no-repeat center bottom;
    background-size: 100%;
		padding-bottom: 1rem;
}

.about .text-con {
    margin-top: .7rem;
}

.about .text-con .title {
    font-size: .48rem;
    margin-right: .4rem;
}

.about .text {
    line-height: 1.8;
}

.about .text-con .pic {
    margin-top: .5rem;
}

.about .text-con .item {
    border-top: 1px #c6c6c5 solid;
    margin-top: .6rem;
    padding-top: .55rem;
}

.about .tit {
    font-size: .24rem;
    font-family: 'Alibaba-PuHuiTi-Bold';
    color: #760008;
    margin-right: .9rem;
    white-space: nowrap;
}

.about img {
    max-width: 100%;
}

.about .text-content {
    overflow: hidden;
    height: 6.45rem;
    background: url(../images/tbg3.jpg)no-repeat left top;
    background-size: 17.1rem;
    margin-top: -.37rem;
}

.about .text-content .con {
    margin-right: 1.2rem;
}

.about .text-content .con,
.about .text-content .tit {
    color: #bea779;
}

.about .text-content .tit {
    margin-right: 0;
    margin-bottom: .2rem;
}

.about .text-content .r-con {
    width: 4.9rem;
    height: calc(100% - .37rem);
    margin-top: .37rem;
    z-index: 9;
    padding-left: 1.1rem;
    padding-top: .8rem;
    padding-bottom: .8rem;
}

.about .text-content .r-con::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -2.1rem;
    height: 100%;
    background: url(../images/tbg4.jpg)no-repeat center;
    background-size: cover;
    z-index: -1;
}

.about .text-content .r-con .num-box {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #710008;
    color: #FFF;
    padding-top: .25rem;
    margin-right: .4rem;
}

.about .text-content .r-con .num-box::after {
    content: '';
    position: absolute;
    left: -.15rem;
    top: -.15rem;
    right: -.15rem;
    bottom: -.15rem;
    border: 1px #710008 dashed;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about .text-content .r-con .num-box .num span {
    font-size: .3rem;
    margin-right: .2rem;
}

.about .text-content .r-con .num-box:nth-child(even) {
    margin-right: 0;
    transform: translateY(1rem);
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    -o-transform: translateY(1rem);
		/* margin-top: 1rem; */
}


/* 师资详情 */

.pub-bg2 {
    background: url(../images/bg5.png)no-repeat center bottom;
    padding-bottom: .9rem;
    background-size: 100%;
}

.teachers-details {
    margin-top: .45rem;
}

.teachers-details .title {
    height: .85rem;
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
}

.teachers-details .title span {
    height: 1px;
    width: 1.15rem;
    border-top: 1px #7B181D dashed;
    margin: 0 .4rem;
}

.teachers-details .title span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.teachers-details .title span:last-child::after {
    left: auto;
    right: 0;
}

.teachers-details .text {
    font-size: .2rem;
    line-height: 1.8;
}

.teachers-details .text img {
    max-width: 100%;
    margin: .3rem auto;height:auto!important;display:block;
}

.teachers-details .text p {
    margin-top: .3rem;
    text-indent: .4rem;
    font-size: .2rem !important;
    line-height: 1.8 !important;
}
.teachers-details .text *{
    font-size: .2rem !important;
    line-height: 1.8 !important;

}

/* 图文 */

.image-list .item {
    margin-top: .5rem;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .1);
    background: #FFF url(../images/tbg12.png)no-repeat right bottom;
    border-right: 3px #7B181D solid;
    background-size: cover;
}

.image-list .item .pic {
    height: 2.05rem;
    width: 3.65rem;
    overflow: hidden;
}

.image-list .item .text-con {
    padding: .3rem;
}

.image-list .item .date {
    color: #7B181D;
    font-size: .16rem;
}

.image-list .item .date span {
    font-size: .2rem;
}

.image-list .item .tit {
    font-size: .2rem;
    margin-top: .15rem;
}

.image-list .item .des {
    font-size: .16rem;
    color: #666;
    margin-top: .1rem;
    line-height: 1.7;
}


/* 详情 */

.details,
.details1 {
    margin-top: .55rem;
}

.details .news {
    width: 3.45rem;
    padding-left: .4rem;
    border-left: 1px #f1f1f1 solid;
}

.details .news .tit {
    font-size: .28rem;
    background: url(../images/icon.svg)no-repeat left center;
    background-size: .24rem;
    padding-left: .35rem;
}

.details .news a {
    border-bottom: 1px #f1f1f1 dashed;
    margin-top: .2rem;
    padding-bottom: .3rem;
}

.details .news .date {
    color: #7B181D;
    font-size: .16rem;
}

.details .news .txt {
    font-size: .2rem;
    line-height: 1.7;
    margin-top: .1rem;
}

.details .content {
    margin-right: .4rem;
}

.details .content .title-con {
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
    border-left: 4px solid #7B181D;
    padding: .3rem;
}

.details1 .title-con {
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
    padding: .3rem;
}

.details .content .title,
.details1 .title {
    font-size: .28rem;
}

.details1 .title {
    border-bottom: 1px dotted #d0acaf;
    padding-bottom: .25rem;
}

.details1 .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.details1 .title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.details .content .info,
.details1 .info {
    margin-top: .3rem;
    font-size: .16rem;
    color: #666;
}

.details1 .info span {
    margin: 0 .15rem;
}

.details .content .body,
.details1 .body {
    line-height: 1.8;
    font-size: .2rem;
    padding-bottom: .5rem;
    border-bottom: 1px rgba(118, 0, 8, .4) solid;
}

.details1 .body {
    border-bottom-width: 2px;
}

.details .content .body p,
.details1 .body p {
    text-indent: .4rem;
    margin-top: .3rem;
    line-height: 1.8 !important;
}
.details .content .body *{

    line-height: 1.8 !important;
    font-size: .2rem !important;

}
.details .content .body img,
.details1 .body img {
    max-width: 100% !important;
    margin-top: .3rem;display:block;height:auto !important;
}
.details .content .body table,.details1 .body table{margin:0 auto;width: 100%;}
.details .text {
    line-height: 2.4;
    margin-top: .3rem;
    font-size: .2rem;
}

.details1 .text {
    line-height: 2.4;
    margin-top: .3rem;
    text-align: right;
}

.details1 .prev-next ,.pub-content .prev-next{
    margin-top: .3rem;
    line-height: 2.4;
    font-size: .2rem;
}


/* 领导 */

.Leadership {
    margin-top: .5rem;
}

.Leadership .item {
    margin-top: .45rem;
    padding: .35rem;
    background: #FFF url(../images/tbg15.png)no-repeat center bottom;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    border-right: 3px #7B181D solid;
    background-size: cover;
}

.Leadership .item .zc {
    font-size: .24rem;
    overflow: hidden;
}

.Leadership .item .zc::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    left: 1.4rem;
    height: 1px;
    border-top: 1px dashed #d0acaf;
}

.Leadership .item .zc::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 5px;
    width: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #7B181D;
    z-index: 2;
}

.Leadership .item .name {
    font-size: .26rem;
    color: #7B181D;
    margin-top: .1rem;
}

.Leadership .item .des  p{
    font-size: .2rem !important;
    color: #666;
    line-height: 1.7 !important;
    margin-top: .2rem;text-indent:0  !important;
}

.Leadership .item .text {
    color: #666;
    line-height: 1.7;
    margin-top: .1rem;
    font-size: .2rem;
}

.Leadership .item .text span {
    color: #7B181D;
}


/* 机构设置 */

.jigou .title {
    font-size: .28rem;
    color: #7B181D;
    margin-top: .65rem;
    padding-left: .9rem;
    overflow: hidden;
}

.jigou .title span::before {
    content: '';
    position: absolute;
    left: -.9rem;
    top: 50%;
    height: 1px;
    width: .75rem;
    background-color: #7B181D;
}

.jigou .title span::after {
    content: '';
    position: absolute;
    right: -99.2rem;
    top: 50%;
    height: 1px;
    width: 99rem;
    background-color: #7B181D;
}

.jigou .con .item {
    width: 32%;
    height: .64rem;
    background-color: #faf6f6;
    margin-top: .3rem;
    margin-right: 2%;
    font-size: .16rem;
    color: #666;
}

.jigou .con .item::after {
    content: '';
    position: absolute;
    left: .05rem;
    top: .05rem;
    right: .05rem;
    bottom: .05rem;
    border: 1px #a15b5e dashed;
}

.jigou .con .item:nth-of-type(3n) {
    margin-right: 0;
}


/* 校企合作 */

.hezuo .title {
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
    height: .84rem;
    margin-top: .5rem;
}

.hezuo .title span {
    height: 1px;
    width: 1.15rem;
    margin: 0 .3rem;
    border-top: 1px dashed #7B181D;
}

.hezuo .title span:first-child::after {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.hezuo .title span:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.hezuo .text {
    font-size: .2rem;
    line-height: 1.8;
    text-indent: .4rem;
    margin-top: .4rem;
}
.hezuo .text *{
    font-size: .2rem !important;
    line-height: 1.8 !important;

}
.hezuo .num-box {
    margin-top: .8rem;
}

.hezuo .num-box .card {
    width: 2.89rem;
    z-index: 10;
    height: 2.89rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: .8rem;
}

.hezuo .num-box .card:nth-child(1) {
    background-image: url(../images/tbg7.png);
}

.hezuo .num-box .card:nth-child(2) {
    background-image: url(../images/tbg8.png);
    margin-left: -.3rem;
    z-index: 1;
}

.hezuo .num-box .card:nth-child(3) {
    background-image: url(../images/tbg9.png);
    margin-left: -.3rem;
}

.hezuo .num-box .card:nth-child(4) {
    background-image: url(../images/tbg10.png);
    margin-left: -.3rem;
    z-index: 1;
}

.hezuo .num-box .card:nth-child(odd) {
    margin-top: .8rem;
}

.hezuo .num-box .card .icon img {
    width: .9rem;
}

.hezuo .num-box .card .tit {
    font-size: .2rem;
    margin-top: .25rem;
    color: #FFF;
}


/* 校园风光 */

.Campus {
    margin-top: .6rem;
}

.Campus .title-con {
    font-size: .28rem;
    padding: .3rem;
    background-color: rgba(118, 0, 8, .1);
}

.Campus .title-con .title {
    font-size: .28rem;
}

.Campus .title-con .title {
    border-bottom: 1px dotted #d0acaf;
    padding-bottom: .25rem;
}

.Campus .title-con .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.Campus .title-con .title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.Campus .title-con .info {
    font-size: .16rem;
    margin-top: .2rem;
    color: #666;
}

.Campus .title-con .info span {
    margin: 0 .2rem;
}

.Campus .content {
    width: 7.6rem;
}

.Campus .ji {
    width: 2.7rem;
}

.Campus .ji .title {
    font-size: .22rem;
    color: #7B181D;
    padding-left: .3rem;
    background: url(../images/icon5.png)no-repeat left center;
    background-size: .2rem;
}

.Campus .ji .con {
    margin-top: .2rem;
    border-top: 1px #d5d5d5 solid;
    padding-top: .3rem;
}

.Campus .ji .item {
    margin-bottom: .3rem;
}

.Campus .ji .pic {
    overflow: hidden;
    height: 1.5rem;
}

.Campus .ji .tit {
    margin-top: .2rem;
    font-size: .2rem;
}

.Campus .gallery-top {
    margin-top: .3rem;
}

.Campus .gallery-top .swiper-slide {
    overflow: hidden;
    height: 4.3rem;
}

.Campus .gallery-top .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    z-index: 1;
}

.Campus .gallery-top .text {
    font-size: .16rem;
    color: #FFF;
    position: absolute;
    left: .8rem;
    bottom: .3rem;
    z-index: 10;
}

.Campus .gallery-top .swiper-pagination {
    z-index: 11;
    left: .2rem;
    bottom: .25rem;
    width: auto;
    color: #FFF;
    font-size: .16rem;
}

.Campus .gallery-top .swiper-pagination-current {
    font-size: .24rem;
}

.Campus .gallery-thumbs {
    margin-top: .25rem;
    padding-left: .35rem;
    padding-right: .35rem;
}

.Campus .gallery-thumbs .swiper-slide {
    height: .9rem;
    position: relative;
}

.Campus .gallery-thumbs .swiper-button-white {
    width: .2rem;
    height: .2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #e5e2e1;
    background-size: .08rem;
    margin-top: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.Campus .gallery-thumbs .swiper-button-prev {
    left: 0;
}

.Campus .gallery-thumbs .swiper-button-next {
    right: 0;
}

.Campus .gallery-thumbs .swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 5px #7c191e solid;
    z-index: 1;
}


/* 标识 */

.subnav {
    margin-top: .75rem;
}

.subnav li {
    width: 2.6rem;
    height: .55rem;
    font-size: .24rem;
}

.subnav li>a {
    height: 100%;
    background: url(../images/tbg11.svg)no-repeat center;
    background-size: 100% 100%;
}

.subnav .on>a {
    background-image: url(../images/tbg14.svg);
    color: #FFF;
}

.ui .title {
    font-size: .28rem;
    color: #7B181D;
    margin-top: .65rem;
}

.ui .title::after {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    right: 0;
    height: 1px;
    border-top: 1px #7B181D dashed;
    opacity: .4;
}

.ui .title::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.ui .js {
    margin-top: .5rem;
}

.ui .text {
    font-size: .2rem;
    line-height: 1.7;
    text-indent: .4rem;
}
.ui .text p{
    font-size: .2rem !important;
    line-height: 1.7 !important;

}
.ui .js .text {
    margin-right: .5rem;
}

.ui .js .pic {
    width: 4.6rem;
}

.ui .js .pic img,
.ui .xh .item .pic img,
.ui .xun .pic img,
.ui .ge .pic img {
    width: 100%;
}

.ui .xh {
    margin-top: .5rem;
}

.ui .xh .item {
    width: 33.333%;
}

.ui .xh .item .pic {
    width: 100%;
    height: 2.45rem;
}

.ui .xh .item .tit {
    font-size: .24rem;
}

.ui .xh .text {
    margin-top: .4rem;
}

.ui .xun,
.ui .ge {
    margin-top: .6rem;
}

.ui .xun .pic {
    width: 4.2rem;
    margin-right: .45rem;
}

.ui .xun .txt {
    font-size: .2rem;
    line-height: 1.8;
    margin: .1rem 0;
}

.ui .xun .txt span {
    color: #7B181D;
}

.ui .ge .pic {
    width: 6.5rem;
    margin-right: .5rem;
}

.ui .ge .txt-con {
    background-color: #fafafa;
    padding: .4rem .6rem;
}

.ui .ge .txt-con .tit {
    font-size: .24rem;
}

.ui .ge .txt-con .des {
    font-size: .16rem;
    line-height: 1.7;
    margin-top: .3rem;
}

.ui .ge .down {
    width: 100%;
    margin-top: .3rem;
    background-color: #BEA779;
    line-height: .42rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-size: .16rem;
    color: #FFF;
}

@media (min-width:1025px) {
    .job .list li:hover {
        background: url(../images/tbg2.jpg)no-repeat right center;
        background-size: cover;
    }
    .job .list li:hover .tit,
    .image-list .item:hover,
    .image-list .item:hover .des,
    .image-list .item:hover .date {
        color: #FFF;
    }
    .job .list li:hover .date {
        color: #bea779;
    }
    .image-list .item:hover .pic img,
    .Campus .ji .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);
    }
    .image-list .item:hover {
        background: url(../images/tbg13.png);
    }
    .image-list .item:hover .des {
        opacity: .5;
    }
    .jigou .con .item:hover {
        color: #FFF;
        background: #7c191e;
    }
    .jigou .con .item:hover::after {
        border-color: #FFF;
        opacity: .3;
    }
    .Campus .gallery-thumbs .swiper-button-white:hover {
        background-color: #7B181D;
    }
}

@media (max-width:1199px) {
    .sidebar {
        display: none;
    }
    .crumbs,
    .job .list .date,
    .page,
    .image-list .item .date,
    .image-list .item .des,
    .details .news .date,
    .details .content .info,
    .Campus .title-con .info,
    .Campus .gallery-top .swiper-pagination {
        font-size: 12px;
    }
    .job .list .tit,
    .teachers-details .text,
    .image-list .item .tit,
    .details .news .txt,
    .details .content .body,
    .details .content .text,
    .jigou .con .item,
    .hezuo .text,
    .hezuo .num-box .card .tit,
    .Campus .ji .tit,
    .Campus .gallery-top .text {
        font-size: 14px;
    }
    .page a {
        line-height: .45rem;
        height: .47rem;
        width: .47rem;
    }
    .page input[type='text'],
    .page input[type='submit'] {
        height: .47rem;
    }
    .about .tit,
    .teachers-details .title,
    .image-list .item .date span,
    .details .news .tit {
        font-size: 16px;
    }
    .details .content .title,
    .Campus .ji .title,
    .Campus .gallery-top .swiper-pagination-current {
        font-size: 18px;
    }
    .jigou .title,
    .hezuo .title,
    .Campus .title-con .title {
        font-size: 20px;
    }
    .jigou .con .item {
        height: .7rem;
    }
    .hezuo .num-box .card {
        margin-left: 0 !important;
    }
    .hezuo .num-box .card {
        width: 3.2rem;
        height: 3.2rem;
    }
    .Campus .content {
        width: 11rem;
    }
    .Campus .gallery-top .swiper-slide {
        height: 5.8rem;
    }
    .pub-content {
        min-width: 100%;
    }
}

@media (max-width:767px) {
    .page .txt,
    .page input[type='submit'],
    .Campus .ji {
        display: none;
    }
    .about .text-content {
        height: auto;
        background-size: cover;
        padding-top: .4rem;
        padding-bottom: .4rem;
    }
    .about .text-content .con,
    .details .content {
        margin-right: 0;
    }
    .about .text-content .r-con {
        width: 100%;
        height: auto;
        padding-left: 0;
        justify-content: center;
    }
    .about .text-content .r-con::after {
        right: 0;
    }
    .about .text-content .r-con .num-box:nth-child(even) {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .about .text-content .r-con .num-box .num span {
        font-size: 22px;
    }
    .about .text-content .r-con .num-box {
        width: 2rem;
        height: 2rem;
        margin: .2rem .3rem;
    }
    .image-list .item .pic {
        width: 100%;
        height: 3.8rem;
    }
    .details .news {
        width: 100%;
        border-left: 0;
        padding-left: 0;
        margin-top: .4rem;
    }
    .details .content .info {
        justify-content: flex-start;
    }
    .details .content .info span {
        width: 33.333%;
        margin-bottom: .2rem;
    }
    .jigou .con .item {
        width: 49%;
        height: auto;
        padding: .2rem;
        font-size: 12px;
    }
    .jigou .con .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .jigou .con .item:nth-child(even) {
        margin-right: 0;
    }
    .hezuo .num-box {
        justify-content: center;
    }
    .Campus {
        display: block;
    }
    .Campus .content {
        width: 100%;
    }
}


/* 首页 */

.banner {
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner .swiper-pagination {
    bottom: .4rem;
}

.banner .swiper-pagination-bullet {
    width: .33rem;
    height: .33rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: url(../images/banner-icon.png)no-repeat center;
    background-size: 100%;
}

.home-bg1 {
    background: url(../images/bg1.jpg)no-repeat center;
    background-size: cover;
    padding-top: .6rem;
    padding-bottom: .7rem;
}

.home-title>div {
    background: url(../images/title-bg.png)no-repeat left top;
    width: 2.71rem;
    padding-top: .2rem;
    background-size: 100%;
}

.home-title .cn {
    /* font-family: 'Alibaba-PuHuiTi-Light'; */
    font-family: '微软雅黑';
    font-size: .48rem;
}

.home-title .en {
    font-family: 'Futura-Book';
    color: #666;
    opacity: .4;
    white-space: nowrap;
}

.home-news {
    margin-top: .4rem;
}

.home-news .focus {
    width: 10.19rem;
    margin-right: .4rem;
}

.home-news .focus .pic {
    width: 100%;
    height: 5.52rem;
    overflow: hidden;
}

.home-news .focus .text-con {
    margin-right: .6rem;
    margin-top: -.3rem;
    background-color: #FFF;
    padding: .3rem 1.3rem .6rem .4rem;
    z-index: 2;
}

.home-news .focus .tit {
    font-size: .26rem;
}

.home-news .focus .date,
.home-news .box .date {
    color: #710008;
    font-size: .16rem;
    margin-top: .1rem;
}

.home-news .focus .swiper-button-prev,
.home-news .focus .swiper-button-next {
    top: auto;
    margin-top: 0;
    bottom: 0;
    width: .6rem;
    height: .6rem;
    background-image: url(../images/next1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: .18rem;
}

.home-news .focus .swiper-button-prev {
    left: auto;
    right: 1.2rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    background-color: #bd4d1f;
}

.home-news .focus .swiper-button-next {
    right: .6rem;
    background-color: #73151a;
}

.home-news .box .pic {
    height: 2.7rem;
    overflow: hidden;
    width: 100%;
}

.home-news .box .item {
    padding-top: .3rem;
    padding-bottom: .3rem;
    border-bottom: 1px #e1e1e1 solid;
}

.home-news .box .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-news .box .item .tit {
    font-size: .2rem;
}

.home-bg1 .content {
    margin-top: 1rem;
}

.home-bg1 .content .home-title {
    margin-left: -.3rem;
}

.home-bg1 .content .home-title>div {
    text-align: left;
    padding-left: .3rem;
}

.home-campus {
    width: 7.5rem;
}

.home-campus .pic {
    height: 4.3rem;
    overflow: hidden;
    margin-top: .4rem;
}

.home-campus .pic .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background-color: rgba(118, 0, 8, .9);
    padding: .2rem .4rem .3rem .4rem;
    color: #FFF;
}

.home-campus .pic .tit {
    font-size: .2rem;
}

.home-campus .pic .text {
    font-size: .16rem;
    margin-top: .1rem;
    opacity: .8;
}

.home-campus .item {
    border-bottom: 1px #e0e0df solid;
    margin-top: .4rem;
    padding-bottom: .3rem;
}

.home-campus .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-campus .item .tit {
    font-size: .2rem;
}

.home-campus .item .des {
    font-size: .16rem;
    color: #999;
    margin-top: .1rem;
    line-height: 1.8;
}

.home-bg1 .content .l-con {
    margin-right: .6rem;
}

.home-notice .con {
    margin-top: .5rem;
}

.home-notice .item {
    border-bottom: 1px #e4e4e4 solid;
    padding-bottom: .3rem;
    margin-top: .2rem;
}

.home-notice .item:last-child {
    border-bottom: 0;
}

.home-notice .tit {
    margin-right: .3rem;
    font-size: .2rem;
}

.home-notice .date {
    font-size: .16rem;
    color: #891c22;
}

.home-tender {
    margin-top: .3rem;
}

.home-tender .card {
    width: 48%;
    height: 2.5rem;
    background: url(../images/tbg5.jpg)no-repeat right bottom;
    background-size: cover;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    margin-top: .3rem;
    padding: .3rem;
}

.home-tender .card .date {
    font-size: .16rem;
    padding-bottom: .2rem;
    border-bottom: 1px #e2e2e2 solid;
    color: #710002;
}

.home-tender .card .tit {
    margin-top: .2rem;
    line-height: 1.8;
    font-size: .2rem;
}

.home-education {
    margin-top: 1rem;
}

.home-education .home-title {
    margin-left: -.3rem;
}

.home-education .home-title>div {
    text-align: left;
    padding-left: .3rem;
}

.home-education .con {
    align-items: flex-end;
    height: 1.75rem;
    margin-top: .2rem;
}

.home-education .card {
    width: 33.333%;
    border-bottom: 1px #c6c6c5 solid;
    height: 1.45rem;
    padding: .1rem .3rem .3rem .3rem;
    border-left: 1px #eae6e1 solid;
}

.home-education .card::after {
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
    bottom: -2px;
    width: 0;
    background-color: #72151a;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-education .tit {
    font-size: .2rem;
}

.home-education .date {
    color: #8f1d22;
    font-size: .16rem;
    margin-top: .2rem;
}

.home-education .card::before {
    content: '';
    position: absolute;
    width: .13rem;
    height: .13rem;
    border: 1px #eae6e1 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    left: -.065rem;
    top: 0;
    background-color: #FFF;
}

.home-education .arrow {
    width: .48rem;
    height: .48rem;
    z-index: 10;
    position: absolute;
    right: .55rem;
    bottom: .6rem;
    opacity: 0;
}

.home-education .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow1.png)no-repeat center;
    background-size: .11rem;
}

.home-education .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../images/r1.png)no-repeat center;
    background-size: 100%;
}

@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);
    }
}


/* home人才 */

.home-personnel {
    width: 100%;
    height: 8.43rem;
    background: url(../images/bg2.jpg)no-repeat center top;
    background-size: cover;
    padding-top: .55rem;
}

.home-personnel .home-title,
.home-personnel .home-title .en {
    color: #FFF;
}

.home-personnel .home-title>div {
    background-image: url(../images/title-bg1.png);
}

.home-personnel .content {
    height: calc(100% - 1.1rem);
}

.home-personnel .title-con .item {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #FFF;
    position: absolute;
}

.home-personnel .title-con .item>div {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-personnel .title-con .item:nth-child(1) {
    left: .2rem;
    bottom: 1.6rem;
    z-index: 10;
}

.home-personnel .title-con .item:nth-child(1)>div {
    z-index: 10;
    background-image: url(../images/t1.png);
}

.home-personnel .title-con .item:nth-child(1)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    margin-top: -1.55rem;
    opacity: .5;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-personnel .title-con .item:nth-child(2) {
    left: 2rem;
    top: .25rem;
    z-index: 1;
}

.home-personnel .title-con .item:nth-child(2)>div {
    z-index: 10;
    background-image: url(../images/t2.png);
}

.home-personnel .title-con .item:nth-child(2)::after {
    content: '';
    position: absolute;
    left: -.5rem;
    top: -.4rem;
    width: 5.3rem;
    height: 5.3rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    opacity: .3;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-personnel .title-con .item:nth-child(3) {
    top: -.6rem;
    right: 3.15rem;
    z-index: 5;
}

.home-personnel .title-con .item:nth-child(3)>div {
    z-index: 10;
    background-image: url(../images/t3.png);
}

.home-personnel .title-con .item:nth-child(3)::after {
    content: '';
    position: absolute;
    right: -.95rem;
    top: .6rem;
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    opacity: .3;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-personnel .title-con .item:nth-child(4) {
    right: .5rem;
    top: 2.2rem;
    z-index: 9;
}

.home-personnel .title-con .item:nth-child(4)>div {
    z-index: 10;
    background-image: url(../images/t4.png);
}

.home-personnel .title-con .item:nth-child(5) {
    background-image: url(../images/t5.png);
    right: 2.4rem;
    bottom: -.2rem;
    z-index: 9;
}

.home-personnel .title-con .item:nth-child(5)>div {
    z-index: 10;
    background-image: url(../images/t5.png);
}

.home-personnel .title-con .item:nth-child(5)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -.3rem;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    opacity: .3;
    z-index: -1;
    animation: 30s linear infinite ani_turn2;
    -webkit-animation: 30s linear infinite ani_turn2;
}

.home-personnel .title-con .tit {
    font-size: .36rem;
}

.home-personnel .title-con .txt {
    font-family: 'Futura-Book';
    margin-top: .1rem;
}

.home-personnel .text-content {
    z-index: 20;
    width: 5.5rem;
    height: 5.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: .5rem;
    position: relative;
}

.home-personnel .text-content .pic-con {
    width: 5.5rem;
    height: 5.5rem;
    position: relative;
    z-index: 11;
}

.home-personnel .text-content .pic-con::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: .2rem;
    background-color: #490106;
    border: 2px rgba(255, 255, 255, .5) dashed;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
    margin-left: -2.97rem;
    margin-top: -2.97rem;
}

.home-personnel .text-content .pic-con .pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.home-personnel .text-content .text {
    width: 5.1rem;
    height: 2.05rem;
    background-color: #f7f7f7;
    position: absolute;
    bottom: -1.3rem;
    right: 2.6rem;
    box-shadow: 0 .1rem .15rem rgba(0, 0, 0, .1);
    z-index: 10;
    padding: .5rem .65rem;
}

.home-personnel .text-content .date {
    font-size: .16rem;
    color: #891c22;
}

.home-personnel .text-content .tit {
    font-size: .2rem;
    border-bottom: 1px #c6c6c5 solid;
    padding-bottom: .2rem;
    margin-top: .1rem;
}

.home-personnel .text-content .arrow {
    width: .73rem;
    height: .73rem;
    position: absolute;
    right: -.3rem;
    top: -.3rem;
    z-index: 10;
}

.home-personnel .text-content .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow3.png)no-repeat center;
    background-size: .23rem;
}

.home-personnel .text-content .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r4.png)no-repeat center;
    background-size: 100%;
}

.home-bg2 {
    background: url(../images/bg3.jpg)no-repeat left top;
    background-size: cover;
    padding-top: .9rem;
    padding-bottom: 1.24rem;
}

.home-bg2 .r-con {
    width: 4.4rem;
}

.home-bg2 .r-con .home-title {
    justify-content: flex-end;
}

.home-bg2 .r-con .home-title>div {
    margin-right: -.3rem;
    text-align: right;
    padding-right: .4rem;
}

.home-collaboration {
    margin-right: .95rem;
}

.home-collaboration .home-title {
    margin-left: -.3rem;
}

.home-collaboration .home-title>div {
    text-align: left;
    padding-left: .3rem;
}

.home-collaboration .card {
    width: 47%;
    margin-right: 6%;
    margin-top: .6rem;
}

.home-collaboration .card:nth-child(even) {
    margin-right: 0;
}

.home-collaboration .card .pic {
    height: 2.75rem;
    overflow: hidden;
}

.home-collaboration .card .tit {
    font-size: .2rem;
    margin-top: .25rem;
}

.home-collaboration .card .des {
    color: #999;
    font-size: .16rem;
    line-height: 1.8;
    margin-top: .15rem;
}

.home-school {
    margin-top: .9rem;
}

.home-school .con {
    margin-top: .45rem;
}

.home-school .con>a {
    width: 50%;
    height: 1.4rem;
    color: #FFF;
    font-size: .2rem;
}

.home-school .con>a:nth-child(1) {
    background-color: #72151a;
}

.home-school .con>a:nth-child(2) {
    background-color: #aa8e57;
}

.home-school .con>a:nth-child(3) {
    background-color: #b6a27a;
}

.home-school .con>a:nth-child(4) {
    background-color: #9f302c;
}

.home-international .con {
    margin-top: .6rem;
}

.home-international .con>a {
    width: 30%;
    color: #FFF;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    overflow: hidden;
}

.home-international .con>a:nth-child(even) {
    margin-top: -.2rem;
}

.home-international .con>a img {
    width: 100%;
}

.home-international .con .tit {
    font-size: .2rem;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    position: absolute;
    left: 50%;
    top: .5rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.home-international .con .arrow {
    width: .48rem;
    height: .48rem;
    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%);
}

.home-international .con .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r2.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-international .con .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/arrow2.png)no-repeat center;
    background-size: .11rem;
}


/* 首页科研 */

.home-keyan {
    background: #fafafa url(../images/bg8.jpg)no-repeat center top;
    overflow: hidden;
    height: 12.2rem;
    background-size: cover;
    padding-top: .7rem;
}

.home-keyan .home-title,
.homt-tell .home-title {
    margin-left: -.3rem;
}

.home-keyan .home-title>div,
.homt-tell .home-title>div {
    padding-left: .3rem;
}

.home-keyan .content {
    justify-content: flex-end;
}

.home-keyan .gallery-top {
    width: 9.85rem;
    margin-top: -1rem;
    margin-left: 0;
    margin-right: 0;
}

.home-keyan .gallery-top .pic {
    width: 100%;
    overflow: hidden;
    height: 5.65rem;
}

.home-keyan .gallery-top .text-con {
    margin-top: .5rem;
}

.home-keyan .gallery-top .text-con span {
    width: 1.35rem;
    line-height: .36rem;
    background-color: #841c21;
    color: #FFF;
    -webkit-clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    margin-right: .4rem;
}

.home-keyan .gallery-top .tit {
    font-size: .26rem;
}

.home-keyan .gallery-top .des {
    font-size: .16rem;
    color: #999;
    line-height: 1.8;
    margin-top: .15rem;
}

.home-keyan .gallery-top .swiper-slide .pic,
.home-keyan .gallery-top .swiper-slide .text-con {
    opacity: 0;
}

.home-keyan .gallery-top .swiper-slide-active .pic,
.home-keyan .gallery-top .swiper-slide-active .text-con {
    opacity: 1;
}

.home-keyan .gallery-thumbs {
    position: absolute;
    left: -3.9rem;
    width: 10.85rem;
    padding-bottom: 1.2rem;
    top: .8rem;
}

.home-keyan .gallery-thumbs .swiper-slide {
    overflow: hidden;
    height: 2.15rem;
}

.home-keyan .gallery-thumbs .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 1;
}

.home-keyan .gallery-thumbs .swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 8px #78171c solid;
}

.home-keyan .gallery-thumbs .swiper-slide-active::before {
    display: none;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet {
    width: .8rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: none;
    opacity: 1;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet>div {
    height: .22rem;
    display: flex;
    align-items: center;
    width: .22rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    margin-bottom: .15rem;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet>div::after {
    content: '';
    position: absolute;
    left: -.8rem;
    right: -.8rem;
    top: 50%;
    height: 1px;
    background-color: #841c21;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet {
    margin: 0 .55rem !important;
    height: auto;
    width: auto;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet span {
    display: block;
    width: .15rem;
    height: .15rem;
    background-color: #FFF;
    border: 1px #841c21 solid;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
    z-index: 10;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet-active {
    color: #841c21;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet-active span {
    width: .2rem;
    height: .2rem;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet-active span::before {
    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%);
    background-color: #841c21;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet:first-child>div::after {
    left: .1rem;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet:last-child>div::after {
    right: .1rem;
}

.home-bg4 {
    background: url(../images/bg6.jpg)no-repeat center bottom;
    background-size: cover;
    padding-bottom: 1.55rem;
}

.homt-tell {
    overflow: hidden;
    z-index: 10;
    top: -3.8rem;
}

.homt-tell .content {
    margin-top: .55rem;
}

.homt-tell .pic-con {
    width: 9rem;
    padding-bottom: .95rem;
    z-index: 10;
}

.homt-tell .pic-con::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: -2.1rem;
    height: 4.2rem;
    background: url(../images/tbg16.jpg)no-repeat center;
    background-size: cover;
    z-index: -1;
}

.homt-tell .pic-con .card {
    width: 50%;
}

.homt-tell .pic-con .card .pic {
    overflow: hidden;
    height: 2.7rem;
}

.homt-tell .pic-con .card .text-con {
    padding: .3rem .15rem;
    font-size: .2rem;
}

.homt-tell .pic-con .card .tit {
    font-size: .2rem;
    color: #FFF;
}

.homt-tell .pic-con .card .des {
    margin-top: .1rem;
    color: #FFF;
    font-size: .16rem;
    line-height: 1.8;
}

.homt-tell .pic-con .card .arrow {
    width: .48rem;
    height: .48rem;
    margin-top: .2rem;
}

.homt-tell .pic-con .card .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow2.png)no-repeat center;
    background-size: .11rem;
}

.homt-tell .pic-con .card .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r2.png)no-repeat center;
    background-size: 100%;
}

.homt-tell .text-content {
    z-index: 10;
}

.homt-tell .text-content::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    right: -2.1rem;
    z-index: -1;
    background-color: #fafafa;
}

.homt-tell .text-content .item {
    overflow: hidden;
    height: 2rem;
    padding: .4rem .5rem 0 .5rem;
}

.homt-tell .text-content .item::after {
    content: '';
    position: absolute;
    left: .5rem;
    right: .3rem;
    bottom: 0;
    height: 1px;
    background-color: #e8e8e8;
}

.homt-tell .text-content .item:last-child::after {
    display: none;
}

.homt-tell .text-content .tit {
    font-size: .2rem;
}

.homt-tell .text-content .des {
    font-size: .16rem;
    line-height: 1.8;
    color: #999;
    margin-top: .1rem;
}

.homt-tell .text-content .item span {
    position: absolute;
    display: block;
    background-color: #78171c;
    z-index: 10;
}

.homt-tell .text-content .item span.line1 {
    height: 8px;
    width: 0;
    left: 0;
    bottom: 0;
}

.homt-tell .text-content .item span.line2 {
    height: 0;
    width: 8px;
    left: 0;
    top: 0;
}

.homt-tell .text-content .item span.line3 {
    height: 8px;
    width: 0rem;
    left: 0;
    top: 0;
}

.homt-tell .text-content .item span.line6 {
    height: 8px;
    width: 0;
    right: 0;
    bottom: 0;
}

.homt-tell .text-content .item span.line5 {
    height: 0;
    width: 8px;
    right: 0;
    top: 0;
}

.homt-tell .text-content .item span.line4 {
    height: 8px;
    width: 0rem;
    right: 0;
    top: 0;
}

.home-media {
    margin-top: -2rem;
}

.home-media .home-title>div {
    align-items: flex-end;
}

.home-media .home-title .cn,
.home-media .home-title .en {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}

.home-media .home-title .cn {
    order: 2;
}

.home-media .home-title .en {
    order: 1;
}

.home-media .pic-con2 {
    width: 4rem;
}

.home-media .pic-con2>a::after,
.home-media .pic-con1 .pic1::after,
.home-media .pic-con1 .pic2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
}

.home-media .pic-con2 .pic1 {
    overflow: hidden;
    width: 100%;
    height: 4.25rem;
}

.home-media .pic-con2 .pic2 {
    overflow: hidden;
    width: 100%;
    height: 3.55rem;
    margin-top: .13rem;
}

.home-media .pic-con2 .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #FFF;
    font-size: .2rem;
		padding: 0 0.2rem 0.05rem 0.2rem;
}

.home-media .pic-con2 .text>img {
    height: .23rem;
    margin-right: .2rem;
}

.home-media .pic-con2 .pic1 .text {
    border-left: 5px #eac600 solid;
}

.home-media .pic-con2 .pic2 .text {
    border-left: 5px #ea6e00 solid;
}

.home-media .pic-con1 {
    margin-right: .1rem;
}

.home-media .pic-con1 .pic1,
.home-media .pic-con1 .pic2 {
    width: 49.25%;
    overflow: hidden;
    height: 3.05rem;
}

.home-media .pic-con1 .pic1 .text,
.home-media .pic-con1 .pic2 .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #FFF;
    font-size: .2rem;
    padding: 0 0.2rem 0.05rem 0.2rem;
}

.home-media .pic-con1 .pic1 .text>img,
.home-media .pic-con1 .pic2 .text>img {
    height: .2rem;
    margin-right: .2rem;
}

.home-media .pic-con1 .pic1 .text {
    border-left: 5px #b20008 solid;
}

.home-media .pic-con1 .pic2 .text {
    border-left: 5px #36a300 solid;
}

.home-media .pic-con1 .pic3 {
    width: 100%;
    overflow: hidden;
    height: 4.75rem;
    margin-top: .13rem;
}

.home-media .pic-con1 .pic3 .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(118, 0, 8, .9);
    font-size: .2rem;
    color: #FFF;
    z-index: 2;
    line-height: .9rem;
}

.home-media .sns {
    position: absolute;
    left: .9rem;
    width: .76rem;
    top: 2.8rem;
    z-index: 10;
}

.home-media .sns .item {
    width: 100%;
    height: .76rem;
    border: 1px #9b0007 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: .4rem;
}

.home-media .sns .wx {
    background-image: url(../images/wx1.png);
}

.home-media .sns .wb {
    background-image: url(../images/wb1.png);
}

.home-media .sns .sp {
    background-image: url(../images/sp1.png);
}

.home-media .sns .kuai {
    background-image: url(../images/kuai1.png);
}

.home-media .sns .erwma {
    position: absolute;
    top: 50%;
    right: -1.4rem;
    border-radius: 5px;
    -webkit-border-radius: ;
    -moz-border-radius: ;
    -ms-border-radius: ;
    -o-border-radius: ;
    padding: 8px;
    background-color: #FFF;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    box-shadow: 0 0 .15rem rgba(0, 0, 0, .1);
    display: none;
}

.home-media .sns .erwma::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px transparent solid;
    border-bottom: 10px transparent solid;
    border-right: 10px #FFF solid;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -10px;
}

.home-media .sns .erwma img {
    width: 100%;
}

.home-data {
    background: url(../images/bg7.jpg)no-repeat center top;
    background-size: cover;
    height: 4.52rem;
    margin-top: 2.1rem;
    padding: .7rem 1.4rem 0 .5rem;
}

.home-data .home-title {
    margin-right: 1.4rem;
}

.home-data .home-title>div {
    background-image: url(../images/title-bg1.png);
    color: #FFF;
}

.home-data .home-title .en {
    color: #FFF;
}

.home-data .text {
    font-size: .16rem;
    line-height: 2;
    color: #FFF;
}

.home-data .arrow {
    width: .7rem;
    height: .7rem;
    position: absolute;
    left: 1.25rem;
    bottom: 1.05rem;
    z-index: 10;
}

.home-data .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow3.png)no-repeat center;
    background-size: .23rem;
}

.home-data .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r3.png)no-repeat center;
    background-size: 100%;
}

@font-face {
    font-family: 'Book-Antiqua';
    src: url('../fonts/Book-Antiqua.ttf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Regular';
    src: url('../fonts/SourceHanSerifCN-Regular.otf');
}

.home-data .num-box {
    position: absolute;
    right: 0;
    height: 3rem;
    background-color: #bea779;
    width: 11.7rem;
    bottom: -.5rem;
    font-family: 'SourceHanSerifCN-Regular';
    color: #FFF;
    overflow: hidden;
}

.home-data .num-box .num {
    font-family: 'Book-Antiqua';
    font-size: .48rem;
    font-weight: normal;
}

.home-data .num-box .swiper-container {
    padding-top: .9rem;
    padding-bottom: .9rem;
    margin-right: -5px;
    margin-left: -5px;
}

.home-data .num-box .swiper-slide {
    padding-left: .9rem;
    height: .9rem;
    border-right: 1px dashed #FFF;
}

.home-data .num-box .swiper-slide::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 0;
    width: 5px;
    height: 5px;
    background-color: #FFF;
}

.home-data .num-box .swiper-slide::before {
    content: '';
    position: absolute;
    right: -3px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background-color: #FFF;
}

.home-data .num-box .swiper-pagination-bullet {
    background-color: #FFF;
    opacity: 1;
}

.home-data .num-box .swiper-pagination-bullet-active {
    background-color: #9b0007;
}

.home-icon {
    margin-top: 1.5rem;
}

.home-icon .item {
    width: 2rem;
    height: 2rem;
    z-index: 10;
}

.home-icon .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #f5f3ee;
    border: 1px #760008 dashed;
    z-index: -1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-icon .item>div {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #760008 dashed;
    background-color: #FFF;
}

@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);
    }
}

.home-icon .item .icon img {
    height: .55rem;
}

.home-icon .item .tit {
    color: #760008;
    font-size: .24rem;
    margin-top: .05rem;
}

@media (min-width:1025px) {
    .home-news .focus .swiper-slide:hover .pic img,
    .home-news .box .pic:hover img,
    .home-campus .pic:hover img,
    .home-collaboration .card:hover .pic img,
    .homt-tell .pic-con .card:hover .pic img,
    .home-media .pic-con2>a:hover>img,
    .home-media .pic-con1 .pic1:hover>img,
    .home-media .pic-con1 .pic2:hover>img,
    .home-media .pic-con1 .pic3:hover>img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-notice .item:hover .tit,
    .home-school .con>a:hover {
        font-weight: bold;
    }
    .home-tender .card:hover {
        background-image: url(../images/tbg6.jpg);
        color: #FFF;
    }
    .home-tender .card:hover .date {
        color: #FFF;
        border-bottom-color: #8b2e30;
    }
    .home-education .card:hover {
        height: 100%;
    }
    .home-education .card:hover::after {
        width: 100%;
    }
    .home-education .card:hover::before {
        background-color: #6f141a;
    }
    .home-education .card:hover .arrow {
        opacity: 1;
    }
    .home-education .card:hover .arrow::after,
    .home-international .con>a:hover .arrow::after,
    .homt-tell .pic-con .card:hover .arrow::after,
    .home-data .arrow:hover::after,
    .home-personnel .text-content .text:hover .arrow::after {
        animation: 10s linear infinite ani_turn2;
        -webkit-animation: 10s linear infinite ani_turn2;
    }
    .home-international .con>a:hover {
        margin-top: -.3rem;
    }
    .homt-tell .text-content .item:hover {
        background-color: #f0f0f0;
    }
    .homt-tell .text-content .item:hover span.line1,
    .homt-tell .text-content .item:hover span.line4 {
        width: .8rem;
    }
    .homt-tell .text-content .item:hover span.line2,
    .homt-tell .text-content .item:hover span.line5 {
        height: 100%;
        ;
    }
    .homt-tell .text-content .item:hover span.line3,
    .homt-tell .text-content .item:hover span.line6 {
        width: 3rem;
    }
    .home-media .sns .item:hover .erwma {
        display: block;
    }
    .home-media .sns .item:hover {
        background-color: #9b0007;
    }
    .home-media .sns .item:hover.wx {
        background-image: url(../images/wx2.png);
    }
    .home-media .sns .item:hover.wb {
        background-image: url(../images/wb2.png);
    }
    .home-media .sns .item:hover.sp {
        background-image: url(../images/sp2.png);
    }
    .home-media .sns .item:hover.kuai {
        background-image: url(../images/kuai2.png);
    }
    .home-icon .item:hover::after {
        animation: none;
        -webkit-animation: none;
    }
}

@media (max-width:1199px) {
    .home-news .focus .date,
    .home-news .box .date,
    .home-notice .date,
    .home-campus .pic .text,
    .home-tender .card .date,
    .home-campus .item .des,
    .home-education .date,
    .home-collaboration .card .des,
    .homt-tell .pic-con .card .des,
    .homt-tell .text-content .des,
    .home-personnel .text-content .date,
    .home-keyan .gallery-top .des {
        font-size: 12px;
    }
    .home-news .focus .tit {
        font-size: 16px;
    }
    .home-news .box .item .tit,
    .home-notice .tit,
    .home-campus .pic .tit,
    .home-tender .card .tit,
    .home-campus .item .tit,
    .home-education .tit,
    .home-collaboration .card .tit,
    .home-international .con .tit,
    .home-school .con>a,
    .homt-tell .pic-con .card .tit,
    .homt-tell .text-content .tit,
    .home-media .pic-con1 .pic2 .text,
    .home-media .pic-con2 .text,
    .home-data .text,
    .home-icon .item .tit,
    .home-personnel .text-content .tit,
    .home-keyan .gallery-top .tit {
        font-size: 14px;
    }
    .home-data {
        padding-right: .2rem;
    }
    .home-data .home-title {
        margin-right: .7rem;
    }
    .home-bg2 .r-con .home-title>div {
        margin-left: 0;
        width: auto;
    }
    .home-personnel .text-content .text {
        padding: .3rem;
    }
    .home-keyan .gallery-thumbs {
        width: 9rem;
        left: -2rem;
    }
    .home-keyan .gallery-thumbs .swiper-pagination-bullet>div::after {
        left: -1rem;
        right: -1rem;
    }
}

@media (max-width:767px) {
    .home-news .focus,
    .home-campus,
    .home-bg2 .r-con,
    .home-collaboration .card,
    .homt-tell .pic-con,
    .home-media .pic-con2,
    .home-keyan .gallery-top,
    .home-keyan .gallery-thumbs {
        width: 100%;
    }
    .home-news .focus .text-con,
    .home-news .focus,
    .home-bg1 .content .l-con,
    .home-collaboration,
    .home-collaboration .card,
    .home-media .pic-con1 {
        margin-right: 0;
    }
    .home-news .focus .swiper-button-next {
        right: 0;
    }
    .home-news .focus .swiper-button-prev {
        right: .6rem;
    }
    .home-news .box,
    .home-bg2 .r-con,
    .home-keyan .gallery-top {
        margin-top: .4rem;
    }
    .home-news .box .pic,
    .home-collaboration .card .pic {
        height: 3.8rem;
    }
    .home-education .con,
    .home-personnel {
        height: auto;
    }
    .home-education .card {
        width: 100%;
        margin-top: .3rem;
    }
    .homt-tell {
        top: 0;
        margin-top: .4rem;
    }
    .homt-tell .pic-con::after {
        right: -.2rem;
    }
    .homt-tell .text-content::after {
        left: -.2rem;
    }
    .homt-tell .text-content .item {
        padding-left: 0;
        padding-right: 0;
        height: auto;
        padding-bottom: .4rem;
    }
    .homt-tell .text-content .item::after {
        left: 0;
        right: 0;
    }
    .homt-tell .text-content .item span,
    .home-media .sns {
        display: none;
    }
    .home-media {
        display: block;
        margin-top: .5rem;
    }
    .home-media .home-title>div,
    .home-media .content {
        display: block;
    }
    .home-media .home-title .cn,
    .home-media .home-title .en {
        writing-mode: inherit;
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
    }
    .home-media .content {
        margin-top: .4rem;
    }
    .home-media .pic-con2 {
        margin-top: .2rem;
    }
    .home-data {
        display: block;
        height: auto;
        padding: .4rem .3rem 0 .3rem;
        margin-top: .7rem;
    }
    .home-data .home-title>div {
        margin-left: -.4rem;
    }
    .home-data .num-box {
        position: inherit;
        left: auto;
        right: auto;
        width: auto;
        bottom: auto;
        margin-top: .3rem;
    }
    .home-data .arrow {
        left: auto;
        right: 0;
        bottom: auto;
        top: .2rem;
    }
    .home-data .text {
        margin-top: .3rem;
    }
    .home-icon {
        margin-top: .7rem;
    }
    .home-icon .item {
        margin-top: .3rem;
    }
    .home-personnel {
        padding-bottom: .4rem;
    }
    .home-personnel .title-con {
        margin-top: 2rem;
    }
    .home-personnel .title-con .item {
        position: initial;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
        margin-right: .15rem;
        margin-top: .3rem;
    }
    .home-personnel .title-con .item:nth-of-type(3n) {
        margin-right: 0;
    }
    .home-personnel .title-con .item::after {
        display: none !important;
    }
    .home-personnel .title-con .tit {
        font-size: 20px;
    }
    .home-personnel .text-content .text {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        height: auto;
    }
    .home-keyan {
        height: auto;
    }
    .home-keyan .content {
        display: block;
    }
    .home-keyan .gallery-thumbs {
        position: initial;
        left: auto;
        top: auto;
        margin-top: .4rem;
    }
    .home-keyan .gallery-thumbs .swiper-slide {
        height: 1.8rem;
    }
    .home-keyan .gallery-thumbs .swiper-slide-active::after {
        border-width: 5px;
    }
		
		.home-personnel .title-con .item>div{
			padding: 0.3rem;
		}
		.home-personnel .title-con .txt,
		.home-personnel .title-con .tit{
			text-align: center;
		}
		.ui .xh .item .pic img{
			object-fit: contain;
		}
}

/* ie兼容 */
@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {
	.home-keyan .gallery-top .des,
	.homt-tell .text-content .des,
	.homt-tell .pic-con .card .des,
	.home-collaboration .card .des,
	.home-campus .item .des{
		max-height: 0.57rem;
	}
	
	.homt-tell .text-content .tit,
	.homt-tell .pic-con .card .tit,
	.home-news .box .item .tit{
		max-height: 0.54rem;
	}
	
	
	.home-collaboration .card .tit,
	.home-campus .item .tit,
	.home-campus .pic .tit,
	.home-media .pic-con2 .text span{
		max-height: 0.27rem;
		white-space: nowrap;
	}
	
	.home-campus .pic .text{
		max-height: 0.22rem;
		white-space: nowrap;
	}
	
	.home-news .focus .tit{
		max-height: 0.35rem;
		white-space: nowrap;
	}
	
}@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

@font-face {
    font-family: 'Alibaba-PuHuiTi-Bold';
    src: url('../fonts/Alibaba-PuHuiTi-Bold.ttf');
}

@font-face {
    font-family: 'Alibaba-PuHuiTi-Light';
    src: url('../fonts/Alibaba-PuHuiTi-Light.ttf');
}

@font-face {
    font-family: 'Alibaba-PuHuiTi-Regular';
    src: url('../fonts/Alibaba-PuHuiTi-Regular.ttf');
}

@font-face {
    font-family: 'Futura-Book';
    src: url('../fonts/Futura-Book.otf');
}

body {
    color: #333;
    background: #ffffff;
    font: .18rem 'Alibaba-PuHuiTi-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #760008;
}


/*块级转化*/

.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.1rem;
    padding-right: 2.1rem;
}

@media (max-width:1199px) {
    .container {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-left: .4rem;
    padding-right: 1.3rem;
    height: 1.2rem;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2rem;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header .logo img {
    height: .78rem;
}

.header .top {
    color: #FFF;
    justify-content: flex-end;
    font-size: .16rem;
}

.header .top span {
    margin: 0 .1rem;
}

.header .top a {
    color: #FFF;
}

.header .search-btn {
    position: absolute;
    right: .3rem;
    top: 50%;
    width: .6rem;
    height: .6rem;
    border: 1px #FFF solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: url(../images/search.png)no-repeat center;
    background-size: .23rem;
    cursor: pointer;
}

.header.fixed::after {
    height: 100%;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav {
    justify-content: flex-end;
}

.nav li>a {
    line-height: .6rem;
    padding: 0 .2rem;
    font-family: 'Alibaba-PuHuiTi-Bold';
    color: #FFF;
    font-size: .2rem;
}

.nav li:last-child>a {
    padding-right: 0;
}

.nav .drop {
    width: 100%;
    left: 0;
    top: .6rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    line-height: 2.4;
    font-size: .16rem;
}

.search-content {
    background: rgba(118, 0, 8, .9);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(../images/close.svg)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.search-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 7rem;
    height: .7rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .18rem;
    background: none;
    padding-left: .15rem;
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(../images/search.png)no-repeat center;
    background-size: .3rem;
}

.n-banner {
    overflow: hidden;
}

.n-banner img {
    width: 100%;
}

.footer {
    background: url(../images/f-bg.jpg)no-repeat center;
    background-size: cover;
    height: 2.45rem;
}

.footer .logo img {
    height: .78rem;
}

.footer .copyright {
    font-family: 'Alibaba-PuHuiTi-Light';
    color: #FFF;
    font-size: .14rem;
    border-top: 1px rgba(255, 255, 255, .2) solid;
    margin-top: .2rem;
    padding-top: .2rem;
}

.footer .text-info {
    color: #FFF;
}

.footer .text-info>div {
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: .4rem;
    line-height: 2;
}

.footer .text-info .address {
    background-image: url(../images/address.png);
    background-size: .16rem;
}

.footer .text-info .tel {
    background-image: url(../images/tel.png);
    background-size: .17rem;
}

@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: #f8f8f8;
    }
}

@media (max-width:1199px) {
    .menu-btn {
        display: block;
    }
    .header::after {
        height: 100%;
    }
    .header .search-btn {
        right: 1rem;
    }
    .header.on {
        background-color: #760008;
    }
    .header .top {
        display: block;
    }
    .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #760008;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem .3rem;
    }
    .nav {
        display: block;
    }
    .nav li>a {
        font-size: 16px;
        padding: 0;
        line-height: .9rem;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: .9rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: .32rem;
        height: .32rem;
        position: absolute;
        left: .1rem;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        background: none;
        padding-left: .2rem;
    }
    .nav .drop a {
        color: #FFF;
    }
    .header .top,
    .search-content .content input[type='text'],
    .nav .drop a {
        font-size: 14px;
    }
    .footer .copyright {
        font-size: 12px;
    }
    .search-content .content {
        width: 80%;
    }
}

@media (max-width:767px) {
    .footer {
        height: auto;
        padding-top: .3rem;
        padding-bottom: .3rem;
    }
    .footer>div {
        width: 100%;
    }
    .footer .logo {
        justify-content: center;
    }
    .footer .text-info {
        margin-top: .3rem;
    }
}

.crumbs {
    font-size: .14rem;
    text-align: right;
}

.pub-content {
    margin-top: .3rem;
    min-width: 0;
}

.sidebar {
    width: 3.2rem;
    z-index: 10;
    margin-top: -2rem;
    margin-right: .85rem;
}

.sidebar .title {
    color: #FFF;
}

.sidebar .title .cn {
    font-size: .4rem;
}

.sidebar .title .en {
    font-size: .16rem;
    text-transform: uppercase;
    font-family: 'Futura-Book';
}

.sidebar ul {
    background-color: #760008;
    margin-top: .6rem;
    z-index: 10;
    padding-top: .3rem;
    padding-bottom: 5px;
}

.sidebar ul::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.48rem;
    background: url(../images/tbg.png)no-repeat center;
    background-size: cover;
    top: -.3rem;
    z-index: -1;
}

.sidebar li {
    border-bottom: 1px rgba(255, 255, 255, .2) solid;
}

.sidebar li:last-child {
    border-bottom: 0;
}

.sidebar li a {
    color: #FFF;
    padding-top: .15rem;
    padding-bottom: .15rem;
    z-index: 10;
}

.sidebar li .cn {
    font-size: .28rem;
}

.sidebar li .en {
    font-family: 'Futura-Book';
    margin-top: .05rem;
    color: #994046;
}

.sidebar li.on a::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    left: -.05rem;
    right: -.05rem;
    background-color: #bea779;
    z-index: -1;
}

.sidebar li.on .en {
    color: #e6d5b4;
}


/* 人才招聘 */

.pub-bg1 {
    background: url(../images/job-bg.jpg)no-repeat center bottom;
    background-size: 100%;
    padding-bottom: 1.7rem;
}

.job .list {
    margin-top: .3rem;
}

.job .list li {
    width: 100%;
    background: #FFF url(../images/tbg1.jpg)no-repeat right center;
    margin-bottom: .1rem;
    border-top: 1px #710002 solid;
    padding: 0 .4rem;
    height: .93rem;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .05);
}

.job .list li>a {
    height: 100%;
}

.job .list .tit {
    margin-right: .3rem;
    font-size: .2rem;
}

.job .list .date {
    color: #710002;
    font-size: .16rem;
}

.page {
    margin-top: .5rem;
    font-size: .16rem;
}

.page a {
    width: .34rem;
    line-height: .32rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #FFF;
    border: 1px #cccccc solid;
    height: .34rem;
    margin: 0 .03rem;
}

.page .prev {
    background: #FFF url(../images/prev.png)no-repeat center;
    background-size: .13rem;
}

.page .next {
    background: #FFF url(../images/next.png)no-repeat center;
    background-size: .13rem;
}

.page span {
    margin-left: .05rem;
    margin-right: .05rem;
}

.page .on {
    background-color: #95000a;
    color: #FFF;
    border-color: #95000a;
}

.page input[type='text'] {
    width: .5rem;
    height: .34rem;
    border: 1px #cccccc solid;
    margin-left: .1rem;
    margin-right: .1rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.page input[type='submit'] {
    color: #FFF;
    background-color: #95000a;
    height: .34rem;
    padding: 0 .2rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    margin-left: .1rem;
}


/* 关于 */

.about {
    background: url(../images/about-bg.jpg)no-repeat center bottom;
    background-size: 100%;
    padding-bottom: .7rem;
}

.about .bg {
    background: url(../images/about-bg1.jpg)no-repeat center bottom;
    background-size: 100%;
		padding-bottom: 1rem;
}

.about .text-con {
    margin-top: .7rem;
}

.about .text-con .title {
    font-size: .48rem;
    margin-right: .4rem;
}

.about .text {
    line-height: 1.8;
}

.about .text-con .pic {
    margin-top: .5rem;
}

.about .text-con .item {
    border-top: 1px #c6c6c5 solid;
    margin-top: .6rem;
    padding-top: .55rem;
}

.about .tit {
    font-size: .24rem;
    font-family: 'Alibaba-PuHuiTi-Bold';
    color: #760008;
    margin-right: .9rem;
    white-space: nowrap;
}

.about img {
    max-width: 100%;
}

.about .text-content {
    overflow: hidden;
    height: 6.45rem;
    background: url(../images/tbg3.jpg)no-repeat left top;
    background-size: 17.1rem;
    margin-top: -.37rem;
}

.about .text-content .con {
    margin-right: 1.2rem;
}

.about .text-content .con,
.about .text-content .tit {
    color: #bea779;
}

.about .text-content .tit {
    margin-right: 0;
    margin-bottom: .2rem;
}

.about .text-content .r-con {
    width: 4.9rem;
    height: calc(100% - .37rem);
    margin-top: .37rem;
    z-index: 9;
    padding-left: 1.1rem;
    padding-top: .8rem;
    padding-bottom: .8rem;
}

.about .text-content .r-con::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -2.1rem;
    height: 100%;
    background: url(../images/tbg4.jpg)no-repeat center;
    background-size: cover;
    z-index: -1;
}

.about .text-content .r-con .num-box {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #710008;
    color: #FFF;
    padding-top: .25rem;
    margin-right: .4rem;
}

.about .text-content .r-con .num-box::after {
    content: '';
    position: absolute;
    left: -.15rem;
    top: -.15rem;
    right: -.15rem;
    bottom: -.15rem;
    border: 1px #710008 dashed;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about .text-content .r-con .num-box .num span {
    font-size: .3rem;
    margin-right: .2rem;
}

.about .text-content .r-con .num-box:nth-child(even) {
    margin-right: 0;
    transform: translateY(1rem);
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    -o-transform: translateY(1rem);
		/* margin-top: 1rem; */
}


/* 师资详情 */

.pub-bg2 {
    background: url(../images/bg5.png)no-repeat center bottom;
    padding-bottom: .9rem;
    background-size: 100%;
}

.teachers-details {
    margin-top: .45rem;
}

.teachers-details .title {
    height: .85rem;
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
}

.teachers-details .title span {
    height: 1px;
    width: 1.15rem;
    border-top: 1px #7B181D dashed;
    margin: 0 .4rem;
}

.teachers-details .title span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.teachers-details .title span:last-child::after {
    left: auto;
    right: 0;
}

.teachers-details .text {
    font-size: .2rem;
    line-height: 1.8;
}

.teachers-details .text img {
    max-width: 100%;
    margin-top: .3rem;height:auto!important;
}

.teachers-details .text p {
    margin-top: .3rem;
    text-indent: .4rem;
    font-size: .2rem !important;
    line-height: 1.8 !important;
}
.teachers-details .text *{
    font-size: .2rem !important;
    line-height: 1.8 !important;

}

/* 图文 */

.image-list .item {
    margin-top: .5rem;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .1);
    background: #FFF url(../images/tbg12.png)no-repeat right bottom;
    border-right: 3px #7B181D solid;
    background-size: cover;
}

.image-list .item .pic {
    height: 2.05rem;
    width: 3.65rem;
    overflow: hidden;
}

.image-list .item .text-con {
    padding: .3rem;
}

.image-list .item .date {
    color: #7B181D;
    font-size: .16rem;
}

.image-list .item .date span {
    font-size: .2rem;
}

.image-list .item .tit {
    font-size: .2rem;
    margin-top: .15rem;
}

.image-list .item .des {
    font-size: .16rem;
    color: #666;
    margin-top: .1rem;
    line-height: 1.7;
}


/* 详情 */

.details,
.details1 {
    margin-top: .55rem;
}

.details .news {
    width: 3.45rem;
    padding-left: .4rem;
    border-left: 1px #f1f1f1 solid;
}

.details .news .tit {
    font-size: .28rem;
    background: url(../images/icon.svg)no-repeat left center;
    background-size: .24rem;
    padding-left: .35rem;
}

.details .news a {
    border-bottom: 1px #f1f1f1 dashed;
    margin-top: .2rem;
    padding-bottom: .3rem;
}

.details .news .date {
    color: #7B181D;
    font-size: .16rem;
}

.details .news .txt {
    font-size: .2rem;
    line-height: 1.7;
    margin-top: .1rem;
}

.details .content {
    margin-right: .4rem;
}

.details .content .title-con {
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
    border-left: 4px solid #7B181D;
    padding: .3rem;
}

.details1 .title-con {
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
    padding: .3rem;
}

.details .content .title,
.details1 .title {
    font-size: .28rem; line-height:.32rem;
}

.details1 .title {
    border-bottom: 1px dotted #d0acaf;
    padding-bottom: .25rem;
}

.details1 .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.details1 .title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.details .content .info,
.details1 .info {
    margin-top: .3rem;
    font-size: .16rem;
    color: #666;
}

.details1 .info span {
    margin: 0 .15rem;
}

.details .content .body,
.details1 .body {
    line-height: 1.8;
    font-size: .2rem;
    padding-bottom: .5rem;
    border-bottom: 1px rgba(118, 0, 8, .4) solid;
}

.details1 .body {
    border-bottom-width: 2px;
}

.details1 .body table{
	border: 1px solid rgba(0,0,0,0.4) !important;
}
.details1 .body table tr:nth-child(even){
	background: #fff3f3;
}
.details1 .body table tr:nth-child(odd){
	background: #ffffff;
}
.details1 .body table tr:first-of-type{
	background: #9F302C;
	color: #fff;
}
.details1 .body table tr td[rowspan]{
	background: #fff3f3;
}
.details1 .body table tr td{
	border: 1px solid rgba(0,0,0,0.4) !important;
}
.details1 .body table tr p{
	text-align: center; text-indent:0  !important;
}

.details .content .body p,
.details1 .body p {
    text-indent: .4rem;
    margin-top: .3rem;
}
.details .content .body *{

    line-height: 1.8 !important;
    font-size: .2rem !important;

}
.details .content .body img,
.details1 .body img {
    max-width: 100% !important;
    margin: .3rem auto;display:block;height:auto !important;
}
.details .content .body table{margin:0 auto;width: 100%;}
.details .text {
    line-height: 2.4;
    margin-top: .3rem;
    font-size: .2rem;
}

.details1 .text {
    line-height: 2.4;
    margin-top: .3rem;
    text-align: right;
}

.details1 .prev-next ,.pub-content .prev-next{
    margin-top: .3rem;
    line-height: 2.4;
    font-size: .2rem;
}


/* 领导 */

.Leadership {
    margin-top: .5rem;
}

.Leadership .item {
    margin-top: .45rem;
    padding: .35rem;
    background: #FFF url(../images/tbg15.png)no-repeat center bottom;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    border-right: 3px #7B181D solid;
    background-size: cover;
}

.Leadership .item .zc {
    font-size: .24rem;
    overflow: hidden;
}

.Leadership .item .zc::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    left: 1.4rem;
    height: 1px;
    border-top: 1px dashed #d0acaf;
}

.Leadership .item .zc::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 5px;
    width: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #7B181D;
    z-index: 2;
}

.Leadership .item .name {
    font-size: .26rem;
    color: #7B181D;
    margin-top: .1rem;
}

.Leadership .item .des  p{
    font-size: .2rem !important;
    color: #666;
    line-height: 1.7 !important;
    margin-top: .2rem;text-indent:0  !important;
}

.Leadership .item .text {
    color: #666;
    line-height: 1.7;
    margin-top: .1rem;
    font-size: .2rem;
}

.Leadership .item .text span {
    color: #7B181D;
}


/* 机构设置 */

.jigou .title {
    font-size: .28rem;
    color: #7B181D;
    margin-top: .65rem;
    padding-left: .9rem;
    overflow: hidden;
}

.jigou .title span::before {
    content: '';
    position: absolute;
    left: -.9rem;
    top: 50%;
    height: 1px;
    width: .75rem;
    background-color: #7B181D;
}

.jigou .title span::after {
    content: '';
    position: absolute;
    right: -99.2rem;
    top: 50%;
    height: 1px;
    width: 99rem;
    background-color: #7B181D;
}

.jigou .con .item {
    width: 32%;
    height: .64rem;
    background-color: #faf6f6;
    margin-top: .3rem;
    margin-right: 2%;
    font-size: .16rem;
    color: #666;
}

.jigou .con .item::after {
    content: '';
    position: absolute;
    left: .05rem;
    top: .05rem;
    right: .05rem;
    bottom: .05rem;
    border: 1px #a15b5e dashed;
}

.jigou .con .item:nth-of-type(3n) {
    margin-right: 0;
}


/* 校企合作 */

.hezuo .title {
    background-image: linear-gradient(90deg, #f4eaeb, #FFFFFF);
    font-size: .28rem;
    height: .84rem;
    margin-top: .5rem;
}

.hezuo .title span {
    height: 1px;
    width: 1.15rem;
    margin: 0 .3rem;
    border-top: 1px dashed #7B181D;
}

.hezuo .title span:first-child::after {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.hezuo .title span:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.hezuo .text {
    font-size: .2rem;
    line-height: 1.8;
    text-indent: .4rem;
    margin-top: .4rem;
}
.hezuo .text *{
    font-size: .2rem !important;
    line-height: 1.8 !important;

}
.hezuo .num-box {
    margin-top: .8rem;
}

.hezuo .num-box .card {
    width: 2.89rem;
    z-index: 10;
    height: 2.89rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: .8rem;
}

.hezuo .num-box .card:nth-child(1) {
    background-image: url(../images/tbg7.png);
}

.hezuo .num-box .card:nth-child(2) {
    background-image: url(../images/tbg8.png);
    margin-left: -.3rem;
    z-index: 1;
}

.hezuo .num-box .card:nth-child(3) {
    background-image: url(../images/tbg9.png);
    margin-left: -.3rem;
}

.hezuo .num-box .card:nth-child(4) {
    background-image: url(../images/tbg10.png);
    margin-left: -.3rem;
    z-index: 1;
}

.hezuo .num-box .card:nth-child(odd) {
    margin-top: .8rem;
}

.hezuo .num-box .card .icon img {
    width: .9rem;
}

.hezuo .num-box .card .tit {
    font-size: .2rem;
    margin-top: .25rem;
    color: #FFF;
}


/* 校园风光 */

.Campus {
    margin-top: .6rem;
}

.Campus .title-con {
    font-size: .28rem;
    padding: .3rem;
    background-color: rgba(118, 0, 8, .1);
}

.Campus .title-con .title {
    font-size: .28rem;
}

.Campus .title-con .title {
    border-bottom: 1px dotted #d0acaf;
    padding-bottom: .25rem;
}

.Campus .title-con .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.Campus .title-con .title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
}

.Campus .title-con .info {
    font-size: .16rem;
    margin-top: .2rem;
    color: #666;
}

.Campus .title-con .info span {
    margin: 0 .2rem;
}

.Campus .content {
    width: 7.6rem;
}

.Campus .ji {
    width: 2.7rem;
}

.Campus .ji .title {
    font-size: .22rem;
    color: #7B181D;
    padding-left: .3rem;
    background: url(../images/icon5.png)no-repeat left center;
    background-size: .2rem;
}

.Campus .ji .con {
    margin-top: .2rem;
    border-top: 1px #d5d5d5 solid;
    padding-top: .3rem;
}

.Campus .ji .item {
    margin-bottom: .3rem;
}

.Campus .ji .pic {
    overflow: hidden;
    height: 1.5rem;
}

.Campus .ji .tit {
    margin-top: .2rem;
    font-size: .2rem;
}

.Campus .gallery-top {
    margin-top: .3rem;
}

.Campus .gallery-top .swiper-slide {
    overflow: hidden;
    height: 4.3rem;
}

.Campus .gallery-top .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    z-index: 1;
}

.Campus .gallery-top .text {
    font-size: .16rem;
    color: #FFF;
    position: absolute;
    left: .8rem;
    bottom: .3rem;
    z-index: 10;
}

.Campus .gallery-top .swiper-pagination {
    z-index: 11;
    left: .2rem;
    bottom: .25rem;
    width: auto;
    color: #FFF;
    font-size: .16rem;
}

.Campus .gallery-top .swiper-pagination-current {
    font-size: .24rem;
}

.Campus .gallery-thumbs {
    margin-top: .25rem;
    padding-left: .35rem;
    padding-right: .35rem;
}

.Campus .gallery-thumbs .swiper-slide {
    height: .9rem;
    position: relative;
}

.Campus .gallery-thumbs .swiper-button-white {
    width: .2rem;
    height: .2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #e5e2e1;
    background-size: .08rem;
    margin-top: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.Campus .gallery-thumbs .swiper-button-prev {
    left: 0;
}

.Campus .gallery-thumbs .swiper-button-next {
    right: 0;
}

.Campus .gallery-thumbs .swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 5px #7c191e solid;
    z-index: 1;
}


/* 标识 */

.subnav {
    margin-top: .75rem;
}

.subnav li {
    width: 2.6rem;
    height: .55rem;
    font-size: .24rem;
}

.subnav li>a {
    height: 100%;
    background: url(../images/tbg11.svg)no-repeat center;
    background-size: 100% 100%;
}

.subnav .on>a {
    background-image: url(../images/tbg14.svg);
    color: #FFF;
}

.ui .title {
    font-size: .28rem;
    color: #7B181D;
    margin-top: .65rem;
}

.ui .title::after {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    right: 0;
    height: 1px;
    border-top: 1px #7B181D dashed;
    opacity: .4;
}

.ui .title::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 5px;
    background-color: #7B181D;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.ui .js {
    margin-top: .5rem;
}

.ui .text {
    font-size: .2rem;
    line-height: 1.7;
    text-indent: .4rem;
}
.ui .text p{
    font-size: .2rem !important;
    line-height: 1.7 !important;

}
.ui .js .text {
    margin-right: .5rem;
}

.ui .js .pic {
    width: 4.6rem;
}

.ui .js .pic img,
.ui .xh .item .pic img,
.ui .xun .pic img,
.ui .ge .pic img {
    width: 100%;
}

.ui .xh {
    margin-top: .5rem;
}

.ui .xh .item {
    width: 33.333%;
}

.ui .xh .item .pic {
    width: 100%;
    height: 2.45rem;
}

.ui .xh .item .tit {
    font-size: .24rem;
}

.ui .xh .text {
    margin-top: .4rem;
}

.ui .xun,
.ui .ge {
    margin-top: .6rem;
}

.ui .xun .pic {
    width: 4.2rem;
    margin-right: .45rem;
}

.ui .xun .txt {
    font-size: .2rem;
    line-height: 1.8;
    margin: .1rem 0;
}

.ui .xun .txt span {
    color: #7B181D;
}

.ui .ge .pic {
    width: 6.5rem;
    margin-right: .5rem;
}

.ui .ge .txt-con {
    background-color: #fafafa;
    padding: .4rem .6rem;
}

.ui .ge .txt-con .tit {
    font-size: .24rem;
}

.ui .ge .txt-con .des {
    font-size: .16rem;
    line-height: 1.7;
    margin-top: .3rem;
}

.ui .ge .down {
    width: 100%;
    margin-top: .3rem;
    background-color: #BEA779;
    line-height: .42rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-size: .16rem;
    color: #FFF;
}

@media (min-width:1025px) {
    .job .list li:hover {
        background: url(../images/tbg2.jpg)no-repeat right center;
        background-size: cover;
    }
    .job .list li:hover .tit,
    .image-list .item:hover,
    .image-list .item:hover .des,
    .image-list .item:hover .date {
        color: #FFF;
    }
    .job .list li:hover .date {
        color: #bea779;
    }
    .image-list .item:hover .pic img,
    .Campus .ji .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);
    }
    .image-list .item:hover {
        background: url(../images/tbg13.png);
    }
    .image-list .item:hover .des {
        opacity: .5;
    }
    .jigou .con .item:hover {
        color: #FFF;
        background: #7c191e;
    }
    .jigou .con .item:hover::after {
        border-color: #FFF;
        opacity: .3;
    }
    .Campus .gallery-thumbs .swiper-button-white:hover {
        background-color: #7B181D;
    }
}

@media (max-width:1199px) {
    .sidebar {
        display: none;
    }
    .crumbs,
    .job .list .date,
    .page,
    .image-list .item .date,
    .image-list .item .des,
    .details .news .date,
    .details .content .info,
    .Campus .title-con .info,
    .Campus .gallery-top .swiper-pagination {
        font-size: 12px;
    }
    .job .list .tit,
    .teachers-details .text,
    .image-list .item .tit,
    .details .news .txt,
    .details .content .body,
    .details .content .text,
    .jigou .con .item,
    .hezuo .text,
    .hezuo .num-box .card .tit,
    .Campus .ji .tit,
    .Campus .gallery-top .text {
        font-size: 14px;
    }
    .page a {
        line-height: .45rem;
        height: .47rem;
        width: .47rem;
    }
    .page input[type='text'],
    .page input[type='submit'] {
        height: .47rem;
    }
    .about .tit,
    .teachers-details .title,
    .image-list .item .date span,
    .details .news .tit {
        font-size: 16px;
    }
    .details .content .title,
    .Campus .ji .title,
    .Campus .gallery-top .swiper-pagination-current {
        font-size: 18px;
    }
    .details .content .title,
    .Campus .ji .title{line-height:28px;}
    .jigou .title,
    .hezuo .title,
    .Campus .title-con .title {
        font-size: 20px;
    }
    .jigou .con .item {
        height: .7rem;
    }
    .hezuo .num-box .card {
        margin-left: 0 !important;
    }
    .hezuo .num-box .card {
        width: 3.2rem;
        height: 3.2rem;
    }
    .Campus .content {
        width: 11rem;
    }
    .Campus .gallery-top .swiper-slide {
        height: 5.8rem;
    }
    .pub-content {
        min-width: 100%;min-height:500px;
    }
}

@media (max-width:767px) {
    .page .txt,
    .page input[type='submit'],
    .Campus .ji {
        display: none;
    }
    .about .text-content {
        height: auto;
        background-size: cover;
        padding-top: .4rem;
        padding-bottom: .4rem;
    }
    .about .text-content .con,
    .details .content {
        margin-right: 0;
    }
    .about .text-content .r-con {
        width: 100%;
        height: auto;
        padding-left: 0;
        justify-content: center;
    }
    .about .text-content .r-con::after {
        right: 0;
    }
    .about .text-content .r-con .num-box:nth-child(even) {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .about .text-content .r-con .num-box .num span {
        font-size: 22px;
    }
    .about .text-content .r-con .num-box {
        width: 2rem;
        height: 2rem;
        margin: .2rem .3rem;
    }
    .image-list .item .pic {
        width: 100%;
        height: 3.8rem;
    }
    .details .news {
        width: 100%;
        border-left: 0;
        padding-left: 0;
        margin-top: .4rem;
    }
    .details .content .info {
        justify-content: flex-start;
    }
    .details .content .info span {
        width: 33.333%;
        margin-bottom: .2rem;
    }
    .jigou .con .item {
        width: 49%;
        height: auto;
        padding: .2rem;
        font-size: 12px;
    }
    .jigou .con .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .jigou .con .item:nth-child(even) {
        margin-right: 0;
    }
    .hezuo .num-box {
        justify-content: center;
    }
    .Campus {
        display: block;
    }
    .Campus .content {
        width: 100%;
    }
}


/* 首页 */

.banner {
    overflow: hidden;
		height: 9.5rem;
}

.banner .swiper-container{
	height: 100%;
	width: 100%;
}

.banner img {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    overflow: hidden;
}

.banner .swiper-slide img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transition: all 3s;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
}

.banner .swiper-slide.swiper-slide-active img{
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}

.banner .swiper-pagination {
    bottom: .4rem;
}
.banner .swiper-pagination-bullet {
    width: .33rem;
    height: .33rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: url(../images/banner-icon.png)no-repeat center;
    background-size: 100%;
}

.home-bg1 {
    background: url(../images/bg1.jpg)no-repeat center;
    background-size: cover;
    padding-top: .6rem;
    padding-bottom: .7rem;
}

.home-title>div {
    background: url(../images/title-bg.png)no-repeat left top;
    width: 2.71rem;
    padding-top: .2rem;
    background-size: 100%;
}

.home-title .cn {
    /* font-family: 'Alibaba-PuHuiTi-Light'; */
    font-family: '微软雅黑';
    font-size: .48rem;
}

.home-title .en {
    font-family: 'Futura-Book';
    color: #666;
    opacity: .4;
    white-space: nowrap;
}

.home-news {
    margin-top: .4rem;
}

.home-news .focus {
    width: 10.19rem;
    margin-right: .4rem;
}

.home-news .focus .pic {
    width: 100%;
    height: 5.52rem;
    overflow: hidden;
}

.home-news .focus .text-con {
    margin-right: .6rem;
    margin-top: -.3rem;
    background-color: #FFF;
    padding: .3rem 1.3rem .6rem .4rem;
    z-index: 2;
}

.home-news .focus .tit {
    font-size: .26rem;
}

.home-news .focus .date,
.home-news .box .date {
    color: #710008;
    font-size: .16rem;
    margin-top: .1rem;
}

.home-news .focus .swiper-button-prev,
.home-news .focus .swiper-button-next {
    top: auto;
    margin-top: 0;
    bottom: 0;
    width: .6rem;
    height: .6rem;
    background-image: url(../images/next1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: .18rem;
}

.home-news .focus .swiper-button-prev {
    left: auto;
    right: 1.2rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    background-color: #bd4d1f;
}

.home-news .focus .swiper-button-next {
    right: .6rem;
    background-color: #73151a;
}

.home-news .box .pic {
    height: 2.7rem;
    overflow: hidden;
    width: 100%;
}

.home-news .box .item {
    padding-top: .3rem;
    padding-bottom: .3rem;
    border-bottom: 1px #e1e1e1 solid;
}

.home-news .box .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-news .box .item .tit {
    font-size: .2rem;
}

.home-bg1 .content {
    margin-top: 1rem;
}

.home-bg1 .content .home-title {
    margin-left: -.3rem;
}

.home-bg1 .content .home-title>div {
    text-align: left;
    padding-left: .3rem;
}

.home-campus {
    width: 7.5rem;
}

.home-campus .pic {
    height: 4.3rem;
    overflow: hidden;
    margin-top: .4rem;
}

.home-campus .pic .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background-color: rgba(118, 0, 8, .9);
    padding: .2rem .4rem .3rem .4rem;
    color: #FFF;
}

.home-campus .pic .tit {
    font-size: .2rem;
}

.home-campus .pic .text {
    font-size: .16rem;
    margin-top: .1rem;
    opacity: .8;
}

.home-campus .item {
    border-bottom: 1px #e0e0df solid;
    margin-top: .4rem;
    padding-bottom: .3rem;
}

.home-campus .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-campus .item .tit {
    font-size: .2rem;
}

.home-campus .item .des {
    font-size: .16rem;
    color: #999;
    margin-top: .1rem;
    line-height: 1.8;
}

.home-bg1 .content .l-con {
    margin-right: .6rem;
}

.home-notice .con {
    margin-top: .5rem;
}

.home-notice .item {
    border-bottom: 1px #e4e4e4 solid;
    padding-bottom: .3rem;
    margin-top: .2rem;
}

.home-notice .item:last-child {
    border-bottom: 0;
}

.home-notice .tit {
    margin-right: .3rem;
    font-size: .2rem;
}

.home-notice .date {
    font-size: .16rem;
    color: #891c22;
}

.home-tender {
    margin-top: .3rem;
}

.home-tender .card {
    width: 48%;
    height: 2.5rem;
    background: url(../images/tbg5.jpg)no-repeat right bottom;
    background-size: cover;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    margin-top: .3rem;
    padding: .3rem;
}

.home-tender .card .date {
    font-size: .16rem;
    padding-bottom: .2rem;
    border-bottom: 1px #e2e2e2 solid;
    color: #710002;
}

.home-tender .card .tit {
    margin-top: .2rem;
    line-height: 1.8;
    font-size: .2rem;
}

.home-education {
    margin-top: 1rem;
}

.home-education .home-title {
    margin-left: -.3rem;
}

.home-education .home-title>div {
    text-align: left;
    padding-left: .3rem;
}

.home-education .con {
    align-items: flex-end;
    height: 1.75rem;
    margin-top: .2rem;
}

.home-education .card {
    width: 33.333%;
    border-bottom: 1px #c6c6c5 solid;
    height: 1.45rem;
    padding: .1rem .3rem .3rem .3rem;
    border-left: 1px #eae6e1 solid;
}

.home-education .card::after {
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
    bottom: -2px;
    width: 0;
    background-color: #72151a;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-education .tit {
    font-size: .2rem;
}

.home-education .date {
    color: #8f1d22;
    font-size: .16rem;
    margin-top: .2rem;
}

.home-education .card::before {
    content: '';
    position: absolute;
    width: .13rem;
    height: .13rem;
    border: 1px #eae6e1 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    left: -.065rem;
    top: 0;
    background-color: #FFF;
}

.home-education .arrow {
    width: .48rem;
    height: .48rem;
    z-index: 10;
    position: absolute;
    right: .55rem;
    bottom: .6rem;
    opacity: 0;
}

.home-education .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow1.png)no-repeat center;
    background-size: .11rem;
}

.home-education .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../images/r1.png)no-repeat center;
    background-size: 100%;
}

@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);
    }
}


/* home人才 */

.home-personnel {
    width: 100%;
    height: 8.43rem;
    background: url(../images/bg2.jpg)no-repeat center top;
    background-size: cover;
    padding-top: .55rem;
}

.home-personnel .home-title,
.home-personnel .home-title .en {
    color: #FFF;
}

.home-personnel .home-title>div {
    background-image: url(../images/title-bg1.png);
}

.home-personnel .content {
    height: calc(100% - 1.1rem);
}

.home-personnel .title-con .item {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #FFF;
    position: absolute;
}

.home-personnel .title-con .item>div {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-personnel .title-con .item:nth-child(1) {
    left: .2rem;
    bottom: 1.6rem;
    z-index: 10;
}

.home-personnel .title-con .item:nth-child(1)>div {
    z-index: 10;
    background-image: url(../images/t1.png);
}

.home-personnel .title-con .item:nth-child(1)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    margin-top: -1.55rem;
    opacity: .5;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-personnel .title-con .item:nth-child(2) {
    left: 2rem;
    top: .25rem;
    z-index: 1;
}

.home-personnel .title-con .item:nth-child(2)>div {
    z-index: 10;
    background-image: url(../images/t2.png);
}

.home-personnel .title-con .item:nth-child(2)::after {
    content: '';
    position: absolute;
    left: -.5rem;
    top: -.4rem;
    width: 5.3rem;
    height: 5.3rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    opacity: .3;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-personnel .title-con .item:nth-child(3) {
    top: -.6rem;
    right: 3.15rem;
    z-index: 5;
}

.home-personnel .title-con .item:nth-child(3)>div {
    z-index: 10;
    background-image: url(../images/t3.png);
}

.home-personnel .title-con .item:nth-child(3)::after {
    content: '';
    position: absolute;
    right: -.95rem;
    top: .6rem;
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    opacity: .3;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-personnel .title-con .item:nth-child(4) {
    right: .5rem;
    top: 2.2rem;
    z-index: 9;
}

.home-personnel .title-con .item:nth-child(4)>div {
    z-index: 10;
    background-image: url(../images/t4.png);
}

.home-personnel .title-con .item:nth-child(5) {
    background-image: url(../images/t5.png);
    right: 2.4rem;
    bottom: -.2rem;
    z-index: 9;
}

.home-personnel .title-con .item:nth-child(5)>div {
    z-index: 10;
    background-image: url(../images/t5.png);
}

.home-personnel .title-con .item:nth-child(5)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -.3rem;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    opacity: .3;
    z-index: -1;
    animation: 30s linear infinite ani_turn2;
    -webkit-animation: 30s linear infinite ani_turn2;
}

.home-personnel .title-con .tit {
    font-size: .36rem;
}

.home-personnel .title-con .txt {
    font-family: 'Futura-Book';
    margin-top: .1rem;
}

.home-personnel .text-content {
    z-index: 20;
    width: 5.5rem;
    height: 5.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: .5rem;
    position: relative;
}

.home-personnel .text-content .pic-con {
    width: 5.5rem;
    height: 5.5rem;
    position: relative;
    z-index: 11;
}

.home-personnel .text-content .pic-con::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: .2rem;
    background-color: #490106;
    border: 2px rgba(255, 255, 255, .5) dashed;
    z-index: -1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
    margin-left: -2.97rem;
    margin-top: -2.97rem;
}

.home-personnel .text-content .pic-con .pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.home-personnel .text-content .text {
    width: 5.1rem;
    height: 2.05rem;
    background-color: #f7f7f7;
    position: absolute;
    bottom: -1.3rem;
    right: 2.6rem;
    box-shadow: 0 .1rem .15rem rgba(0, 0, 0, .1);
    z-index: 10;
    padding: .5rem .65rem;
}

.home-personnel .text-content .date {
    font-size: .16rem;
    color: #891c22;
}

.home-personnel .text-content .tit {
    font-size: .2rem;
    border-bottom: 1px #c6c6c5 solid;
    padding-bottom: .2rem;
    margin-top: .1rem;
}

.home-personnel .text-content .arrow {
    width: .73rem;
    height: .73rem;
    position: absolute;
    right: -.3rem;
    top: -.3rem;
    z-index: 10;
}

.home-personnel .text-content .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow3.png)no-repeat center;
    background-size: .23rem;
}

.home-personnel .text-content .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r4.png)no-repeat center;
    background-size: 100%;
}

.home-bg2 {
    background: url(../images/bg3.jpg)no-repeat left top;
    background-size: cover;
    padding-top: .9rem;
    padding-bottom: 1.24rem;
}

.home-bg2 .r-con {
    width: 4.4rem;
}

.home-bg2 .r-con .home-title {
    justify-content: flex-end;
}

.home-bg2 .r-con .home-international .home-title {
    justify-content: center;
}

.home-bg2 .r-con .home-title>div {
    margin-right: -.3rem;
    text-align: right;
    padding-right: .4rem;
}

.home-collaboration {
    margin-right: .95rem;
}

.home-collaboration .home-title {
    margin-left: -.3rem;
}

.home-collaboration .home-title>div {
    text-align: left;
    padding-left: .3rem;
}

.home-collaboration .card {
    width: 47%;
    margin-right: 6%;
    margin-top: .6rem;
}

.home-collaboration .card:nth-child(even) {
    margin-right: 0;
}

.home-collaboration .card .pic {
    height: 2.75rem;
    overflow: hidden;
}

.home-collaboration .card .tit {
    font-size: .2rem;
    margin-top: .25rem;
}

.home-collaboration .card .des {
    color: #999;
    font-size: .16rem;
    line-height: 1.8;
    margin-top: .15rem;
}

.home-school {
    margin-top: .9rem;
}

.home-school .con {
    margin-top: .45rem;
}

.home-school .con>a {
    width: 50%;
    height: 1.4rem;
    color: #FFF;
    font-size: .2rem;
}

.home-school .con>a:nth-child(1) {
    background-color: #72151a;
}

.home-school .con>a:nth-child(2) {
    background-color: #aa8e57;
}

.home-school .con>a:nth-child(3) {
    background-color: #b6a27a;
}

.home-school .con>a:nth-child(4) {
    background-color: #9f302c;
}

.home-international .con {
    margin-top: .6rem;
		justify-content: center;
}

.home-international .con>a {
    width: 25%;
    color: #FFF;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    overflow: hidden;
}

.home-international .con>a:nth-child(even) {
    margin-top: -.2rem;
}

.home-international .con>a img {
    width: 100%;
}

.home-international .con .tit {
    font-size: .2rem;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    position: absolute;
    left: 50%;
    top: .5rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.home-international .con .arrow {
    width: .48rem;
    height: .48rem;
    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%);
}

.home-international .con .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r2.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-international .con .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/arrow2.png)no-repeat center;
    background-size: .11rem;
}


/* 首页科研 */

.home-keyan {
    background: #fafafa url(../images/bg8.jpg)no-repeat center top;
    overflow: hidden;
    height: 12.2rem;
    background-size: cover;
    padding-top: .7rem;
}

.home-keyan .home-title,
.homt-tell .home-title {
    margin-left: -.3rem;
}

.home-keyan .home-title>div,
.homt-tell .home-title>div {
    padding-left: .3rem;
}

.home-keyan .content {
    justify-content: flex-end;
}

.home-keyan .gallery-top {
    width: 9.85rem;
    margin-top: -1rem;
    margin-left: 0;
    margin-right: 0;
}

.home-keyan .gallery-top .pic {
    width: 100%;
    overflow: hidden;
    height: 5.65rem;
}

.home-keyan .gallery-top .text-con {
    margin-top: .5rem;
}

.home-keyan .gallery-top .text-con span {
    width: 1.35rem;
    line-height: .36rem;
    background-color: #841c21;
    color: #FFF;
    -webkit-clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    margin-right: .4rem;
}

.home-keyan .gallery-top .tit {
    font-size: .26rem;
}

.home-keyan .gallery-top .des {
    font-size: .16rem;
    color: #999;
    line-height: 1.8;
    margin-top: .15rem;
}

.home-keyan .gallery-top .swiper-slide .pic,
.home-keyan .gallery-top .swiper-slide .text-con {
    opacity: 0;
}

.home-keyan .gallery-top .swiper-slide-active .pic,
.home-keyan .gallery-top .swiper-slide-active .text-con {
    opacity: 1;
}

.home-keyan .gallery-thumbs {
    position: absolute;
    left: -3.9rem;
    width: 8.85rem;
    padding-bottom: 1.2rem;
    top: .8rem;
    z-index: 0;
		
}

.home-keyan .gallery-thumbs .swiper-slide {
    overflow: hidden;
    height: 2.15rem;
}

.home-keyan .gallery-thumbs .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 1;
}

.home-keyan .gallery-thumbs .swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 8px #78171c solid;
}

.home-keyan .gallery-thumbs .swiper-slide-active::before {
    display: none;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet {
    width: .8rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: none;
    opacity: 1;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet>div {
    height: .22rem;
    display: flex;
    align-items: center;
    width: .22rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    margin-bottom: .15rem;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet>div::after {
    content: '';
    position: absolute;
    left: -.8rem;
    right: -.8rem;
    top: 50%;
    height: 1px;
    background-color: #841c21;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet {
    margin: 0 .55rem !important;
    height: auto;
    width: auto;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet span {
    display: block;
    width: .15rem;
    height: .15rem;
    background-color: #FFF;
    border: 1px #841c21 solid;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
    z-index: 10;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet-active {
    color: #841c21;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet-active span {
    width: .2rem;
    height: .2rem;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet-active span::before {
    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%);
    background-color: #841c21;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet:first-child>div::after {
    left: .1rem;
}

.home-keyan .gallery-thumbs .swiper-pagination-bullet:last-child>div::after {
    right: .1rem;
}

.home-bg4 {
    background: url(../images/bg6.jpg)no-repeat center bottom;
    background-size: cover;
    padding-bottom: 1.55rem;
}

.homt-tell {
    overflow: hidden;
    z-index: 10;
    top: -3.8rem;
}

.homt-tell .content {
    margin-top: .55rem;
}

.homt-tell .pic-con {
    width: 9rem;
    padding-bottom: .95rem;
    z-index: 10;
		justify-content: space-between;
}

.homt-tell .pic-con::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: -2.1rem;
    height: 4.2rem;
    background: url(../images/tbg16.jpg)no-repeat center;
    background-size: cover;
    z-index: -1;
}

.homt-tell .pic-con .card {
    width: 49%;
}

.homt-tell .pic-con .card .pic {
    overflow: hidden;
    height: 2.7rem;
}

.homt-tell .pic-con .card .text-con {
    padding: .3rem .15rem;
    font-size: .2rem;
}

.homt-tell .pic-con .card .tit {
    font-size: .2rem;
    color: #FFF;
}

.homt-tell .pic-con .card .des {
    margin-top: .1rem;
    color: #FFF;
    font-size: .16rem;
    line-height: 1.8;
}

.homt-tell .pic-con .card .arrow {
    width: .48rem;
    height: .48rem;
    margin-top: .2rem;
}

.homt-tell .pic-con .card .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow2.png)no-repeat center;
    background-size: .11rem;
}

.homt-tell .pic-con .card .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r2.png)no-repeat center;
    background-size: 100%;
}

.homt-tell .text-content {
    z-index: 10;
}

.homt-tell .text-content::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    right: -2.1rem;
    z-index: -1;
    background-color: #fafafa;
}

.homt-tell .text-content .item {
    overflow: hidden;
    height: 2rem;
    padding: .4rem .5rem 0 .5rem;
}

.homt-tell .text-content .item::after {
    content: '';
    position: absolute;
    left: .5rem;
    right: .3rem;
    bottom: 0;
    height: 1px;
    background-color: #e8e8e8;
}

.homt-tell .text-content .item:last-child::after {
    display: none;
}

.homt-tell .text-content .tit {
    font-size: .2rem;
}

.homt-tell .text-content .des {
    font-size: .16rem;
    line-height: 1.8;
    color: #999;
    margin-top: .1rem;
}

.homt-tell .text-content .item span {
    position: absolute;
    display: block;
    background-color: #78171c;
    z-index: 10;
}

.homt-tell .text-content .item span.line1 {
    height: 8px;
    width: 0;
    left: 0;
    bottom: 0;
}

.homt-tell .text-content .item span.line2 {
    height: 0;
    width: 8px;
    left: 0;
    top: 0;
}

.homt-tell .text-content .item span.line3 {
    height: 8px;
    width: 0rem;
    left: 0;
    top: 0;
}

.homt-tell .text-content .item span.line6 {
    height: 8px;
    width: 0;
    right: 0;
    bottom: 0;
}

.homt-tell .text-content .item span.line5 {
    height: 0;
    width: 8px;
    right: 0;
    top: 0;
}

.homt-tell .text-content .item span.line4 {
    height: 8px;
    width: 0rem;
    right: 0;
    top: 0;
}

.home-media {
    margin-top: -2rem;
}

.home-media .home-title>div {
    align-items: flex-end;
}

.home-media .home-title .cn,
.home-media .home-title .en {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}

.home-media .home-title .cn {
    order: 2;
}

.home-media .home-title .en {
    order: 1;
}

.home-media .pic-con2 {
    width: 4rem;
}

.home-media .pic-con2>a::after,
.home-media .pic-con1 .pic1::after,
.home-media .pic-con1 .pic2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
}

.home-media .pic-con2 .pic1 {
    overflow: hidden;
    width: 100%;
    height: 4.25rem;
}

.home-media .pic-con2 .pic2 {
    overflow: hidden;
    width: 100%;
    height: 3.55rem;
    margin-top: .13rem;
}

.home-media .pic-con2 .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #FFF;
    font-size: .2rem;
		padding: 0 0.2rem 0.05rem 0.2rem;
}

.home-media .pic-con2 .text>img {
    height: .23rem;
    margin-right: .2rem;
}

.home-media .pic-con2 .pic1 .text {
    border-left: 5px #eac600 solid;
}

.home-media .pic-con2 .pic2 .text {
    border-left: 5px #ea6e00 solid;
}

.home-media .pic-con1 {
    margin-right: .1rem;
}

.home-media .pic-con1 .pic1,
.home-media .pic-con1 .pic2 {
    width: 49.25%;
    overflow: hidden;
    height: 3.05rem;
}

.home-media .pic-con1 .pic1 .text,
.home-media .pic-con1 .pic2 .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #FFF;
    font-size: .2rem;
    padding: 0 0.2rem 0.05rem 0.2rem;
}

.home-media .pic-con1 .pic1 .text>img,
.home-media .pic-con1 .pic2 .text>img {
    height: .2rem;
    margin-right: .2rem;
}

.home-media .pic-con1 .pic1 .text {
    border-left: 5px #b20008 solid;
}

.home-media .pic-con1 .pic2 .text {
    border-left: 5px #36a300 solid;
}

.home-media .pic-con1 .pic3 {
    width: 100%;
    overflow: hidden;
    height: 4.75rem;
    margin-top: .13rem;
}

.home-media .pic-con1 .pic3 .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(118, 0, 8, .9);
    font-size: .2rem;
    color: #FFF;
    z-index: 2;
    line-height: .9rem;
}

.home-media .sns {
    position: absolute;
    left: .9rem;
    width: .76rem;
    top: 2.8rem;
    z-index: 10;
}

.home-media .sns .item {
    width: 100%;
    height: .76rem;
    border: 1px #9b0007 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: .4rem;
}

.home-media .sns .wx {
    background-image: url(../images/wx1.png);
}

.home-media .sns .wb {
    background-image: url(../images/wb1.png);
}

.home-media .sns .sp {
    background-image: url(../images/sp1.png);
}

.home-media .sns .kuai {
    background-image: url(../images/kuai1.png);
}

.home-media .sns .erwma {
    position: absolute;
    top: 50%;
    right: -1.4rem;
    border-radius: 5px;
    -webkit-border-radius: ;
    -moz-border-radius: ;
    -ms-border-radius: ;
    -o-border-radius: ;
    padding: 8px;
    background-color: #FFF;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    box-shadow: 0 0 .15rem rgba(0, 0, 0, .1);
    display: none;
}

.home-media .sns .erwma::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px transparent solid;
    border-bottom: 10px transparent solid;
    border-right: 10px #FFF solid;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -10px;
}

.home-media .sns .erwma img {
    width: 100%;
}

.home-data {
    background: url(../images/bg7.jpg)no-repeat center top;
    background-size: cover;
    height: 4.52rem;
    margin-top: 2.1rem;
    padding: .7rem 1.4rem 0 .5rem;
}

.home-data .home-title {
    margin-right: 1.4rem;
}

.home-data .home-title>div {
    background-image: url(../images/title-bg1.png);
    color: #FFF;
}

.home-data .home-title .en {
    color: #FFF;
}

.home-data .text {
    font-size: .16rem;
    line-height: 2;
    color: #FFF;
}

.home-data .arrow {
    width: .7rem;
    height: .7rem;
    position: absolute;
    left: 1.25rem;
    bottom: 1.05rem;
    z-index: 10;
}

.home-data .arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../images/arrow3.png)no-repeat center;
    background-size: .23rem;
}

.home-data .arrow::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/r3.png)no-repeat center;
    background-size: 100%;
}

@font-face {
    font-family: 'Book-Antiqua';
    src: url('../fonts/Book-Antiqua.ttf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Regular';
    src: url('../fonts/SourceHanSerifCN-Regular.otf');
}

.home-data .num-box {
    position: absolute;
    right: 0;
    height: 3rem;
    background-color: #bea779;
    width: 11.7rem;
    bottom: -.5rem;
    font-family: 'SourceHanSerifCN-Regular';
    color: #FFF;
    overflow: hidden;
}

.home-data .num-box .num {
    font-family: 'Book-Antiqua';
    font-size: .48rem;
    font-weight: normal;
}

.home-data .num-box .swiper-container {
    padding-top: .9rem;
    padding-bottom: .9rem;
    margin-right: -5px;
    margin-left: -5px;
}

.home-data .num-box .swiper-slide {
    padding-left: 0;
		text-align: center;
    height: .9rem;
    border-right: 1px dashed #FFF;
}

.home-data .num-box .swiper-slide .text{
	width: 50%;
	font-size: 0.2rem;
}

.home-data .num-box .swiper-slide::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 0;
    width: 5px;
    height: 5px;
    background-color: #FFF;
}

.home-data .num-box .swiper-slide::before {
    content: '';
    position: absolute;
    right: -3px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background-color: #FFF;
}

.home-data .num-box .swiper-pagination-bullet {
    background-color: #FFF;
    opacity: 1;
}

.home-data .num-box .swiper-pagination-bullet-active {
    background-color: #9b0007;
}
.home-data .num-box .swiper-button-prev,
.home-data .num-box .swiper-button-next{
	background-position: center;
	background-repeat: no-repeat;
	background-size: 0.4rem;
	top: 60%;
	width: 0.8rem;
}
.home-data .num-box .swiper-button-prev{
	background-image: url(../images/next1.png);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.home-data .num-box .swiper-button-next{
	background-image: url(../images/next1.png);
}

.home-icon {
    margin-top: 1.5rem;
}

.home-icon .item {
    width: 2rem;
    height: 2rem;
    z-index: 10;
}

.home-icon .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #f5f3ee;
    border: 1px #760008 dashed;
    z-index: -1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-icon .item>div {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #760008 dashed;
    background-color: #FFF;
}

@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);
    }
}

.home-icon .item .icon img {
    height: .55rem;
}

.home-icon .item .tit {
    color: #760008;
    font-size: .24rem;
    margin-top: .05rem;
}

@media (min-width:1025px) {
    .home-news .focus .swiper-slide:hover .pic img,
    .home-news .box .pic:hover img,
    .home-campus .pic:hover img,
    .home-collaboration .card:hover .pic img,
    .homt-tell .pic-con .card:hover .pic img,
    .home-media .pic-con2>a:hover>img,
    .home-media .pic-con1 .pic1:hover>img,
    .home-media .pic-con1 .pic2:hover>img,
    .home-media .pic-con1 .pic3:hover>img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-notice .item:hover .tit,
    .home-school .con>a:hover {
        font-weight: bold;
    }
    .home-tender .card:hover {
        background-image: url(../images/tbg6.jpg);
        color: #FFF;
    }
    .home-tender .card:hover .date {
        color: #FFF;
        border-bottom-color: #8b2e30;
    }
    .home-education .card:hover {
        height: 100%;
    }
    .home-education .card:hover::after {
        width: 100%;
    }
    .home-education .card:hover::before {
        background-color: #6f141a;
    }
    .home-education .card:hover .arrow {
        opacity: 1;
    }
    .home-education .card:hover .arrow::after,
    .home-international .con>a:hover .arrow::after,
    .homt-tell .pic-con .card:hover .arrow::after,
    .home-data .arrow:hover::after,
    .home-personnel .text-content .text:hover .arrow::after {
        animation: 10s linear infinite ani_turn2;
        -webkit-animation: 10s linear infinite ani_turn2;
    }
    .home-international .con>a:hover {
        margin-top: -.3rem;
    }
    .homt-tell .text-content .item:hover {
        background-color: #f0f0f0;
    }
    .homt-tell .text-content .item:hover span.line1,
    .homt-tell .text-content .item:hover span.line4 {
        width: .8rem;
    }
    .homt-tell .text-content .item:hover span.line2,
    .homt-tell .text-content .item:hover span.line5 {
        height: 100%;
        ;
    }
    .homt-tell .text-content .item:hover span.line3,
    .homt-tell .text-content .item:hover span.line6 {
        width: 3rem;
    }
    .home-media .sns .item:hover .erwma {
        display: block;
    }
    .home-media .sns .item:hover {
        background-color: #9b0007;
    }
    .home-media .sns .item:hover.wx {
        background-image: url(../images/wx2.png);
    }
    .home-media .sns .item:hover.wb {
        background-image: url(../images/wb2.png);
    }
    .home-media .sns .item:hover.sp {
        background-image: url(../images/sp2.png);
    }
    .home-media .sns .item:hover.kuai {
        background-image: url(../images/kuai2.png);
    }
    .home-icon .item:hover::after {
        animation: none;
        -webkit-animation: none;
    }
}

@media (max-width:1199px) {
    .home-news .focus .date,
    .home-news .box .date,
    .home-notice .date,
    .home-campus .pic .text,
    .home-tender .card .date,
    .home-campus .item .des,
    .home-education .date,
    .home-collaboration .card .des,
    .homt-tell .pic-con .card .des,
    .homt-tell .text-content .des,
    .home-personnel .text-content .date,
    .home-keyan .gallery-top .des {
        font-size: 12px;
    }
    .home-news .focus .tit {
        font-size: 16px;
    }
    .home-news .box .item .tit,
    .home-notice .tit,
    .home-campus .pic .tit,
    .home-tender .card .tit,
    .home-campus .item .tit,
    .home-education .tit,
    .home-collaboration .card .tit,
    .home-international .con .tit,
    .home-school .con>a,
    .homt-tell .pic-con .card .tit,
    .homt-tell .text-content .tit,
    .home-media .pic-con1 .pic2 .text,
    .home-media .pic-con2 .text,
    .home-data .text,
    .home-icon .item .tit,
    .home-personnel .text-content .tit,
    .home-keyan .gallery-top .tit {
        font-size: 14px;
    }
    .home-data {
        padding-right: .2rem;
    }
    .home-data .home-title {
        margin-right: .7rem;
    }
    .home-bg2 .r-con .home-title>div {
        margin-left: 0;
        width: auto;
    }
    .home-personnel .text-content .text {
        padding: .3rem;
    }
    .home-keyan .gallery-thumbs {
        width: 9rem;
        left: -2rem;
    }
    .home-keyan .gallery-thumbs .swiper-pagination-bullet>div::after {
        left: -1rem;
        right: -1rem;
    }
		
		.banner .my-video{
			height: 100%;
			object-fit: fill;
		}
}

@media (max-width:767px) {
    .home-news .focus,
    .home-campus,
    .home-bg2 .r-con,
    .home-collaboration .card,
    .homt-tell .pic-con,
    .home-media .pic-con2,
    .home-keyan .gallery-top,
    .home-keyan .gallery-thumbs {
        width: 100%;
    }
    .home-news .focus .text-con,
    .home-news .focus,
    .home-bg1 .content .l-con,
    .home-collaboration,
    .home-collaboration .card,
    .home-media .pic-con1 {
        margin-right: 0;
    }
    .home-news .focus .swiper-button-next {
        right: 0;
    }
    .home-news .focus .swiper-button-prev {
        right: .6rem;
    }
    .home-news .box,
    .home-bg2 .r-con,
    .home-keyan .gallery-top {
        margin-top: .4rem;
    }
    .home-news .box .pic,
    .home-collaboration .card .pic {
        height: 3.8rem;
    }
    .home-education .con,
    .home-personnel {
        height: auto;
    }
    .home-education .card {
        width: 100%;
        margin-top: .3rem;
    }
    .homt-tell {
        top: 0;
        margin-top: .4rem;
    }
    .homt-tell .pic-con::after {
        right: -.2rem;
    }
    .homt-tell .text-content::after {
        left: -.2rem;
    }
    .homt-tell .text-content .item {
        padding-left: 0;
        padding-right: 0;
        height: auto;
        padding-bottom: .4rem;
    }
    .homt-tell .text-content .item::after {
        left: 0;
        right: 0;
    }
    .homt-tell .text-content .item span,
    .home-media .sns {
        display: none;
    }
    .home-media {
        display: block;
        margin-top: .5rem;
    }
    .home-media .home-title>div,
    .home-media .content {
        display: block;
    }
    .home-media .home-title .cn,
    .home-media .home-title .en {
        writing-mode: inherit;
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
    }
    .home-media .content {
        margin-top: .4rem;
    }
    .home-media .pic-con2 {
        margin-top: .2rem;
    }
    .home-data {
        display: block;
        height: auto;
        padding: .4rem .3rem 0 .3rem;
        margin-top: .7rem;
    }
    .home-data .home-title>div {
        margin-left: -.4rem;
    }
    .home-data .num-box {
        position: inherit;
        left: auto;
        right: auto;
        width: auto;
        bottom: auto;
        margin-top: .3rem;
    }
    .home-data .arrow {
        left: auto;
        right: 0;
        bottom: auto;
        top: .2rem;
    }
    .home-data .text {
        margin-top: .3rem;
    }
    .home-icon {
        margin-top: .7rem;
    }
    .home-icon .item {
        margin-top: .3rem;
    }
    .home-personnel {
        padding-bottom: .4rem;
    }
    .home-personnel .title-con {
        margin-top: 2rem;
    }
    .home-personnel .title-con .item {
        position: initial;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
        margin-right: .15rem;
        margin-top: .3rem;
    }
    .home-personnel .title-con .item:nth-of-type(3n) {
        margin-right: 0;
    }
    .home-personnel .title-con .item::after {
        display: none !important;
    }
    .home-personnel .title-con .tit {
        font-size: 20px;
    }
    .home-personnel .text-content .text {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        height: auto;
    }
    .home-keyan {
        height: auto;
    }
    .home-keyan .content {
        display: block;
    }
    .home-keyan .gallery-thumbs {
        position: initial;
        left: auto;
        top: auto;
        margin-top: .4rem;
    }
    .home-keyan .gallery-thumbs .swiper-slide {
        height: 1.8rem;
    }
    .home-keyan .gallery-thumbs .swiper-slide-active::after {
        border-width: 5px;
    }
		
		.home-personnel .title-con .item>div{
			padding: 0.3rem;
		}
		.home-personnel .title-con .txt,
		.home-personnel .title-con .tit{
			text-align: center;
		}
		.ui .xh .item .pic img{
			object-fit: contain;
		}
		
		.banner{
			height: auto;
		}
		.banner .swiper-slide{
			height: auto;
		}
		.banner .my-video{
			height: 100%;
		}
}

/* ie兼容 */
@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {
	.home-keyan .gallery-top .des,
	.homt-tell .text-content .des,
	.homt-tell .pic-con .card .des,
	.home-collaboration .card .des,
	.home-campus .item .des{
		max-height: 0.57rem;
	}
	
	.homt-tell .text-content .tit,
	.homt-tell .pic-con .card .tit,
	.home-news .box .item .tit{
		max-height: 0.54rem;
	}
	
	
	.home-collaboration .card .tit,
	.home-campus .item .tit,
	.home-campus .pic .tit,
	.home-media .pic-con2 .text span{
		max-height: 0.27rem;
		white-space: nowrap;
	}
	
	.home-campus .pic .text{
		max-height: 0.22rem;
		white-space: nowrap;
	}
	
	.home-news .focus .tit{
		max-height: 0.35rem;
		white-space: nowrap;
	}
	
}
.pb_sys_common{ line-height:32px !important;}


.home-data .swiper-button-prev{display:none;}
.home-data .swiper-button-next{display:none;}