.main {
  max-width: 1296px;
  margin: 0px 0px 73px 280px;
  padding: 88px 24px 32px;
  gap: 32px;
}
.sidebar {
  width: 240px;
  padding: 24px 0;
  height: fit-content;
  position: fixed;
  left: 72px;
  top: 100px;
}
.sidebar-section {
  padding: 0 24px;
}
.section-title {
  font-size: 20px;
  font-weight: 500;
  color: #5e2bff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.section-title-ico {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.rotate {
  transform: rotate(180deg);
}

.menu-list {
  height: 232px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu-list-mini {
  height: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
}

.menu-item a {
  width: 216px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.radio-btn {
  width: 12px;
  height: 10px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  display: block;
}
.menu-item.active .radio-btn {
  border-color: #5e2bff;
  background: #5e2bff;
}

.menu-text {
  font-size: 14px;
  color: #222;
}

.menu-item.active .menu-text {
  color: #5e2bff;
}

.content {
  padding: 32px;
}

.content-section {
  margin-bottom: 56px;
}

.section-heading {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin: 32px 0 12px 0;
}
.section-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 10px;
}

.api-table {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 14px;
}

.api-table thead {
  background-color: #f2f2f2;
}

.api-table th,
.api-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  color: #666;
}

.api-table td:nth-child(3) {
  min-width: 80px; /* 或更宽，比如 100px */
}

.api-table th {
  font-weight: bold;
  background-color: #f9f9f9;
  color: #666;
}

.api-table tbody tr:hover {
  background-color: #f1f1f1;
}

.section-list {
  font-size: 16px;
  list-style-type: disc;
  color: #666;
  margin-left: 40px;
}

.section-list li {
  margin-bottom: 5px;
}

.api-url {
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: "Courier New", monospace;
  font-size: 15px;
  color: #6c63ff;
  margin-top: 8px;
}

.code-block {
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
}

.code-content {
  margin: 0;
  padding: 0 16px;
  overflow-x: auto;
  background: #f7f8fa;
}
.code-content code {
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
  white-space: pre;
}
