.tag {
    width: 800px;
    /* background-color: pink; */
}

.tag ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    /* flex-direction: row; */

}

.tag ul li {
    width: 238px;
    height: 75px;
    border-radius: 14px 14px 0 0;
    list-style-type: none;
    margin-bottom: 13px;
    display: flex;
    flex-direction: column;
    position: relative;
    /* box-shadow: 2px 2px 2px 2px rgba(0, 0, 10, 0.03); */
}



.tag ul li:hover {
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.tag_content {
    display: flex;
    flex-direction: column;

}


/* 标签渐变背景 */
.linear_dark {
    /* background-image: linear-gradient(#002e63, #ffffff); */
    background-color: rgba(0, 46, 99, .3);
}

.linear_blue {
    background-image: linear-gradient(#DDE8FA, #ffffff);
}

.linear_green {
    background-image: linear-gradient(#DBF2FA, #ffffff);
}

.linear_yellow {
    background-image: linear-gradient(#FFF4D5, #ffffff);
}

.linear_red {
    background-image: linear-gradient(#FCE3E3, #ffffff);
}

.linear_purple {
    background-image: linear-gradient(#E9E3FE, #ffffff);
}

/* icon背景色 */
.icon_blue {
    background-color: #66B1F3;
}

.icon_green {
    background-color: #48CBE6;
}

.icon_yellow {
    background-color: #F8CD0B;
}

.icon_red {
    background-color: #F46743;
}

.icon_purple {
    background-color: #9A9BEE;
}

.line1 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 18px;
    margin-left: 48px;
    display: flex;
    flex-direction: row;
}



.line2 {
    color: rgba(51, 51, 51, 0.3);
    font-size: 12px;
    margin-top: 4px;
    margin-left: 48px;
}

.line1_center {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 18px;

}

.line2_center {
    color: rgba(51, 51, 51, 0.3);
    font-size: 12px;
    text-align: center;
    margin-top: 4px;
}

.icon1 {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 22px;
    left: 22px;
    border-radius: 2px;
    margin-right: 6px;

}

.icon1 .icon_circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 20%;
    left: 20%;
    transform: translate(-50%, -50%, );
}
