* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "ZhuQueFangSong";
  src: url(../font/zhuquefangsong.ttf);
}
body {
  font-family: -apple-system, Arial, "ZhuQueFangSong", sans-serif;
  min-height: 100vh;
  line-height: 1.6em;
  color: #333;
  background: #f8f9fa;
  font-size: 0.85em;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.header {
  background-color: #96f1db;
  background: url(../images/shouyedingbu_1.jpg) no-repeat center center;
  background-size: cover;
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.jieqi-tianqi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  color: #000;
  padding: 20px 0;
/* 半透明白色 */
  background: rgba(255, 255, 255, 0.25);
  /* 模糊程度 */
  backdrop-filter: blur(9px);
  /* 亮边 */
  border: 1px solid rgba(255, 255, 255, 0.4);
  
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.38);
  border-radius: 10px;

}

.jieqi,.tianqi {
  width: 50%;
}

.jieqi dt {
  line-height: 1.38em;
  font-size: 3.2rem;
  color: #ec4319;
}
.jieqi dd.ganzhi { 
font-size: 0.75em;
}

.tianqi {
  border-left: 1px solid #ec4319;
}

.tianqi dd img {
  filter: hue-rotate(180deg) saturate(150%);
  height: 3.5em;
}

.tianqi dt {
font-size: 1.25em;
  position: relative;   
  display: flex;
  align-items: center;
  justify-content: center;
}

.tianqi dt::after {
  content: '';
    position: absolute;
    bottom: 0.1em;
    right: 5%;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #e74c3c;
}
.shiCi-Title {
  font-size: 1.25em;
  margin: 20px 0;
}
.content {
  padding: 30px 30px;
}
.notice-box {
    background: #fff3cd;
      border-left: 5px solid #ffc107;
      padding: 10px 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.notice-box p {
  margin-bottom: 15px;
  line-height: 1.8em;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

.special-notice {
  border-left: 5px solid #bf0c21;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.special-notice h1 {
  color: #721c24;
  font-size: 1.5rem;
  margin: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.list-section {
  margin-top: 30px;
}

.section-title {
  font-size: 1.3rem;
  color: #bf0c21;
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.section-title::before {
  content: '📥';
  margin-right: 10px;
  font-size: 1.5rem;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.list-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #bf0c21 0%, #c33764 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
  border-color: #bf0c21;
}

.list-item:hover::before {
  opacity: 0.05;
}

.list-item-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.list-icon {
  width: 45px;
  height: 45px;
  background: #bf0c21;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.list-text {
  flex: 1;
  font-weight: 600;
  font-size: 1.05rem;
  color: #333;
}

.list-item:hover .list-text {
  color: #bf0c21;
}

.footer {
  background: #f8f9fa;
  padding: 20px 30px;
  text-align: center;
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {

  .header {
    padding: 30px 20px;
  }

  .mArtTitle {
    font-size: 1.6rem;
  }

  .content {
    padding: 25px 20px;
  }

  .special-notice h1 {
    font-size: 1.2rem;
  }

  .list-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .list-item {
    padding: 15px;
  }

  .list-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .list-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mArtTitle {
    font-size: 1.4rem;
  }

  .mArtSubTitle {
    font-size: 0.9rem;
  }

  .span_from {
    padding: 6px 15px;
  }
}