.banner {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.banner .item {
    width: 285px;
    height: 424.44px;
    margin-right: 20px;
    position: relative;
    border-radius: 40px;
    transition: all ease-in-out 0.2s;

}

.banner .item .img {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    border-radius: 40px;

}


.banner .item:last-child {
    margin-right: 0;
}
.banner .item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 10px 18px;
    background:linear-gradient(transparent, rgba(102, 102, 102, 0.6));
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

}

.banner .item .info .title {
    font-size: 20px;
    line-height: 1.6;
}
.banner .item .info .desc {
    font-size: 15px;
    line-height: 1.5;
    color: #dfdfdf;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

}

.banner .item:hover{
    transform: scale(1.1);
}

.center {
    display: flex;
    flex-direction: row;
    width: 1200px;
    margin: 0 auto;
}
.center .block {
    flex: 1;
    color: #fff;
    padding: 10px 0;
    box-sizing: border-box;
    margin-right: 20px;

}

.center .block:last-child {
    margin-right: 0;
}

.center .block>.title {
    font-size: 18px;
    margin-bottom: 10px;
}

.center .tag-block {
    flex: 1
}

.center .tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

@keyframes tag {
    0% {
        transform: scale(1);

    }
    100%{
        transform: scale(1.2);
    }
}

.center .tag-list .tag-item {
    padding: 10px 15px;
    line-height: 1;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    background: #03224E;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    animation:tag linear 0.5s ;
    cursor: pointer;
}

.center .tag-list .tag-item:hover {
    transform: scale(1.2);

}


.center .news-block {
    flex: none;
    width: 445px;

}

.center .news-list {
    border: 1px solid var(--primary-color);
    background: #03224E;
    padding: 20px;
    border-radius: 20px;
}

.center .news-item {
    display: flex;
    flex-direction: row;
    padding: 10px 0;

}

.center .news-item .pic {
    width: 80px;
    height: 80px;
}
.center .news-item .pic .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center .news-item .info{
    flex: 1;
    margin-left: 20px;
    border-bottom: 2px solid var(--primary-color);

}
.center .news-item .info .title {
    font-size: 18px;
    line-height: 1.6;
}
.center .news-item .info .date {
    font-size: 16px;
    color: #979797;
    line-height: 1.5;
}
