@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}
:root {
  --dark-bg: #0f1722;
  --darker-bg: #090e16;
  --brand-teal: #22c8b8;
  --light-gray: #e2e8f0;
  --mid-gray: #94a3b8;
  --card-bg: #151e2b;
  --hover-glow: 0 0 18px rgba(34, 200, 184, 0.35);
}
body {
  background-color: var(--dark-bg);
  color: var(--light-gray);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px; /* 手机缩小左右边距 */
}

/* 顶部联系栏 */
.top-bar {
  background: var(--darker-bg);
  padding: 8px 0;
  font-size: 13px;
  color: var(--mid-gray);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact {
  display: flex;
  gap: 24px;
}

/* 导航栏 */
header {
  background: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo-text span {
  color: var(--brand-teal);
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-item {
  position: relative;
  padding: 8px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.nav-item:hover {
  color: var(--brand-teal);
}
/* 下拉子菜单 */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  min-width: 200px;
  padding: 12px 0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li {
  padding: 10px 20px;
  transition: background 0.25s ease;
}
.submenu li:hover {
  background: rgba(34, 200, 184, 0.15);
  padding-left: 24px;
}
.btn-apply {
  background: var(--brand-teal);
  color: white;
  padding: 5px 22px;
  transition: all 0.3s ease;
}
.btn-apply:hover {
  box-shadow: var(--hover-glow);
  transform: translateY(-2px);
}
/* 移动端汉堡按钮 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--light-gray);
  transition: all 0.3s;
}
/* 移动端下拉菜单容器 */
.mobile-nav-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--card-dark);
  padding: 20px 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.mobile-nav-box.active {
  display: block;
}
.mobile-nav-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-submenu {
  padding-left: 16px;
  margin-top: 8px;
  display: none;
}
.mobile-submenu.show {
  display: block;
}
.mobile-submenu li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--mid-gray);
}

/* Banner轮播区域 */
.banner-slider {
  position: relative;
  height: 82vh;
  overflow: hidden;
}
.slide-list {
  height: 100%;
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.slide-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 120px;
  max-width: 600px;
}
.slide-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.slide-content h1 span {
  color: var(--brand-teal);
}
.slide-content p {
  color: var(--mid-gray);
  margin-bottom: 32px;
}
.banner-buttons {
  display: flex;
  gap: 16px;
}
.btn-primary {
  background: var(--brand-teal);
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  box-shadow: var(--hover-glow);
  transform: translateY(-3px);
}
.btn-secondary {
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
/* 轮播切换按钮 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.slider-arrow:hover {
  background: var(--brand-teal);
  color: #000;
}
.arrow-prev {
  left: 30px;
}
.arrow-next {
  right: 30px;
}
/* 轮播圆点 */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--brand-teal);
  width: 32px;
  border-radius: 6px;
}

/* 四大优势区块 */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 10px 0;
}
.feature-card {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.35s ease;
}
.feature-card:hover {
  background: var(--card-bg);
  transform: translateY(-8px);
  box-shadow: var(--hover-glow);
}
.feature-icon {
  width: 118px;
  height: 118px;
  background: rgba(34, 200, 184, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand-teal);
  font-size: 22px;
}
.feature-card h4 {
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  color: var(--mid-gray);
}

/* 贷款产品区块 */
.section-title {
  text-align: left;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-title h2 {
  font-size: 36px;
  line-height: 1.2;
}
.section-title h2 small {
  display: block;
  font-size: 22px;
  color: var(--mid-gray);
  font-weight: 400;
}
.view-all-link {
  color: var(--brand-teal);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brand-teal);
  transition: all 0.3s ease;
}
.view-all-link:hover {
  padding-left: 8px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 70px 0;
}
.product-card {
  background: var(--brand-teal);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-glow);
}
.product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.08);
}
.product-info {
  padding: 20px;
  background: var(--brand-teal);
  color: white;
}
.product-info h4 {
  margin-bottom: 8px;
  font-size: 18px;
}
.product-info p {
  font-size: 13px;
  opacity: 0.85;
}

/* 数据统计区块 */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 50px 0;
  text-align: center;
}
.stat-item h3 {
  font-size: 42px;
  color: var(--brand-teal);
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 14px;
  color: var(--mid-gray);
}

