/* 自动播放渐变动画样式 */
.btn-gd-primary-qfb {
    color: #fff;
    border: none;
    background: linear-gradient(-45deg, #448bff, #44e9ff, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 1000% 1000%;
    padding-top: 6px;
    padding-bottom: 6px;
    animation: Gradient 40s linear infinite;
    transition: all 0.2s ease;
    width: 100%;
    height: 300px; /* 设置高度为300px */
    font-size: 20px; /* 调整字体大小以适应按钮大小 */
    display: flex;
    align-items: center;
    justify-content: space-between; /* 调整为左右对齐 */
    position: relative;
    padding-left: 50px; /* 增加左边距 */
    padding-right: 50px; /* 增加右边距 */
}

/* 渐变动画定义 */
@keyframes Gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.btn-rounded-qfb {
    border-radius: 2px;
}

.box-shadow-wrap-lg-qfb {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.padder-lg-qfb {
    padding: 10px 20px;
}

.hide-qfb {
    display: none;
}

.text-active-qfb {
    display: none;
}

.animate-spin-qfb {
    animation: spin 1s linear infinite;
}

@keyframes spin-qfb {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 文字样式 */
.text-container-qfb {
    position: relative;
    color: white; /* 字体颜色更改为白色 */
    text-align: left;
}

.title-qfb {
    font-size: 36px;
    font-weight: bold;
}

/* 按钮容器样式 */
.btn-container-qfb {
    position: relative;
}

/* 按钮样式 */
.custom-btn-qfb {
    background-color: #f5d2a5;
    color: #9e6b41;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.custom-btn-qfb:hover {
    background-color: #e6c197;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .btn-gd-primary-qfb {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: auto;
        padding: 20px;
        font-size: 17px;
    }

    .title-qfb {
        font-size: 33px;
    }

    .custom-btn-qfb {
        font-size: 14px;
        padding: 8px 16px;
        margin-top: 10px;
    }

    .text-container-qfb {
        padding-bottom: 20px;
    }
}