.w {
    width: 1200px;
    margin: 0 auto;
}

.w1 {
    width: 1100px;
    margin: 0 auto;
}

.h3 a {
    display: none;
}

/* <!-- 导航栏 star--> */
.navigation {
    position: sticky;
    /* 关键：粘性定位 */
    top: 0;
    /* 粘到窗口最顶部 */
    z-index: 999;
    /* 保证压在其他元素之上 */

    height: 60px;
    background-color: #000;
    color: #ddd;
}

.logo-link {
    display: inline-block;
    margin-left: 40px;
    float: left;
    display: block;

}

.logo {
    width: 233px;
    height: 54px;
    background-image: url(../images/logo_text_3.png);
    background-repeat: no-repeat;
    background-size: contain;
}

/* 导航分类 */
.classification {

    float: left;
    display: block;
    margin: 0 0 0 10px;

}

.classification ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.classification li {
    float: left;
    margin: 15px 0;
    position: relative;
}

.classification a {
    color: #dacaca;
    font-size: 16px;
    margin: 15px 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.classification a:hover {
    color: #ffffff;
}

.separator {
    color: #ddd;
    margin-left: 8px;
    margin-right: 8px;
}

/* <!-- 搜索框 --> */
.search-container {
    margin: 15px 0 0 110px;
    float: left;
    position: relative;
    width: 280px;
    display: flex;
    border-radius: 0;
}

.search-input {
    width: 220px;
    padding: 5px 10px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: #ffffff;
    color: #333;
}

.search-button {
    padding: 5px 8px;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    width: 20px;
    height: 20px;
    fill: #333;
}

/* <!-- 登录/注册 --> */
.log {
    float: left;
    margin: 16px 0 0 20px;
}

.log a {
    color: #ffffff;
    font-size: 16px;
}

/* <!-- 导航栏 end--> */

/* <!-- 轮播图 star --> */

.banner-container {
    max-width: 960px;
    /* height: 326px; */
    margin: 15px auto 20px;
    /* 修改了这里的margin属性 */
    overflow: hidden;

    .banner-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 33.9583%;
    }

    /* 299/960 */
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {

    width: 100%;
    height: 100%;
    object-fit: fill;
}

.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.banner-dot.active {
    background: #fff;
}

@media screen and (max-width: 768px) {
    .banner-container {
        width: 100%;
    }
}

/* 链接铺满图片 */
.fade-slider a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

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


/* <!-- 轮播图 end --> */

/* <!-- 免费试听 star --> */
/* <!-- 栏目名称 --> */
.columnfree {
    width: 1100px;
    height: 35px;
    border-left: 10px solid rgb(214, 0, 23);
    display: flex;
    align-items: center;
    padding-left: 16px;
    margin: 15px auto;
}

.columnfree {
    font-size: 18px;
    font-weight: bold;
}



/* <!-- 专辑推荐模块 star--> */
/* <!-- 栏目名称 --> */
.column {
    width: 1100px;
    background: #f6f6f6;
    height: 35px;
    border-left: 8px solid #54a6dd;
    display: flex;
    align-items: center;
    padding-left: 16px;
}

.column_1 {
    font-size: 16px;
    text-decoration: none;
    color: #000;
}

.column_2 {
    margin-left: auto;
    padding-right: 15px;
    font-size: 16px;
    text-decoration: none;
    color: #ff0202;
}

/* 专辑筛选分类 */
.album-filter {
    width: 1100px;
    margin-top: 15px;
    padding: 20px 24px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.album-filter .filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 20px;
}

.album-filter .filter-label {
    font-weight: bold;
    margin-right: 15px;
    color: #333;
    min-width: 80px;
    /* 确保标签宽度一致 */
}

.album-filter label {
    margin-right: 20px;
    cursor: pointer;
    color: #555;
}

.album-filter input[type="checkbox"] {
    margin-right: 5px;
}

/* <!-- 专辑列表 --> */
.album_list {
    width: 1100px;
    margin: 15px auto 25px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 一行 6 张 */
    gap: 20px;
    list-style: none;
    padding: 0;
}

.album_card {
    background: #fff;
    /* border-radius: 6px; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, .08); */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    display: block;
    /* 让 <a> 变成块级卡片 */
    text-decoration: none;
    /* 去掉默认下划线 */
    color: inherit;
    /* 继承文字颜色 */
}

.cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 正方形封面 */
    object-fit: cover;
}

.meta {
    /* padding: 10px; */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title {
    font-size: 14px;
    color: #000;
    margin: 0 0 4px;
    min-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 167px;
    word-break: break-word;
}


.artist {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 167px;
}


.format {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #444444;
    margin: 4px 0;
}


.format-icon {
    width: 20px;
    height: 13px;
    background: url("https://music.sonyselect.net/app/img/hr.png") no-repeat center / contain;
    flex-shrink: 0;
    /* 防止被挤扁 */
}



.badge {
    align-self: flex-start;
    background: #54a6dd;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
}

/* <!-- 专辑推荐模块 end--> */

/* 页脚样式 */
.main-content {
    flex-grow: 1;

}

.footer {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin: 0;
}