.special_head {
    display: flex;
    justify-content: space-between;
    padding: 16px 16px 0 16px;
}
.special_head .pic {
    width: 450px;
    height: 240px;
    flex-shrink: 0;
}
.special_head .pic img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.special_head .info {
    flex: 1;
    margin-left: 16px;
}
.special_head .info h1 {
    display: block;
    height: 38px;
    line-height: 38px;
    font-size: 24px;
    color: var(--color_text_headings);
    font-weight: bold;
}
.special_head .info .date {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}
.special_head .info .date span {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 12px;
}
.special_head .info .date em {
    display: block;
    color: #ee3e31;
    font-size: 12px;
    font-weight: bold;
    margin: 0 3px;
}
.special_head .info .desc {
    position: relative;
    display: block;
    padding: 10px 0px 10px;
    margin-top: 5px;
    height: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    line-height: 20px;
}
.special_head .info .tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    overflow: hidden;
}
.special_head .info .tags span {
    display: block;
    flex-shrink: 0;
    color: #666;
    font-size: 14px;
}
.special_head .info .tags a {
    display: block;
    flex-shrink: 0;
    color: #8f8f8f;
    font-size: 14px;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
}
.special_head .info .tags a:nth-of-type(6n + 1) {
  color: #ef8692;
}

.special_head .info .tags a:nth-of-type(6n + 2) {
  color: #f4a76d;
}

.special_head .info .tags a:nth-of-type(6n + 3) {
  color: #4fb3ff;
}

.special_head .info .tags a:nth-of-type(6n + 4) {
  color: #93d877;
}

.special_head .info .tags a:nth-of-type(6n + 5) {
  color: #e79ff6;
}

.special_head .info .tags a:nth-of-type(6n + 6) {
  color: #89efe9;
}
.special_list ul {
    position: relative;
    overflow: hidden;
    padding-top: 16px;
    padding-left: 16px;
}
.special_list ul li {
    position: relative;
    float: left;
    width: 230px;
    height: auto;
    border: 1px solid var(--color_borders);
    border-radius: 8px;
    margin: 0 16px 16px 0;
    overflow: hidden;
}
.special_list ul li:nth-of-type(-n+3):before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    display: block;
    width: 55px;
    height: 37px;
    background: url(../images/icon.png) no-repeat;
    background-size: 1000px 1000px;
    background-position: -260px -447px;
}
.special_list ul li>div {
    position: relative;
    overflow: hidden;
    display: flex;
}
.special_list ul li>div>a {
    padding: 16px 16px 10px 16px;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 15%;
    overflow: hidden;
}
.special_list ul li>div>a img {
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 15%;
    border: 1px solid var(--color_borders);
}
.special_list ul li>div>div {
    flex: 1;
    overflow: hidden;
}
.special_list ul li>div>div a {
    position: relative;
    display: block;
    padding: 16px 0 0;
    height: 22px;
    font-size: 16px;
    color: #404040;
    line-height: 22px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.special_list ul li>div>div span {
    display: block;
    font-size: 12px;
    color: #999;
    line-height: 14px;
    margin-top: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.special_list ul li>div>div span.dow:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(../images/icon_download.svg);
    margin-right: 4px;
    margin-top: 4px;
}
.special_list ul li>p {
    display: block;
    padding: 2px 16px 0 16px;
    font-size: 14px;
    color: #999;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.special_list ul li>a {
    margin: 14px auto;
    display: block;
    position: relative;
    width: 198px;
    height: 30px;
    background: var(--color_h);
    border-radius: 8px;
    font-size: 12px;
    color: white;
    line-height: 30px;
    text-align: center;
}

/* 移动设备适配 */
@media screen and (max-width: 767px) {
    .special_head {
        flex-direction: column;
        padding: 12px 12px 0;
    }
    .special_head .pic {
        width: 100%;
        height: 200px;
        margin-bottom: 12px;
    }
    .special_head .info {
        margin-left: 0;
    }
    .special_head .info h1 {
        font-size: 18px;
        height: auto;
        line-height: 24px;
        margin-bottom: 8px;
    }
    .special_head .info .date {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .special_head .info .desc {
        height: 100px;
        font-size: 14px;
        line-height: 18px;
        -webkit-line-clamp: 5;
        padding: 8px 0;
    }
    .special_head .info .tags {
        font-size: 12px;
    }
    .special_head .info .tags a {
        font-size: 12px;
        margin-right: 8px;
    }
    
    .special_list ul {
        padding-left: 12px;
        padding-top: 12px;
    }
    .special_list ul li {
        width: calc(100% / 2 - 14px);
        margin-right: 12px;
        margin-bottom: 12px;
    }
    .special_list ul li>div {
        flex-direction: column;
        align-items: center;
        padding: 12px;
    }
    .special_list ul li>div>a {
        padding: 0;
        margin-bottom: 12px;
    }
    .special_list ul li>div>div {
        width: 100%;
        text-align: center;
    }
    .special_list ul li>div>div a {
        padding: 0;
        font-size: 14px;
    }
    .special_list ul li>div>div span {
        font-size: 11px;
        margin-top: 3px;
    }
    .special_list ul li>p {
        padding: 8px 12px 0;
        font-size: 13px;
        line-height: 20px;
        height: 60px;
    }
    .special_list ul li>a {
        width: 160px;
        height: 28px;
        font-size: 11px;
        line-height: 28px;
        margin: 10px auto;
    }
    
    .pg {
        padding: 0 12px 12px;
    }
}

/* 平板设备适配 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .special_head .pic {
        width: 300px;
        height: 180px;
    }
    .special_head .info h1 {
        font-size: 20px;
    }
    .special_head .info .desc {
        height: 100px;
        -webkit-line-clamp: 5;
    }
    .special_list ul li {
        width: calc(100% / 3 - 22px);
    }
}