@charset "utf-8";
/* 学校列表 */
body{
    background: rgba(236, 243, 255, 0.62);
}
.school-list-wrap{

}
.school-list-wrap li{
    float: left;
    padding: 30px;
    width: 726px;
    height: 290px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.school-list-wrap li:nth-of-type(2n){
    float: right;
}
.school-list-wrap .pic{
    float: left;
    width: 260px;
    height: 260px;
    padding: 15px;
}
.school-list-wrap .pic img{
    width: 260px;
    height: 260px;
}
.school-list-wrap .info{
    float: right;
    width: 405px;
    height: 290px;
}
.school-list-wrap .info .name{
    display: block;
    height: 32px;
    font-size: 18px;
    /*font-weight: bold;*/
    line-height: 32px;
    position: relative;
}
.school-list-wrap .info .name:after{
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 30px;
    height: 3px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #0745B2;
}
.school-list-wrap .info .attr{
    height: 36px;
    margin-top: 30px;
}
.school-list-wrap .info .attr .label{
    float: left;
    padding: 0 14px;
    height: 36px;
    line-height: 36px;
    font-size: 15px;
    color: #0745B2;
    background-color: #EDF2FA;
    margin-right: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.school-list-wrap .info .attr .label:last-child{
    margin-right: 0;
}
.school-list-wrap .info .msg{
    margin-top: 14px;
    height: 72px;
    font-size: 15px;
    line-height: 24px;
    color: #666;
    overflow: hidden;
}
.school-list-wrap .info .btns{
    margin-top: 30px;
    border-top: 1px solid #DEE3ED;
    padding-top: 19px;
}
.school-list-wrap .info .btns a{
    float: left;
    width: 33.33%;
    position: relative;
}
.school-list-wrap .info .btns a:after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 16px;
    width: 1px;
    background-color: #D8D8D8;
}
.school-list-wrap .info .btns a:last-child:after{
    display: none;
}
.school-list-wrap .info .btns a .icon{
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto;
    background: url("../images/dz-icon-group.png") no-repeat;
}
.school-list-wrap .info .btns a:nth-of-type(1) .icon{
    background-position: -407px -156px;
}
.school-list-wrap .info .btns a:nth-of-type(2) .icon{
    background-position: -435px -156px;
}
.school-list-wrap .info .btns a:nth-of-type(3) .icon{
    background-position: -463px -156px;
}
.school-list-wrap .info .btns a:nth-of-type(1):hover .icon{
    background-position: -407px -204px;
}
.school-list-wrap .info .btns a:nth-of-type(2):hover .icon{
    background-position: -435px -204px;
}
.school-list-wrap .info .btns a:nth-of-type(3):hover .icon{
    background-position: -463px -204px;
}
.school-list-wrap .info .btns a .tit{
    font-size: 15px;
    color: #666;
    text-align: center;
    margin: 10px auto 0;
}
.school-list-wrap .info .btns a:hover .tit{
    color: #0745B2;
}
