/* 固定按钮容器样式 */
.fixed-buttons-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

/* 固定按钮样式 */
.fixed-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
    flex: 1;
}

/* 固定按钮图标样式 */
.fixed-button-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 苹果图标 */
.fixed-button-icon.apple {
    background-image: url('../sc/苹果.svg');
}

/* 安卓图标 */
.fixed-button-icon.android {
    background-image: url('../sc/安卓.svg');
}

/* 客服图标 */
.fixed-button-icon.home {
    background-image: url('../sc/客服.svg');
}

/* 固定按钮文字样式 */
.fixed-button-text {
    font-size: 12px;
    color: #333;
    text-align: center;
}