/** 列表 */
.base-item{
    width: 100%;
    display: flex;
    cursor: pointer;
    background-color: #ffffff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
.base-item:hover .base-item-des dl dt{
    color: #ff8600;
}
.base-item-img{
    width: 45%;
}
.base-item-img img{
    width: 100%;
    height: 100%;
}
.base-item-des{
    flex: 1;
    box-sizing: border-box;
    padding-left: 15px;
}
.base-item-des dl dt{
    width: 100%;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
}
.base-item-des dl dd{
    width: 100%;
    line-height: 30px;
    font-size: 12px;
    color: #999999;
}
/** 详情 */

