@charset "UTF-8";
/*CSS样式重写*/
body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,pre{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    min-width: 1200px;
}
a{
    color: #333;
    text-decoration:none;
    transition: .3s;
}
a:hover{
    color: #B0152E;
    text-decoration:none;
}
input,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
    object-fit: cover;
}
::selection{
    color: #fff;
    background: #B0152E;
}

/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.container{
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*头部*/
.header .top{
    height: 40px;
    line-height: 40px;
    background: #B0152E;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.header .top .lf{
    color: #fff;
    font-size: 13px;
}
.header .top a{
    color: #fff;
    padding-right: 15px;
}
.header .top form{
    display: inline-block;
    height: 40px;
}
.header .top input[type='text']{
    height: 30px;
    line-height: 30px;
    width: 30px;
    padding: 0;
    border: none;
    color: #fff;
    background: #8D0E22;
    border-radius: 25px;
    transition: .3s;
}
.header .top input[type='submit']{
    width: 30px;
    height: 30px;
    line-height: 28px;
    border: none;
    position: absolute;
    top: 6px;
    right: 1px;
    cursor: pointer;
    border-radius: 50%;
    background: #8D0E22 url(../images/search.png) no-repeat center center;
}
.header .top form:hover input[type='text']{
    width: 150px;
    padding: 0 30px 0 10px;
}
.header .nav{
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 85px;
    background: rgba(255,255,255,.8);
    z-index: 999;
}
.header .logo{
    float: left;
    height: 85px;
    line-height: 85px;
}
.header .logo img{
    animation: zoomIn 1s;
}
.toggle{
    display: none;
}

/*导航栏*/
.menu{
    float: right;
    margin-top: 40px;
}
.menu>li{
    float: left;
    position: relative;
}
.menu>li>a{
    display: block;
    height: 45px;
    padding: 0 12px;
    font-size: 16px;
}
.menu>li:hover>a:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 0;
    border-bottom: 3px solid #DF0023;
    z-index: 9999;
}
.menu>li span{
    display: none;
}
.second-menu{
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    background: rgba(223,0,35,.6);
    z-index: 999;
    display: none;
}
.second-menu a{
    position: relative;
    display: block;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #F2F0E5;
}
.second-menu a:hover{
    background: rgba(223,0,35,.7);
}
.menu>li:hover .second-menu{
    /*display: block;*/
}

.section{
    position: relative;
    min-height: 500px;
    background: #fff;
}

/*新闻聚焦、媒体张院*/
.news-box{
    float: left;
    width: 850px;
    height: 328px;
    margin-top: -328px;
    background: rgba(0,0,0,.85);
}
.news-box .title{
    height: 50px;
    line-height: 50px;
    background: #B0152E;
}
.news-box .title a{
    color: #fff;
    font-size: 18px;
}
.news-box .title .rt{
    margin-right: 40px;
}
.news-box .title .rt a{
    position: relative;
    padding-left: 25px;
}
.news-box .title .rt a:before{
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 17px;
    background: url(/r/cms/www/default/images/enter.png) no-repeat;
}
.news-box .title .rt:hover{
    text-decoration: underline;
}
.news-box .title .tab{
    margin-right: 300px;
}
.news-box .title .tab a{
    float: left;
    width: 190px;
    line-height: 50px;
    text-align: center;
}
.news-box .title .tab a.on{
    background: #830519;
}
.news-box .info-box{
    padding: 20px 35px;
}
.info-box .thumbnail{
    height: 90px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #5F6060;
}
.info-box .thumbnail .lf{
    width: 160px;
    height: 90px;
    overflow: hidden;
}
.info-box .thumbnail img{
    display: inline-block;
    width: 100%;
}
.info-box .thumbnail img:hover{
    transform: scale(1.1);
}
.info-box .thumbnail .info{
    margin-left: 180px;
}
.info-box .thumbnail .info a{
    color: #fff;
    font-size: 18px;
    font-weight: normal;
}
.info-box .thumbnail .info a:hover{
    color: #B0152E;
}
.info-box .thumbnail .info p{
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    margin-top: 10px;
    color: #A5A5A5;
    font-size: 12px;
}
.info-box ul{
    margin: 5px -20px;
    overflow: hidden;
}
.info-box ul li{
    float: left;
    width: 50%;
    padding: 0 20px;
    margin-top: 15px;
}
.info-box ul li p{
    margin-right: 60px;
    color: #fff;
}
.info-box ul li a{
    color: #fff;
}
.info-box ul li p:hover,
.info-box ul li a:hover{
    color: #B0152E;
}
.info-box ul li span{
    float: right;
    color: #B8B9B9;
}
.info-box>div{
    display: none;
}
.info-box>div.on{
    display: block;
}

