@charset "utf-8";
/* ===================================================
   site-lite.css — 精简版全站样式
   基于站点实际使用的 class 编写，约 1400 行
   =================================================== */

/* ===================================================
   1. 基础层：变量、reset、字体、工具类
   =================================================== */

/* ===================================================
   全局响应式断点统一为三个：991 / 992-1439 / 1440+  
   菜单响应高度：30/40/50
   菜单gap：小屏10px/中屏15px/宽屏18px
   =================================================== */

:root {
  --gutter-x: 2.5%;
  --header-height: 50px;  /* 默认宽屏，≤1439px会被媒体查询覆盖 */
  --section-gap: 30px;
  --primary-color: #03F;
  --primary-color-alpha: rgba(0, 51, 255, 0.05);
  --text-color: #333;
  --dark-color: #333;
  --dark-bg: #333;
  --black-color: #000;
  --gray-color: #999;
  --gray-light: #ccc;
  --border-color: #CCC;
  --border-light: #e8e8e8;
  --white-color: #fff;
  --light-bg: #fff;
  --light-bg-secondary: #f5f5f5;
  --interactive-a: #666;
  --interactive-a-hover: var(--primary-color);
  --interactive-b-muted: #999;
  --interactive-b-on-dark: #fff;
  --interactive-b-hover: #666;
  --interactive-current: var(--primary-color);
  --transition-base: all 0.3s ease-in-out;
  --font-main: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", sans-serif;
  --line-height-base: 2;
  --site-shadow: 0 1px 3px rgba(0,0,0,.08);
  --site-shadow-lg: 0 4px 12px rgba(0,0,0,.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:before, *:after { box-sizing: border-box; }

html {
  font-size: 62.5%;
  width: 100%; height: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 1.4rem;
  line-height: var(--line-height-base);
  color: var(--text-color);
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul,
form, fieldset, legend, figure, table, th, td, caption, hr,
input, button {
  margin: 0; padding: 0;
  line-height: inherit; font-weight: 400; text-indent: 0;
}
h1, h2, h3, h4, h5, h6 { line-height: var(--line-height-base); }

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5, h6 { font-size: 16px; }

/* 中屏起 (≥992px) */
@media (min-width: 992px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
}
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}

ul, ol { margin: 0; padding: 0; list-style: none; }
img, video {
  max-width: 100%; height: auto;
  border: none; user-select: none;
}

a {
  text-decoration: none; color: var(--interactive-a);
  outline: none; transition: color .2s ease-in-out;
}
a:hover, a:focus-visible { color: var(--interactive-a-hover); }
a.active, li.active > a { color: var(--interactive-current); }
:focus { outline: none; }
::selection { color: #fff; background: var(--primary-color); }
strong { font-weight: 700; }
p { color: var(--text-color); font-size: inherit; }

/* 工具类 */
.relative { position: relative; }
.clearfix { *zoom: 1; }
.clearfix:before, .clearfix:after { display: table; content: ""; }
.clearfix:after { clear: both; }
.no-padding { padding-left: 0; padding-right: 0; }
.main-container { padding: 0; margin: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}
.wow { visibility: hidden; }
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 14px; top: 14px; width: auto; height: auto; padding: 10px 12px; background: #fff; z-index: 10001; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); }
.color-b3 { background-color: #CCC; }
.color-white { color: var(--white-color); }

.brandcolor, .brandcolor strong, strong.brandcolor { color: var(--primary-color); }
.hotcolor { color: var(--primary-color); }
a.hotcolor, a.brandcolor { color: var(--primary-color); }
.muted { color: var(--gray-color); }

.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-50 { padding-top: 50px; }
.pt-100 { padding-top: 100px; }
.pb-0 { padding-bottom: 0; }
.pb-10 { padding-bottom: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }

/* 按钮 */
.btn {
  display: inline-block; margin-bottom: 0;
  font-weight: normal; text-align: center; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  padding: 6px 12px; font-size: 14px;
  line-height: var(--line-height-base); border-radius: 0; user-select: none;
}
.btn:hover, .btn:focus { color: var(--text-color); text-decoration: none; }
.bg-btn { padding: 2px 4px; text-decoration: none; text-align: center; border: 1px solid #ccc; }
.btn-primary, .btn-ghost {
  display: inline-block; padding: 10px 15px; border-radius: 0;
  margin-right: 3px; line-height: var(--line-height-base); transition: all .3s ease;
}

/* ===================================================
   2. 字体
   =================================================== */

@font-face {
  font-family: 'FontAwesome';
  src: url('/assets/fonts/fontawesome-webfont.eot?v=4.5.0');
  src: url('/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),
       url('/assets/fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),
       url('/assets/fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),
       url('/assets/fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype');
  font-weight: normal; font-style: normal;
}
.fa { display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; }
.fa-angle-up:before { content: "\f106"; }

@font-face {
  font-family: themify;
  src: url(/assets/fonts/themify.eot?-fvbane);
  src: url(/assets/fonts/themify.eot?#iefix-fvbane) format('embedded-opentype'),
      url(/assets/fonts/themify.woff?-fvbane) format('woff'),
      url(/assets/fonts/themify.ttf?-fvbane) format('truetype');
  font-weight: 400; font-style: normal;
}

/* ===================================================
   3. 栅格
   =================================================== */
.container {
  width: 100%; max-width: 100%;
  margin-left: auto; margin-right: auto;
  padding-left: var(--gutter-x); padding-right: var(--gutter-x);
  box-sizing: border-box;
}
.container-fluid.semi-fluid { padding: 200px; text-align: center; }
.row { margin-left: -15px; margin-right: -15px; }

.col-xs-12 { width: 100%; }
.col-xs-6 { width: 50%; }
.col-xs-4 { width: 33.33333333%; }
/* 中屏起 (≥992px) */
@media (min-width: 992px) {
  .col-sm-4 { width: 33.33333333%; }
  .col-sm-6 { width: 50%; }
  .col-sm-12 { width: 100%; }
}
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.33333333%; }
  .col-md-6 { width: 50%; }
  .col-md-12 { width: 100%; }
}

/* ===================================================
   4. 动画
   =================================================== */
.animated { animation-duration: 1s; animation-fill-mode: both; }
@keyframes fadeInUp { 0% { opacity: 0; transform: translate3d(0, 100%, 0); } 100% { opacity: 1; transform: none; } }
.fadeInUp { animation-name: fadeInUp; }
@keyframes slideInUp { 0% { transform: translate3d(0, 100%, 0); visibility: visible; } 100% { transform: translate3d(0, 0, 0); } }
.slideInUp { animation-name: slideInUp; }
@keyframes heroCaptionInBottom { 0% { opacity: 0; transform: translateX(-50%) translateY(40px); } 100% { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(80px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-down-icon { 0%, 100% { top: 5px; } 50% { top: 9px; } }

/* 首屏滚动指示按钮 - 胶囊形状 */
.hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
.hero-scroll-down .scroll-down {
  font-size: 16px;
  width: 23px;
  height: 34px;
  border: 2px solid #fff;
  background-color: transparent;
  border-radius: 11px;
  text-align: center;
  z-index: 50;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-down .scroll-down span {
  background-color: #fff;
  display: block;
  width: 3px;
  height: 7px;
  animation: scroll-down-icon 1s infinite;
  position: absolute;
  left: 8px;
}
@keyframes sonarEffect {
  0% { opacity: 0.3; }
  40% { opacity: 0.5; box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5); }
  100% { box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5); transform: scale(1.3); opacity: 0; }
}

/* ===================================================
   5. 区块基础
   =================================================== */
section {
  background-color: var(--light-bg);
  z-index: 1; position: relative;
}
.section-wrap {
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.mobile section { background-attachment: scroll; }
.padding-box { padding: 0; }
.padding-box .container { width: 100%; padding-top: 0; padding-bottom: 0; }
.onepage.padding-box { padding-top: 0; }
.section-divider { width: 100%; height: 1px; background: var(--gray-color); margin: 12px 0; clear: both; }
.box-label { color: var(--primary-color); text-transform: uppercase; font-size: 17px; margin: 2.4em 0 .8em; }

/* .main1 / .main1x — 提供 2.5% 左右间距 = 2.5% + 95% + 2.5% */
.main1 { width: 100%; display: block; padding: 20px var(--gutter-x) 0; overflow: hidden; background: none; box-sizing: border-box; }
.main1x { width: 100%; float: left; padding: 20px var(--gutter-x) 0; box-sizing: border-box; display: block; overflow: hidden; }
.main1x:first-child { padding-top: 0; }
.main1x img { width: 100%; }

/* ===================================================
   6. 导航
   =================================================== */
.navbar-fixed-top {
  height: var(--header-height); position: fixed;
  top: 0; right: 0; left: 0; z-index: 1030;
}
.logo-container { position: relative; float: left; height: var(--header-height); display: flex; align-items: center; }
.logo-wrap { display: flex; align-items: center; height: var(--header-height); }
.logo-wrap > a.logo { display: flex; align-items: center; gap: 10px; height: var(--header-height); position: relative; }
.logo-wrap > a.logo::before { content: ""; width: 1px; height: 18px; background-color: var(--gray-color); order: 1; }
.logo-wrap > a.logo img { height: 18px; }
.logo-wrap > a.logo span { order: 2; }
.logo2 img { height: 16px; }
.top-space, .bottom-space { position: fixed; width: 100%; display: block; height: 0; top: 0; left: 0; }
.bottom-space { top: auto; bottom: 0; }

/* 导航主体 */
:root { --nav-gap: 18px; }
.headerbox { width: 100%; }
.headerlitt {
  display: flex; justify-content: flex-end; gap: var(--nav-gap);
}
.headerlitt a:last-child { margin-right: var(--nav-gap); }
.headerlitt a { color: #fff; font-size: 1.4rem; line-height: var(--header-height); }
.headerlitt a:hover { color: var(--primary-color); }

.navigation-overlay, .navbar,
.fs-nav, #nav-icon, #nav-icon span, .overlay-menu ul li a {
  transition: var(--transition-base);
}
.navigation-overlay { width: 100%; }
.navbar { margin-bottom: 0; border: none; min-height: 10px; backface-visibility: hidden; z-index: 1200; }
.navigation-overlay > .container-fluid { padding: 0 var(--gutter-x); }

.yaaak-header .navbar,
.yaaak-header .navigation-overlay {
  background-color: var(--white-color);
  border-bottom: 1px solid var(--border-color);
}
.yaaak-header .headerlitt a { color: var(--interactive-a); }
.yaaak-header .headerlitt a:not(.active):hover { color: var(--dark-color); }
.yaaak-header .headerlitt a.active { color: var(--interactive-current); }
.yaaak-header #nav-icon span { background: var(--text-color); }
.yaaak-header #nav-icon:hover:not(.open) span { background: var(--primary-color); }
.yaaak-header #nav-icon.open span { background: var(--gray-color); }
.yaaak-header .logo img { filter: brightness(0); }

/* 汉堡按钮 - 容器内居中对齐 */
.nav-type-1 #nav-icon {
  width: 30px; height: var(--header-height);
  background-color: transparent; top: 0; float: right;
  position: relative; right:0px; z-index: 300;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
#nav-icon span {
  display: block; position: absolute;
  height: 1px; width: 70%; left: 15%;
  background: #FF0000; opacity: 1; transform: rotate(0deg);
  transition: all 0.3s ease;
}
/* 默认三条横线：居中分布 */
.nav-type-1 #nav-icon span:nth-child(1) { top: calc(50% - 8px); }
.nav-type-1 #nav-icon span:nth-child(2) { top: 50%; }
.nav-type-1 #nav-icon span:nth-child(3) { top: calc(50% + 8px); }
.nav-type-1 #nav-icon span:nth-child(4) { display: none; }
/* 打开状态：变成叉号 */
.nav-type-1 #nav-icon.open span:nth-child(1),
.nav-type-1 #nav-icon.open span:nth-child(3) {
  top: 50%;
}
#nav-icon.open span:nth-child(1) { transform: rotate(45deg); }
#nav-icon.open span:nth-child(2) { opacity: 0; }
#nav-icon.open span:nth-child(3) { transform: rotate(-45deg); }

/* 全屏遮罩菜单 */
.fs-nav {
  position: fixed; background-color: #333;
  top: 0; left: 0; height: 100%; width: 100%;
  opacity: 0; visibility: hidden; overflow: hidden;
  transition: var(--transition-base);
}
.fs-nav.open { opacity: 1; visibility: visible; z-index: 200; }
.fs-nav.open li { animation: fadeInUp .35s ease forwards; animation-delay: .10s; }

.overlay-quicklinks {
  text-align: center; width: 100%;
  font-size: 1.4rem; box-sizing: border-box; margin-top: 20px;
}
.overlay-quicklinks a { color: var(--interactive-b-muted); margin: 0 5px; }
.overlay-quicklinks a:hover { color: var(--interactive-b-hover); }
.overlay-quicklinks a.active { color: var(--interactive-current); }
.overlay-quicklinks .sep { color: #000; margin: 0 5px; }

.overlay-menu {
  position: relative; top: 50%;
  transform: translateY(-50%); text-align: center;
}
.overlay-menu ul li { display: block; position: relative; opacity: 0; width: 100%; }
.overlay-menu ul li a {
  display: block; position: relative; overflow: hidden;
  padding: 0 5px 0 0; font-size: 1.4rem;
  color: var(--interactive-b-on-dark); font-weight: 300; text-transform: uppercase;
}
.overlay-menu ul li.active > a { color: var(--interactive-current); }

/* 中屏：992-1439px → 导航栏 40px, gap 15px */
@media (min-width: 992px) and (max-width: 1439px) {
  :root { --header-height: 40px; --nav-gap: 15px; }
}
/* 小屏：≤991px → 导航栏 30px, gap 10px */
@media (max-width: 991px) {
  :root { --header-height: 30px; --nav-gap: 10px; }
}

/* ===================================================
   7. 全屏轮播（#slider1）
   =================================================== */
.rev_slider_wrapper { position: relative; cursor: w-resize; z-index: 0; width: 100%; max-width: none; }
.rev_slider { position: relative; overflow: visible; }
.rev_slider_wrapper .tp-video-controls,
.rev_slider_wrapper .tp-pause,
.rev_slider_wrapper .tp-unmute { display: none !important; visibility: hidden; opacity: 0; position: absolute; left: -9999px; top: -9999px; }
.rev_slider img { max-width: none; transition: none; margin: 0; padding: 0; border: none; user-select: none; }
.rev_slider > ul, .rev_slider_wrapper > ul { list-style: none; position: absolute; margin: 0; padding: 0; overflow: visible; top: 0; left: 0; }
.tp-caption { position: absolute; visibility: hidden; white-space: nowrap; display: block; user-select: none; }
.tp-caption a { color: #fff; }
.tp-caption a:hover { color: #fff; }
.main-wrapper { overflow-x: hidden; flex: 1; }
.main-wrapper > section:first-child {
  width: 100vw; max-width: none; padding: 0;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  height: 100vh; min-height: 400px; overflow: hidden;
}
.main-wrapper > section:first-child .rev_slider_wrapper { width: 100%; max-width: none; height: 100%; min-height: 400px; overflow: hidden; }

#slider1.rev_slider {
  width: 100% !important; max-width: none; height: 100vh; min-height: 400px;
  position: relative; overflow: hidden; margin: 0;
}
#slider1.rev_slider > ul { visibility: visible; width: 100%; height: 100%; position: absolute; top: 0; left: 0; list-style: none; overflow: hidden; }
#slider1.rev_slider > ul > li { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #333; overflow: hidden; }
#slider1.rev_slider img.rev-slidebg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
#slider1.rev_slider > ul > li:not(:first-child) { visibility: hidden; opacity: 0; pointer-events: none; }
#slider1.rev_slider > ul > li.slide-active .tp-caption { visibility: visible; }
#slider1.rev_slider .tp-caption { z-index: 10; }

.rev_slider .hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; z-index: 1001; cursor: pointer;
  border: none; background: transparent; color: var(--gray-color); font-size: 16px;
  line-height: 1; padding: 0; display: flex; align-items: center; justify-content: center;
  font-family: themify, sans-serif; transition: color .2s;
}
.rev_slider .hero-arrow:hover { color: var(--primary-color); }
.rev_slider .hero-arrow-left { left: 0; }
.rev_slider .hero-arrow-right { right: 0; }
.rev_slider .hero-arrow-left::before { content: "\e629"; display: block; text-align: center; line-height: 28px; }
.rev_slider .hero-arrow-right::before { content: "\e628"; display: block; text-align: center; line-height: 28px; }
.rev_slider .hero-dots {
  position: absolute; bottom: 10px; left: 0; right: 0; z-index: 1001;
  display: flex; justify-content: center; align-items: center; gap: 12px;
}
.rev_slider .hero-dot {
  pointer-events: auto; width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.4); background: rgba(255,255,255,.6);
  cursor: pointer; padding: 0; transition: background .2s, border-color .2s;
}
.rev_slider .hero-dot:hover { background: rgba(255,255,255,.9); }
.rev_slider .hero-dot.active { background: #333; border-color: #333; }

#slider1.rev_slider .tp-caption.hero-text,
#slider1.rev_slider .tp-caption.hero-caption-text {
  bottom: 10%;
  top: auto; left: 50%;
  transform: translateX(-50%);
  text-align: center; width: 95%; max-width: 95%;
  white-space: normal; text-wrap: balance; box-sizing: border-box;
  font-size: clamp(22px, 5.5vw, 70px); font-weight: 300;
  letter-spacing: 0.05em; line-height: var(--line-height-base); margin: 0;
}
#slider1.rev_slider .tp-caption.hero-text strong,
#slider1.rev_slider .hero-caption-text strong { font-weight: 700; color: #fff; }
#slider1.rev_slider .tp-caption.hero-text a:hover,
#slider1.rev_slider .hero-caption-text a:hover,
#slider1.rev_slider .tp-caption.hero-text a:hover strong,
#slider1.rev_slider .hero-caption-text a:hover strong { color: var(--primary-color); }

#slider1.rev_slider .hero-caption-stack { display: flex; flex-direction: column; align-items: center; gap: 50px; }

/* Play button */
.play-btn {
  display: inline-block; width: 100px; height: 100px;
  background-color: rgba(0,0,0,.2); border-radius: 50%;
  position: relative; border: 10px solid rgba(255,255,255,.2);
  background-clip: padding-box; transition: transform 1s linear;
}
.play-btn:before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 0; height: 0;
  border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff;
}
/* 响应式：中屏 80px，小屏 60px */
@media (min-width: 992px) and (max-width: 1439px) {
  .play-btn { width: 80px; height: 80px; border-width: 8px; }
  .play-btn:before { border-width: 10px 0 10px 16px; }
}
@media (max-width: 991px) {
  .play-btn { width: 60px; height: 60px; border-width: 6px; }
  .play-btn:before { border-width: 8px 0 8px 12px; }
}
.icon-effect-8 .hi-icon { transition: transform ease-out 0.1s, background 0.2s; position: relative; }
.icon-effect-8 .hi-icon:hover { transform: scale(0.93); }

/* ===================================================
   8. 内容轮播（Flickity base）
   =================================================== */
.flickity-enabled { position: relative; }
.flickity-viewport { overflow: hidden; position: relative; height: 100%; }
.flickity-slider { position: absolute; width: 100%; height: 100%; }
.flickity-prev-next-button {
  display: block; position: absolute; top: 50%; transform: translateY(-50%);
  width: 90px; height: 90px; opacity: 0; padding: 0;
  transition: var(--transition-base);
  background-color: transparent; color: var(--primary-color);
  border: none; cursor: pointer;
}
.flickity-prev-next-button.previous:after { content: "\f104"; display: inline-block; }
.flickity-prev-next-button.next:after { content: "\f105"; display: inline-block; }
.flickity-prev-next-button svg { display: none; }
.flickity-page-dots {
  position: absolute; bottom: -8px; width: 100%;
  text-align: center; cursor: pointer; z-index: 20;
}
.flickity-page-dots .dot {
  display: inline-block; width: 12px; height: 12px; margin: 0 5px;
  opacity: .7; border-radius: 50%; background: transparent;
  border: none; cursor: pointer; transition: all .2s ease-in-out; position: relative;
}
.flickity-page-dots .dot:after {
  content: ''; display: block; width: 100%; height: 100%;
  background-color: var(--text-color); transform: scale(0.5); border-radius: 50%; pointer-events: none;
}
.flickity-page-dots .dot.is-selected { opacity: 1; box-shadow: 0 0 0 1px var(--primary-color); }
.flickity-page-dots .dot.is-selected:after { background-color: var(--primary-color); }
.flickity-page-dots .dot:hover { opacity: 1; }

/* 通栏轮播 */
.section-wrap.from-blog { border-bottom: none; background-color: #fff; margin-bottom: 0; padding-bottom: 0; }
.section-wrap.from-blog.blog-carousel-fullwidth#hero { padding-top: 0; padding-bottom: 20px; overflow: visible; }
.section-wrap.from-blog .container { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.blog-carousel-fullwidth .container { width: 100%; max-width: 100%; margin-left: auto; margin-right: auto; padding-left: 0; padding-right: 0; box-sizing: border-box; text-align: center; }
.blog-carousel-fullwidth.blog-carousel-gutter .container { padding-left: var(--gutter-x); padding-right: var(--gutter-x); }

/* ===================================================
   9. 简介区
   =================================================== */
.intro { padding: calc(var(--header-height) + var(--section-gap)) 0 10px; }
.intro .intro-desc { margin-top: 12px; color: var(--text-color); font-size: 15px; line-height: var(--line-height-base); }
.intro .intro-phone { font-size: 1.2em; margin: 0.5em 0; font-weight: 500; }
.intro .intro-phone a { color: inherit; }
.service-tabs, .section-wrap.intro { background: var(--light-bg); }
.service-tabs { margin-top: 40px; width: 95%; margin-left: auto; margin-right: auto; }
#intro .contact-hero-subline { display: block; margin-top: 0.4em; font-size: 0.58em; font-weight: normal; color: var(--text-color); line-height: var(--line-height-base); }
.service-tabs .tabs-wrap, .section-wrap.intro .main1 { width: 100%; max-width: 100%; overflow: hidden; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; margin: 10px 0 6px; }
.service-tabs .tabs-wrap { text-align: center; display: block; }

/* ===================================================
   10. Tabs 业务栏
   =================================================== */
.tablist { display: flex; flex-wrap: wrap; row-gap: 4px; column-gap: 6px; margin: 0 0 6px; padding: 0; justify-content: center; }
.service-tabs .tabs-wrap { display: flex; flex-wrap: wrap; justify-content: center; padding: 0; margin: 40px 0 0; }
.service-tabs .tabs-wrap > h2[data-tab] {
  order: 1; cursor: pointer; border: 1px solid var(--interactive-a);
  background: var(--interactive-a); color: #fff; font-size: 16px; font-weight: normal;
  line-height: 1.25; display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 16px; border-radius: 0; box-sizing: border-box; white-space: nowrap;
  margin: 0 4px 8px 4px; vertical-align: top;
}
.service-tabs .tabs-wrap > .tabpanel {
  order: 2; flex: 0 0 100%; display: none; margin: 0 0 20px; padding: 0; box-sizing: border-box;
}
.service-tabs .tabs-wrap > .tabpanel.active { display: block; animation: tabFadeIn 0.4s ease-out; }
.service-tabs .tabs-wrap > h2[data-tab]:hover:not(.is-active),
.service-tabs .tabs-wrap > h2[data-tab]:focus-visible:not(.is-active) {
  background: var(--dark-color); border-color: var(--dark-color);
}
.service-tabs .tabs-wrap > h2[data-tab].is-active { background: var(--interactive-current); border-color: var(--interactive-current); }
.service-tabs .tabpanel h3 { color: var(--text-color); }
.service-tabs .tabpanel p { margin: 6px 0; }

/* 价格卡片 */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 10px 0 5px; }
/* 小屏 (≤991px) */
@media (max-width: 991px) {
  .price-cards { grid-template-columns: 1fr; }
  .service-tabs .tabs-wrap > h2[data-tab] { font-size: 14px; padding: 6px 12px; }
}
.price-card { border: 1px solid #999; background: #fff; display: flex; flex-direction: column; text-align: left; }
.price-card-head, .price-card h3 {
  background: #fff; color: var(--text-color); padding: 4px 8px;
  font-size: 14px; font-weight: bold; text-align: left;
  margin: -1px -1px 0 -1px; border-bottom: 1px solid #999;
}
.price-card h3 { margin: -1px -1px 0 -1px; }
.price-card-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 8px; border-bottom: 1px solid #bbb;
  gap: 4px; text-align: left; background: var(--light-bg-secondary);
}
.price-card-row:last-child { border-bottom: none; }
.price-card-row .svc { flex: 1; font-size: 13px; color: var(--text-color); line-height: 1.35; text-align: left; }
.price-card-row .fee { white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--text-color); text-align: left; }
.price-card-row .fee::before { content: "¥"; }

/* ===================================================
   11. 新闻滚动
   =================================================== */
#news-scroll { width: 95%; margin: 20px auto; overflow: hidden; cursor: grab; background-color: #f5f5f5; padding: 30px 0; }
.news-marquee { white-space: nowrap; font-size: 15px; color: #333; }
.news-marquee a { padding: 0 30px; display: inline-block; color: #333; text-decoration: none; }
.news-marquee span { padding: 0 4px; display: inline-block; color: #999; }
.news-marquee a:hover { color: var(--primary-color); }

/* ===================================================
   12. 瀑布流 / 案例
   =================================================== */
.masonry_item { overflow: hidden; }
.masonry_item .case-title { padding: 12px 0 0; margin: 0; font-weight: normal; font-size: 20px; color: var(--text-color); }
.masonry_item p { padding: 0 0 0; margin: 0; }

.portfolio_container:not(.portfolio_container--casedetail) .masonry_item.main1x {
  float: left; width: 95%; margin-left: 2.5%; margin-top: 40px; position: relative; box-sizing: border-box;
}
/* 中屏起 (≥992px) */
@media (min-width: 992px) {
  .portfolio_container:not(.portfolio_container--casedetail) .masonry_item.main1x { width: 46.25%; }
}
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) {
  .portfolio_container:not(.portfolio_container--casedetail) .masonry_item.main1x { width: 30%; }
}
.portfolio_container:not(.portfolio_container--casedetail) .masonry_item.main1x > a:first-child { display: block; position: relative; overflow: hidden; padding: 5px 0; }
.portfolio_container:not(.portfolio_container--casedetail) .masonry_item.main1x > a:first-child img { width: 100%; transition: all 0.7s ease-in-out; }
.portfolio_container:not(.portfolio_container--casedetail) .masonry_item.main1x > a:first-child:hover img { transform: scale(1.1); }

/* .box 提供 float + 宽度，与 .main1x 叠加 */
.box {
  float: left; width: 95%; margin-left: 2.5%;
  margin-top: 40px; position: relative;
}
/* 中屏起 (≥992px) */
@media (min-width: 992px) { .box { width: 46.25%; } }
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) { .box { width: 30%; } }

/* .img_holder 替代 .main1x > a:first-child 的包裹 */
.img_holder { position: relative; overflow: hidden; padding: 5px 0; }
.img_holder img { width: 100%; transition: all 0.7s ease-in-out; }
.img_holder:hover img { transform: scale(1.1); }

.portfolio_container--casedetail .grid-sizer {
  width: 95%; margin-left: 2.5%; position: absolute; visibility: hidden; height: 0; overflow: hidden;
}
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) { .portfolio_container--casedetail .grid-sizer { width: 46.25%; } }
.portfolio_container--casedetail .masonry_item.main1x { width: 95%; margin-left: 2.5%; margin-top: 10px; padding: 20px 0 0; float: left; position: relative; }
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) { .portfolio_container--casedetail .masonry_item.main1x { width: 46.25%; } }

.categories-grid { margin-left: 0; width: 100%; padding-left: var(--gutter-x); padding-right: var(--gutter-x); box-sizing: border-box; position: relative; z-index: 2; }
.no-padding.portfolio_container { padding-top: 0; }
.portfolio .categories-grid .categories ul.portfolio_filter { overflow: hidden; margin-bottom: 5px; }
.portfolio .categories-grid .categories br { display: none; }
.portfolio .categories-grid .categories ul li { float: left; margin-top: 0; }
.portfolio .categories-grid .categories ul li a,
.portfolio .categories-grid .categories ul li a:visited {
  padding: 3px 6px; border: 1px solid var(--interactive-b-muted); color: var(--interactive-b-muted);
  border-radius: 0; margin-right: 2px; display: inline-block;
}
.portfolio .categories-grid .categories ul li a:hover:not(.active) { color: var(--interactive-b-hover); border-color: var(--interactive-b-hover); }
.portfolio .categories-grid .categories ul.portfolio_filter li:first-child a { background: var(--primary-color-alpha); }
.portfolio .categories-grid .categories ul.portfolio_filter li:first-child a.active { background: var(--primary-color); color: var(--light-bg); }
.portfolio .categories-grid .categories ul li:not(:first-child) a.active { background: var(--primary-color); color: var(--light-bg); }

.portfolio-inner { padding: 0; }
.portfolio-inner.pt-10 { padding-top: 10px; }
.portfolio-inner.pt-20 { padding-top: 20px; }
.portfolio-inner.pt-50 { padding-top: 50px; }
.portfolio-inner.pt-100 { padding-top: 100px; }

.entry-img { position: relative; overflow: hidden; display: block; isolation: isolate; }
.entry-img a { display: block; overflow: hidden; }
.entry-img img { display: block; width: 100%; height: auto; vertical-align: top; transition: transform 0.7s ease-in-out; transform-origin: center center; }
.hover-scale:hover img { transform: scale(1.1); }

/* 联系页 */
#contact-offices.section-wrap { overflow: visible; padding-bottom: 40px; }
.line1 { width: 100%; height: 1px; display: block; background: var(--gray-color); margin-top: 10px; }

/* ===================================================
   13. 统计
   =================================================== */
.statistic span.timer, .statistic a span { color: var(--primary-color); font-size: 33px; }
.statistic a { font-size: inherit; }
.statistic .statistic-tail { margin-left: 2ch; }

/* ===================================================
   14. Footer
   =================================================== */
#footers {
  width: 100%; padding: 50px var(--gutter-x); margin-top: 20px;
  background: #333; color: var(--gray-color); display: flex; flex-wrap: wrap;
}
/* 小屏 (≤991px) */
@media (max-width: 991px) { .footer1 { width: 100%; } }
/* 中屏起 (≥992px) */
@media (min-width: 992px) { .footer1 { width: 33.3%; } }
.footer2 { width: 100%; margin-top: 10px; display: flex; justify-content: space-between; align-items: center; }
#footers a, #footers a:visited { color: var(--interactive-b-on-dark); }
#footers a:hover { color: var(--interactive-b-hover); }
#footers a.active { color: var(--interactive-current); }
#footers p { color: var(--gray-color); margin: 8px 0; }

/* ===================================================
   15. 返回顶部
   =================================================== */
#back-to-top {
  display: block; z-index: 1000; width: 40px; height: 40px; margin-right: 10px;
  text-align: center; font-size: 20px; position: fixed;
  bottom: -40px; right: 5px; border-radius: 50%;
  transition: var(--transition-base); background-color: var(--primary-color);
}
#back-to-top a { width: 100%; height: 100%; display: block; color: #fff; }
#back-to-top.show { bottom: 40px; }
#back-to-top:hover { background-color: #666; }

/* ===================================================
   16. 视频
   =================================================== */
.page-video { width: 100%; display: block; }
.video-wrapper { position: relative; width: 100%; overflow: hidden; cursor: pointer; }
.video-wrapper .video-cover { width: 100%; display: block; transition: opacity 0.3s ease; }
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.video-wrapper:hover .video-cover { opacity: 0; }
.video-wrapper video.has-controls { position: relative; height: auto; z-index: 1; }
.video-wrapper video.has-controls + .video-cover { display: none; }
.video-container { height: 70vh; display: flex; align-items: center; justify-content: center; }
.video-container video { width: 100%; max-height: 100%; object-fit: contain; }
.audio { margin: 10px 0; width: 100%; max-width: 400px; outline: none; }
.audio-text { font-size: 14px; color: var(--gray-color); }

/* ===================================================
   17. 成长卡片
   =================================================== */
.grid-wrap { display: grid; grid-template-columns: 1fr; gap: 24px; margin-left: 0; margin-right: 0; }
.grid-wrap [class*="col-"] { padding: 0; width: auto; max-width: none; float: none; display: flex; }
/* 中屏起 (≥992px) */
@media (min-width: 992px) { .grid-wrap { grid-template-columns: repeat(2, 1fr); column-gap: 1%; row-gap: 24px; } }
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) { .grid-wrap { grid-template-columns: repeat(3, 1fr); column-gap: 1%; row-gap: 24px; } }
/* 中屏起 (≥992px) */
@media (min-width: 992px) { .grid-wrap--4 { grid-template-columns: repeat(2, 1fr); } }
/* 宽屏起 (≥1440px) */
@media (min-width: 1440px) { .grid-wrap--4 { grid-template-columns: repeat(4, 1fr); } }

.growth-card { flex: 1; width: 100%; background-color: #f5f5f5; border: 1px solid #e8e8e8; padding: 24px 20px; text-align: center; display: flex; flex-direction: column; justify-content: flex-start; }
.growth-card-title { font-size: 18px; font-weight: bold; color: var(--dark-color); margin: 0 0 12px; line-height: var(--line-height-base); }
.growth-card-text { font-size: 14px; line-height: var(--line-height-base); color: var(--text-color); margin: 0; }

/* 案例速览区块 - 修复文字链接左右边距（非grid-wrap的.row） */
#cases .container > .row:not(.grid-wrap) { padding: 0 15px; }
.growth-card--numbered .growth-card-num { display: block; font-size: 60px; line-height: 1; font-weight: 100; margin: 0 0 8px; }
.growth-card--icon i { display: block; font-size: 42px; line-height: 1; margin: 0 0 12px; color: var(--text-color); }

/* 案例卡片 */
.case-card { flex: 1; width: 100%; text-align: center; display: flex; flex-direction: column; justify-content: flex-start; margin-top: 20px; }
.logo-row { display: flex; flex-wrap: nowrap; padding: 0; margin: 0; gap: 2%; }
.logo-col { flex: 1; text-align: center; }
.logo-col img { width: 100%; object-fit: contain; }

/* ===================================================
   18. 影视页 Hero 标题
   =================================================== */
#hero .video-hero-heading {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
  z-index: 10; margin: 0; width: 95%; max-width: 95%; box-sizing: border-box;
  color: #fff; text-align: center; white-space: normal;
  font-size: clamp(28px, 6.5vw, 70px); font-weight: 300;
  letter-spacing: 0.05em; line-height: var(--line-height-base);
}
#hero .video-hero-heading strong { font-weight: 700; }

/* ===================================================
   19. 咨询弹窗
   =================================================== */
.consult-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 10000; display: none; align-items: center; justify-content: center; padding: 16px;
}
.consult-modal[aria-hidden="false"] { display: flex; align-items: center; justify-content: center; padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left)); }
.consult-dialog { width: 100%; max-width: 720px; max-height: min(92vh, 100%); max-height: min(92dvh, 100%); background: var(--light-bg); border-radius: 0; overflow: hidden; box-shadow: var(--site-shadow-lg); display: flex; flex-direction: column; }
.consult-head { padding: 14px 16px; border-bottom: 1px solid #CCC; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.consult-body { padding: 14px 16px; overflow-y: auto; -webkit-overflow-scrolling: touch; flex: 1; min-height: 0; }
.consult-dialog, .consult-dialog .consult-head h3, .consult-dialog .consult-box,
.consult-dialog .consult-box strong, .consult-dialog .consult-box p,
.consult-dialog .consult-box .muted, .consult-dialog .consult-form label,
.consult-dialog .consult-char-hint, .consult-dialog .btn-primary, .consult-dialog .btn-ghost,
.consult-dialog input, .consult-dialog textarea, .consult-dialog .consult-close,
.consult-dialog .consult-tip-full { font-size: 14px; }
.consult-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
/* 中屏起 (≥992px) */
@media (min-width: 992px) { .consult-grid { grid-template-columns: 1fr 1fr; } }
.consult-box { border: 1px solid #CCC; border-radius: 0; padding: 12px; background: #fafafa; box-shadow: var(--site-shadow); }
.consult-box strong { color: #333; }
.consult-actions { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.consult-actions .consult-tip-full { width: 100%; order: -1; margin-bottom: 6px; padding: 8px 10px; border: 1px solid #CCC; background: #f8f8f8; color: #333; }
.consult-actions .consult-tip-full.is-success { border-color: var(--primary-color); background: var(--primary-color); color: #fff; }
.consult-actions .consult-tip-full.is-error { border-color: #c94f4f; background: #fff3f3; color: #a33a3a; }
.consult-close { border: 0; background: transparent; line-height: 1; padding: 8px; margin-right: 3px; cursor: pointer; border-radius: 0; }
.consult-form label { display: block; color: var(--text-color); margin: 8px 0 4px; }
.consult-form .consult-char-hint { display: block; color: var(--text-color); margin-top: 4px; text-align: left; }
.consult-form .consult-char-hint.near-limit { color: #c00; }
.consult-form input, .consult-form textarea {
  width: 100%; padding: 10px; border: 1px solid #CCC; border-radius: 0;
  background: #fff; font-family: inherit; line-height: var(--line-height-base);
}
.consult-form textarea { min-height: 88px; resize: vertical; }
.consult-actions .btn-primary, .consult-actions .btn-ghost { margin-right: 3px; }
.consult-actions .btn-ghost:last-child, .consult-actions .btn-primary:last-child { margin-right: 0; }

/* ===================================================
   20. 灯箱（Magnific Popup iframe）
   =================================================== */
.mfp-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1250; background: #000; opacity: 0.8; }
.mfp-wrap { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1251; outline: none; backface-visibility: hidden; }
.mfp-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 0 8px; box-sizing: border-box; text-align: center; }
.mfp-container::before { content: ''; display: inline-block; height: 100%; vertical-align: middle; }
.mfp-content { position: relative; display: inline-block; vertical-align: middle; margin: 0 auto; text-align: left; z-index: 1255; }
.mfp-iframe-holder .mfp-content { line-height: 0; width: 100%; max-width: 2400px; }
.mfp-iframe-holder .mfp-close { top: -40px; right: 14px; background: transparent; width: 66px; height: 66px; line-height: 66px; font-size: 42px; }
.mfp-iframe-scaler { position: relative; width: 100%; height: 0; overflow: hidden; padding-top: 56.25%; }
.mfp-iframe-scaler iframe, .mfp-iframe-scaler video.mfp-video-player {
  position: absolute; display: block; top: 0; left: 0; width: 100%; height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); background: #000;
}
.mfp-iframe-scaler video.mfp-video-player { object-fit: cover; }
button.mfp-close {
  position: absolute; z-index: 1256; cursor: pointer; background: transparent;
  border: none; outline: none; padding: 0; box-shadow: none; appearance: none;
}
.mfp-close {
  top: 0; right: 0; width: 44px; height: 44px; line-height: 44px;
  color: #fff; font-size: 28px; font-family: Arial, monospace; text-align: center; opacity: 0.65;
}
.mfp-close:hover { opacity: 1; }
.mfp-iframe-holder { padding-top: 40px; padding-bottom: 40px; }
