/**
 * 广田涂料 szgt317.com — 移动端响应式样式
 * 在屏幕宽度 < 768px 时生效（配合 mobile-nav.js）
 * 参考三棵树官网手机版：简洁顶栏 + 右侧滑出菜单 + 卡片化布局
 */

/* ========== 基础重置 ========== */
@media screen and (max-width: 767px) {
  html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0 !important;
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }

  .header,
  .content,
  .footer {
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* 卡片内产品图由 li>a 包裹，图本身居中 */
  a > img,
  dt > a > img {
    margin-left: auto;
    margin-right: auto;
  }

  a,
  button,
  input[type="button"],
  input[type="submit"],
  .s_ss {
    -webkit-tap-highlight-color: rgba(0, 140, 99, 0.15);
  }

  /* ========== 顶栏：Logo + 汉堡 ========== */
  .g_top {
    height: auto !important;
    background: #fff !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 900;
  }

  .g_top .m_top {
    height: auto;
  }

  .top_t {
    display: none !important;
  }

  .top_c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
    float: none;
  }

  .top_c h1 {
    float: none !important;
    width: auto !important;
    max-width: 55%;
    padding: 0 !important;
    margin: 0;
  }

  .top_c h1 img {
    max-height: 44px;
    width: auto;
    max-width: 100%;
  }

  /* 隐藏桌面横向导航（由 JS 克隆到侧栏） */
  .g_nav.menu {
    display: none !important;
  }

  .g_top .tmall {
    display: none !important;
  }

  .s_inp {
    display: none;
  }

  /* 汉堡按钮（JS 插入，此处为样式） */
  .gt-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1002;
  }

  .gt-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s;
  }

  .gt-mobile-toggle span + span {
    margin-top: 6px;
  }

  body.gt-nav-open .gt-mobile-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.gt-nav-open .gt-mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.gt-nav-open .gt-mobile-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* 遮罩 */
  .gt-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }

  body.gt-nav-open .gt-mobile-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* 右侧滑出菜单 */
  .gt-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    max-width: 320px;
    height: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  }

  body.gt-nav-open .gt-mobile-drawer {
    transform: translateX(0);
  }

  body.gt-nav-open {
    overflow: hidden;
  }

  .gt-mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #f8faf9;
  }

  .gt-mobile-drawer__head strong {
    font-size: 17px;
    color: #008c63;
    font-weight: 600;
  }

  .gt-mobile-drawer__close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
  }

  .gt-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 8px 0 24px;
  }

  .gt-mobile-nav > li {
    border-bottom: 1px solid #f0f0f0;
  }

  .gt-mobile-nav > li > a,
  .gt-mobile-nav__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 17px;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    min-height: 52px;
    box-sizing: border-box;
  }

  .gt-mobile-nav > li > a:active,
  .gt-mobile-nav__row:active {
    background: #f5f5f5;
  }

  .gt-mobile-nav__sub-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    padding: 0;
  }

  .gt-mobile-nav__sub-toggle::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    margin: 0 auto;
    transition: transform 0.2s;
  }

  .gt-mobile-nav__item.is-open .gt-mobile-nav__sub-toggle::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .gt-mobile-nav__sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 12px;
    background: #fafafa;
  }

  .gt-mobile-nav__item.is-open .gt-mobile-nav__sub {
    display: block;
  }

  .gt-mobile-nav__sub h4 {
    margin: 0;
    padding: 12px 20px 6px;
    font-size: 14px;
    font-weight: 600;
    color: #008c63;
  }

  .gt-mobile-nav__sub h4 a {
    color: #008c63;
    font-size: 15px;
  }

  .gt-mobile-nav__sub a {
    display: block;
    padding: 10px 20px 10px 28px;
    font-size: 15px;
    color: #555;
    text-decoration: none;
  }

  .gt-mobile-nav__sub a:active {
    color: #008c63;
    background: #f0f7f4;
  }

  .gt-mobile-drawer__tel {
    margin: 16px 20px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #008c63 0%, #006b4f 100%);
    border-radius: 10px;
    text-align: center;
  }

  .gt-mobile-drawer__tel span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
  }

  .gt-mobile-drawer__tel a {
    font-size: 20px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.5px;
  }

  /* ========== 轮播 Banner ========== */
  .banner {
    height: auto !important;
    width: 100%;
    overflow: hidden;
  }

  .banner .banbd,
  .banner .banbd ul {
    width: 100%;
  }

  .banner .banbd li {
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 42%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    float: none;
  }

  .banner .banbd li a {
    position: absolute;
    inset: 0;
    height: auto !important;
    display: block;
  }

  .banner .banbd span {
    display: none !important;
  }

  .banhd {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 12px 0;
    background: #fff;
  }

  .banhd .bano {
    position: relative !important;
    left: auto !important;
    margin-left: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .banhd .dian {
    float: none !important;
    margin: 0 !important;
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .banhd .dian li {
    width: 8px !important;
    height: 8px !important;
    margin-right: 0 !important;
  }

  .ty-banner-1 {
    width: 100%;
    overflow: hidden;
  }

  .ty-banner-1 img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ========== 咨询热线条（修复白字看不清、电话与标题重叠） ========== */
  .band {
    height: auto !important;
    background-size: cover !important;
    background-color: #e8ecee !important;
    padding: 20px 0 24px;
    overflow: visible !important;
  }

  .band h2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    line-height: 1.45 !important;
    font-size: 18px !important;
    text-align: center;
    padding: 8px 8px 4px !important;
    color: #1a1a1a !important;
    box-sizing: border-box;
  }

  .band h2 b {
    font-size: 22px !important;
    color: #111 !important;
  }

  .band .tel {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 8px 0 !important;
    background: none !important;
    text-align: center;
    box-sizing: border-box;
  }

  .band .tel span,
  .band .tel em {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    text-align: center;
    top: 0 !important;
    position: relative !important;
    height: auto !important;
    line-height: 1.5 !important;
    box-sizing: border-box;
  }

  .band .tel span {
    color: #333 !important;
    margin-bottom: 6px;
  }

  .band .tel em {
    font-size: 20px !important;
    color: #008c63 !important;
    margin-top: 4px;
  }

  .band .tel em b {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: #008c63 !important;
    font-weight: 700;
  }

  /* ========== 品牌 / 通用区块 ========== */
  .g_pp,
  .g_gcan,
  .g_gcan2,
  .g_xban,
  .g_pro,
  .g_ys,
  .g_news {
    height: auto !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    background-size: cover !important;
  }

  .g_pp .ppleft,
  .g_pp .ppzs,
  .g_pp .ppleft h2,
  .g_pp .ppleft p {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .g_pp .ppleft h2 em {
    font-size: 26px !important;
  }

  .g_pp .ppleft p {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    text-indent: 0 !important;
    margin-bottom: 16px !important;
  }

  .g_pp .ppleft span {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    text-align: center;
    margin: 8px 0 0;
  }

  .g_pp .ppleft span a,
  .g_pp .btn1,
  .g_pp .btn2 {
    float: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 160px;
    min-height: 48px !important;
    height: auto !important;
    line-height: 1.2 !important;
    padding: 12px 28px !important;
    margin: 8px auto 0;
    border-radius: 24px !important;
    background: #008c63 !important;
    color: #fff !important;
    box-sizing: border-box;
  }

  .g_pp .btn2 {
    background: #f5f5f5 !important;
    color: #333 !important;
    border: 1px solid #ddd;
  }

  .g_pp .ppzs li,
  .g_pp .ppzs li img {
    width: 100% !important;
    height: auto !important;
  }

  .g_pp .ppzs li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
  }

  .g_pp .ppzs li img {
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .g_gcan h2,
  .g_gcan2 h2,
  .g_pro h2,
  .g_ys h2,
  .g_news h2 {
    font-size: 24px !important;
    height: auto !important;
    padding-bottom: 16px;
  }

  .g_gcan h2 em,
  .g_pro h2 em,
  .g_news h2 em {
    font-size: 14px !important;
  }

  /* 工程案例 / 案例 Tab：横向滑动，禁止被全局 white-space 拆行 */
  .g_gcan .antit,
  .g_gcan2 .antit {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 52px;
    line-height: normal !important;
    margin: 0 auto !important;
    padding: 4px 0 8px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .g_gcan .anhd,
  .g_gcan2 .anhd {
    float: none !important;
    flex: 1 1 auto;
    min-width: 0;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 4px 4px 0;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .g_gcan .anhd li,
  .g_gcan2 .anhd li {
    float: none !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: auto !important;
    height: auto !important;
    min-height: 44px;
    line-height: 1.3 !important;
    margin: 0 16px 0 0 !important;
    padding: 10px 4px 6px;
    white-space: nowrap !important;
  }

  .g_gcan .anhd li a,
  .g_gcan2 .anhd li a {
    white-space: nowrap !important;
    display: inline-block;
    padding: 4px 2px;
  }

  .g_gcan .morean,
  .g_gcan2 .morean {
    float: none !important;
    flex-shrink: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 4px 4px 8px;
    white-space: nowrap !important;
  }

  .g_gcan .morean a,
  .g_gcan2 .morean a {
    white-space: nowrap !important;
  }

  /* 工程案例轮播块：背景与正文上下排列，避免左右两栏重叠 */
  .zz_change,
  .zz_box,
  .zz-s,
  .zz-s ol,
  .zz-s ol > li {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    box-sizing: border-box;
  }

  .ancon,
  .ancon2 {
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding-top: 46vw !important;
    padding-bottom: 0 !important;
    background-size: cover !important;
    background-position: center top !important;
    overflow: hidden;
    position: relative;
  }

  .ancon dl,
  .ancon2 dl {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 12px 16px !important;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  }

  .ancon dt,
  .ancon dd,
  .ancon2 dt,
  .ancon2 dd {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 0 10px !important;
    box-sizing: border-box;
  }

  .ancon dt:last-child,
  .ancon dd:last-child,
  .ancon2 dt:last-child,
  .ancon2 dd:last-child {
    margin-bottom: 0 !important;
  }

  .ancon dt img,
  .ancon2 dt img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    display: block;
  }

  .ancon dd h3,
  .ancon dd h3 a,
  .ancon2 dd h3,
  .ancon2 dd h3 a {
    height: auto !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .ancon dd,
  .ancon2 dd {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #333;
  }

  .g_gcan .jt,
  .g_gcan2 .jt {
    display: none;
  }

  /* ========== 产品中心：2 列卡片 ========== */
  .g_pro .m_fl {
    display: none;
  }

  .g_pro .content {
    display: block;
  }

  .g_pro .m_cp {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .g_pro .m_cp ul {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
  }

  .g_pro .m_cp li {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .g_pro .m_cp li img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1;
    object-fit: cover;
    border: none !important;
  }

  .g_pro .m_cp li em {
    height: auto !important;
    min-height: 44px;
    line-height: 1.35 !important;
    padding: 10px 8px;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none !important;
    border-top: 1px solid #eee !important;
  }

  /* 产品列表页 */
  .cplb-1n-ts-01-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cplb-1n-ts-01-list dl {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
  }

  .cplb-1n-ts-01-list dt,
  .cplb-1n-ts-01-list dt img {
    width: 100% !important;
    height: auto !important;
  }

  .cplb-1n-ts-01-list dd {
    padding: 10px;
    flex: 1;
  }

  .cplb-1n-ts-01-list h4 {
    font-size: 14px !important;
    line-height: 1.4;
    height: auto !important;
    overflow: visible !important;
  }

  .cplb-1n-ts-01-list-desc {
    display: none;
  }

  .cplb-1n-ts-01-list-deta a {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    background: #008c63;
    color: #fff !important;
    border-radius: 22px;
    margin-top: 8px;
  }

  .fdh-01-nav,
  .blk-sm.fr .fdh-01-nav {
    display: none;
  }

  .blk-sm.fr {
    float: none !important;
    width: 100% !important;
  }

  /* ========== 优势区 ========== */
  .g_ys .m_ys dl {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 20px;
    display: block !important;
    overflow: hidden;
    box-sizing: border-box;
  }

  .g_ys dt,
  .g_ys dd {
    float: none !important;
    width: 100% !important;
    clear: both;
  }

  .g_ys .m_ys dd {
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 10px 12px !important;
    box-sizing: border-box;
  }

  .g_ys dt img {
    width: 100% !important;
    height: auto !important;
    border: none !important;
    margin: 0 auto;
  }

  .g_ys .m_ys dd h3 {
    height: auto !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
    color: #fff !important;
  }

  .g_ys .m_ys dd h3 em {
    color: #fff !important;
  }

  .g_ys .m_ys dd h3[data-perc="1000"] .num {
    color: #e53935 !important;
  }

  .g_ys .m_ys dd p {
    line-height: 1.65 !important;
    color: #fff !important;
    padding: 0 8px 8px;
    text-shadow: none !important;
  }

  /* ========== 新闻 ========== */
  .g_news .newdt,
  .g_news .newr {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 20px;
    box-sizing: border-box;
  }

  .g_news .dtdl dt img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
  }

  .g_news .bkcon dl {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 16px;
    box-sizing: border-box;
  }

  .g_news .newdt {
    background: #fff !important;
    padding: 16px 0 24px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 12px 12px !important;
    box-sizing: border-box;
  }

  .g_news .dtdl {
    margin: 0 12px !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .g_news .dtdl dt {
    max-width: 100% !important;
    margin-bottom: 12px !important;
    height: auto !important;
  }

  .g_news .dtdl h4 {
    height: auto !important;
    max-height: none !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .g_news .dtdl p {
    height: auto !important;
    max-height: none !important;
    line-height: 1.65 !important;
    margin-bottom: 12px !important;
    overflow: visible !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .g_news .dtdl span {
    height: auto !important;
    line-height: 1.5 !important;
    margin-top: 8px;
    text-align: right;
  }

  .g_news .newr .bk {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16px 14px 20px !important;
    box-sizing: border-box;
  }

  .g_news .bkcon dt {
    height: auto !important;
    max-height: none !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: break-word;
    margin-bottom: 6px !important;
  }

  .g_news .bkcon p {
    height: auto !important;
    max-height: none !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
    overflow: visible !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .g_news .bkcon span {
    display: block;
    padding: 8px 0 0 !important;
    text-align: right;
    white-space: normal !important;
    word-break: break-all;
  }

  .g_news .wd {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16px 0 20px !important;
    background: #f0f4f3 !important;
    background-image: none !important;
    position: relative !important;
    box-sizing: border-box;
  }

  .g_news .wd h3 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 0 12px !important;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .g_news .wdlst {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .g_news .wdlst li {
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.55 !important;
    margin-bottom: 8px;
    overflow: visible !important;
    white-space: normal !important;
  }

  .g_news .wdlst li a {
    height: auto !important;
    min-height: 44px;
    line-height: 1.5 !important;
    padding: 10px 10px 10px 12px !important;
    white-space: normal !important;
    word-break: break-word;
    display: block;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .g_news .wdmore {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: calc(100% - 24px);
    margin: 16px 12px 0;
    height: auto !important;
    min-height: 44px;
    line-height: 1.2 !important;
    padding: 10px 16px !important;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
  }

  /* ========== 按钮（触摸友好） ========== */
  .g_pp .ppleft span a,
  .g_xban .banbtn a,
  .g_xban .banbtn .banbtn2,
  .g_news .wdmore a,
  .banbtn a,
  a.btn,
  .page_curr,
  .page_next,
  .page_last,
  .page a {
    min-height: 44px;
    line-height: 44px;
    padding: 0 20px;
    border-radius: 22px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .g_xban {
    height: auto !important;
    min-height: 0 !important;
    background-size: cover !important;
    background-position: center top !important;
    padding: 0 0 28px !important;
    overflow: visible !important;
  }

  .g_xban .content {
    overflow: visible !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: min(42vw, 180px) !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box;
  }

  .g_xban .banbtn,
  .g_xban .bantel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    text-align: center;
    margin-top: 0;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    box-sizing: border-box;
    padding: 0;
  }

  .g_xban .banbtn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 12px;
    padding: 10px !important;
  }

  .g_xban .banbtn a,
  .g_xban .banbtn .banbtn2 {
    margin: 0 !important;
    float: none !important;
    position: relative !important;
  }

  .g_xban .bantel {
    font-size: 20px !important;
    line-height: 1.45 !important;
    word-break: break-all;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.58);
    border-radius: 10px;
    padding: 10px 12px !important;
  }

  .g_xban .bantel em {
    display: block;
    margin-top: 6px;
  }

  /* ========== 左侧分享浮层（百度分享） ========== */
  #bdshare,
  [class*="bdshare-slide"],
  .bdshare-slide-button-box,
  .bdsharebuttonbox,
  .bds_more {
    display: none !important;
  }

  /* ========== 页脚 ========== */
  .g_ft {
    height: auto !important;
    padding: 32px 0 24px;
    background-size: cover !important;
  }

  .g_ft .m_fnav {
    height: auto !important;
    line-height: 1.8 !important;
    margin-bottom: 24px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .g_ft .m_fnav a {
    padding: 0 !important;
    font-size: 14px !important;
  }

  .g_ft .flogo,
  .g_ft .fttel,
  .g_ft .ftadd,
  .g_ft .m_code {
    float: none !important;
    width: 100% !important;
    margin-bottom: 16px;
    text-align: center;
  }

  .g_ft .m_code img {
    margin: 0 auto;
  }

  /* ========== 右侧悬浮客服（缩小或隐藏） ========== */
  .client-2 {
    display: none !important;
  }

  /* ========== 面包屑 / 内页 ========== */
  .p12-curmbs-1 {
    font-size: 13px;
    line-height: 1.6;
    padding: 12px 0;
    overflow-x: auto;
    white-space: nowrap;
  }

  .cbgg-01 {
    display: none;
  }

  p,
  .g_pp .ppleft p,
  .ancon dd,
  .g_news .dtdl p {
    font-size: 15px;
    line-height: 1.65;
  }

  .g_pro .m_cp li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .m_ys dl dd h3 {
    white-space: nowrap;
  }

  .banner,
  .banbd,
  .banbd ul {
    max-width: 100%;
    box-sizing: border-box;
  }

  .banbd li {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .g_link .link_c {
    max-width: 100% !important;
    width: 100% !important;
    float: none !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  h4 {
    font-size: 16px;
  }
}

/* 桌面端隐藏移动端专用元素 */
@media screen and (min-width: 768px) {
  .gt-mobile-toggle,
  .gt-mobile-overlay,
  .gt-mobile-drawer {
    display: none !important;
  }
}
