.top_img {
    width: 100%;
    height: 240px;
    font-size: 0;
}

.top_img>img {
    width: 100%;
    height: 100%;
}

main {
    background-color: #f2f5f8;
    padding: 20px 0;

}

.content {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}

.content_tab {
    background-color: #1276e0;
    padding: 8px 0 0 30px;
    width: 260px;
    margin-right: 50px;
    flex-shrink: 0;
}

.content_tab>ul {
    background-color: #F5F7FA;
    height: 100%;
    padding-top: 20px;
}

.content_tab>ul>li>a {
    height: 48px;
    text-align: center;
    line-height: 48px;
    display: block;
}

.content_tab>ul>li>.checked {
    background-color: #fff;
    transform: scale(1.2);
    position: relative;
}

.content_tab>ul>li>.checked::before {
    content: '';
    display: inline-block;
    background: url(../img/biaoqian.png);
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
}

.content_right {
    flex: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 3px;
    background-color: #fff;
    padding: 20px;
    overflow: hidden;
}

.right_link {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.right_link>li:first-child {
    font-weight: 700;
}

.content_list {
    padding: 0 20px;
}

.content_list>li>a {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px dashed #cecece;
}

.content_list>li>a>div:first-child {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-right: 20px;
}

.content_list>li>a:hover {
    color: #1276e0;
}

.fengcai_list {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
    margin-top: 20px;
    gap: 20px;
}

.fengcai_list li {
    width: calc(25% - 15.5px);
    height: 200px;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
}

.fengcai_list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fengcai_list li a>div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(11, 11, 12, .6);
    color: #fff;
}

.fengcai_list li a>div:last-child div {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}