.type{
    margin-top:30px;
}
.type h3 {
    font-size: 30px;
    color: #007b3d;
    margin-bottom:7px;
}
.type h4 {
    font-size: 20px;
    color: #007b3d;
    margin:10px 0;
}
.depname{
    display:flex;
    justify-content:flex-start;
    flex-wrap:wrap;
    margin-right:-20px;
}
.depname::after{
    content:'';
    flex:auto;
}
.depname a {
    width: 230px;
    height: 48px;
    line-height: 48px;
    padding: 0 10px;
    box-sizing: border-box;
    background: #eee;
    display: block;
    margin-bottom: 10px;
    margin-right:20px;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
   
}
.depname a:hover{
    background:#007b3d;
    color:#fff;
}
.intro{
    margin-top:30px;
    padding:20px;
    box-shadow:0 0 5px rgba(0,0,0,.1);
    border-radius:5px;
}
.intro .pic{
    width:600px;
    height:400px;
    float:left;
}
.intro .textbox{
    width:570px;
    float:right;
}
.intro .textbox h2{
    font-size:24px;
   color:#007b3d;
    padding:8px 0;
}
.intro .textbox .text{
    line-height:1.6;
}
.intro .textbox .more{
    background:#007b3d;
    border-radius:15px;
    text-align:center;
    display:block;
    padding:5px;
    width:100px;
    color:#fff;
    font-size:12px;
    float:right;
    margin-top:10px;
}
.expertbox{
    margin-top:20px;
}
.expertbox .title {
    font-size: 24px;
}
.expertbox .expert{
    display:flex;
    justify-content:flex-start;
    flex-wrap:wrap;
    margin-right:-50px;
}
.expertbox .expert a{
    width:270px;
    height:378px;
    position:relative;
    margin-right:50px;
    margin-top:20px;
}
.expertbox .expert a .text {
    position: absolute;
    width: 100%;
    height: 42px;
    line-height: 42px;
    color: #fff;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,.3);
    padding: 0 15px;
    box-sizing: border-box;
    display:flex;
    justify-content:space-between;
    padding:0 15px;
}
.expertbox .expert a .text h6{
    font-size:16px;
}
.expertbox .expert a .text span {
    font-size: 14px;
}
/*-----------------屏幕适配-------------------*/
/*最大宽度1200px，即小于1200px的屏幕*/
@media only screen and (max-width: 1200px) {
    .type h3{
        font-size:18px;
    }
    .type h4 {
        font-size: 16px;
    }
    .depname a {
        font-size: 14px;
        width:200px;
    }
    .intro{
        padding:0;
        box-shadow:none;
    }
    .intro .pic{
        width:100%;
        height:auto;
        float:none;
    }
    .intro .textbox {
        width: 100%;
        float: none;
    }
    .intro .textbox h2{
        font-size:16px;
    }
    .intro .textbox .text{
        font-size:14px;
    }
    .expertbox .title{
        font-size:16px;
    }
    .expertbox .expert a{
        margin-right:20px;
    }
    .expertbox .expert {
        margin-right: -20px;
    }
}


.expertbox .expert a img {
    width: 100%;
}