@charset "UTF-8";

:root{
    --varColor: #A52C27;
}

body,p,h1,h2,h3,h4,h5,h6,ul,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: #03366b;
    text-decoration:none;
}
input,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}
.img{
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
.img img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.img:hover img{
    transform: scale(1.1);
}
table{
    border-collapse: collapse;
}
table tr th, table tr td{
    padding: 5px 10px;
    border: 1px solid gray;
}
.lf{
    float: left;
}
.rt{
    float: right;
}
.container{
    width: 1400px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    /* padding: 10px; */
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipsis{
    /* white-space: nowrap; */
    /* text-overflow: ellipsis; */
    /* overflow: hidden; */
}
.ellipsis-2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/*头部*/
.header{
    position: relative;
}
.header .top{
    height: 126px;
    background: url(../images/header.jpg) no-repeat center center;
    background-size: 100% 100%;
    /* border-radius: 20px 20px 0px 0px; */
}
.header .logo{
    float: left;
    margin-top: 30px;
}
.header .search{
    float: right;
    margin-top: 20px;
}
.header .search p{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: right;
}
.header .search p img{
    margin-right: 10px;
}
.header .search p a{
    color: #fff;
}
.header .search form{
    position: relative;
}
.header .search input[type='text']{
    width: 271px;
    height: 39px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(249,166,168,0.99);
    padding: 0 39px 0 10px;
    box-sizing: border-box;
}
.header .search input[type='submit']{
    position: absolute;
    top: -9px;
    right: 0;
    width: 39px;
    height: 39px;
    border: none;
    background: url(../images/search.png) no-repeat center center;
}
.header .toggle{
    display: none;
}
/*导航栏*/
.nav{
    height: 60px;
    background: #f7c757;
}
.menu{
    display: flex;
}
.menu>li{
    position: relative;
    flex-grow: 1;
    font-size: 18px;
}
.menu>li:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--varColor);
    transition: .5s;
}
.menu>li:hover:before{
    width: 100%;
}
.menu>li>a{
    display: block;
    height: 60px;
    line-height: 60px;
    text-align: center;
    /* color: #fff; */
}
.menu .second-menu{
    position: absolute;
    top: 60px;
    left: 0;
    min-width: 100%;
    width: max-content;
    display: none;
    z-index: 999;
}
.menu .second-menu a{
    display: block;
    line-height: 50px;
    text-align: center;
    background-color: rgba(255,255,255,.8);
}
.menu .second-menu a:hover{
    color: #fff;
    background: rgba(89, 114, 98, 0.8);
}
/*轮播图*/
#slide .swiper-pagination{
    bottom: 5%;
}
#slide .swiper-pagination-bullet{
    width: 30px;
    height: 5px;
    background: #E6E6E6;
    border-radius: 0;
    opacity: 1;
}
#slide .swiper-pagination-bullet-active{
    background: #f2ba02;
}
/*主体*/
.section{
    position: relative;
    min-height: 300px;
    background: #f2f2f2;
}
.title{
    position: relative;
    height: 30px;
    line-height: 30px; width:95%;   margin: 0 auto;
 margin-top:20px; margin-bottom:20px;
 
    padding-bottom: 15px;
    border-bottom: 1px solid #ECECEC;
}
.title h2{
    display: flex;
    align-items: center;
    position: relative;
}
.title h2 a{
    font-size: 20px;
    font-weight: normal;
    margin-left: 10px;
}
.title h2:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 3px;
    background: #f7c757;
}
.title a.rt{
    color: #000;
}
.title a.rt:hover{
    color: var(--varColor);
    font-weight: bold;
}

.flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex>div{
    width: 32%;
}
/*学院新闻*/
.news-list li:not(:last-child){
    margin-bottom: 13px;
    overflow: hidden;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 13px;
}
.news-list li .date{
    float: left;
    width: 84px;
    height: 73px;
    color: #727272;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #eeeeee;
}
.news-list li .date h3{
    font-size: 24px;
}
.news-list li p{
    font-size: 16px;
    line-height: 29px;
    margin-left: 100px;
    text-align: justify;
}

/*媒体聚焦*/
#media .swiper-slide .img{
    height: 200px;
}
#media .swiper-slide h3{
    font-size: 16px;
    margin: 15px 0;
    font-weight: normal;
}
#media .swiper-slide h3 a{/* color: #fff; */}
#media .swiper-slide p{
    font-size: 16px;
    margin-bottom: 15px;
}
#media .swiper-slide span{
    font-size: 16px;
    /* color: #fff; */
    float: right;
}
#media .swiper-pagination{
    bottom: 0;
    text-align: right;
}
#media .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background: #A0A0A0;
    opacity: 1;
}
#media .swiper-pagination-bullet-active{
    background: var(--varColor);
}

