/* 搜索 */
.studyList .sousuo {
    width: 876px;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0px 3px 16px 1px rgba(0, 0, 0, 0.1);
    border-radius: 6px 6px 6px 6px;
    z-index: 100;
    position: relative;
    margin: 37px auto 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 38px;
}

.studyList .sousuo img {
    width: 30px;
    height: 30px;
}

.studyList .sousuo input {
    border: none;
    font-size: 16px;
    margin-left: 8px;
    width: calc(100% - 200px);
}

.studyList .sousuo button {
    width: 125px;
    height: 54px;
    background: #1685FC;
    border-radius: 6px 6px 6px 6px;
    position: absolute;
    right: 3px;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    border: none;
}
 
/* 列表 */
.studyBoxList {
    display: flex;
    flex-wrap: wrap;
}
 
.studyPage {
    text-align: center;
}

.studyBoxList li{
    width:385px;
    height: 160px;
    margin-bottom: 18px;
    margin-right: 15px;
    display: flex;
}
 
.studyBoxList li .policyList_img {
    width: 40%;
    height: 100%;
    border-radius: 6px;
    background-color: #ccc;
    overflow: hidden;
    margin-right: 9px;
}

.studyBoxList li .policyList_img img {
    width: 100%;
    height: 100%;
}

.studyBoxList li .policyList_info {
    width: 60%;
}

.studyBoxList li .policyList_info h5 {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 32px;
}

.studyBoxList li .policyList_info div {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin-top: 8px;
    line-height: 24px;
}

.studyBoxList li .policyList_info div img {
    width: 14px;
    height: 14px;
    margin-right: 9px;
}

.studyBoxList li .policyList_info span {
    display: block;
    margin-top: 6px;
    height: 123px;
    background: #F8F8F8;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    padding-top:5px;
}
.studyBoxList li .policyList_info p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 22px;
}

 
 