/*页面标题*/
.page-title {
    height: 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-title .text-1 {
    font-size: 2vw;
    font-weight: 700;
}
.page-title .text-2 {
    font-size: 2vw;
    font-weight: 500;
}

/*内容*/
.content {
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: #FFFFFF;
}
.content .box {
    width: 22vw;
    height: 29.5vw;
    margin-bottom: 1vw;
    position: relative;
    cursor: pointer;
}
.content .box:nth-child(odd){/*奇数*/
    background-color: #FFFFFF;
}
.content .box:nth-child(even){/*偶数*/
    background-color: #ECEBEA;
}
.content .box img {
    width: 100%;
    height: 50%;
    object-fit: cover;
}
.content .box .info {
    width: calc(100% - 4vw);
    height: 50%;
    padding: 0 2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content .box .info .tip {
    margin-bottom: 2vw;
    font-size: 1vw;
}
.content .box .info .title {
    margin-bottom: 0.5vw;
    font-size: 1.5vw;
    font-weight: 700;
}
.content .box .info .date {
    margin-bottom: 1vw;
    font-size: 1.25vw;
    font-weight: 700;
    color: #DDA58A;
}
.content .box .info .text {
    height: 3.4vw;
    font-size: 1vw;
    font-weight: 500;
    line-height: 1.7vw;
    color: #717171;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
