/* 利用規約ページ专用样式 */
.terms-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.terms-header {
  padding: 30px 0 20px;
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

.terms-header h1 {
  color: #095f70;
  font-size: 2rem;
  margin-bottom: 10px;
}

.update-date {
  color: #666;
  font-size: 14px;
}

.terms-content {
  padding: 30px 0;
}

.terms-intro {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  border-left: 4px solid #1ba1ff;
}

.terms-intro p {
  margin: 0;
  line-height: 1.8;
}

.terms-section {
  margin-bottom: 30px;
}

.terms-section h2 {
  color: #095f70;
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eaeaea;
}

.terms-clause {
  padding-left: 10px;
}

.terms-clause p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.terms-subclause {
  padding-left: 20px;
  margin: 15px 0;
}

.terms-subclause p {
  margin-bottom: 8px;
  position: relative;
}


.terms-agreement {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  font-weight: bold;
}

/* 响应式设计 */
@media screen and (max-width: 767px) {
  .terms-container {
    margin: 15px auto;
    padding: 0 15px;
  }
  
  .terms-header {
    padding: 20px 0 15px;
  }
  
  .terms-header h1 {
    font-size: 20px;
  }
  
  .terms-content {
    padding: 20px 0;
  }
  
  .terms-section h2 {
    font-size: 16px;
  }
  
  .terms-clause, .terms-subclause {
    padding-left: 5px;
  }
  
  .terms-subclause {
    padding-left: 15px;
  }
}