/* pc端 */
.detail {
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.detail>.wrap.l-m-c{ z-index:10;}
.detail_wrap {
    position: relative;
    padding: 10% 50px 18% 50px;
}
.detail_title {
    color: #ffffff;
    margin-bottom: 3%;
    line-height: 60px;
}
.detail_font {
    color: #ffffff;
    width: 75%;
    line-height: 28px;
    margin-bottom: 6%;
}
.detail_boxs ul {
    overflow: hidden;
}
.detail_boxs li {
    width: 23.5%;
    float: left;
    margin-right: 2%;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.detail_boxs li:hover img{
    transform: translateY(-10px);
}
.detail_boxs li a{
    display: block;
    width: 100%;
    height: 100%;
}
.detail_boxs li:nth-child(4n) {
    margin-right: 0;
}
.detail_boxs li img {
    width: 50px;
    height: 44px;
    display: inline-block;
    position: absolute;
    left: calc(50% - 25px);
    top: 34%;
    transition: .5s;
}
.detail_boxs li span {
    color: #ffffff;
    width: 84%;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 8%;
    top: 58%;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* ipad */
@media screen and (max-width: 1024px){
    .detail_boxs li img {
        width: 40px;
        height: 36px;
        top: 28%;
        left: calc(50% - 20px);
    }
}

/* 手机端 */
@media screen and (max-width: 767px) {
    .detail_wrap {
        padding: 15% 0 18% 0;
    }
    .detail_title {
        margin-bottom: 8%;
        line-height: 42px;
    }
    .detail_font {
        width: 100%;
        line-height: 20px;
        margin-bottom: 10%;
    }
    .detail_boxs li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .detail_boxs li:nth-child(2n) {
        margin-right: 0;
    }
    .detail_boxs li span {
        top: 60%;
        font-size: 14px;
    }
}

