
.btn-secondary {
    background-color: var(--light-color);
    color: var(--primary-color);
}
        
.btn-secondary:hover {
    background-color: #d5dbdb;
}
        

        
/* 图片样式 */
.page-content {
    min-height: 400px;
}
        
        
/* 费用表格 */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
        
.pricing-table th, .pricing-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}
        
.pricing-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}
        
.pricing-table tr:last-child td {
    border-bottom: none;
}
        
.pricing-table tr:hover {
    background-color: #f5f9ff;
}
        
.price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.2rem;
}
        
/* 倒计时 */
.countdown {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    
}
        
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    
}
        
.countdown-unit {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 4px;
    min-width: 80px;
}
        
.countdown-number {
    font-size: 2rem;
    font-weight: bold;
    
}
        
/* 常见问题 */
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}
        
.faq-question {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
        
.faq-answer {
    color: #666;
    display: none;
}
        
.faq-answer.active {
    display: block;
}
        
.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
}
        
.faq-toggle.rotated {
    transform: rotate(45deg);
}
        
/* 表头通用外观（沿用你文件里已有的风格） */
.pricing-table thead th{
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 1.2rem;
  text-align: center;
  vertical-align: middle;
}

/* 表头中英上下排版、更紧凑 */
.pricing-table thead th .lang-zh,
.pricing-table thead th .lang-en{
  display: block;
  line-height: 1.4;
}
.pricing-table thead th .lang-zh{ font-size: 1rem; }
.pricing-table thead th .lang-en{ font-size: .9rem; opacity: .95; }
       
        
@media (max-width: 640px) {
.countdown {
font-size: 1.4rem;   /* 缩小主体文字 /
padding: 1.5rem;     / 可选：收紧外边距，防止挤压 */
}
.countdown-number {
font-size: 1.6rem;   /* 缩小数字部分 */
}
.countdown-timer {
display: grid;
    grid-template-columns: 1fr 1fr;   /* 两列等宽 */
    gap: 0.75rem;
    justify-content: center;
    padding: 0 1rem;                  /* 防止左右贴边 */
}
.countdown-unit {
padding: 0.8rem;     /* 可选：缩小单元内边距 */
min-width: auto;                  /* 取消原来的 min-width */
}
}


/* 让每行三列固定按比例分配宽度，避免小屏挤压造成错位 */
.pricing-table { table-layout: fixed; }

/* 单元格内上下居中，行高在一行内保持一致 */
.pricing-table th, .pricing-table td {
  vertical-align: middle;
}

/* 单元格里的中英文块各占一行，避免并排导致高度不一致 */
.pricing-table .lang-zh,
.pricing-table .lang-en {
  display: block;
  line-height: 1.4;
  white-space: normal; /* 小屏允许自然换行 */
}

