@charset "utf-8";

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        /* 头部样式 */
        header {
            background-color: #e74c3c;
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        
        .logo span {
            font-size: 16px;
            display: block;
            margin-top: 5px;
            font-weight: normal;
        }
        
        .search-box {
            display: flex;
            width: 400px;
            max-width: 100%;
        }
        
        .search-box input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .search-box button {
            padding: 10px 20px;
            background-color: #2c3e50;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 16px;
        }
        
        /* 导航样式 */
        nav {
            background-color: #2c3e50;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
        }
        
        .nav-item {
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
            font-size: 16px;
        }
        
        .nav-item:hover {
            background-color: #34495e;
        }
        
        .nav-item.active {
            background-color: #e74c3c;
            font-weight: bold;
        }
        
        /* 主要内容样式 */
        main {
            padding: 20px 0;
        }
        
        .section-title {
            font-size: 24px;
            margin: 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #e74c3c;
            color: #2c3e50;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .card-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #e74c3c;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .card-content {
            font-size: 16px;
        }
        
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }
        
        .info-item {
            margin-bottom: 10px;
            display: flex;
        }
        
        .info-label {
            font-weight: bold;
            min-width: 120px;
            color: #7f8c8d;
        }
        
        .info-value {
            flex: 1;
        }
        
        .ad-banner {
            width: 100%;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            padding: 15px;
            margin: 30px 0;
            position: relative;
            text-align: center;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ad-label {
            position: absolute;
            top: 5px;
            right: 10px;
            background-color: #e74c3c;
            color: white;
            padding: 2px 8px;
            font-size: 12px;
            border-radius: 3px;
        }
        
        /* 复制按钮样式 */
        .copy-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            margin-left: 10px;
            transition: background-color 0.3s;
        }
        
        .copy-btn:hover {
            background-color: #2980b9;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .footer-link {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            padding: 5px 0;
        }
        
        .footer-link:hover {
            text-decoration: underline;
        }
        
        .copyright {
            margin-top: 20px;
            color: #bdc3c7;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .search-box {
                width: 100%;
            }
            
            .nav-container {
                justify-content: center;
            }
            
            .nav-item {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
            }
            
            .info-item {
                flex-direction: column;
            }
            
            .info-label {
                margin-bottom: 5px;
            }
        }
        
        /* 特殊样式 */
        .highlight {
            background-color: #fffde7;
            padding: 15px;
            border-left: 4px solid #fbc02d;
            margin: 15px 0;
        }
        
        .tag {
            display: inline-block;
            background-color: #e0e0e0;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .tag.important {
            background-color: #ffebee;
            color: #e53935;
        }
        
        .tag.success {
            background-color: #e8f5e9;
            color: #43a047;
        }
        
        .date {
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .contact-icon {
            width: 30px;
            height: 30px;
            background-color: #e74c3c;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }

        /* 新增的美化样式 */
    :root {
        --primary-color: #e74c3c;
        --secondary-color: #2c3e50;
        --accent-color: #3498db;
        --light-gray: #f5f5f5;
        --dark-gray: #333;
        --medium-gray: #7f8c8d;
        --white: #fff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }
    
    body {
        background-color: var(--light-gray);
        color: var(--dark-gray);
        line-height: 1.6;
        font-size: 16px;
    }
    
    .container {
        max-width: 1660px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 头部样式美化 */
    header {
        background: linear-gradient(135deg, var(--primary-color), #c0392b);
        color: var(--white);
        padding: 25px 0;
        box-shadow: var(--shadow);
        position: relative;
        z-index: 1000;
    }
    
    .logo {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .logo span {
        font-size: 16px;
        display: block;
        margin-top: 8px;
        font-weight: 400;
        opacity: 0.9;
    }
    
    /* 导航样式美化 */
    nav {
        background: var(--secondary-color);
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        padding: 16px 22px;
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        font-size: 16px;
        position: relative;
    }
    
    .nav-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-item.active {
        background-color: var(--primary-color);
        font-weight: 600;
    }
    
    .nav-item.active:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 3px;
        background-color: var(--white);
    }
    
    /* 卡片样式美化 */
    .card {
        background-color: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
        padding: 25px;
        margin-bottom: 25px;
        transition: var(--transition);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .card-title {
        font-size: 22px;
        margin-bottom: 20px;
        color: var(--primary-color);
        border-bottom: 2px solid rgba(231, 76, 60, 0.2);
        padding-bottom: 12px;
        font-weight: 600;
        position: relative;
    }
    
    .card-title:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background-color: var(--primary-color);
    }
    
    /* 广告样式美化 */
    .ad-banner {
        width: 100%;
        background: linear-gradient(to right, #f8f9fa, #e9ecef);
        border: 1px solid #dee2e6;
        padding: 20px;
        margin: 35px 0;
        position: relative;
        text-align: center;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .ad-banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    }
    
    .ad-label {
        position: absolute;
        top: 8px;
        right: 10px;
        background-color: var(--primary-color);
        color: var(--white);
        padding: 3px 10px;
        font-size: 12px;
        border-radius: 4px;
        font-weight: 600;
    }
    
    /* 按钮样式美化 */
    .copy-btn {
        background-color: var(--accent-color);
        color: var(--white);
        border: none;
        padding: 6px 12px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 14px;
        margin-left: 10px;
        transition: var(--transition);
        box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
    }
    
    .copy-btn:hover {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
    }
    
    /* 表单样式美化 */
    input, select, textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        transition: var(--transition);
        background-color: #f9f9f9;
    }
    
    input:focus, select:focus, textarea:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        outline: none;
        background-color: var(--white);
    }
    
    button[type="submit"] {
        background: linear-gradient(to right, var(--primary-color), #d62c1a);
        color: var(--white);
        border: none;
        padding: 14px 30px;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: var(--transition);
        box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    button[type="submit"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
    }
    
    /* 页脚样式美化 */
    footer {
        background: var(--secondary-color);
        color: var(--white);
        padding: 40px 0 20px;
        text-align: center;
        position: relative;
    }
    
    footer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }
    
    .footer-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        margin: 0 15px;
        padding: 8px 0;
        transition: var(--transition);
        position: relative;
    }
    
    .footer-link:hover {
        color: var(--white);
    }
    
    .footer-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: var(--transition);
    }
    
    .footer-link:hover:after {
        width: 100%;
    }
    
    .copyright {
        margin-top: 25px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        line-height: 1.8;
    }
    
    /* 新增的标签样式 */
    .tag {
        display: inline-block;
        background-color: #e0e0e0;
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 12px;
        margin-right: 8px;
        margin-bottom: 8px;
        transition: var(--transition);
    }
    
    .tag:hover {
        transform: translateY(-2px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    /* 新增的行业投诉渠道卡片样式 */
    .industry-card {
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
        padding: 25px;
        margin-bottom: 30px;
        transition: var(--transition);
        border-left: 5px solid var(--primary-color);
    }
    
    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .industry-title {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--secondary-color);
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    
    .industry-title:before {
        content: '';
        display: inline-block;
        width: 8px;
        height: 20px;
        background-color: var(--primary-color);
        margin-right: 10px;
        border-radius: 3px;
    }
    
    /* 法律合规部分样式 */
    .legal-card {
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
        padding: 25px;
        margin-bottom: 30px;
        border-top: 5px solid var(--secondary-color);
    }
    
    .legal-title {
        font-size: 22px;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-weight: 600;
        text-align: center;
        position: relative;
        padding-bottom: 15px;
    }
    
    .legal-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary-color);
    }
    
    /* 被投诉人回复样式 */
    .response-card {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
        margin-top: 20px;
        border-left: 4px solid var(--accent-color);
    }
    
    .response-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dee2e6;
    }
    
    .response-title {
        font-weight: 600;
        color: var(--secondary-color);
    }
    
    .response-date {
        color: var(--medium-gray);
        font-size: 14px;
    }
    
    /* 响应式设计优化 */
    @media (max-width: 1200px) {
        .card-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .header-content {
            flex-direction: column;
            text-align: center;
        }
        
        .logo {
            margin-bottom: 20px;
        }
        
        .search-box {
            width: 100%;
        }
        
        .nav-container {
            justify-content: center;
            overflow-x: auto;
            white-space: nowrap;
            padding: 5px 0;
        }
        
        .nav-item {
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .section-title {
            font-size: 20px;
        }
        
        .card-title {
            font-size: 18px;
        }
        
        .info-label {
            min-width: 100px;
        }
    }
    
    @media (max-width: 480px) {
        .card-grid {
            grid-template-columns: 1fr;
        }
        
        .info-item {
            flex-direction: column;
        }
        
        .info-label {
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .info-value {
            font-size: 15px;
        }
        
        .footer-links {
            flex-direction: column;
        }
        
        .footer-link {
            margin: 5px 0;
        }
    }

    /* ========== 新增的美化样式 ========== */
:root {
  --primary-color: #e74c3c;
  --secondary-color: #2c3e50;
  --accent-color: #3498db;
  --light-bg: #f9f9f9;
  --dark-text: #333;
  --light-text: #777;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --warning-color: #f39c12;
}

body {
  color: var(--dark-text);
  background-color: #fff;
}

.container {
  padding: 0 20px;
}

/* 头部美化 */
header {
  background: linear-gradient(135deg, var(--primary-color), #c0392b);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo {
  font-size: 32px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* 导航美化 */
nav {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-item {
  position: relative;
  transition: all 0.3s ease;
}

.nav-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-item:hover:after {
  width: 70%;
  left: 15%;
}

.nav-item.active {
  font-weight: bold;
}

.nav-item.active:after {
  width: 70%;
  left: 15%;
}

/* 卡片美化 */
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.card-title:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
}

/* 广告位美化 */
.ad-banner {
  background: var(--light-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  position: relative;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 500;
}

.ad-label {
  background: var(--primary-color);
  color: white;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  right: 15px;
}

/* 按钮美化 */
.copy-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.copy-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 表单美化 */
input, textarea, select {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 15px;
  width: 100%;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
  outline: none;
}

button[type="submit"] {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(231,76,60,0.3);
}

button[type="submit"]:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231,76,60,0.4);
}

/* 页脚美化 */
footer {
  background: var(--secondary-color);
  color: white;
  padding: 40px 0 20px;
}

.footer-link {
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: white;
  text-decoration: none;
}

.footer-link:after {
  content: '•';
  position: absolute;
  right: -20px;
  color: rgba(255,255,255,0.3);
}

.footer-link:last-child:after {
  display: none;
}

.copyright {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-link {
    margin: 0 10px;
  }
  
  .footer-link:after {
    display: none;
  }
}

/* ========== 新增的特殊样式 ========== */
/* 法律声明特殊样式 */
.legal-card {
  border-left: 4px solid var(--secondary-color);
}

.legal-section {
  margin-bottom: 25px;
}

.legal-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

/* 被投诉方回复样式 */
.response-card {
  border-left: 4px solid var(--accent-color);
}

.response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border-color);
}

.response-meta {
  color: var(--light-text);
  font-size: 14px;
}

.response-content {
  background: var(--light-bg);
  padding: 15px;
  border-radius: 6px;
  margin-top: 10px;
}

/* 标签样式增强 */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  background: #f0f0f0;
  color: #555;
}

.tag.important {
  background: #ffebee;
  color: #e53935;
}

.tag.success {
  background: #e8f5e9;
  color: #43a047;
}

.tag.warning {
  background: #fff8e1;
  color: #ff8f00;
}

/* 联系信息样式增强 */
.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px;
  background: var(--light-bg);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 16px;
}