
.button-container {
    display: flex;
    align-items: center;
    cursor: pointer; 
    padding: 10px; /* 添加内边距作为间隔 */
    background-color: #c1c1c1; /* 默认背景色 */
    border-radius: 10px; /* 为整个容器添加圆角 */
   width: 100%; 
    margin-left: auto;
    margin-right: auto;
 justify-content: center;}

.button-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover; /* 确保图片始终覆盖整个容器 */
    margin-right: 10px; /* 右边距，以便与文本分开 */
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.title-first-line {
    font-size: 1.5em;
    color: #000;
    margin-bottom: 5px; 
}

.title-second-line {
    font-size: 0.85em;
    color: #000;
}


.button-container:hover  {
    background-color: #e9e9e9; 
}.akkcustom-button {width: 30%;height: 80px;padding: 10px;font-size: 18px;border: none;background-color: #729959;color: white;border-radius: 30px;cursor: pointer;transition: background-color 0.3s ease;}.akkcustom-button:hover {background-color: #56694a;}


.player {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    background: #333;
    border-radius: 10px;
    padding: 30px;
    width: 97%; 
    max-width: 100%; 
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

        .player button {
            background: none;
            border: none;
            outline: none;
            color: white;
            font-size: 54px;
            cursor: pointer;
            margin-right: 10px;
        }
        .player input[type="range"] {
            -webkit-appearance: none;
            width: 100%;
            height: 8px;
            background: #ccc;
            border-radius: 5px;
            outline: none;
            padding: 0;
            margin: 0 10px;
        }
        .player input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            background: white;
            border: 2px solid #00bcd4;
            border-radius: 50%;
            cursor: pointer;
        }
        .player input[type="range"]::-moz-range-thumb {
            width: 16px;
            height: 16px;
            background: white;
            border: 2px solid #00bcd4;
            border-radius: 50%;
            cursor: pointer;
        }
        .player .time {
            color: #00bcd4;
            font-size: 36px;
        }
        .volume-control {
            display: flex;
            align-items: center;
        }
        .volume-control input[type="range"] {
            width: 150px;
            margin-left: 5px;
        }

