.index-for-man-woman {
    position: relative;
    overflow: hidden;
}

.index-for-man-woman-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    margin: 0 auto;
    margin-top: 30px;
}

.index-for-man-woman-carousel {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 96%;
    margin: auto;
    scroll-behavior: smooth;
}

.index-for-man-woman-container {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.index-for-card-more {
    position: relative;
    width: 49%;
    padding-top: 49%;
    /* Maintain 1:1 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    flex: 0 0 auto;
    scroll-snap-align: start;
    box-sizing: border-box;
    cursor: pointer;
}

.index-for-card-more:hover .index-for-man-woman-button-new {
    color: #000;
    background-color: #fff;
}

.index-for-card-more img,
.index-for-card-more video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-for-card-more .index-for-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.index-for-card-more h2 {
    margin: 10px 0;
    font-size: 32px;
    font-family: Lab Grotesque;
}

.index-for-card-more p {
    margin: 5px 0;
    font-size: 14px;
    font-family: Inter, sans-serif;
}

.index-for-card-more button {
    padding: 8px 24px;
    margin-top: 15px;
    background-color: #000;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #fff;
    font-family: Inter, sans-serif;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.index-for-card-more button {
    background-color: #000;
    color: #fff;
}

.index-for-man-woman-button {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.index-for-man-woman-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.index-for-man-woman-header h1 {
    color: #f5f5f5;
    font-size: 32px;
    font-family: Lab Grotesque !important;
}

.index-for-man-woman-header p {
    font-size: 14px;
    font-family: Inter, sans-serif;
    color: #bcbcbc;
}

.index-for-man-woman-dianji {
    display: none;
}

::-webkit-scrollbar {
    /* display: none; */
    /* 适用于 Chrome, Safari, Edge */
}

.index-for-card-more::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Adjust the opacity and color as needed */
    z-index: 1;
}

.index-for-man-woman-button.yes-prev,
.index-for-man-woman-button.yes-next {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
}

.index-for-man-woman-left {
    width: 24px;
    height: auto;
}

.index-for-man-woman-right {
    width: 24px;
    height: auto;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .index-for-man-woman-container {
        gap: 15px;
    }

    .index-for-card-more {
        width: 75%;
        padding-top: 75%;
        border-radius: 5px;
    }

    .index-for-man-woman-dianji {
        display: block;
    }

    .index-for-man-woman-header h1 {
        color: #f5f5f5;
        font-size: 24px;
        font-family: Lab Grotesque !important;
    }

    .index-for-card-more h2 {
        margin: 10px 0;
        font-size: 24px;
        font-family: Lab Grotesque;
    }
}