.album-detail-container {
    width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    margin-top: 20px;
}

.album-main-content {
    display: flex;
    width: 85%;
}

.album-cover {
    width: 268px;
    height: 268px;
    margin-right: 30px;
    flex-shrink: 0;
}

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

.album-info {
    /* flex-grow: 1; */
    width: 60%;
    margin-top: 6px;
}


.album-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: -6px;
    margin-bottom: 10px;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

a .album-artist {
    color: #428bca;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 267px;
}

.album-artist,
.album-genre,
.album-release,
.album-price {
    font-size: 15px;
    margin-bottom: 5px;
    color: #000102;
}

.album-genre,
.album-release a {
    color: #428bca;
    text-decoration: none;
}

.album-format {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.album-format img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.album-format span {
    font-size: 14px;
    color: #333;
}

.album-price {
    font-size: 20px;
    color: #e4393c;
    font-weight: bold;
    margin-top: 15px;
}

.buy-button {
    background-color: rgb(29, 43, 85);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    /*margin-bottom: 60px;*/
    text-decoration: none;
    display: inline-block;
}

.buy-button:hover {
    background-color: #0056b3;
    color: #fff;
}

.buy-button:link,
.buy-button:visited,
.buy-button:active {
    color: #fff;
}

.album-sidebar {
    width: 267PX;
    border: 1px solid #eee;
    padding: 15px;
    background-color: #f9f9f9;
}

.recommendation-section {
    margin-bottom: 20px;
}

.recommendation-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.recommendation-section img {
    width: 100%;
    height: auto;
    display: block;
}

.membership-section p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
    text-align: center;
}

.check-icon {
    color: green;
    font-weight: bold;
}

.member-button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
}

.member-button:hover {
    background-color: #555;
}

.member-benefit {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    color: #777;
}

.album-section-container {
    width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

.album-section-main {
    margin: -15px;
    width: 800px;
    flex-shrink: 0;
    min-height: auto;
    overflow: hidden;
}

.album-section-sidebar {
    margin: -10px 15px 0 0;
    flex-shrink: 0;
    min-height: auto;
}

.section-title {
    text-align: left;
    font-size: 18px;
    margin: 40px 0 10px 0px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 275px;
}

.track-list {
    white-space: pre-line;
    text-align: left;
    margin-top: -15px;
}

.album-description {
    white-space: pre-line;
    text-align: left;
    margin-top: -25px;
}

.album-description-container {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 25px;
    /* 为按钮留出空间 */
}

.album-description {
    white-space: pre-line;
    text-align: left;
    margin-top: -25px;
    /* white-space: pre-wrap; */
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    /* 默认显示5行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-description-container.expanded .album-description {
    -webkit-line-clamp: unset;
    /* 展开时取消行数限制 */
    overflow: visible;
    text-overflow: clip;
}

.album-description-container.expanded {
    /* 展开时不需要额外的样式 */
}

.read-more-wrapper {
    text-align: right;
    margin-top: -5px;
}

.read-more-button {
    background: none;
    border: none;
    color: #166ecc;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    position: relative;
    top: -20px;
}

.read-more-button:hover {
    text-decoration: underline;
}

.album-list {
    padding: 0;
    margin: 0;
}

.album-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.album-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    /* 移除链接下划线 */
    color: inherit;
    /* 继承父元素颜色 */
    width: 100%;
    /* 确保链接占据整个列表项的宽度 */
}

.album-list li img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    object-fit: cover;
}

.album-item-info {
    margin-top: -25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-item-title {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.album-item-artist {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.album-item-format {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.theme-title {
    /* width: 1100px; */
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 7px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #336699;
}

.w1 {
    /* background: linear-gradient(60deg, #000000, #f9fcff); */
    background-size: cover;
    background-position: center;
    width: 100%;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.w1 .theme-title {
    color: #336699;
}