.review-top10-list {
margin: 30px 0;
}
.review-top10-item {
display: flex;
align-items: center;
gap: 30px;
padding: 30px 0;
border-bottom: 1px solid #e0e0e0;
}
.review-top10-item:last-child {
border-bottom: none;
}
.review-top10-number {
font-size: 48px;
font-weight: bold;
color: #4A90E2;
min-width: 60px;
text-align: center;
flex-shrink: 0;
}
.review-top10-image {
flex-shrink: 0;
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 8px;
padding: 20px;
}
.review-top10-image img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.review-top10-content {
flex: 1;
}
.review-top10-subtitle {
font-size: 14px;
color: #666;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 600;
}
.review-top10-title {
font-size: 22px;
font-weight: 700;
color: #000;
margin: 0 0 20px 0;
line-height: 1.3;
}
.review-top10-button {
display: inline-block;
background: #E91E63;
color: #fff !important;
padding: 14px 40px;
text-decoration: none;
border-radius: 6px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
text-align: center;
}
.review-top10-button:hover {
background: #C2185B;
color: #fff !important;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
} @media (max-width: 768px) {
.review-top10-list {
margin: 20px 0;
}
.review-top10-item {
flex-direction: column;
text-align: center;
gap: 0;
padding: 30px 20px;
background: #fff;
border: none;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
margin-bottom: 20px;
}
.review-top10-item:last-child {
margin-bottom: 0;
}
.review-top10-number {
font-size: 42px;
color: #4A90E2;
margin-bottom: 20px;
width: 100%;
}
.review-top10-image {
width: 100%;
max-width: 200px;
height: 200px;
margin: 0 auto 25px;
background: transparent;
padding: 10px;
}
.review-top10-content {
width: 100%;
}
.review-top10-subtitle {
font-size: 12px;
margin-bottom: 10px;
color: #888;
}
.review-top10-title {
font-size: 20px;
line-height: 1.3;
margin: 0 0 25px 0;
padding: 0 10px;
}
.review-top10-button {
display: block;
width: 100%;
max-width: 280px;
margin: 0 auto;
padding: 16px 30px;
font-size: 16px;
border-radius: 8px;
}
} @media (max-width: 480px) {
.review-top10-item {
padding: 25px 15px;
}
.review-top10-number {
font-size: 36px;
}
.review-top10-image {
max-width: 180px;
height: 180px;
}
.review-top10-title {
font-size: 18px;
margin-bottom: 20px;
}
.review-top10-button {
padding: 14px 25px;
font-size: 15px;
}
}