
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
.container {
width: 95%;
    max-width: 1200px;
    margin: auto;
}
.container p {margin-top: 10px;}
.container h3 {       width: 15rem;
    height: 80px;
    line-height: 80px;
    font-size: 25px;
    font-weight: 600;
    background: #FFFFFF;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #826397;
    margin: 0 auto;
    }
.container img {width:100%}
.site-header {
  background: #1f3b57;
  color: #fff;
  padding: 1rem 0;
}
.site-header .logo {
  font-size: 1.8rem;
  font-weight: bold;text-align: center;
}
.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}
.hero {
  background: linear-gradient(to right, #5585b5, #53a0c6);
  color: white;
  padding: 50px 0;
  text-align: center;
}
.hero .btn {
  display: inline-block;
  margin-top: 20px;        width: 60%;
  background: white;
  color: #336699;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;font-size: 25px;
}
.features {
  background: #fff;
  padding: 20px 0;
  text-align: center;
}
.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}
.step {
  background: #f0f0f0;
  padding: 20px;
  margin-bottom: 15px;
  flex: 1;
  min-width: 150px;
  border-radius: 6px;text-align: justify;
}
.types-preview {
  background: #eef4f9;
  padding: 40px 0;
  text-align: center;
}
.type-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.type-item {
  background: white;
  padding: 20px;
  border-radius: 6px;

}
.site-footer {
  background: #1f3b57;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
.site-footer p {margin-top:0px;}
@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .steps, .type-grid {
    flex-direction: column;
    align-items: center;
  }
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.type-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);border: 1px solid #33CCCC;
}
.type-item p {    font-size: 18px;    text-align: justify;}
.type-item h4 {font-size: 30px;    letter-spacing: 2px;border-bottom: 1px solid #33CCCC;padding-bottom: 5px;}
.type-item h4 a {text-decoration: none;color: #FF0066;}

.comments {
  background: #fff;
  padding: 30px 0;
  text-align: center;
}
.rating-summary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;margin-top: 30px;
}
.rating-box {
  background: #FF9900;
  padding: 15px;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.rating-box p {font-size: 22px;font-weight: 600;margin-top: 1px;}
.rating-box span {
  font-size: 25px;
  color: #fff;
}
.rating-box strong {
  display: block;
  font-size: 30px;
  color: #003333;
}
.haha {display: grid;    gap: 16px;}
.comment-card {
  background: white;
  
  padding: 10px;display: flex;
  border-radius: 8px;
  text-align: left;border: 1px solid #33CCCC;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.comment-card p {font-size:18px;margin-top: 0px;text-align: justify;}
.comment-card img {    width: 120px; border-radius: 8px;margin-right: 20px;}
.comment-card span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}





.table-container {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border: 1px solid #ddd;   /* 添加外边框 */
  border-radius: 0px;border-bottom: 2px;margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);width: 85%;border-radius: 8px;
}

/* 桌面端：完整表格结构 */
.table-header,
.table-row {
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.table-row p {line-height: 30px; padding: 10px 20px;}
.table-row p a {color: #7B8495;text-decoration: none;}
.table-header {
  background: #f0f0f0;
  font-weight: bold;
}

.cell {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
}

.cell:last-child {
  border-right: none;
}

/* 移动端：左侧字段灰背景，右侧对齐 */
@media (max-width: 480px) {
  .table-header {
    display: none;
  }

  .table-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
    padding: 0;
  }

  .cell {
    display: flex;
    align-items: center;
    padding: 0px;
    font-size: 17px;
    border-bottom: 1px solid #ddd;  border-right: 0px solid #ddd;
  }

  .cell:last-child {
    border-bottom: none;
  }

  .cell::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
    background: #f0f0f0;
    padding: 8px 12px;
    border-radius: 0px;
    min-width: 100px;
    text-align: center;
    margin-right: 10px;
    flex-shrink: 0;
  }

  .cell {
    text-align: right;
    flex-grow: 1;
  }
}











    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .liucheng {
          max-width: 100%;
    background: linear-gradient(to bottom right, #1976f2, #6a1b9a);
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px;
    }

    .liucheng h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .liucheng p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .btn {
      display: inline-block;
      padding: 14px 30px;
      font-size: 1rem;
      background-color: white;
      color: #1976f2;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background-color: #e3e3e3;
    }

    @media (max-width: 768px) {
      .liucheng h1 {
        font-size: 2rem;
      }

      .liucheng p {
        font-size: 1rem;
      }

      .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .liucheng h1 {
        font-size: 1.6rem;
      }

      .liucheng p {
        font-size: 0.95rem;
      }

      .btn {
        width: 100%;
        padding: 12px;
      }
    }
