body {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.index-body {
    display: flex;
    min-width: 800px;
    flex-direction: column;
    align-items: center;
}

.head-title {
    font-size: 25px;
}

.sgame-list {
    min-width: 500px;
}

.team-logo {
    width: 50px;
    height: 50px;
}

.sgbox-head {
    display: flex;
    justify-content: space-between;
}

.sgbh-left {
    display: flex;

}


.sg-player {
    display: flex;
    justify-content: space-between;
}

.player {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* display: none; */
}

.song-info {
    text-align: center;
    margin-bottom: 20px;
}

.song-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.song-artist {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.progress-container {
    margin: 15px 0;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

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

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.control-btn:hover {
    background: #f0f0f0;
}

.play-pause {
    width: 50px;
    height: 50px;
    background: #4a90e2;
    color: white;
}

.play-pause:hover {
    background: #3a80d2;
}

.control_left_box {
    width: 25%;
}

.control_center_box {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.control_right_box {
    position: relative;
    width: 25%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.voice_logo {
    width: 25px;
    display: flex;
    align-items: center;
    margin: 5px 10px;
}

.voice_logo img {
    width: 100%;
}

#volumeControl {
    position: absolute;
    transform: rotate(270deg);
    padding: 10px 0;
    width: 100px;
    left: -10px;
    top: -70px;
}

input[type='range'] {
    /*清除默认的样式的设置*/
    -webkit-appearance: none;
    /*未滑动的颜色*/
    background-color: #ddd;
    height: 20px;
    overflow: hidden;
    width: 400px;
}

/*轨道*/
input[type='range']::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 20px;
}

/*拖块的样式*/
input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #333;
    border-radius: 50%;
    /*滑过之后的颜色*/
    box-shadow: -210px 0 0 200px #15dc46;
    cursor: pointer;
    height: 20px;
    width: 20px;
    border: 0;
}

/*轨道*/
input[type='range']::-moz-range-thumb {
    background: #333;
    border-radius: 50%;
    box-shadow: -1010px 0 0 1000px #39ea0c;
    cursor: pointer;
    height: 20px;
    width: 20px;
    border: 0;
}

input[type="range"]::-moz-range-track {
    background-color: #c70e0e;
}

/*进度条颜色*/
input[type="range"]::-moz-range-progress {
    background-color: #37ea0c;
    height: 20px
}

input[type="range"]::-ms-fill-upper {
    background-color: #ddd;
}

input[type="range"]::-ms-fill-lower {
    background-color: #21e513;
}

.voice_range {
    position: absolute;
    bottom: 30px;
    padding: 10px 10px 5px 10px;
    background: #9797970d;
    display: none;
}
.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.slider-wrapper {
    position: relative;
    width: 10px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 40px;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #e0e0e0;
}

.slider-track-box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #4facfe 0%, #00f2fe 100%);
    border-radius: 37px;
    transform-origin: bottom;
    transform: scaleY(0.5);
}

.slider-thumb {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #4facfe;
    z-index: 11110;
    transition: all 0.2s ease;
    bottom: 50%;
}

.slider-thumb:hover {
    transform: translate(-50%, 50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.slider-thumb:active {
    transform: translate(-50%, 50%) scale(1.05);
}

.value-display {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.value-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
    white-space: nowrap;
}

@media (max-width: 480px) {
    /* .container {
        padding: 30px 20px;
    } */

    .slider-wrapper {
        width: 10px;
        height: 80px;
    }

    .slider-thumb {
        width: 16px;
        height: 16px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    list-style: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

img {
    width: 100%;
    height: 100%;
}
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
