.detailBox {
    width: 800px;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.detailBox>* {
    position: relative;
    z-index: 2;
}

.detailBox>img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    filter: blur(15px);
    opacity: .1;
    z-index: 1;
}

.programHeader {
    display: flex;
}

.programHeader>img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 3px;
}

.tagName {
    background: var(--primary);
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.summary,
.contentArea {
    font-size: 14px;
    color: #555;
    line-height: 2em;
}

.detailBox h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.daojuItem {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.daojuItem>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.daojuItem h5 {
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .8) 100%);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    color: #fff;
    padding: 0 15px;
    padding-top: 90px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
}

@media only screen and (max-width: 600px) {
    .detailBox {
        width: auto;
        margin: 20px;
        margin-top: 0;
    }

    .programHeader {
        display: block;
    }
    .programHeader>img{
        width: 100%;
        margin-right: 0;
    }
    .detailBox h2{
        margin-top: 20px;
    }
}