/*通知公告*/
.notice{
    float: right;
    width: 350px;
    height: 435px;
    margin-top: -435px;
    background: rgba(0,0,0,.8);
    box-sizing: border-box;
}
.notice .heading{
    height: 58px;
    line-height: 58px;
    background: #B0152E;
}
.notice .heading:after{
    content: '';
    display: block;
    clear: both;
}
.notice .heading .rt{
    margin-right: 20px;
}
.notice .heading i{
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    background: #D4808E;
    border-radius: 50%;
}
.notice .heading .rt:hover i{
    background: #fff;
}
.notice .heading .lf{
    position: relative;
    padding-left: 70px;
}
.notice .heading .lf:before{
    content: '';
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 29px;
    height: 58px;
    background: url(/r/cms/www/default/images/notice.png) no-repeat center center;
}
.notice .heading h3{
    color: #fff;
    font-size: 20px;
    font-weight: normal;
}

.notice ul{
    padding: 10px 20px;
}
.notice ul li{
    margin-bottom: 10px;
}
.notice ul li span{
    float: left;
    line-height: 25px;
    color: #999;
}
.notice ul li p{
    margin-left: 60px;
    font-size: 16px;
    height: 50px;
    line-height: 25px;
    overflow: hidden;
}
.notice ul li p a{
    color: #fff;
}
.notice ul li p a:hover{
    color: #B0152E;
}

.link-box{
    height: 110px;
}
.link{
    float: left;
    width: 850px;
    margin-top: 40px;
}
.link li{
    float: left;
    width: 25%;
    line-height: 35px;
    font-size: 16px;
    text-align: center;
    position: relative;
}
.link li img{
    padding-right: 10px;
}
.link li a:hover{
    font-weight: bold;
}
.link li a:hover img{
    animation: swing 1s;
}
.link dl{
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    padding: 5px 0;
    max-height: 160px;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #ddd, -2px -2px 2px #ddd;
    display: none;
}
.link dt{
    line-height: 30px;
}
.link li:hover dl{
    display: block;
    animation: zoomIn 1s;
}

.subject{
    float: right;
    position: relative;
    width: 350px;
    margin-top: 20px;
}
.subject .bd{
    width: 286px;
    height: 69px;
    margin: 0 auto;
    overflow: hidden;
}
.subject .bd li{
    float: left;
    width: 100%;
}
.subject .bd img{
    display: inline-block;
    width: 286px;
    height: 69px;
}
.subject>a{
    position: absolute;
    top: 50%;
    margin-top: -17px;
    color: #000;
    font: bolder 30px '宋体';
}
.subject .prev{
    left: 10px;
}
.subject .next{
    right: 10px;
}

/*尾部*/
.footer{
    height: 125px;
    background: #990920;
}
.footer .container{
    height: 100%;
}
.footer .lf{
    margin-top: 28px;
}
.footer .img{
    position: absolute;
    top: 22px;
    right: 0;
}
.footer .img img{
    border: 0px solid #fff;
}
.footer .img span{
    display: inline-block;
    line-height: 25px;
    position: relative;
    top: 15px;
    right: 5px;
    color: #fff;
}
.footer p{
    line-height: 30px;
    padding-top: 32px;
    margin-left: 65px;
    color: #fff;
}

/*幻灯片*/
.slideBox{
    margin-top: -40px;
    position:relative;
    text-align: center;
    overflow: hidden;
}
.slideBox .bd ul{
    width: 100%;
}
.slideBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
    width: 100%;
}
.slideBox .bd img{
    display:inline-block;
    width: 100%;
}
.slideBox>a{
    position: absolute;
    top: 50%;
    left: 0;
    width: 35px;
    height: 60px;
    line-height: 60px;
    margin-top: -30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    font-family: '宋体';
    text-align: center;
    background: rgba(0,0,0,.5);
    z-index: 99;
    display: none;
}
.slideBox .next{
    left: auto;
    right: 0;
}
.slideBox>a:hover{
    background: rgba(176,21,46,.5);
}
.slideBox:hover>a{
    display: block;
}

.banner{
    position: relative;
    margin-top: 85px;
}
.banner img{
    width: 100%;
}
.banner .topic{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -60px;
    padding: 25px 35px;
    color: #fff;
    font-size: 22px;
    background: #B0152E;
}
.banner .topic:before{
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    bottom: 20px;
    width: 3px;
    background: #fff;
}
.banner .topic span{
    display: inline-block;
    margin-bottom: 2px;
    font-size: 26px;
    font-family: 'Arial';
    text-transform: capitalize;
}

