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

/* 主页面滚动条样式 */
::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f0f2f5 0%, #e1e8f0 100%);
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e63946 0%, #c1121f 100%);
  border-radius: 10px;
  border: 3px solid #f0f2f5;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f84b57 0%, #d62839 100%);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #c1121f 0%, #9d0b1b 100%);
}

::-webkit-scrollbar-corner {
  background: #f0f2f5;
}

::-webkit-scrollbar { width: 0; }
body:hover::-webkit-scrollbar { width: 6px; }
/* ::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: transparent; }
body:hover::-webkit-scrollbar-thumb { background: rgba(230, 57, 70, 0.7); } */

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.header {
  background: linear-gradient(to right, #e63946, #d62839);
  color: white;
  padding: 30px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.1"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
  background-size: cover;
}

.header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 300;
  position: relative;
}

.warning-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.content {
  padding: 40px;
}

.intro {
  font-size: 1.15rem;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #e1e8f0;
  color: #444;
  line-height: 1.7;
}

.section {
  margin-bottom: 35px;
}

.section-title {
  font-size: 1.4rem;
  color: #d62839;
  margin-bottom: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 12px;
  font-size: 1.3rem;
}

.warning-list {
  list-style-type: none;
  counter-reset: warning-counter;
}

.warning-list li {
  counter-increment: warning-counter;
  margin-bottom: 18px;
  padding: 18px 20px 18px 60px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #e63946;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
}

.warning-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.06);
  background: #fff5f5;
}

.warning-list li::before {
  content: counter(warning-counter);
  position: absolute;
  left: 20px;
  top: 18px;
  background: #e63946;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.risk-list {
  list-style-type: none;
  margin: 15px 0 0 20px;
}

.risk-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #555;
}

.risk-list li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.penalty-section {
  background: #fff8f8;
  border-radius: 12px;
  padding: 25px;
  margin-top: 10px;
  border: 1px solid #ffccd5;
}

.highlight {
  background: linear-gradient(120deg, #ffef78 0%, #ffef78 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  background-position: 0 88%;
  font-weight: 600;
  padding: 0 2px;
}

.conclusion {
  font-size: 1.15rem;
  padding: 25px;
  background: #f0f7ff;
  border-radius: 12px;
  margin-top: 30px;
  border-left: 5px solid #4a90e2;
}

.footer {
  text-align: center;
  padding: 25px;
  background: #f8f9fa;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #e1e8f0;
}

.official-stamp {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: #e63946;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .container {
      border-radius: 12px;
  }
  
  .header {
      padding: 25px 20px;
  }
  
  .header h1 {
      font-size: 1.8rem;
  }
  
  .content {
      padding: 25px 20px;
  }
  
  .warning-list li {
      padding: 15px 15px 15px 55px;
  }
  
  .warning-list li::before {
      left: 15px;
  }
}

@media (max-width: 480px) {
  body {
      padding: 10px;
  }
  
  .header h1 {
      font-size: 1.5rem;
  }
  
  .warning-icon {
      font-size: 2.8rem;
  }
  
  .section-title {
      font-size: 1.2rem;
  }
  
  .intro, .conclusion {
      font-size: 1rem;
  }
}