/* ===== moshi.css - 四种出版模式 ===== */

/* ---- 板块容器 ---- */
.moshi {
  padding: 48px 5%;
  background: #fdfbf7;
  border: none;
  margin:  0;
}

/* ---- 标题 ---- */
.moshi-title {
    text-align: center;
    color: #333;
    font-size: 45px;
    margin-bottom: 10px;
    font-weight: bolder;
    font-family: Source Han Sans CN;
}
.moshi-red {
    color: #b8363a;
}
.moshi-desc {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin-bottom: 36px;
}

/* ---- PC：左右分栏（黄金比 ~38/62）---- */
.moshi-body {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* 左侧：宣传语（占 ~38%） */
.moshi-text {
  flex: 0 0 38%;
  min-width: 0;
}
.moshi-text h3 {
  color: #b8363a;
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.moshi-text p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.moshi-text .btn-hong {
  margin-top: 8px;
    font-size: 16px;
}

/* 右侧：4张卡片（占 ~62%，2×2 网格） */
.moshi-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.moshi-card {
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 10px;
  padding: 24px 18px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.moshi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.moshi-card h4 {
  color: #b8363a;
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: bolder;
  font-family: Source Han Sans CN;
}
.moshi-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}
/* ===== 折叠屏展开态（600~1023px）===== */
@media (min-width: 600px) and (max-width: 1023px) {
  .moshi {
    padding: 36px 5%;
  }
  .moshi-title {
    font-size: 38px;
  }
  .moshi-desc {
      display: none;
    font-size: 17px;
  }
  /* 折叠屏展开态：上下堆叠，不挤左右分栏 */
  .moshi-body {
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
  }
  .moshi-text {
    flex: none;
    width: 100%;
    text-align: center;
  }
  .moshi-text h3 {
      display: none;

  }
    .moshi-text p {
        color: #666;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 5px;
    }

  .moshi-cards {
    width: 100%;
    gap: 14px;
  }
  .moshi-card {
    padding: 20px 14px;
  }
  .moshi-card h4 {
    font-size: 22px;
  }
}
/* ===== 手机端：上下堆叠 ===== */
@media (max-width: 599px) {
  .moshi {
    padding: 32px 12px;
  }
  .moshi-title {
    font-size: 28px;
  }
  .moshi-desc {
    font-size: 16px;
    margin-bottom: 14px;
      width: 80%;
      margin-left: 10%;
  }
  .moshi-body {
    flex-direction: column;
    gap: 24px;
      padding-left: 3%;
      padding-right: 3%;
  }
  .moshi-text {
    flex: none;
    width: 100%;
    text-align: center;
  }
  .moshi-text h3 {
      display: none;
    font-size: 20px;
  }
  .moshi-text p{
      display: none;
  }
  .moshi-cards {
    width: 100%;
    gap: 12px;
  }
  .moshi-card {
    padding: 18px 14px;
  }
  .moshi-card h4 {
    font-size: 18px;
      font-weight: bolder;
      font-family: Source Han Sans CN;
  }
}
