
.actress-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.actress-list-title{
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
.actress-title{
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
}
.actress-title span{
    margin-left: 0.6rem;
    font-weight: 500;
    font-size: 0.65rem;
    color: #eee;
}

.actress-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-width: 0;
}

.actress-item:hover .actress-info {
    color: var(--primary-text-color);
}

#home-main-content .actress-item .actress-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.75rem;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.actress-avatar img {
    background: #222;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.actress-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    min-width: 0;
    flex: 1;
    max-width: calc(100% - 3.75rem);
}

.actress-name {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.actress-count {
    font-size: 0.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.actress-nav{
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.actress-nav a{
    position: relative;
    margin-right: 1.5rem;
    padding-bottom: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.actress-nav a.active{
    color: var(--primary-text-color);
}
.actress-nav a.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -0.25rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 1.2rem;
    height: 0.2rem;
    border-radius: 0.3rem;
    background-color: var(--primary-text-color);
}

@media screen and (max-width: 959px) {
    .actress-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    #home-main-content .actress-item .actress-avatar {
        width: 5rem;
        height: 5rem;
        margin-right: 0.7rem;
    }
    .actress-list-title{
        margin-bottom: 1.2rem;
    }
    .actress-nav{
        margin-top: 1.8rem;
    }
    
    .actress-name {
        font-size: 1.2rem;
    }
    
    .actress-count {
        font-size: 0.95rem;
    }
    .actress-title{
        font-size: 1.5rem;
    }
    .actress-title span{
        font-size: 1rem;
    }
    .actress-nav a{
        font-size: 1.28rem;
    }
}