/* 申请流程区块 */
.process-section {
  padding: 40px 0 70px;
}
.process-title {
  margin-bottom: 50px;
}
.process-title h2 {
  font-size: 34px;
}
.process-title small {
  display: block;
  font-size: 20px;
  color: var(--mid-gray);
  font-weight: 400;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(34, 200, 184, 0.3);
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 48px;
  height: 48px;
  background: var(--brand-teal);
  color: #000;
  border-radius: 50%;
  display: block;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.step-item:hover .step-circle {
  transform: scale(1.15);
  box-shadow: var(--hover-glow);
}
.step-item h4 {
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: var(--mid-gray);
}

/* 咨询表单区块 */
.consult-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.consult-img-wrap {
  position: relative;
}
.consult-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.consult-label {
  position: absolute;
  bottom: 40px;
  left: 30px;
  background: rgba(0, 0, 0, 0.75);
  padding: 18px;
  max-width: 300px;
}
.consult-form {
  background: var(--card-bg);
  padding: 60px 40px;
}
.consult-form h2 {
  margin-bottom: 30px;
  font-size: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--dark-bg);
  border: 1px solid #273446;
  color: var(--light-gray);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(34, 200, 184, 0.15);
}
.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--brand-teal);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  box-shadow: var(--hover-glow);
  transform: translateY(-3px);
}
.form-tip {
  margin-top: 12px;
  font-size: 12px;
  color: var(--mid-gray);
  text-align: center;
}

/* 页脚 */
footer {
  background: var(--darker-bg);
  padding: 60px 0 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(34, 200, 184, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
}
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--brand-teal);
}
.footer-col li {
  margin-bottom: 10px;
  color: var(--mid-gray);
  transition: all 0.25s ease;
}
.footer-col li:hover {
  color: var(--brand-teal);
  padding-left: 6px;
}
.footer-contact p {
  margin-bottom: 10px;
  color: var(--mid-gray);
}

/* 滚动动画 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* 响应式适配 */
@media (max-width: 992px) {
  .features-row,
  .products-grid,
  .stats-row,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .consult-section {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .slide-content h1 {
    font-size: 36px;
  }
  .slide-content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .nav-main {
    display: none;
  }
  /* top-bar 在窄屏堆叠，避免长邮箱地址撑开容器 */
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
@media (max-width: 576px) {
  .features-row,
  .products-grid,
  .stats-row,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .banner-buttons {
    flex-direction: column;
  }
  .slide-content h1 {
    font-size: 28px;
  }
  .slide-content {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .footer-contact .db p,
  .footer-contact .db > div > p {
    width: 100% !important;
    margin-right: 0;
  }
  .footer-contact .db > div {
    display: block;
  }
}
.green {
  color: var(--brand-teal);
}
.liucheng {
  line-height: 14px;
  color: #fff;
  padding-top: 3%;
}
.liucheng span {
  font-size: 6px;
  display: block;
  font-weight: normal;
}
.db p {
  margin-right: 36px;
}
.footer-contact-list {
  display: flex;
  gap: 16px;
}
.footer-contact-list p {
  max-width: 300px;
}

/*返回顶部按钮*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 80px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 200, 184, 0.4);
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(34, 200, 184, 0.55);
}
@media (max-width: 768px) {
  .back-to-top {
    right: 15px;
    bottom: 60px;
    width: 44px;
    height: 44px;
  }
  .footer-contact-list {
    flex-wrap: wrap;
  }
}

/* 浮动咨询按钮 */
.consult-float-btn {
  position: fixed;
  right: 28px;
  bottom: 60px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 200, 184, 0.45);
  cursor: pointer;
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.consult-float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(34, 200, 184, 0.6);
}
.consult-float-btn svg {
  width: 24px;
  height: 24px;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34, 200, 184, 0.45); }
  50% { box-shadow: 0 4px 32px rgba(34, 200, 184, 0.7); }
}
@media (max-width: 768px) {
  .consult-float-btn {
    right: 15px;
    bottom: 40px;
    width: 48px;
    height: 48px;
  }
  .consult-float-btn svg {
    width: 20px;
    height: 20px;
  }
}


