/* 协议页面统一样式 */
.agreement-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 30px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.agreement-container h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.agreement-container h2 {
  font-size: 20px;
  color: #2196f3;
  margin: 28px 0 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.agreement-container p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.agreement-container strong {
  color: #333;
  font-weight: bold;
}

.agreement-footer {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
}

.agreement-footer p {
  font-size: 14px;
  color: #888;
}

/* 协议列表样式 */
.agreement-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.agreement-list li {
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
  position: relative;
  list-style-type: disc;
  text-align: justify;
}

/* 协议页面专用导航样式 */
.agreement-nav {
  display: flex;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.agreement-nav a {
  padding: 8px 16px;
  margin: 5px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s;
}

.agreement-nav a:hover {
  background: #e0e0e0;
  color: #2196f3;
}

.agreement-nav a.active {
  background: #2196f3;
  color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .agreement-container {
    padding: 20px;
    margin: 20px;
  }
  
  .agreement-container h1 {
    font-size: 24px;
  }
  
  .agreement-container h2 {
    font-size: 18px;
  }
  
  .agreement-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .agreement-nav a {
    width: 100%;
    text-align: center;
    margin: 3px 0;
  }
} 