/* 定价页面布局 */
.pricing {
  padding-top: 100px;
  padding-bottom: 80px;
}

.pricing_header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing_header h1 {
  font-size: 2.5em;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.pricing_header p {
  font-size: 1.2em;
  color: #636e72;
  max-width: 600px;
  margin: 0 auto;
}

.pricing_banner {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.pricing_banner h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.pricing_banner p {
  font-size: 1.1em;
  opacity: 0.9;
  margin-bottom: 15px;
}

.pricing_features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 15px 0;
}

.pricing_feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
}

.pricing_feature i {
  color: var(--success-color);
}

.pricing_button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 15px;
}

.pricing_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.pricing_button i {
  margin-right: 8px;
}

/* FAQ 部分 */
.pricing_faq {
  margin-top: 80px;
  padding: 60px 0;
  background: white;
}

.faq_header {
  text-align: center;
  margin-bottom: 40px;
}

.faq_header h2 {
  font-size: 2em;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.faq_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.faq_item {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 20px;
}

.faq_item-question {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.faq_item-answer {
  color: #636e72;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .faq_grid {
    grid-template-columns: 1fr;
  }
}

/* 包裹容器：提供横向滚动能力 */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

/* 默认表格列宽 */
.tablecol-default {
  min-width: 100px;
}
/* 免费表格列宽 */
.free {
  min-width: 100px;
  color: black;
}
/* vip 表格列宽 */
.v {
  min-width: 100px;
  color: #3b7bf3;
}
/* vip  月卡表格列宽 */
.vmonthly {
  min-width: 100px;
  color: #ffb557;
}

/* 表格字体大小 */
#dynamicTable {
  font-size: 18px;
}
/* 表格svg大小 */
#dynamicTable img {
  width: 20px;
  height: 20px;
}
/* 自定义按钮样式 */
.custom-btn {
  padding: 2px 8px; /* 调整内边距 */
  margin: 5px;
  font-size: 15px;
  color: #2897f0;
  background-color: #e6f3fd;
  border: 1px solid #dbe9f6;
}
.custom-btn:hover {
  color: #ffffff;
  background-color: #2897f0;
  border-color: #2897f0;
}

.download_history-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: white;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.download_history-table th,
.download_history-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.download_history-table th {
  background: #f9fafc;
  font-weight: 600;
  text-align: center;
}

.download_history-table tr:last-child td {
  border-bottom: none;
}

.download_history-table tr:hover {
  background: #f9fafc;
}