/*面包屑*/
.bread{
    height: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    background: #F6F6F6;
    border-bottom: 1px solid #E9E9E9;
}
.bread li{
    float: left;
    padding: 0 20px;
    border-right: 1px solid #E0E0E0;
}
.bread li:first-child{
    border-left: 1px solid #E0E0E0;
}
.bread  a{
    color: #666;
}
.bread a:hover{
    color: #B0152E;
}

/*左侧导航*/
.side{
    float: left;
    width: 260px;
    padding-bottom: 50px;
    background: #EEEEEE;
}
.side p{
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    color: #fff;
    font-size: 20px;
    background: #B0152E;
}
.side li a{
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    padding-left: 30px;
    border-bottom: 1px solid #E2E2E2;
}
.side li a:after{
    content: '>';
    position: absolute;
    top: 0;
    right: 25px;
    color: #8F8F8F;
    font-weight: bolder;
    font-family: '宋体';
}
.side li.on a{
    background: #E2E2E2;
}
.side li.on a:after{
    color: #B0152E;
}
.side li.on a:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: #B0152E;
}
.side .rt{
    margin-top: 20px;
    display: none;
}

/*右侧主体*/
.column{
    margin-left: 300px;
    padding-bottom: 50px;
}
.column>h2{
    height: 60px;
    line-height: 57px;
    border-bottom: 2px solid #D3D3D3;
}
.column>h2 span{
    display: inline-block;
    font-size: 24px;
    font-weight: normal;
    border-bottom: 3px solid #B30004;
}
.wd{
    margin-left: 0;
}

/*董事会*/
.board-list{
    margin-top: 40px;
}
.board-list li{
    margin-top: 25px;
}
.board-list li .lf{
    width: 132px;
    height: 184px;
    overflow: hidden;
}
.board-list li img{
    display: inline-block;
    width: 132px;
    height: 184px;
}
.board-list li .info{
    margin-left: 165px;
    height: 183px;
    border-bottom: 1px solid #DCDCDC;
}
.board-list li h3{
    font-size: 24px;
}
.board-list li p{
    color: #6E6E6E;
    font-size: 16px;
    margin-top: 15px;
}

/*博鱼体育登录入口领导*/
.leader-list{
    margin: 20px -20px 0;
    overflow: hidden;
}
.leader-list li{
    float: left;
    width: 50%;
    padding: 0 20px;
    margin-top: 30px;
}
.leader-list li h3{
    padding-top: 10px;
    font-size: 20px;
}
.leader-list li h3 span{
    font-size: 18px;
    font-weight: normal;
    padding-left: 20px;
}
.leader-list li p{
    height: 60px;
    line-height: 20px;
    overflow: hidden;
    font-size: 14px;
    text-align: justify;
    margin: 20px 0 30px;
}
.leader-list li .info>a{
    color: #BC1900;
}

/*管理机构、教学机构*/
.org-list{
    margin: 15px 0;
    overflow: hidden;
}
.org-list li{
    float: left;
    width: 45%;
    margin-right: 30px;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #E5E5E5;
}
.org-list li a{
    position: relative;
    padding-left: 25px;
    font-size: 18px;
}
.org-list li a:before{
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #B0152E;
    border-radius: 50%;
    transition: .3s;
}
.org-list li a:hover:before{
    left: 5px;
}

/*通用：列表页*/
.common-list li{
    height: 60px;
    line-height: 60px;
    margin-top: 10px;
    border-bottom: 1px solid #E5E5E5;
}
.common-list li .lf{
    position: relative;
    font-size: 16px;
}
.common-list li span{
    color: #B0152E;
    font-size: 24px;
}
.common-list li .lf:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: #B0152E;
}
.common-list li p{
    position: relative;
    margin-left: 130px;
    padding-right: 60px;
    font-size: 18px;
}
.common-list li p:after{
    content: '';
    position: absolute;
    top: 22px;
    right: 20px;
    width: 23px;
    height: 15px;
    background: url(/r/cms/www/default/images/more.png) no-repeat;
    transition: .3s;
}
.common-list li p:hover:after{
    right: 0;
}

