﻿@charset "utf-8";
#content {
    width: auto;
    min-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* 轮播大图 */
.banner {
    position: relative;
    clear: both;
}
.banner .bd li {
    display: block;
    width: 100%;
    background-size: cover !important;
    animation: slideBanner 8s ease-in-out 1;
    -webkit-animation: slideBanner 8s ease-in-out 1;
}
.banner .bd li a {
    display: block;
}
.banner .bd .con {
    display: none;
}
.banner .hd {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
    text-align: center;
    font-size: 0;
}
.banner .hd ul{
    display: inline-block;
    margin: 0 auto;
    height: 6px;
    padding: 7px 14px;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.banner .hd li {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    width: 40px;
    height: 6px;
    background: #e2e2e2;
    transition: all 0.5s;
}
.banner .hd li span {
    display: none;
}
.banner .hd .on {
    background: #c30909;
}
@keyframes slideBanner {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* row --------------------------------- */
.row { clear: both; min-width: 1200px; width: 100%; }
.row-news{
    padding: 45px 0 65px;
    background-color: #f9f9f9;
}
.row-bg-pic{
    overflow: hidden;
    background:#f9f9f9 url(../../base/img/ind-red-bg.jpg) center 88px no-repeat;
}


/* 通用框 */
.ind-box{
    overflow: hidden;
}
.ind-box .hd{
    display: flex;
    height: 46px;
    margin-bottom: 25px;
    align-items: center;
    justify-content: space-between;
}
.ind-box .hd strong{
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: normal;
    color: #d53428;
}
.ind-box .hd strong a{
    font-weight: bold;
    color: #d53428;
}
.ind-box .hd .eng{
    text-transform: uppercase;
    padding-top: 6px;
    margin-left: 12px;
    font-size: 16px;
    color: #d53428;
}
.ind-box .hd .more{
    padding: 0 14px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    color: #d53428;
    background-color: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.ind-box .hd .more:hover{
    color: white;
    background-color: #d53428;
}

/* 学校新闻 */
.box-news{
    width: 720px;
    float: left;
    margin-right: 60px;
}

/* 通知公告-信息列表 */
.notice-list{
    overflow: hidden;
    background-color: #fff;
}
.notice-list li{
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.notice-list a{
    position: relative;
    z-index: 1;
    display: block;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 14px 70px 14px 38px;
    font-size: 16px;
    border-bottom: 1px solid #f2f2f2;
}
.notice-list a::before,
.notice-list a::after{
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.notice-list a::before{
    left: 19px;
    width: 5px;
    height: 5px;
    margin-right: 13px;
    border: 2px solid #333;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.notice-list a::after{
    font-family: "font-webicon";
    content: "\e605";
    right: 20px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 10px;
    color: white;
    background-color: #d4d4d4;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.notice-list a:hover{
    color: white;
}
.notice-list a:hover::before{
    border-color: white;
}
.notice-list a:hover::after{
    background-color: white;
    color: #c30909;
}
.notice-list li::after{
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    float: left;
    overflow: hidden;
    background-color: #c30909;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.notice-list li:hover::after{
    width: 100%;
}


/* 其他链接列表 ------------------*/
.ind-other-links{
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 32px 0 38px;
    margin-bottom: 50px;
    background-color: #fff;
}
.ind-other-links li{
    display: flex;
    height: 106px;
    width: calc(100% / 6);
}
.ind-other-links li a{
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding-top: 64px;
    line-height: 42px;
    text-align: center;
    border-right: 1px solid #e8e8e8;
}
.ind-other-links li:nth-last-child(1) a{
    border-right: 0;
}
.ind-other-links li a::before{
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 20px;
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    background:  url(../../base/img/ind-links-icon.png) center 7px no-repeat;
    -webkit-transition:all 1s;
    -moz-transition:all 1s;
    -ms-transition:all  1s;
    -o-transition:all 1s;
    transition:all 1s;
}
.ind-other-links li:hover a::before{
    background-position: center -43px;
}
.ind-other-links li:nth-child(2) a::before{
    background-position: center -100px;
}
.ind-other-links li:nth-child(2):hover a::before{
    background-position: center -150px;
}
.ind-other-links li:nth-child(3) a::before{
    background-position: center -200px;
}
.ind-other-links li:nth-child(3):hover a::before{
    background-position: center -250px;
}
.ind-other-links li:nth-child(4) a::before{
    background-position: center -300px;
}
.ind-other-links li:nth-child(4):hover a::before{
    background-position: center -350px;
}
.ind-other-links li:nth-child(5) a::before{
    background-position: center -400px;
}
.ind-other-links li:nth-child(5):hover a::before{
    background-position: center -450px;
}
.ind-other-links li:nth-child(6) a::before{
    background-position: center -500px;
}
.ind-other-links li:nth-child(6):hover a::before{
    background-position: center -550px;
}

/* 图文信息列表 */
.pic-title-intro-list{
    overflow: hidden;
    padding: 20px 15px 15px;
    background-color: #fff;
}
.pic-title-intro-list li{
    width: 360px;
    margin: 0 5px;
    padding: 10px;
    float: left;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.pic-title-intro-list li .pic{
    overflow: hidden;
}
.pic-title-intro-list li .con{
    overflow: hidden;
    padding-top: 25px;
}
.pic-title-intro-list li .date{
    font-size: 14px;
    color: #999;
}
.pic-title-intro-list li .tit{
    display: block;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 10px;
}
.pic-title-intro-list li .con{
    line-height: 1.6;
    font-size: 14px;
    color: #999;
}
.pic-title-intro-list li:hover{
    background-color: #c30909;
}
.pic-title-intro-list li:hover .date{
    color: rgba(255,255,255,0.8);
}
.pic-title-intro-list li:hover .con{
    color: rgba(255,255,255,0.7);
}
.pic-title-intro-list li:hover .tit{
    color: white;
}


/* 文章-焦点图轮播 */
#focus-news{
    width: 490px;
    float: left;
    margin-right: 30px;
    background: #fff;
}
#focus-news .pic img{
    width: 100% !important;
    height: 326px !important;
}


/* 图文列表 */
.pic-intro-list{
    overflow: hidden;
    padding: 15px;
    background-color: #fff;
}
.pic-intro-list li{
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 15px;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.pic-intro-list li .pic{
    width: auto;
    float: left;
    margin-right: 30px;
}
.pic-intro-list li .con{
    overflow: hidden;
}
.pic-intro-list li .tit{
    display: block;
    font-size: 16px;
}
.pic-intro-list li .intro{
    font-size: 14px;
    color: #999;
}
.pic-intro-list li .date{
    padding-left: 20px;
    font-size: 12px;
    color: #999;
    background:  url(../../base/img/dateicon.png) left center no-repeat;
}
.pic-intro-list li:hover{
    background-color: #c30909;
}
.pic-intro-list li:hover .tit{
    color: white;
}
.pic-intro-list li:hover .date{
    color: rgba(255,255,255,0.7);
}
.pic-intro-list li:hover .intro{
    color: rgba(255,255,255,0.8);
}


/* 专题专栏 */
#box-specail .mhd{
    margin-bottom: 20px;
}
#box-specail .mbd{
    padding: 20px;
    overflow: hidden;
    background-color: #fff;
}
#box-specail .node-page{
    padding: 20px 0 0;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    vertical-align: top;
}
#box-specail .node-page ul{
    display: inline-block;
    margin: 0 auto;
    height: 6px;
    text-align: center;
    vertical-align: top;
}
#box-specail .node-page li {
    float: left;
    margin: 0 5px;
    width: 40px;
    height: 6px;
    line-height: 6px;
    text-align: center;
    background: #e2e2e2;
    cursor: pointer;
    color: #fff;
    font-size: 0;
}
#box-specail .node-page li.on {
    background: #c30909;
}
/* 专题专栏-图片列表 */
#box-specail .node-pic-list li{
    width: 370px;
    float: left;
    margin-right: 25px;
    overflow: hidden;
}
#box-specail .node-pic-list ul>li:nth-last-child(1){
    margin-right: 0;
}
#box-specail .node-pic-list li .pic{
    overflow: hidden;
}
#box-specail .node-pic-list li img{
    width: 100%;
    height: auto;
}
#box-specail .node-pic-list li .tit{
    display: none;
}