/* 自定义样式覆盖 */

/* 特别提醒区域样式修改 */
.special-notice {
    background-color: #07C160 !important; /* 微信绿色 */
}

.special-notice .notice-content a {
    color: white !important;
    text-decoration: none !important;
}

/* 页脚友情链接样式修改 */
.footer-bottom a {
    color: white !important;
}

.footer-bottom a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7) !important;
}

/* 英雄区域颜色对调 */
.hero {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0) !important;
    color: #07C160 !important;
}

.hero h1 {
    color: #07C160 !important;
}

.hero .hero-subtitle {
    color: #07C160 !important;
    opacity: 0.9 !important;
}

.hero .stat-item {
    background: rgba(7, 193, 96, 0.1) !important;
    border: 1px solid rgba(7, 193, 96, 0.2) !important;
}

.hero .stat-value,
.hero .stat-label {
    color: #07C160 !important;
}

.hero .cta-button.secondary {
    background: rgba(7, 193, 96, 0.1) !important;
    color: #07C160 !important;
    border: 1px solid rgba(7, 193, 96, 0.2) !important;
}

.hero .cta-button.primary {
    background: #07C160 !important;
    color: white !important;
}

.hero-scroll-indicator i {
    color: #07C160 !important;
}

/* 特价套餐区域样式 */
.special-offers {
    padding: 4rem 0;
    padding-top: 8rem;
    background: linear-gradient(135deg, #f5f7fa, #ebeffc);
    text-align: center;
    margin-top: 60px;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
}

.offers-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.offer-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #07C160;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.offer-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-content {
    padding: 1.5rem;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #333;
    position: relative;
    padding-bottom: 0.8rem;
}

.offer-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #07C160;
    border-radius: 3px;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.8rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 1.5rem;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.3rem;
    color: #555;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.offer-features li:hover {
    background-color: rgba(7, 193, 96, 0.08);
}

.offer-features i {
    color: #07C160;
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
}

/* 添加特色标签样式 */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-tags .tag-red,
.feature-tags .tag-green {
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.feature-tags .tag-red {
    background-color: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.feature-tags .tag-green {
    background-color: rgba(7, 193, 96, 0.08);
    color: #07C160;
    border: 1px solid rgba(7, 193, 96, 0.15);
}

.feature-tags .tag-red:hover,
.feature-tags .tag-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.feature-tags .tag-red:hover {
    background-color: rgba(255, 68, 68, 0.15);
}

.feature-tags .tag-green:hover {
    background-color: rgba(7, 193, 96, 0.12);
}

/* 优化价格显示 */
.offer-price {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    border-left: 5px solid #07C160;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.offer-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #07C160, #05a050);
}

.price-tag {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.price-tag::before {
    content: '￥';
    position: absolute;
    top: 0.2rem;
    left: -1rem;
    font-size: 1.2rem;
    color: #07C160;
    opacity: 0.5;
}

.price-value {
    font-size: 2.6rem;
    font-weight: 700;
    color: #07C160;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(7, 193, 96, 0.15);
}

.price-period {
    font-size: 1rem;
    color: #666;
    margin-top: 0.4rem;
}

.original-price {
    position: relative;
    z-index: 2;
    right: 0.5rem;
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-left: 1rem;
}

.original-price::before {
    content: '每用户仅购一台';
    position: absolute;
    top: -1.8rem;
    right: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    white-space: nowrap;
}

.offer-card:first-child .original-price::before {
    content: '每用户仅购一台';
}

/* 调整按钮 */
.offer-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(90deg, #07C160, #06b055);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(7, 193, 96, 0.2);
    position: relative;
    overflow: hidden;
}

.offer-button:hover {
    background: linear-gradient(90deg, #06b055, #059e4c);
    box-shadow: 0 6px 15px rgba(7, 193, 96, 0.3);
    transform: translateY(-2px);
}

.offer-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.offer-button:hover:before {
    left: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .offers-container {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-card {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* 英雄区轮播修复 */
.hero-slide {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
}

.hero-slide:first-child {
    display: block;
}

.hero-dots .dot {
    background: none;
    border: none;
    cursor: pointer;
}

.hero-dots .dot.active {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 全局内容宽度统一 */
.activity-list,
.activity-categories,
.activity-rules,
.special-offers .section-header,
.activity-categories .category-tabs {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
} 