/*公告通知*/
.notice-first{
    font-size: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C9C9C9;
    overflow: hidden;
}
.notice-first .date{
    float: left;
    color: var(--varColor);
    font-size: 15px;
    text-align: right;
    padding-right: 10px;
    border-right: 1px solid #F0F0F0;
}
.notice-first .date h3{
    font-size: 26px;
    font-weight: normal;
    line-height: 34px;
}
.notice-first h2{
    margin-left: 85px;
    font-size: 18px;
}
.notice ul li{
    font-size: 16px;
    margin: 0 auto;
    margin-top: 23px;
    border-bottom: 1px solid #fff;
    line-height: 30px;
    padding-bottom: 5px;
    width: 93%;
    /* margin: 0 auto; */
}
.notice ul li span{
    float: right;
    color: #4b4b4b;
}
.notice ul li p{
    /* position: relative; */
    /* padding-left: 20px; */
    /* margin-right: 100px; */
    text-align: justify;
}
.notice ul li p:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    /* background: #C69C6D; */
}

/*尾部*/
.link{
    margin-top: 35px;
    padding: 30px 0;
    background: #C43630 ;
}
.link ul{
    display: flex;
    justify-content: space-between;
}
.link h3{
    margin-bottom: 10px;
}
.link h3 a{
    color: #fff;
    font-size: 18px;
    font-weight: normal;
}
.link h3 a:hover{
    font-weight: bold;
}
.link p{
    font-size: 16px;
    line-height: 1.75em;
}
.link p a{
    color: #FCDCDC;
}
.link p a:hover{
    color: #fff;
}
.footer{
    color: #fff;
    font-size: 16px;
    padding: 10px 0;
    background: #03366b;
    background-size: cover;
}
.footer a{
    color: #fff;
}
.footer a:hover{
    text-decoration: underline;
}
.footer .copyright{
    float: left;
    line-height: 28px;
    /* margin-top: 22px; */
    font-size: 14px;
}
.footer .code{
    float: right;
    text-align: center;
}

.side{
    float: left;
    width: 278px;
    margin-top: 30px;
}
.side p{
    height: 68px;
    line-height: 68px;
    padding-left: 40px;
    color: #fff;
    font-size: 24px;
    background:#03366b;
}
.side p span{
    display: none;
}
.side li{
    position: relative;
}
.side li a{
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    padding-left: 40px;
}
.side>ul>li>a{
    background: #E7E7E7;
    border-bottom: 1px solid #D4D4D4;
}
.side>ul>li span{
    position: absolute;
    top: 14px;
    right: 20px;
    color: #9D9696;
    font: 20px '宋体';
    font-weight: bolder;
    transition: .3s;
}
.side>ul>li span.on{
    transform: rotate(90deg);
}
.side .sub-menu li a{
    color: #666;
    background: #F6F6F6;
}
.side .sub-menu li a:hover,
.side .sub-menu li.on a{
    color: var(--varColor);
}
.side .sub-menu{
    display: none;
}
.side ul .active .sub-menu{
    display: block;
}
.side ul .active>a{
    background: #fff;
    border-bottom-color: #fff;
}
.side ul .active>a:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #03366b;
}

.column{
    margin: 30px 0 0 310px;
}

.bread{
    height: 67px;
    line-height: 67px;
    border-bottom: 1px solid #D6D6D6;
    width: 98%;
}
.bread h1{
    font-size: 24px;
    font-weight: normal;
}
.bread .rt{
    position: relative;
    color: #9A9A9A;
    font-size: 16px;
}
.bread .rt a{
    color: #9A9A9A;
}
.bread .rt a:hover{
    color: var(--varColor);
}

.common-list li{
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    font-size: 18px;
    border-bottom: 1px dotted #8C8C8C;
}
.common-list li:hover{
    background: #F6F6F6;
}
.common-list li span{
    float: right;
    color: #666;
}
.common-list li p{
    margin-right: 120px;
}
.common-list li a{
    position: relative;
    padding-left: 20px;
    text-decoration: none;
}
.common-list li a:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}
.common-list li a:hover:before{
    background: var(--varColor);
}

.team-list{
    margin: 20px 10px 0;
    overflow: hidden;
}
.team-list li{
    float: left;
    width: 20%;
    padding: 0 10px;
    margin: 10px 0;
}
.team-list li a{
    display: block;
    padding-left: 65px;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    font-size: 16px;
    background: #dcdcdc url(../images/arrow.png) no-repeat left 25px center;
}
.team-list li a:hover{
    color: #fff;
    background: var(--varColor) url(../images/arrow-hover.png) no-repeat left 25px center;
}

.detail{
    margin-top: 20px;
    width: 98%;
}
.caption{
    text-align: center;
}
.caption h3{
    line-height: 30px;
    font-size: 22px;
    font-weight: normal;
    margin: 30px 0 10px;
}
.caption h4{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
}
.caption p span{
    color: #999;
    margin: 0 8px;
}
.content{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F0F0F0;
    min-height: 300px;
    line-height: 1.75em;
    font-size: 16px;
}
.detail .bottom>p{
    font-size: 16px;
    display: flex;
    margin: 1em 0;
}
.detail .bottom>p span{
    min-width: 4em;
    color: var(--varColor);
}

/*返回顶部*/
.toTop{
    position: fixed;
    right: 15px;
    bottom: -100px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    font-family: '黑体';
    background: rgba(0,0,0,.6);
    border-radius: 5px;
    transform: rotate(90deg);
    cursor: pointer;
    transition: .3s;
    z-index: 99;
}
