/* 删掉原有.member-header样式，改用public.css里的公共样式 */

.member-banner {
    width: 100%;
    padding: 0 4vw;
    height: 40vw;
    margin-top: 3.2vw;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
}
.member-banner img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

.content-section {
    margin: 4vh 0;
    padding: 0 4vw; /* 左右留白统一 4vw */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vh;
    padding-bottom: 1vh;
    border-bottom: 1px solid #eee;
}

.section-title {
    display: flex;
    align-items: center;
}

.section-title img {
    width: 1.5vw;
    height: 3vw;
}

.section-title h3 {
    font-size: 4vw;
    display: flex;
    align-items: center;
}

.section-title h3::before {
    content: "";
    display: inline-block;
    width: 1vw;
    height: 4vw;
    margin-right: 1vw;
}

.vip-section .section-header h3 {
    color: #ff7a78;
}

.free-section .section-header h3 {
    color: #53d889;
}

.more-btn {
    font-size: 2.7vw;
    color: #000000;
    text-decoration: none;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
}

.content-item {
    text-align: center;
    height: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-img {
    width: 60%;
    aspect-ratio: 1/1;
    border-radius: 2vw;
    margin-bottom: 1vh;
    overflow: hidden;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-name-container {
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-name {
	font-size: 3.5vw;
	color: #333;
	line-height: 1.4;
	display: -webkit-box;
	display: -moz-box;
	display: box;
	-webkit-line-clamp: 2;
	-moz-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}