#main-post {
    display: none;
}

.post {
    padding-top: 20px;
}

.post-title {
    font-weight: normal;
    text-align: center;
}

.post-meta small {
    line-height: 1.6;
}

.music-player {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.music-cover-container {
    position: relative;
}

.music-cover {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
}

.music-info {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    max-width: 60%;
}

.music-title {
    margin: 0 0 5px;
    font-size: 1.5em;
}

.music-artist {
    margin: 0;
    opacity: 0.9;
}

.play-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff3b30;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}

.pause-icon {
    display: none;
    width: 20px;
    height: 20px;
    position: relative;
}

.pause-icon::before, .pause-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 20px;
    background-color: white;
}

.pause-icon::after {
    right: 0;
}

.music-progress {
    padding: 15px;
    background: #f8f9fa;
}

.audio-player {
    display: none;
}

.progress-container {
    width: 100%;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #ff3b30;
    border-radius: 3px;
    transition: width 0.1s ease;
}

.time-display {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.8em;
    color: #666;
}

#postTor {
    display: none;
}