.banner{
    position: relative;
}
.banner img{
    width: 100%;
}
.bread{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}
.bread h1{
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}
.bread a{
    color: #fff;
}
.bread span{
    margin: 0 20px;
}
.bread .home{
    padding-left: 35px;
    background: url("../images/home.png") no-repeat left;
    background-size: 20px;
}

.heading{
    font-weight: 400;
    font-size: 30px;
    color: var(--blueColor);
    text-align: center;
    padding: 30px 0 20px;
    border-bottom: 1px solid #DFDFDF;
}

/*列表页*/
.common-list li{
    display: flex;
    align-items: center;
    height: 145px;
    margin-top: 36px;
    background: #F5F5F5;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
}
.common-list li .date{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 145px;
    min-width: 145px;
    height: 145px;
    background: #E4EEFF;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
.common-list li .date h3{
    font-size: 36px;
    color: var(--blueColor);
}
.common-list li .text{
    display: block;
    width: calc(100% - 145px);
    padding: 0 40px;
    box-sizing: border-box;
}
.common-list li .text h2{
    font-size: 24px;
    font-weight: normal;
}
.common-list li .text p{
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}
.common-list li:hover {
    background: var(--blueColor);
    border-top-right-radius: 50px;
}
.common-list li:hover .text{
   color: #fff;
}
.common-list li:hover .text p{
    color: #eee;
}

/*机构列表页*/
.org-list{
    margin: 17px -17px 33px;
    overflow: hidden;
}
.org-list li{
    float: left;
    width: 33.33%;
    padding: 17px;
}
.org-list li a{
    display: flex;
    align-items: center;
    height: 110px;
    padding: 0 20px 0 40px;
    font-size: 24px;
    background: #FFFFFF;
    border-radius: 10px;
    border-right: 2px solid var(--blueColor);
    border-bottom: 2px solid var(--blueColor);
    box-shadow: 5px 5px 10px #eee, -5px -5px 10px #eee;
}
.org-list li span{
    display: inline-flex;
    padding-right: 20px;
    background: url("../images/go.png") no-repeat right top;
    background-size: 10px;
}
.org-list li a:hover{
    color: #fff;
    background: var(--blueColor);
    border-radius: 20px;
}
.org-list li a:hover span{
    background: none;
}

/*详情页*/
.flex_detail{
    align-items: start;
}

.read{
    width: 31.25%;
}
.read h2{
    font-size: 30px;
    color: var(--blueColor);
    margin: 2em 0 1em;
}
.read ul li span{
    font-size: 20px;
    font-style: italic;
    color: var(--blueColor);
}
.read ul li p{
    font-size: 20px;
    margin: 0.5em 0 1.5em;
}

.detail{
    width: 68.75%;
    padding: 0 50px;
    box-sizing: border-box;
}
.caption{
    text-align: center;
    padding: 30px 0 ;
    border-bottom: 1px solid #DFDFDF;
}
.caption h1{
    font-size: 30px;
    font-weight: normal;
    color: var(--blueColor);
}
.caption p{
    color: #666;
    font-size: 18px;
    margin-top: 1em;
}
.caption p span{
    margin: 0 15px;
}
.caption p i{
    font-style: normal;
}

.content{
    padding: 30px 0;
    font-size: 16px;
    line-height: 1.75em;
    border-bottom: 1px solid #DFDFDF;
}

.bottom{
    padding: 12px 0;
}
.bottom p{
    display: flex;
    font-size: 18px;
    margin: 1em 0;
}
.bottom p span{
    min-width: max-content;
    color: var(--blueColor);
}

/*董事会*/
.dsh-list{
    margin: 20px -10px;
    overflow: hidden;
}
.dsh-list li{
    float: left;
    width: 20%;
    padding: 20px 10px;
}
.dsh-list li > div{
    background: #EBEBEB;
    border-radius: 10px;
    overflow: hidden;
}
.dsh-list li .img{
    height: 400px;
}
.dsh-list li img{
    object-position: center top;
}
.dsh-list li .txt{
    padding: 15px 20px;
    text-align: center;
}
.dsh-list li .txt h3 a{
    font-size: 24px;
    color: var(--blueColor);
}
.dsh-list li .txt p{
    font-size: 18px;
    margin-top: 10px;
}

.dsh-title > p{
    font-size: 26px;
    text-align: center;
    margin: 30px 0 20px;
}
.dsh-title ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.dsh-title ul li {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    margin: 0 1em;
}

.dsh-title ul li > img {
    width: 20px;
    margin-right: 10px;
}

.dsh-context {
    padding: 30px 0;
}

/*二级导航*/
.nav-bar{
    background: #F5F7FA;
}
.nav-bar ul{
    display: flex;
    width: 100%;
}
.nav-bar ul li{
    width: 12.5%;
}
.nav-bar ul li a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    font-size: 24px;
}
.nav-bar ul li.on a{
    color: #fff;
    background: var(--blueColor);
}

/*校园风貌*/
.view-list{
    margin: 24px -24px;
    overflow: hidden;
}
.view-list li{
    float: left;
    width: 33.33%;
    padding: 24px;
    cursor: pointer;
}
.view-list li div{
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(197,195,195,0.99);
}
.view-list li .img{
    height: 300px;
    border-radius: 10px;
}
.view-list li p{
    font-size: 24px;
    text-align: center;
    margin-top: 15px;
}
.view-list li:hover div{
    color: var(--blueColor);
    border-color: var(--blueColor);
}

.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(../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(../images/icons.png) no-repeat 0 0;
}
.modal .next{
    left: auto;
    right: 20%;
    background-position-x: -45px;
}

/*学校领导*/
.leader-list{
    margin: 30px 0;
    overflow: hidden;
}
.leader-list li{
    float: left;
    width: 48%;
    margin: 30px 0;
}
.leader-list li:nth-of-type(even){
    float: right;
}
.leader-list li > div{
    display: flex;
    height: 376px;
}
.leader-list li .img{
    width: 268px;
    min-width: 268px;
    border-radius: 10px;
}
.leader-list li .txt{
    flex-grow: 1;
    margin: 27px 0;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #E4EFFF;
    border-radius: 0 10px 10px 0;
}
.leader-list li .txt h3 a{
    font-size: 30px;
    color: var(--blueColor);
}
.leader-list li .txt h3 span{
    color: #333;
    font-size: 20px;
    font-weight: normal;
}
.leader-list li .txt p{
    color: #999;
    font-size: 18px;
    line-height: 2em;
    margin: 1em 0 3em;
}
.leader-list li .txt div{
    text-align: right;
}
.leader-list li .txt div a{
    font-size: 16px;
    color: var(--blueColor);
}
.leader-list li .txt div img{
    height: 20px;
}
.leader-list li .txt div a:hover{
    font-weight: bold;
}

/*学校领导 -- 详情页*/
.leader{
    margin: 30px 0 60px;
    display: flex;
    align-items: start;
}
.leader > img{
    border-radius: 10px;
    width: 200px;
    min-width: 200px;
    margin-right: 40px;
}
.leader > div > h2{
    color: var(--blueColor);
    margin-bottom: 20px;
}
.leader > div > h2 span{
    color: #333;
    font-size: 18px;
    font-weight: normal;
    margin-left: 10px;
}

/*简介页*/
.intro{
    margin: 30px 0 60px;
}
