* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 16px;
    opacity: 0.9;
}

/* Header内链接样式 */
.header a {
    color: #fff9c4; /* 浅黄色，与红色背景形成对比 */
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header a:hover {
    color: white;
    border-bottom: 1px solid white;
}

.content {
    padding: 35px 25px;
}

.section {
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 12px;
    background-color: #fafafa;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.section:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.section h2 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 8px;
    font-weight: 600;
}

.section p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
}

.after-sales-info ul {
    list-style-type: none;
    padding-left: 0;
}

.after-sales-info li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    font-size: 15px;
}

.after-sales-info li:before {
    content: "✓";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    border: 2px solid #e74c3c;
}

/* 电话按钮样式 */
.call-button-container {
    margin-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.call-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 1;
    min-width: 140px;
    white-space: nowrap; /* 防止文字换行 */
}

.call-button:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
}

.call-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

/* 微信按钮样式 */
.wechat-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    flex-shrink: 1;
    min-width: 140px;
    white-space: nowrap; /* 防止文字换行 */
}

.wechat-button:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

.wechat-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

/* 弹窗样式 */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.popup-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    line-height: 1;
    padding: 0 5px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.popup-content h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 22px;
    border-bottom: 2px solid #2ecc71;
    padding-bottom: 10px;
}

.wechat-qrcode {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.wechat-qrcode img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.popup-content p {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.qrcode-section {
    text-align: center;
    background-color: white;
    border: 2px solid #e74c3c;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.qrcode {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.qrcode img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.qrcode-section p {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.store-info {
    background: linear-gradient(135deg, #fff5f5 0%, #fff3f3 100%);
    border-left: 5px solid #e74c3c;
}

.store-info p {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-info p strong {
    color: #e74c3c;
    min-width: 80px;
    text-align: left;
}

.announcement {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
    border-left: 5px solid #ff9800;
    border-radius: 12px;
}

.announcement p {
    font-size: 15px;
    color: #e65100;
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px dashed #ff9800;
}

.footer {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.contact-info {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    color: #1976d2;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

/* 食安风险公示页面样式 */
.food-safety-banner {
    text-align: center;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
}

.food-safety-banner h2 {
    color: white;
    border-bottom-color: white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.food-safety-intro {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
}

/* 食安风险内容区域 */
.food-safety-section {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #4caf50;
}

.food-safety-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.food-safety-section h3 {
    color: #4caf50;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 风险等级 */
.risk-levels {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.risk-item {
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.risk-item:hover {
    transform: translateX(5px);
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.risk-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.high-risk {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
}

.high-risk h4 {
    color: #c62828;
}

.medium-risk {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
}

.medium-risk h4 {
    color: #ef6c00;
}

.low-risk {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.low-risk h4 {
    color: #2e7d32;
}

/* 安全提示 */
.safety-tips {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tip-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background-color: #e0e0e0;
    transform: translateX(5px);
}

.tip-icon {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
    margin-top: 2px;
}

.tip-content {
    flex: 1;
}

.tip-content p {
    margin: 0;
    line-height: 1.6;
}

/* 法律法规 */
.laws-section {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.laws-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.laws-section li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.laws-section li:last-child {
    border-bottom: none;
}

.laws-section li:before {
    content: "📖";
    position: absolute;
    left: 0;
    top: 10px;
}

/* 应急处理 */
.emergency-section {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.emergency-section p {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.emergency-section p:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 5px;
}

/* 投诉信息 */
.complaint-section {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.inspection-result {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

/* 活动页面样式 */
.activity-banner {
    text-align: center;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.activity-banner h2 {
    color: white;
    border-bottom-color: white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.activity-intro {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
}

/* 活动列表样式 */
.activity-list {
    margin-top: 35px;
}

.activity-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #ff9800;
}

.activity-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.activity-header h3 {
    color: #e74c3c;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.activity-date {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.activity-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.activity-icon {
    font-size: 40px;
    min-width: 60px;
    text-align: center;
    padding-top: 10px;
    color: #ff9800;
}

.activity-text p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.activity-text p:last-child {
    margin-bottom: 0;
}

.activity-text strong {
    color: #e74c3c;
}

/* 活动联系信息样式 */
.activity-contact {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid #ff9800;
}

.activity-contact h2 {
    color: #ff9800;
    border-bottom-color: #ff9800;
}

/* 门店通知页面样式 */
.notifications-banner {
    text-align: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.notifications-banner h2 {
    color: white;
    border-bottom-color: white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.notifications-intro {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
}

/* 通知列表 */
.notifications-list {
    margin-top: 35px;
}

.notification-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #e74c3c;
}

.notification-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.notification-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.notification-icon {
    font-size: 30px;
    margin-top: 5px;
    color: #e74c3c;
}

.notification-info h3 {
    color: #e74c3c;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.notification-date {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.notification-content p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.notification-content p:last-child {
    margin-bottom: 0;
}

.notification-content strong {
    color: #e74c3c;
}

/* 门店评价页面样式 */
.reviews-banner {
    text-align: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.reviews-banner h2 {
    color: white;
    border-bottom-color: white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.reviews-intro {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
}

/* 评价统计 */
.reviews-stats {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #e74c3c;
}

.reviews-stats:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.stats-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.overall-rating {
    text-align: center;
    min-width: 150px;
}

.rating-score {
    font-size: 50px;
    font-weight: bold;
    color: #e74c3c;
    display: block;
    line-height: 1;
}

.rating-stars {
    font-size: 24px;
    margin: 10px 0;
    display: block;
}

.rating-count {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.rating-distribution {
    flex: 1;
    min-width: 250px;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.star-level {
    width: 80px;
    text-align: center;
    font-size: 16px;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #e74c3c;
    border-radius: 6px;
    transition: width 0.5s ease;
}

.progress-percentage {
    width: 40px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

/* 评价列表 */
.reviews-list {
    margin-top: 35px;
}

.review-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #e74c3c;
}

.review-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.review-header {
    margin-bottom: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #e74c3c;
}

.customer-details h3 {
    color: #e74c3c;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.review-stars {
    font-size: 16px;
    margin: 0 0 5px 0;
}

.review-date {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.review-content p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.review-content p:last-child {
    margin-bottom: 0;
}

.review-content strong {
    color: #e74c3c;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* 响应式设计优化 */
@media (max-width: 480px) {
    .activity-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .activity-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .activity-icon {
        margin-bottom: 15px;
    }
    
    .container {
        box-shadow: none;
    }
    
    .header {
        padding: 25px 20px;
    }
    
    .header h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    /* 导航链接在移动端的优化 */
    .header p {
        font-size: 14px;
        line-height: 1.5;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .header p a {
        padding: 0 5px;
    }
    
    .content {
        padding: 25px 20px;
    }
    
    .section {
        padding: 20px;
    }
    
    /* 按钮容器在移动端的优化 */
    .call-button-container {
        gap: 10px;
    }
    
    .call-button, .wechat-button {
        padding: 12px 25px;
        font-size: 16px;
        min-width: 120px;
    }
    
    .qrcode {
        width: 180px;
        height: 180px;
    }
    
    .store-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* 弹窗在移动端的优化 */
    .popup-content {
        padding: 20px;
        margin: 10% auto;
        width: 95%;
        max-width: 350px;
    }
    
    .wechat-qrcode {
        width: 200px;
        height: 200px;
    }
    
    .popup-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* 门店通知移动端样式 */
    .notification-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .notification-icon {
        margin-bottom: 10px;
    }
    
    .notification-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* 门店评价移动端样式 */
    .stats-overview {
        flex-direction: column;
        gap: 25px;
    }
    
    .overall-rating {
        min-width: auto;
    }
    
    .rating-score {
        font-size: 40px;
    }
    
    .rating-distribution {
        min-width: auto;
        width: 100%;
    }
    
    .distribution-item {
        margin-bottom: 12px;
    }
    
    .star-level {
        width: 70px;
        font-size: 14px;
    }
    
    .progress-bar {
        min-width: 100px;
        margin: 0 8px;
    }
    
    .customer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .customer-avatar {
        margin-bottom: 5px;
    }
    
    .review-content p {
        font-size: 14px;
    }
    
    .review-tags {
        gap: 8px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* 媒体账号公示页面样式 */
.media-banner {
    text-align: center;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
}

.media-banner h2 {
    color: white;
    border-bottom-color: white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.media-intro {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
}

/* 媒体账号列表样式 */
.media-list {
    margin-top: 35px;
}

.media-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #2196f3;
}

.media-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.media-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.media-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #2196f3;
}

.media-info h3 {
    color: #2196f3;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.media-name {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.media-content {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.media-qrcode {
    width: 150px;
    height: 150px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.media-description {
    flex: 1;
    min-width: 250px;
}

.media-description p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.media-description strong {
    color: #2196f3;
}

.media-action {
    display: flex;
    justify-content: flex-end;
}

.follow-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

.follow-button:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
    transform: translateY(-2px);
}

.follow-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

/* 媒体账号使用声明样式 */
.media-declaration {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
}

.media-declaration h3 {
    color: #2196f3;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.declaration-content p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.declaration-content p:before {
    content: "•";
    color: #2196f3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 媒体联系信息样式 */
.media-contact {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
}

.media-contact h3 {
    color: #2196f3;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.contact-content p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-content strong {
    color: #2196f3;
    min-width: 80px;
    display: inline-block;
}

/* 响应式设计优化 - 媒体页面 */
@media (max-width: 480px) {
    .media-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .media-qrcode {
        margin-bottom: 15px;
    }
    
    .media-action {
        justify-content: center;
    }
}

/* 门店通知页面样式 */
.notifications-banner {
    text-align: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.notifications-banner h2 {
    color: white;
    border-bottom-color: white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.notifications-intro {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
}

/* 通知列表样式 */
.notifications-list {
    margin-top: 35px;
}

.notification-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #e74c3c;
}

.notification-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notification-icon {
    font-size: 35px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #e74c3c;
}

.notification-info h3 {
    color: #e74c3c;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.notification-date {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.notification-content p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.notification-content p:last-child {
    margin-bottom: 0;
}

.notification-content strong {
    color: #e74c3c;
}

/* 通知说明样式 */
.notifications-notice {
    background-color: #ffebee;
    border-left: 5px solid #e74c3c;
}

.notifications-notice h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.notice-content p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.notice-content p:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 通知联系我们样式 */
.notifications-contact {
    background-color: #ffebee;
    border-left: 5px solid #e74c3c;
}

.notifications-contact h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.notifications-contact .contact-content p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.notifications-contact .contact-content strong {
    color: #e74c3c;
    min-width: 80px;
    display: inline-block;
}

/* 门店评价页面样式 */
.reviews-banner {
    text-align: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.reviews-banner h2 {
    color: white;
    border-bottom-color: white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.reviews-intro {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
}

/* 评价统计样式 */
.reviews-stats {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    margin-top: 35px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #e74c3c;
}

.stats-overview {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    align-items: center;
}

.overall-rating {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.rating-score {
    font-size: 48px;
    font-weight: bold;
    color: #e74c3c;
    margin-right: 10px;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 24px;
    color: #f39c12;
    display: block;
    margin-bottom: 10px;
}

.rating-count {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.rating-distribution {
    flex: 1;
    min-width: 250px;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.distribution-item:last-child {
    margin-bottom: 0;
}

.star-level {
    font-size: 16px;
    width: 80px;
    flex-shrink: 0;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 10px;
    min-width: 120px;
}

.progress-fill {
    height: 100%;
    background-color: #e74c3c;
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-percentage {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    width: 40px;
    flex-shrink: 0;
    text-align: right;
}

/* 评价列表样式 */
.reviews-list {
    margin-top: 35px;
}

.review-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #e74c3c;
}

.review-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.review-header {
    margin-bottom: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    font-size: 35px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #e74c3c;
}

.customer-details h3 {
    color: #e74c3c;
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.review-stars {
    font-size: 16px;
    color: #f39c12;
    margin-bottom: 5px;
}

.review-date {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.review-content {
    margin-top: 20px;
}

.review-content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
}

.review-content strong {
    color: #e74c3c;
}

.review-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* 评价说明样式 */
.reviews-notice {
    background-color: #ffebee;
    border-left: 5px solid #e74c3c;
}

.reviews-notice h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* 评价联系我们样式 */
.reviews-contact {
    background-color: #ffebee;
    border-left: 5px solid #e74c3c;
}

.reviews-contact h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.reviews-contact .contact-content p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.reviews-contact .contact-content strong {
    color: #e74c3c;
    min-width: 80px;
    display: inline-block;
}