/* ============================================================
   official-ui.css — 天启HTTP官网同款 头部/底部/移动抽屉 样式
   复刻自 https://www.tianqiip.com/ （public.css / bootstrap-drawer / mobile_nav_sidebar）
   图片资源已本地化至 official/img/
   主色：#1968fc  墨蓝：#091d43  正文：#4c5664  浅灰：#677294  橙：#fc7019
   ============================================================ */

:root {
  --official-header-nav-height: 44PX;
  --official-header-image-height: 0PX;
  --official-header-height: calc(var(--official-header-nav-height) + var(--official-header-image-height));
}
@media screen and (min-width: 1025px) {
  :root {
    --official-header-nav-height: 80px;
    --official-header-image-height: 40px;
  }
}

/* ---------- 官网通用工具类（头部/底部用到的部分） ---------- */
.text-white { color: #fff !important; }
.align-center { align-items: center !important; }
.flex, .flex-c-a, .flex-center { display: flex; }
.flex-center { justify-content: center; align-items: center; }
.justify-start { justify-content: flex-start !important; }
.justify-around { justify-content: space-around !important; }
.align-start { align-items: flex-start; }
.box-border { box-sizing: border-box !important; }
.ml-10 { margin-left: 10px !important; }

a:hover { color: #1968fc; text-decoration: none !important; }

/* ---------- 官网按钮（登录=蓝 / 注册=橙） ---------- */
.or-button {
  position: relative; border-radius: 4px; border: none; width: 100px; height: 30px;
  background-color: #fc7019; overflow: hidden; transition-duration: .4s;
}
.bl-button::after, .or-button::after { top: 0; border-radius: inherit; z-index: 1; left: 0; bottom: 0; content: ""; right: 0; }
.or-button::after { position: absolute; background: linear-gradient(45deg, #fdb539, #fc7019); transform: translate(-101%); transition: transform .3s; }
.bl-button {
  position: relative; border-radius: 4px; border: none; width: 100px; height: 30px;
  background-color: #1968fc; overflow: hidden; color: #fff; transition-duration: .4s;
}
.bl-button::after { position: absolute; background: linear-gradient(45deg, #2e90fa, #1968fc); transform: translate(-101%); transition: transform .3s; }
.bl-button span, .or-button span { position: relative; z-index: 2; }
.bl-button:focus::after, .bl-button:hover::after, .or-button:focus::after, .or-button:hover::after { transform: translate(0); }
/* 头部登录/注册按钮配色锁定（防止主题全局 .button 规则覆盖） */
.header .user a.user-login { background-color: #1968fc !important; background-image: none !important; }
.header .user a.user-register { background-color: #fc7019 !important; background-image: none !important; }

/* ---------- 固定头部 ---------- */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    font-family: "Microsoft YaHei", "Times New Roman", serif; font-size: 16px; z-index: 999;
    background: #ecf2fd; box-shadow: 0 2px 10px rgba(9, 29, 67, .06);
  }
.header .header-top-banner {
  position: relative; width: 100%; height: var(--official-header-image-height); background: #04B9D5;
}
.header .header-top-banner img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
@media screen and (max-width: 1024px) {
  .header .header-top-banner { display: none; }
}
.header .header-main, .header .header-top-banner img { margin: 0 auto; }
.header .header-main {
    display: grid; grid-template-columns: auto 1fr auto; grid-auto-flow: row dense;
    padding: 0 24px; background: transparent;
  }
.header .logo { display: inline-flex; align-items: center; gap: 8px; }
.header .logo .logo__link img { display: block; }
.header .logo .logo__tq { height: 32PX; }
.header .logo .logo__glorycloud { height: 24PX; }
@media screen and (min-width: 768px) {
  .header .logo { margin-right: 50px; }
}
.header .nav-wrap { height: var(--official-header-nav-height); }
.header .nav-wrap .nav-body { display: none; }
@media screen and (min-width: 1024px) {
  .header .nav-wrap .nav-body { display: block; }
}
.header .nav-list { display: flex; }
.header .nav-list .nav-item {
  position: relative; width: auto; min-width: 64px; height: var(--official-header-nav-height) !important;
  padding: 0 6px; margin: 0 10px; text-align: center; line-height: var(--official-header-nav-height);
  white-space: nowrap; color: #091d43;
}
.header .nav-list .nav-item a { display: block; height: inherit; text-decoration: none; white-space: nowrap; color: inherit; }
.header .nav-list .nav-item .iconfont { font-size: 18px; font-weight: 600; }
.header .nav-list .nav-item:hover { cursor: pointer; color: #1968fc; font-weight: 600; }
.header .nav-list .nav-item:hover .iconfont { transition: all .4s; display: inline-block; transform: rotate(180deg); }
.header .nav-list .nav-item::after {
  position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; content: "";
  background-color: #1968fc; transition: all .8s;
}
.header .nav-list .nav-item:hover::after { left: 0; width: 100%; }
.header .nav-list .nav-item:first-child { margin-left: 0; }
.header .nav-list .nav-item:last-child { margin-right: 0; }
.header .nav-list .nav-item.activated { color: #1968fc; font-weight: 600; }
.header .nav-list .nav-item.activated::after { left: 0; width: 100%; }
.header .nav-list .nav-item.activated a, .header .nav-list .nav-item.activated span { font-weight: 600; }
.header .nav-list .child-list {
  position: absolute; top: 100%; left: 0; width: auto; padding: 0; background: #fff;
  box-shadow: 0 0 20px rgba(208, 224, 255, .4); border-radius: 8px; font-size: 16px; color: #091d43;
  line-height: normal; transition: all, opacity .6s; height: 0; overflow: hidden; opacity: 0;
}
.header .nav-list .child-list .child-item { padding: 0 20px; box-sizing: content-box; }
.header .nav-list .child-list .child-item:first-child { padding-left: 40px; }
.header .nav-list .child-list .child-item:last-child { padding-right: 40px; }
.header .nav-list .child-list .child-item:hover { transition: all .8s; color: #1968fc; }
.header .nav-list .child-list .meal-icon {
  display: inline-block; width: 18px; height: 15px;
  background: url(official/img/head_child.png) 50% 50%; background-size: 206px 35px; vertical-align: middle;
}
.header .nav-list .child-list .icon_first { background-position: -10px; }
.header .nav-list .child-list .icon_second { background-position: -38px; }
.header .nav-list .child-list .icon_third { background-position: -66px; }
.header .nav-list .child-list .icon_forth { background-position: -94px; }
.header .nav-list .child-list .icon_fifth { background-position: -122px; }
.header .nav-list .child-list .icon_sixth { background-position: -150px; }
.header .nav-list .child-list .icon_seventh { background-position: -178px; }
.header .nav-list .child-list .title-type { color: #091d43; padding: 0 10px; font-weight: 400; }
.header .nav-list .child-list .activity {
  padding: 6px 12px; box-sizing: content-box; text-align: center; color: #fff; font-size: 12px;
  border-radius: 16px 16px 16px 0; background: linear-gradient(90deg, #fc7019 0, #fe344d 100%);
}
.header .nav-list .child-list .activity-new {
  background: linear-gradient(90deg, #F8486F 0, #FE344D 100%) !important; font-size: 14px;
  width: 54px; font-weight: 700; color: #FFF;
}
.header .nav-list .child-list .describe {
  display: block; width: 184px; margin-top: 14px; text-align: left; white-space: normal;
  font-size: 14px; line-height: 24px; color: #677294;
}
.header .nav-list .nav-meal .child-list { display: flex; flex-wrap: wrap; width: 630px; padding-left: 30px; }
.header .nav-list .nav-meal .child-list .child-item { width: 300px; padding: 0; box-sizing: border-box; margin-top: 40px; text-align: center; }
.header .nav-list .nav-meal .child-list .child-item .title { height: 30px; line-height: 30px; }
.header .nav-list .nav-meal .child-list .child-item .activity { box-sizing: border-box; max-height: 100%; line-height: 30px; padding: 0 12px; }
.header .nav-list .nav-meal .child-list .child-item:nth-child(3),
.header .nav-list .nav-meal .child-list .child-item:nth-child(4) { margin-bottom: 40px; }
.header .nav-list .nav-meal .child-list .child-item:hover { transition: all .8s; color: #1968fc; }
.header .nav-list .nav-meal .child-list .describe { white-space: nowrap !important; }
.header .nav-list .nav-ip .child-list { padding: 0; }
.header .nav-list .nav-ip .child-list .child-item { width: calc(100% - 60px); }
.header .nav-list .nav-business .child-list .child-link { min-height: var(--official-header-nav-height); margin: 0; box-sizing: border-box; }
.header .nav-list .nav-business .child-list .child-link:nth-child(-n+2) { margin-top: 40px; }
.header .nav-list .nav-business .child-list .child-link:nth-last-child(-n+2) { margin-bottom: 40px; }
.header .nav-list .nav-business .child-list .child-link:nth-child(2n) { margin-right: 50px; }
.header .nav-list .nav-business .child-list .child-link:nth-child(2n-1) { margin-left: 50px; }
.header .nav-list .nav-business .child-list .describe { margin-top: 12px; line-height: 20px; }
.header .nav-list .child-vertical { flex-direction: column; padding: 0; min-height: 0; }
.header .nav-list .child-vertical .child-item { max-width: 190px; padding: 10px 30px; box-sizing: content-box; }
.header .nav-list .child-vertical .child-item:first-child { margin-top: 20px; padding-left: 30px; }
.header .nav-list .child-vertical .child-item:last-child { margin-bottom: 20px; padding-right: 30px; }
.header .nav-list .mixed-range {
  width: auto; overflow: auto; box-sizing: border-box; opacity: 0; max-width: 540px;
  display: grid; grid-template-columns: 1fr 1fr; grid-auto-flow: row dense;
  grid-column-gap: 50px; grid-row-gap: 30px;
}
.header .nav-list .mixed-range .child-item {
  display: inline-grid; grid-template-columns: auto 1fr; grid-auto-flow: row dense;
  grid-column-gap: 20px; padding: 0; box-sizing: content-box;
}
.header .nav-list .mixed-range .child-item:first-child { padding-left: 0; }
.header .nav-list .mixed-range .child-item:last-child { padding-right: 0; }
.header .nav-list .mixed-range .child-item .content { max-width: 108px; text-align: left; }
.header .nav-list .mixed-range .child-item .content .describe { font-size: 12px; max-width: 108px; }
.header .nav-list .mixed-range .child-item .title-type { padding: 0; }
.header .nav-list .mixed-range .meal-icon {
  width: 58px; height: var(--official-header-nav-height);
  background: url(official/img/head_business.png) 0 50%; background-size: 418px 100px;
}
.header .nav-list .mixed-range .nav_first { background-position: -10px; }
.header .nav-list .mixed-range .nav_second { background-position: -78px; }
.header .nav-list .mixed-range .nav_third { background-position: -146px; }
.header .nav-list .mixed-range .nav_forth { background-position: -214px; }
.header .nav-list .mixed-range .nav_fifth { background-position: -282px; }
.header .nav-list .mixed-range .nav_sixth { background-position: -350px; }
.header .nav-list .nav-item:hover .child-list,
.header .nav-list .nav-item:hover.nav-business .child-list,
.header .nav-list .nav-item:hover.nav-help .child-list,
.header .nav-list .nav-item:hover.nav-ip .child-list,
.header .nav-list .nav-item:hover.nav-meal .child-list { height: auto; opacity: 1; }
.header .nav-list .nav-item:hover.mixed-range { padding: 40px 50px; }
.header .user { display: inline-flex; align-items: center; margin-left: 20px; height: 100%; }
.header .user .button { display: inline-block; width: 72px; height: 40px; line-height: 40px; padding: 0; text-decoration: none; text-align: center; }
.header .user .button span { display: inline-block; width: 100%; text-align: center; }
.header .user .button:not(:last-child) { margin-right: 20px; }
.header .user a { text-decoration: none; }
.header .buy-header-i {
  display: block; width: 100px; height: 81px; margin-top: 10px; background-size: cover;
  background-position: center; background-repeat: no-repeat; image-rendering: -webkit-optimize-contrast;
  animation: 1s linear .5s infinite running buyHeader;
}
.header .buy-header-l { width: 120px; height: 60px; }
.header .header-right-button-group { display: none; padding: 0 12px; align-self: center; align-items: center; }
@media screen and (min-width: 1024px) {
  .header .header-right-button-group { display: flex; }
}
.header .header-toggle-sidebar-nav { display: block; width: 20px; height: 20px; margin-right: 4px; cursor: pointer; }
.header .header-toggle-sidebar-nav img { display: block; width: 100%; }
@media screen and (min-width: 1024px) {
  .header .header-toggle-sidebar-nav { display: none; }
}
/* 紧凑区间（1024~1320px）：压缩 logo/菜单/按钮尺寸，防止内容溢出挤压 */
@media screen and (min-width: 1024px) and (max-width: 1320px) {
  .header .header-main { padding: 0 10px; }
  .header .logo { margin-right: 14px; gap: 6px; }
  .header .logo .logo__tq { height: 26px; }
  .header .logo .logo__glorycloud { height: 18px; }
  .header .nav-list .nav-item { margin: 0 3px; padding: 0 2px; min-width: 52px; font-size: 15px; }
  .header .nav-list .nav-item .iconfont { font-size: 14px; }
  .header .user { margin-left: 6px; }
  .header .user .button { width: 62px; height: 36px; line-height: 36px; }
  .header .header-right-button-group { padding: 0 6px; }
}
@keyframes buyHeader {
  0%, 100% { -webkit-transform: scaleX(1); transform: scaleX(1); }
  10%, 20% { -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg); transform: scale3d(.9, .9, .9) rotate(-3deg); }
  30%, 50%, 70%, 90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
  40%, 60%, 80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
}

/* 头部占位（固定头部把内容顶下来） */
.header-pos { height: var(--official-header-height); }

/* ---------- 高顿同款企业风采轮播（首页英雄区） ---------- */
body .tq-hero {
  padding: 0 0 40px;
}
body .tq-hero-inner { max-width: 1400px; margin: 0 auto; }
body .tq-hero-title {
  font-size: 42px; font-weight: 600; color: #1e212a;
  text-align: center; line-height: 58px;
  font-family: "Microsoft YaHei", sans-serif;
}
body .tq-hero-en {
  font-size: 20px; color: rgba(30, 33, 42, .35);
  letter-spacing: 8px; text-align: center; margin-top: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}
body .tq-hero-photos {
  display: flex; align-items: stretch;
  margin-top: 0; height: 340px;
  position: relative;
  border-radius: 20px;
  gap: 10px;
}
body .tq-hero-photos > a { display: contents; }
body .tq-hero-item {
  flex: 1; height: 100%;
  background-size: cover; background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 12px; cursor: pointer;
  box-shadow: 0 12px 32px -12px rgba(25, 104, 252, .35);
  transition: flex .5s var(--tq-ease, ease), border-radius .5s var(--tq-ease, ease), box-shadow .5s var(--tq-ease, ease);
}
body .tq-hero-item.active {
  flex: 4.2; border-radius: 14px;
  background-size: cover;
  box-shadow: 0 16px 40px -14px rgba(25, 104, 252, .45);
}
body .tq-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; cursor: pointer; z-index: 10;
  opacity: 0; visibility: hidden;
  filter: drop-shadow(0 2px 8px rgba(9, 29, 67, .45));
  transition: opacity .28s var(--tq-ease, ease), visibility .28s, transform .28s var(--tq-ease, ease);
}
body .tq-hero-photos:hover .tq-hero-arrow { opacity: .92; visibility: visible; }
body .tq-hero-arrow:hover { opacity: 1; }
body .tq-hero-arrow.left  { left: 10px; transform: translateY(-50%) translateX(-8px); }
body .tq-hero-arrow.right { right: 10px; transform: translateY(-50%) translateX(8px); }
body .tq-hero-photos:hover .tq-hero-arrow.left  { transform: translateY(-50%); }
body .tq-hero-photos:hover .tq-hero-arrow.right { transform: translateY(-50%); }
/* 触屏设备没有 hover：箭头保持常显 */
@media (hover: none) {
  body .tq-hero-arrow { opacity: .9; visibility: visible; transform: translateY(-50%); }
}
body .tq-hero-line {
  width: 130px; height: 3px; margin: 28px auto 0;
  background: #dde1e5; border-radius: 2px; position: relative;
}
body .tq-hero-line span {
  position: absolute; top: 0; left: 0;
  width: 26px; height: 3px; border-radius: 2px;
  background: #1968fc; transition: left .4s var(--tq-ease, ease);
}
@media screen and (max-width: 768px) {
  body .tq-hero { padding: 0 0 20px; }
  body .tq-hero-title { font-size: 24px; line-height: 34px; }
  body .tq-hero-en { font-size: 12px; letter-spacing: 4px; }
  body .tq-hero-photos { height: 130px; margin-top: 0; padding: 8px; gap: 6px; }
  body .tq-hero-item { border-radius: 6px; }
  body .tq-hero-item.active { border-radius: 8px; }
  body .tq-hero-arrow { width: 34px; height: 34px; }
}

/* ---------- 官网同款底部 CTA 模块（现在注册·免费领取5000IP） ----------
   与当前网站协调的卡片式设计：白底渐变卡 + 蓝紫光晕 + 站点同款按钮 */
body .tq-cta-regist {
  max-width: 1470px; margin: 0 auto;
  padding: 10px 0 30px 0;
  background: transparent;
}
body .tq-cta-width {
  position: relative; overflow: hidden;
  display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center;
  padding: 30px 48px;
  background: linear-gradient(120deg, #ffffff 0%, #f4f8ff 55%, #ecf3ff 100%);
  border: 1px solid rgba(25, 104, 252, .10);
  border-radius: 20px;
  box-shadow: 0 18px 44px -22px rgba(25, 104, 252, .30);
}
/* 角落光斑装饰 */
body .tq-cta-width::before {
  content: ""; position: absolute; right: -70px; top: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 104, 252, .12), transparent 70%);
}
body .tq-cta-width::after {
  content: ""; position: absolute; left: -50px; bottom: -100px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, .10), transparent 70%);
}
body .tq-cta-width > div { position: relative; z-index: 1; }
body .tq-cta-width > div:first-child img { width: 224px; height: 115px; display: block; }
body .tq-cta-desc span {
  font-size: 30px; font-weight: 400; line-height: 42px; color: #091d43;
  font-family: "Microsoft YaHei", sans-serif;
}
body .tq-cta-btns { display: flex; gap: 18px; }
body .tq-cta-btns .button {
  display: block !important;
  width: 190px !important; height: 52px !important; line-height: 52px !important;
  font-size: 18px !important; text-align: center !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
body .tq-cta-btns .tq-cta-blue {
  background: linear-gradient(135deg, #2e90fa, #1968fc) !important;
  background-image: linear-gradient(135deg, #2e90fa, #1968fc) !important;
  background-color: #1968fc !important;
  color: #fff !important;
  box-shadow: 0 14px 26px -12px rgba(25, 104, 252, .65);
}
body .tq-cta-btns .tq-cta-blue:hover { transform: translateY(-2px); filter: brightness(1.06); }
body .tq-cta-btns .tq-cta-orange {
  background: linear-gradient(135deg, #fd8b39, #fc7019) !important;
  background-image: linear-gradient(135deg, #fd8b39, #fc7019) !important;
  background-color: #fc7019 !important;
  color: #fff !important;
  box-shadow: 0 14px 26px -12px rgba(252, 112, 25, .55);
}
body .tq-cta-btns .tq-cta-orange:hover { transform: translateY(-2px); filter: brightness(1.06); }
@media screen and (max-width: 991px) {
  body .tq-cta-regist { padding: 6px 16px 22px; }
  body .tq-cta-width { flex-direction: column; gap: 16px; text-align: center; padding: 26px 22px; }
  body .tq-cta-width > div:first-child img { width: 180px; height: 93px; }
  body .tq-cta-desc span { font-size: 22px; line-height: 32px; }
  body .tq-cta-btns { flex-wrap: wrap; justify-content: center; }
}

/* ---------- 官网同款底部 ---------- */
.footer-wrap {
  position: relative; z-index: 2; background: #f7f9fd url(official/img/footer_bg.png);
  background-size: cover; flex: 1; margin-top: 0;
}
.footer-wrap .footer-logo { display: none; }
.footer-wrap .footer-main-content {
  padding: 64px 0 52px; width: 1400px; margin: 0 auto; transition: all .3s;
  display: grid; grid-template-columns: 100px 3fr [ewmimg-start] 100px [ewmimg-end ewmtext-start] minmax(145px, .8fr) [ewntext-end];
  gap: 16px 10px; align-content: center;
}
.footer-wrap .footer-main-content .title {
  display: flex; font-weight: 400; color: #091d43; font-size: 20px; align-items: flex-start;
}
.footer-wrap .footer-main-content .link-title { align-items: flex-start; line-height: 38px; }
.footer-wrap .footer-main-content .cooperate-content {
  display: grid; grid-template-columns: minmax(160px, 180px) minmax(300px, 1fr); align-content: flex-start;
}
.footer-wrap .footer-main-content .cooperate-content div { padding-top: 3px; color: #4c5664; }
.footer-wrap .footer-main-content .ewm { grid-row: 1/3; justify-self: center; align-self: center; }
.footer-wrap .footer-main-content .ewm-img { grid-column: ewmimg; }
.footer-wrap .footer-main-content .ewm-img img { transform: translateY(6px); width: 100px; height: 100px; }
.footer-wrap .footer-main-content .ewm-text {
  grid-column: ewmtext; justify-self: flex-start; text-align: center; font-size: 20px;
  padding-left: 33px; color: #4c5664; transform: translateY(6px);
}
.footer-wrap .footer-main-content .ewm-text p:first-child { margin-bottom: 10px; }
.footer-wrap .footer-main-content .link-content { display: flex; flex-wrap: wrap; transition: inherit; padding-right: 85px; }
.footer-wrap .footer-main-content .link-content a {
  display: block; line-height: 38px; align-self: end; color: #4c5664; margin-right: 80px;
}
.footer-wrap .footer-main-content .link-content a:hover { cursor: pointer; text-decoration: none; color: #1968fc; }
.footer-wrap hr { border: none; border-top: 1px solid rgba(0, 0, 0, .1); }
.footer-wrap .footer-text-content {
  display: grid; grid-template-rows: repeat(3, 1fr); justify-items: center; text-align: center; gap: 20px;
  color: #677294; padding: 20px 20px 30px; font-size: 14px;
}
.footer-wrap .footer-text-content span { margin-right: 22px; }
.footer-wrap .footer-text-content span a { color: inherit; line-height: 20px; }
.footer-wrap .footer-text-content span a img { vertical-align: bottom; margin-right: 8px; }
.footer-wrap .footer-text-content span a:hover { text-decoration: none; color: initial; }
@media screen and (max-width: 768px) {
  .footer-wrap { padding: 20px; }
  .footer-wrap .footer-logo { display: flex; align-items: center; gap: 8px; }
  .footer-wrap .footer-main-content.mediaStyle {
    width: 100%; padding: 10px 0 0 !important; margin: 0 !important;
    grid-template-columns: 1fr 88px 71px; grid-column-gap: 10px;
    display: flex; gap: 0; justify-content: space-between;
  }
  .footer-wrap .footer-main-content.mediaStyle .cooperate-title { display: none; }
  .footer-wrap .footer-main-content.mediaStyle .cooperate-content {
    font-weight: 600; font-size: 12px; color: #091D43; line-height: 15px; flex: 1;
    display: flex; flex-direction: column; justify-content: end;
  }
  .footer-wrap .footer-main-content.mediaStyle .cooperate-content div { margin-top: 7px; }
  .footer-wrap .footer-main-content.mediaStyle .ewm-img {
    width: 88px; height: 88px; padding: 8px; border-radius: 8px; border: 1px solid #E4E5EB;
    box-shadow: 0 4px 20px 0 rgba(21, 44, 88, .08);
  }
  .footer-wrap .footer-main-content.mediaStyle .ewm-img img { width: 100%; height: 100%; transform: none; }
  .footer-wrap .footer-main-content.mediaStyle .ewm-text {
    font-weight: 400; font-size: 10px; color: #4C5664; line-height: 13px; padding: 0;
    grid-column: auto; margin-left: 10px;
  }
  .footer-wrap .footer-main-content.mediaStyle .link-content,
  .footer-wrap .footer-main-content.mediaStyle .link-title { display: none; }
  .footer-wrap hr { margin: 20px 0; }
  .footer-wrap .footer-text-content {
    font-weight: 400; font-size: 10px; color: #677294; line-height: 16px; padding: 0;
    grid-template-rows: repeat(3, auto);
  }
  .footer-wrap .footer-text-content span { display: block; margin-right: 0; }
  .footer-wrap .footer-text-content div:last-child a,
  .footer-wrap .footer-text-content div:last-child span { margin-bottom: 5px; }
}

/* ---------- 移动端抽屉（bootstrap-drawer v4 + 官网定制） ---------- */
.drawer-open { overflow: hidden; }
.drawer { position: fixed; width: 320px; top: 0; z-index: 1050; height: 100vh; display: none; }
.drawer.drawer-right { right: -320px; border-left: 1px solid rgba(0, 0, 0, .2); }
.drawer.drawer-left { left: -320px; border-right: 1px solid rgba(0, 0, 0, .2); }
.drawer.show { -webkit-transform: none; transform: none; }
.drawer.show.drawer-right { right: 0; }
.drawer.show.drawer-left { left: 0; }
.drawer.slide { transition: left .2s ease, right .2s ease; }
@media (prefers-reduced-motion: reduce) { .drawer.slide { transition: none; } }
.drawer-backdrop {
  position: fixed; top: 0; left: 0; z-index: 1040; width: 100vw; height: 100vh; background-color: #000;
}
.drawer-backdrop.fade { opacity: 0; }
.drawer-backdrop.show { opacity: .5; }
.drawer-body { padding: 16px 16px; }
.drawer-content {
  width: 100%; pointer-events: auto; background-color: #fff; background-clip: padding-box;
  outline: 0; height: 100%; overflow-y: auto;
}
.drawer-content.drawer-content-scrollable { display: flex; flex-direction: column; }
.drawer-content.drawer-content-scrollable > div { display: flex; flex-direction: column; }
.drawer-content.drawer-content-scrollable > div.drawer-body { flex: 1; overflow-y: auto; }
.drawer-header { padding: 16px 16px; border-bottom: 1px solid #dee2e6; }
.drawer-footer { padding: 16px; border-top: 1px solid #dee2e6; }
.collapse { display: none; }
.collapse.show { display: block; }

.mobile-nav-sidebar-drawer { width: 328PX; font-size: 16PX; height: auto; left: 0; bottom: 0; }
.mobile-nav-sidebar-drawer .drawer-content { padding: 0PX 16PX 40PX; }
.mobile-nav-sidebar-drawer .drawer-logo-container {
  display: flex; flex-direction: row !important; align-items: center; gap: 8px;
  height: var(--official-header-nav-height); padding: 10PX 0PX; border: none;
}
.mobile-nav-sidebar-drawer .drawer-logo-container a {
  display: flex; align-items: center; width: max-content; text-decoration: none !important; height: 100%;
}
.mobile-nav-sidebar-drawer .drawer-logo-container img { display: block; width: 100PX; }
.mobile-nav-sidebar-drawer .drawer-menu { margin-top: 30PX; padding: 0; overflow-x: hidden; }
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu-item {
  display: flex; align-items: center; min-height: 40PX; padding-left: 8PX; padding-right: 4PX;
  color: #091D43; font-size: 14PX; font-weight: 600; border-radius: 6PX; text-decoration: none !important;
  transition: all .25s; cursor: pointer;
}
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu-item:hover { color: #1968FC; background-color: #F5F7FA; }
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu-item.drawer-menu-item--collapse .drawer-menu-item__collapse-icon {
  margin-left: auto; color: #677294; transition: all .25s;
}
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu-item.drawer-menu-item--collapse[aria-expanded="true"] .drawer-menu-item__collapse-icon { transform: rotate(180deg); }
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu-item .activity-tag {
  margin-left: 8PX; padding: 4PX 6PX; box-sizing: content-box; text-align: center; color: #fff; font-size: 12PX;
  border-radius: 16PX 16PX 16PX 0; background: linear-gradient(90deg, #fc7019 0, #fe344d 100%);
}
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu-item .activity-tag.activity-tag--new {
  background: linear-gradient(90deg, #F8486F 0, #FE344D 100%) !important; font-weight: 700; color: #FFF;
}
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu--submenu .drawer-menu-item {
  padding-left: 24PX; font-weight: 400; color: #677294;
}
.mobile-nav-sidebar-drawer .drawer-menu .drawer-menu--submenu .drawer-menu-item:hover { font-weight: 500; color: #1968FC; }
.mobile-nav-sidebar-drawer .drawer-content-buttons { display: flex; flex-direction: column; margin-top: 30PX; }
.mobile-nav-sidebar-drawer .drawer-content-buttons .drawer-button + .drawer-button { margin-top: 12PX; }
.mobile-nav-sidebar-drawer .drawer-button {
  --border-color: #E4E5EB; position: relative; padding: 9PX 16PX; border-radius: 6PX; color: #4C5664;
  font-weight: 600; font-size: 14PX; text-align: center; line-height: 22PX; text-decoration: none !important;
  transition: all .25s; cursor: pointer;
}
.mobile-nav-sidebar-drawer .drawer-button:after {
  content: ""; position: absolute; inset: 0; border: 1PX solid var(--border-color); border-radius: inherit;
}
.mobile-nav-sidebar-drawer .drawer-button.drawer-button--primary {
  --border-color: #1968FC; color: #fff; background-color: #1968FC;
}

/* ============================================================
   quietlee 全局样式冲突中和层（必须放最后）
   quietlee style.css 里的裸选择器会污染官网头部/底部：
   - .title { position:absolute; background:rgba(56,56,56,.6); bottom:0; ... }
   - .logo { line-height:50px; white-space:nowrap; }
   - footer { margin-top:4px; cursor:pointer; }
   ============================================================ */
.header .title,
.footer-wrap .title {
  position: static;
  top: auto; right: auto; bottom: auto; left: auto;
  background: transparent;
  padding: 0;
  text-overflow: clip;
}
.header .logo { line-height: normal; }
.footer-wrap { height: auto; cursor: default; }

