/* ========================================
   中宏泰建设集团 — 全局设计系统
   主色：淡蓝 #EBF4FF / 品牌蓝 #2A7ADB / 深蓝 #1A4F99
   ======================================== */

/* --- RESET & TOKENS --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* 品牌色 */
  --blue-50:  #EBF4FF;
  --blue-100: #D6E9FF;
  --blue-200: #A8D1FF;
  --blue-300: #6BB5FF;
  --blue-400: #3A95F0;
  --blue-500: #2A7ADB;
  --blue-600: #1E62B8;
  --blue-700: #1A4F99;
  --blue-800: #143D7A;
  --blue-900: #0D2B5C;

  /* 中性色 */
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* 语义色 */
  --success: #10B981;
  --warning: #F59E0B;
  --error:   #EF4444;

  /* 字体 */
  --font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;

  /* 阴影 */
  --shadow-xs: 0 1px 3px rgba(42,122,219,0.08);
  --shadow-sm: 0 2px 8px rgba(42,122,219,0.10);
  --shadow-md: 0 6px 20px rgba(42,122,219,0.13);
  --shadow-lg: 0 12px 40px rgba(42,122,219,0.16);
  --shadow-xl: 0 24px 64px rgba(42,122,219,0.20);

  /* 过渡 */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 280ms var(--ease);
  --t-slow: 500ms var(--ease);

  /* 圆角 */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* 导航高度 */
  --nav-h: 72px;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font); border: none; cursor: pointer; background: none; }

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ========== SECTION ========== */
.section { padding: 80px 0; }
.section-alt { background: var(--blue-50); }
@media (max-width: 768px) { .section { padding: 52px 0; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--blue-400);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-800);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 48px;
}
.section-head-center {
  text-align: center;
}
.section-head-center .section-label { justify-content: center; }
.section-head-center .section-desc { margin-left: auto; margin-right: auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42,122,219,0.35);
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,122,219,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--blue-500);
  border: 1.5px solid var(--blue-400);
}
.btn-outline:hover {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
}
.btn-white {
  background: #fff;
  color: var(--blue-600);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-sm { padding: 7px 18px; font-size: 0.825rem; }

/* ========== TAG / BADGE ========== */
.tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.tag-white {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ========== CARD ========== */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: all var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-200);
}

/* ========== HEADER / NAV ========== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all var(--t-base);
}
#site-header.scrolled {
  height: 60px;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42,122,219,0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-cn {
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 800;
  color: var(--blue-800);
}
.logo-en {
  font-size: 0.6rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  margin-top: 3px;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}
.nav-link.active { font-weight: 700; }
.has-sub .nav-link::after {
  content: '▾';
  font-size: 0.65rem;
  margin-left: 4px;
}
/* Dropdown */
.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 148px;
  overflow: hidden;
  z-index: 200;
}
.sub-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #fff;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.06));
}
.has-sub:hover .sub-menu { display: block; }
.sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: all var(--t-fast);
}
.sub-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-600);
  padding-left: 22px;
}
/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--blue-50);
  border-radius: 24px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--blue-600);
}
.header-tel-icon {
  width: 24px; height: 24px;
  background: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--gray-200);
  transition: var(--t-fast);
}
.hamburger:hover { background: var(--blue-50); border-color: var(--blue-200); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--gray-600);
  border-radius: 2px;
  transition: var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  z-index: 999;
  padding: 12px 0 20px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 24px;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--t-fast);
}
.mobile-menu a:hover { background: var(--blue-50); color: var(--blue-600); }
.m-group {
  border-bottom: 1px solid var(--gray-100);
}
.m-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--t-fast);
}
.m-group-head:hover { background: var(--blue-50); color: var(--blue-600); }
.m-group-head .chevron { font-size: 0.7rem; transition: transform 0.25s; }
.m-group-head.open .chevron { transform: rotate(180deg); }
.m-sub-items { display: none; background: var(--gray-50); }
.m-sub-items.open { display: block; }
.m-sub-items a { padding-left: 40px; font-size: 0.875rem; color: var(--gray-600); }

/* ========== PAGE BANNER ========== */
.page-banner {
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 60%, var(--blue-300) 100%);
  padding-bottom: 52px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Crect x='0' y='0' width='60' height='60'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-content { position: relative; z-index: 1; padding-top: 40px; }
.page-banner h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
.breadcrumb-current { color: #fff; }

/* ========== FOOTER ========== */
#site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin: 18px 0;
}
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--t-fast);
}
.social-icon:hover { background: var(--blue-500); color: #fff; }
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--blue-400);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--blue-400);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  align-items: flex-start;
  line-height: 1.6;
}
.footer-contact-icon {
  color: var(--blue-400);
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 2px;
}
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== FLOAT BTNS ========== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.float-btn {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--t-base);
  box-shadow: var(--shadow-md);
}
.float-btn-tel {
  background: var(--blue-500);
  color: #fff;
}
.float-btn-tel:hover { background: var(--blue-600); transform: scale(1.1); }
.float-btn-top {
  background: #fff;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200);
  opacity: 0;
  pointer-events: none;
}
.float-btn-top.show { opacity: 1; pointer-events: all; }
.float-btn-top:hover { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }

/* tooltip */
.float-btn-wrap { position: relative; }
.float-tooltip {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-800);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--t-fast);
}
.float-btn-wrap:hover .float-tooltip { opacity: 1; }

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  transition: var(--t-fast);
}
.page-btn:hover { border-color: var(--blue-400); color: var(--blue-500); background: var(--blue-50); }
.page-btn.active { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }

/* ========== RESPONSIVE HELPERS ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-btns { right: 16px; bottom: 20px; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
}

/* ===== HERO 轮播 Banner ===== */
.hero-slider {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--blue-800);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,92,0.82) 0%, rgba(42,122,219,0.68) 100%);
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-slide .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.hero-slide h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-slide h1 span { color: #7DDBFF; }
.hero-slide-sub {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 580px;
}
.hero-slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-slide-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-slide-stat-num {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-slide-stat-num sup { font-size: 0.5em; color: #7DDBFF; }
.hero-slide-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* 轮播箭头 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.left { left: 20px; }
.slider-arrow.right { right: 20px; }

/* 轮播指示点 */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active { background: #fff; transform: scale(1.2); }

@media (max-width: 768px) {
  .hero-slider { height: 320px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .slider-arrow.left { left: 10px; }
  .slider-arrow.right { right: 10px; }
}
@media (max-width: 600px) {
  .hero-slider { height: 280px; }
  .hero-slide-btns { flex-direction: column; }
  .hero-slide-stats { gap: 16px; }
}

/* ===== 公告 Tab 切换 ===== */
.notice-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
}
.notice-tab {
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.notice-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-500);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.notice-tab.active { color: var(--blue-700); }
.notice-tab.active::after { transform: scaleX(1); }
.notice-tab:hover { color: var(--blue-500); }
.notice-tab-count {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 10px;
  margin-left: 6px;
}
.notice-tab.active .notice-tab-count {
  background: var(--blue-500);
  color: #fff;
}
.notice-tab-panel { display: none; }
.notice-tab-panel.active { display: block; }
.notice-list-wrap {
  background: #fff;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-top: none;
  overflow: hidden;
}
@media (max-width: 600px) {
  .notice-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .notice-tab { padding: 12px 16px; font-size: 0.82rem; }
}