.page-hero {
  background: var(--darker-bg);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(34, 200, 184, 0.2);
}
.page-hero h1 {
  font-size: 40px;
  margin-bottom: 14px;
  color: var(--light-gray);
}
.page-hero h1 span {
  color: var(--brand-teal);
}
.page-hero p {
  color: var(--mid-gray);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .page-hero {
    padding: 50px 0 40px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
}

.content-block {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 40px;
  margin: 50px auto;
  max-width: 960px;
}
.content-block h2 {
  font-size: 24px;
  color: var(--brand-teal);
  margin-bottom: 20px;
}
.content-block p {
  color: var(--mid-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .content-block {
    padding: 24px 18px;
    margin: 30px auto;
  }
}

.info-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 50px auto;
  max-width: 960px;
}
.info-item {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-item .icon {
  color: var(--brand-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item h4 {
  font-size: 15px;
  color: var(--light-gray);
  margin-bottom: 4px;
}
.info-item p {
  font-size: 14px;
  color: var(--mid-gray);
}
@media (max-width: 576px) {
  .info-block {
    grid-template-columns: 1fr;
    margin: 30px auto;
  }
}

.license-block {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 30px 30px 30px 36px;
  margin: 30px auto 50px;
  max-width: 960px;
  position: relative;
}
.license-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-teal);
  border-radius: 8px 0 0 8px;
}
.license-block h2 {
  font-size: 22px;
  color: var(--brand-teal);
  margin-bottom: 16px;
}
.license-block p {
  color: var(--mid-gray);
  margin-bottom: 12px;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .license-block {
    padding: 24px 18px 24px 26px;
    margin: 20px auto 30px;
  }
}

.cta-section {
  text-align: center;
  padding: 60px 0 80px;
}
.cta-section h2 {
  font-size: 30px;
  margin-bottom: 24px;
  color: var(--light-gray);
}
.cta-section h2 span {
  color: var(--brand-teal);
}
@media (max-width: 576px) {
  .cta-section {
    padding: 40px 0 50px;
  }
  .cta-section h2 {
    font-size: 22px;
  }
}

/* 侧滑咨询弹窗 */
.popup-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup-mask.show {
  opacity: 1;
  visibility: visible;
}
.consult-popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: var(--card-bg);
  z-index: 10000;
  overflow-y: auto;
  padding: 40px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}
.popup-mask.show .consult-popup {
  transform: translateX(0);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 28px;
  color: var(--mid-gray);
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s ease;
}
.popup-close:hover {
  color: var(--brand-teal);
}
.popup-title {
  font-size: 22px;
  color: var(--light-gray);
  margin-bottom: 28px;
  padding-right: 30px;
}
.form-item {
  margin-bottom: 18px;
}
.form-item label {
  display: block;
  font-size: 12px;
  color: var(--mid-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-item input,
.form-item textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--dark-bg);
  border: 1px solid #273446;
  color: var(--light-gray);
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.form-item input:focus,
.form-item textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
}
.form-item textarea {
  min-height: 90px;
  resize: vertical;
}

@media (max-width: 576px) {
  .consult-popup {
    width: 100%;
    padding: 32px 20px 24px;
  }
}

/* 产品详情 Tabs */
.tabs-wrap {
  margin: 50px auto;
  max-width: 1100px;
}
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 2px solid rgba(34, 200, 184, 0.2);
  margin-bottom: 32px;
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--mid-gray);
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab-btn svg {
  flex-shrink: 0;
  transition: fill 0.3s ease;
}
.tab-btn:hover {
  color: var(--brand-teal);
}
.tab-btn.active {
  color: var(--brand-teal);
}
.tab-btn.active svg path {
  fill: var(--brand-teal);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--brand-teal);
  border-radius: 2px;
}
.tab-panel {
  display: none;
  animation: tabFade 0.4s ease;
}
.tab-panel.active {
  display: block;
}
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-head {
  position: relative;
  height: 378px;
  border-radius: 10px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.tab-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 34, 0.88) 0%, rgba(15, 23, 34, 0.55) 55%, rgba(15, 23, 34, 0.1) 100%);
}
.tab-title {
  position: relative;
  z-index: 1;
  font-size: 32px;
  color: var(--light-gray);
  line-height: 1.2;
}
.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 36px 40px;
}
.tab-col {
  /* 两栏各占 50% */
}
.tab-col p {
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.tab-col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .tab-btn {
    white-space: nowrap;
  }
  .tab-head {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .tabs-wrap {
    margin: 30px auto;
  }
  .tab-head {
    height: 220px;
    padding: 0 20px;
  }
  .tab-title {
    font-size: 24px;
  }
  .tab-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
  }
}
