/* 宣传区域样式 */
.promo-wrapper {
    margin: 5px 0;
    width: 100%;
    overflow-x: auto;
    display: flex;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.promo-wrapper::-webkit-scrollbar {
    display: none;
}

.promo-container {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
}

.promo-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin-right: 10px;
}

.promo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.promo-content {
    flex: 1;
    min-width: 0;
}

.promo-title {
    font-size: 14px;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-slogan {
    font-size: 14px;
    margin-bottom: 8px;
}

.promo-slogan span {
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #dab464;
    font-size: 12px;
    color: #be9131;
    margin-right: 8px;
}

.promo-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 10px;
    min-width: 60px;
}

.promo-btn {
    width: 100%;
    height: 24px;
    line-height: 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
}

.promo-btn-primary {
    background: #92C426;
    box-shadow: 0px 2px 1px #88B71D;
    color: white;
}

.promo-btn-primary:hover {
    background-color: #88B71D;
}

.promo-btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.promo-btn-secondary:hover {
    background-color: #e0e0e0;
}