/*校园剪影*/
.gallery ul{
    margin: 10px -9px;
    overflow: hidden;
}
.gallery ul li{
    position: relative;
    float: left;
    width: 288px;
    margin: 9px;
    text-align: center;
    cursor: pointer;
}
.gallery ul li a{
    display: block;
    width: 288px;
    height: 214px;
    padding: 5px;
    border: 1px solid #E6E6E6;
    outline: 1px solid #eee;
    overflow: hidden;
    box-sizing: border-box;
}
.gallery ul li img{
    display: inline-block;
    width: 276px;
    height: 202px;
}
.gallery ul li:hover img{
    transform: scale(1.10);
}
.gallery ul li p{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    margin-left: -100px;
    color: #fff;
    font-size: 18px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: none;
}
.gallery ul li:hover:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    z-index: 9;
}
.gallery ul li:hover p{
    display: block;
    z-index: 10;
    animation: rotateInDownRight .5s;
}

.modal{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    display: none;
    z-index: 99999;
}
.modal-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.modal-img img{
    max-width: 650px;
    border: 6px solid #fff;
    cursor: pointer;
}
.modal p{
    margin-top: 50px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.modal a{
    cursor: pointer;
}
.modal .close{
    position: absolute;
    top: 20%;
    right: 20%;
    width: 20px;
    height: 20px;
    background: url(/r/cms/www/default/images/icons.png) no-repeat -108px -22px;
}
.modal .prev,
.modal .next{
    position: absolute;
    top: 50%;
    left: 20%;
    width: 35px;
    height: 65px;
    transform: translateY(-50%);
    background: url(/r/cms/www/default/images/icons.png) no-repeat 0 0;
}
.modal .next{
    left: auto;
    right: 20%;
    background-position-x: -45px;
}

/*详情页*/
.detail{
    margin: 30px 0;
}
.caption{
    text-align: center;
}
.caption h3{
    font-size: 24px;
    font-weight: normal;
}
.caption p{
    margin-top: 10px;
}
.caption p span{
    color: #8F8F8F;
    margin: 0 10px;
}
.content{
    padding-top: 25px;
    min-height: 300px;
    font-size: 16px;
    line-height: 1.5em;
    text-align: justify;
}

/*分页*/
.pagebox_jump {
    display:none;
}
.pagebox {
    font-size: 12px;
    overflow: hidden;
    text-align: center;
    margin: 25px 0;
}
.pagebox span {
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    margin-right: 2px;
    overflow: hidden;
    text-align: center;
}
.pagebox span a {
    display: block;
    overflow: hidden;
}
.pagebox span.pagebox_pre_nolink {
    border: 1px solid #ddd;
    color: #999;
    cursor: default;
    height: 21px;
    line-height: 21px;
    text-align: center;
    padding: 0 8px;
}
.pagebox span.pagebox_pre {
    color: #3568b9;
    height: 23px;
}
.pagebox span.pagebox_pre a, .pagebox span.pagebox_pre a:visited, .pagebox span.pagebox_next a, .pagebox span.pagebox_next a:visited {
    border: 1px solid #b8b8b8;
    color: #b8b8b8;
    cursor: pointer;
    height: 21px;
    line-height: 21px;
    text-align: center;
    text-decoration: none;
    width: 53px;
}
.pagebox span.pagebox_pre a:hover, .pagebox span.pagebox_pre a:active, .pagebox span.pagebox_next a:hover, .pagebox span.pagebox_next a:active {
    border: 1px solid #363636;
    color: #363636;
}
.pagebox span.pagebox_num_nonce {
    background: #d20001 none repeat scroll 0 0;
    border: 1px solid #ab0101;
    color: #fff;
    cursor: default;
    height: 21px;
    line-height: 21px;
    padding: 0 8px;
}
.pagebox span.pagebox_num_nonce a{
    color: #fff;
}
.pagebox span.pagebox_num {
    color: #3568b9;
    height: 23px;
}
.pagebox span.pagebox_num a, .pagebox span.pagebox_num a:visited {
    border: 1px solid #b8b8b8;
    color: #8a8a8a;
    cursor: pointer;
    height: 21px;
    line-height: 21px;
    padding: 0 8px;
    text-decoration: none;
}
.pagebox span.pagebox_num a:hover, .pagebox span.pagebox_num a:active {
    border: 1px solid #363636;
    color: #363636;
}
.pagebox span.pagebox_num_ellipsis {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #393733;
    line-height: 23px;
    width: 22px;
}
.pagebox span.pagebox_next_nolink {
    border: 1px solid #ddd;
    color: #999;
    cursor: default;
    height: 21px;
    line-height: 21px;
    text-align: center;
    width: 53px;
}