@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;
            opacity: 0.9;
        }
        
        .search-box {
            display: flex;
            width: 100%;
            max-width: 500px;
            margin: 15px 0;
        }
        
        .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: #c0392b;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 16px;
        }
        
        /* 导航样式 */
        nav {
            background-color: #c0392b;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
        }
        
        .nav-item {
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s;
            position: relative;
        }
        
        .nav-item:hover, .nav-item.active {
            background-color: #a5281b;
        }
        
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #f1c40f;
        }
        
        /* 主要内容样式 */
        main {
            padding: 20px 0;
        }
        
        .section-title {
            font-size: 22px;
            margin: 20px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e74c3c;
            color: #e74c3c;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            font-size: 24px;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            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-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 15px;
        }
        
        .card-desc {
            margin-bottom: 15px;
            color: #555;
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            font-size: 14px;
        }
        
        .card-tag {
            background-color: #e74c3c;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
        
        .read-more {
            color: #e74c3c;
            text-decoration: none;
            font-weight: bold;
        }
        
        /* 广告样式 */
        .ad-container {
            position: relative;
            width: 100%;
            height: auto;
            margin: 30px 0;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .ad-label {
            position: absolute;
            top: 5px;
            right: 5px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
        
        .ad-img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 详细信息卡片 */
        .detail-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .detail-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #e74c3c;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #7f8c8d;
        }
        
        .detail-meta-item {
            display: flex;
            align-items: center;
        }
        
        .detail-meta-item i {
            margin-right: 5px;
        }
        
        .detail-content {
            margin-bottom: 20px;
        }
        
        .detail-section {
            margin-bottom: 15px;
        }
        
        .detail-section-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .detail-media {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        
        .detail-media-item {
            width: calc(33.333% - 10px);
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .detail-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            font-size: 14px;
        }
        
        /* 复制按钮 */
        .copy-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #e74c3c;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 99;
            border: none;
            font-size: 20px;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #f1c40f;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #f1c40f;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 14px;
            color: #bdc3c7;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .card-container {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .search-box {
                margin: 15px auto;
            }
            
            .nav-container {
                justify-content: center;
            }
            
            .detail-media-item {
                width: calc(50% - 8px);
            }
        }
        
        @media (max-width: 768px) {
            .nav-item {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .card-container {
                grid-template-columns: 1fr;
            }
            
            .detail-media-item {
                width: 100%;
            }
            
            .copy-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            
            .nav-container {
                justify-content: space-around;
            }
            
            .nav-item {
                padding: 8px 10px;
                font-size: 13px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .card-title {
                font-size: 16px;
            }
            
            .detail-title {
                font-size: 18px;
            }
        }

        /* 新增美化样式 */
/* 渐变背景和阴影效果 */
body {
    background: linear-gradient(135deg, #f9f9f9 0%, #eef2f5 100%);
}

.header-content {
    background: linear-gradient(to right, #e74c3c, #c0392b);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card {
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #e74c3c, #c0392b);
}

.card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
    border-radius: 3px;
}

.detail-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
}

.copy-btn {
    background: linear-gradient(to right, #e74c3c, #c0392b);
    transition: all 0.3s;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

footer {
    background: linear-gradient(to right, #2c3e50, #34495e);
    margin-top: 50px;
}

.footer-section h3 {
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f1c40f;
}

/* 新增动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card, .detail-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* 延迟动画 */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }

/* 新增法律信息卡片特殊样式 */
.legal-card {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.legal-card .detail-title {
    color: #3498db;
}

.legal-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.legal-section h4 {
    color: #2c3e50;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.legal-highlight {
    background-color: #fffde7;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 15px 0;
}

.legal-contact {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}


/* ==================== 新增全局美化 ==================== */
:root {
  --primary-color: #e74c3c;
  --primary-dark: #c0392b;
  --secondary-color: #3498db;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #34495e;
  --text-light: #7f8c8d;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  color: var(--text-color);
  background: linear-gradient(135deg, #f9f9f9 0%, #f1f5f9 100%);
  line-height: 1.7;
}

/* ==================== 卡片高级美化 ==================== */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(231, 76, 60, 0.2);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.03);
}

.card-content {
  padding: 25px;
  position: relative;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s;
}

.card:hover .card-title {
  color: var(--primary-color);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #eee;
}

.card-desc {
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.85rem;
}

.card-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: margin 0.3s;
}

.read-more:hover::after {
  margin-left: 8px;
}

/* ==================== 详情卡片高级美化 ==================== */
.detail-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
}

.detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.detail-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 20px;
}

.detail-meta-item i {
  margin-right: 5px;
  color: var(--primary-color);
}

.detail-content {
  margin-bottom: 20px;
}

.detail-section {
  margin-bottom: 25px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid var(--secondary-color);
}

.detail-section-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.detail-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--secondary-color);
  margin-right: 10px;
  border-radius: 2px;
}

.detail-media {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.detail-media-item {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: zoom-in;
}

.detail-media-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==================== 法律卡片特殊样式 ==================== */
.legal-card {
  border-left-color: var(--secondary-color);
}

.legal-card .detail-title {
  color: var(--secondary-color);
}

.legal-card .detail-title::after {
  background: var(--secondary-color);
}

.legal-section {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #e0e0e0;
}

.legal-section h4 {
  color: var(--dark-color);
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.legal-highlight {
  background-color: #f8f9fa;
  padding: 20px;
  border-left: 4px solid var(--secondary-color);
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  position: relative;
}

.legal-highlight::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: rgba(52, 152, 219, 0.1);
  font-family: serif;
  line-height: 1;
}

.legal-contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.legal-contact h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* ==================== 微交互增强 ==================== */
.card-container {
  perspective: 1000px;
}

.card {
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) rotateX(5deg);
}

.detail-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ==================== 响应式优化 ==================== */
@media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .detail-section {
    padding: 15px;
  }
  
  .detail-media {
    grid-template-columns: 1fr;
  }
}

/* ==================== 专业细节增强 ==================== */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 30px 0 25px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 3px;
}

.ad-container {
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  margin: 40px 0;
}

.ad-container:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.copy-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  border: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 999;
  transition: all 0.3s;
}

.copy-btn:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* ==================== 精美加载动画 ==================== */
@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card, .detail-card {
  animation: cardEntrance 0.6s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.detail-card { animation-delay: 0.2s; }