.range-list {
min-height: 500px;
margin: 60px auto;
}
.range-list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.range-box {
display: flex;
flex-wrap: nowrap;
width: 678px;
border-radius: 20px;
overflow: hidden;
border: 2px solid rgba(176, 187, 207, 1);
height: 209px;
margin-bottom: 70px;
transition: all 0.3s ease-in-out;
}
.range-box:hover {
box-shadow: 4px 4px 24px rgba(191, 201, 219, 0.5);
}
.range-box .range-cover {
flex: 0 0 215px;
width: 215px;
height: 100%;
object-fit: cover;
}
.range-text {
padding: 37px 21px;
height: 100%;
background: rgba(255, 255, 255, 1);
border-left: none;
}
.range-text .range-title {
margin-bottom: 30px;
width: 100%;
font-size: 20px;
font-weight: 700;
color: rgba(36, 38, 43, 1);
}
.range-text .range-desc {
margin-bottom: 6px;
font-size: 16px;
font-weight: 400;
color: rgba(102, 107, 122, 1);
}
.range-text .range-publish-time {
font-size: 22px;
font-weight: 700;
color: rgba(233, 236, 242, 1);
transition: all 0.3s ease-in-out;
}
