/* zpay版本切换Tab样式 - 绿色主题 (#25b864) */

/* Tab容器 */
.zhanpay-version-tabs {
  margin-bottom: 20px;
}

/* Tab按钮容器 - 居中显示 */
.tab-buttons {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 20px;
}

/* Tab按钮 - 加粗文字 */
.tab-btn {
  padding: 12px 30px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  position: relative;
  transition: all 0.3s;
  outline: none;
}

.tab-btn:hover {
  color: #25b864;
}

/* 激活状态 */
.tab-btn.active {
  color: #25b864;
  font-weight: 700;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #25b864;
}

/* Tab内容面板 */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* 响应式设计 - 移动端 */
@media (max-width: 768px) {
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
