@charset "UTF-8";

/* ===== BMW Type Next（取自 bmw.com.cn 字体，仅含拉丁字形；中文回退到微软雅黑） ===== */
@font-face {
  font-family: 'bmwTypeNext';
  src: url('fonts/bmw-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'bmwTypeNext';
  src: url('fonts/bmw-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'bmwTypeNext';
  src: url('fonts/bmw-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'bmwTypeNext';
  src: url('fonts/bmw-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Noto Sans SC（与 BMW 中文页一致的中文字体，本地自托管，避免依赖被墙的 Google Fonts） ===== */
@font-face {
  font-family: 'Noto Sans SC';
  src: url('fonts/noto-sc-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  src: url('fonts/noto-sc-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  src: url('fonts/noto-sc-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  src: url('fonts/noto-sc-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body, html {
  /*  font-family: Arial, '微软雅黑', Helvetica, sans-serif;*/
  /* font-family: 'Microsoft YaHei', arial, 'Hiragino Sans GB', sans-serif;*/
  font-family: 'bmwTypeNext', 'Noto Sans SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  position: relative;
  background-color: #f1f1f1;
  height: 100%;
  background: url("../images/back.jpg"); }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, input, textarea, p, th, td {
  padding: 0;
  margin: 0;
  font-weight: normal; }

ol, ul {
  list-style: none; }

a {
  text-decoration: none;
  color: #282828; }

img {
  border-style: none !important; }

.clearfix:after,
.clearfix:before {
  display: table;
  content: ' ';
  clear: both; }

.list-inline {
  display: inline-block; }

.list-inline > li {
  display: inline-block;
  float: left; }

.m-content {
  display: block;
  width: 1500px;
  margin: 0 auto; }

/* result/rank/detail 三栏布局：使用 .page-layout 类时才启用 flex 等距分布。
   默认 block 以保持 center_admin 等后台页面的原始上下堆叠布局。 */
.m-content.page-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px; }

/* .page-layout 本身是 flex 容器，clearfix 的 ::before/::after 会被当作 flex item，
   导致 space-between 错误地产生额外间隔。仅对启用 flex 的 page-layout 屏蔽它们。 */
.m-content.page-layout.clearfix::before,
.m-content.page-layout.clearfix::after {
  display: none; }

/* 三栏页（result/rank/detail 等）：容器维持 1500px，左/右 200px 侧栏贴住两侧保持不动，
   中间 .content-center 用 flex:1 向外扩展；左-中、中-右各留 16px 间距（gap:16px）。 */

.img-center, .result-img-big, .school-info-sm > a > img {
  display: block;
  clear: both;
  margin: 0 auto; }

.header {
  position: relative;
  width: 100%;
  height: 60px;
  min-width: 1500px;
  /*  background-color: #1685d0;*/
  z-index: 200;
  background: url("../images/img01.jpg"); }

.logo {
  display: inline-block;
  width: 300px;
  height: 60px;
  float: left;
  font-size: 25px;
  font-family: 'bmwTypeNext', 'Noto Sans SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'STHeiti', Tahoma, 'SimHei', sans-serif;
  color: #fff;
  line-height: 60px; }
  .logo a {
    vertical-align: middle !important; }
  .logo img {
    height: 50px;
    width: auto;
    vertical-align: middle; }

.operation {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  box-sizing: border-box;
  background-color: #1675bb;
  box-shadow: 0 3px 5px #525252;
  overflow: hidden;
  -webkit-transition: all 600ms;
  -moz-transition: all 600ms;
  -ms-transition: all 600ms;
  -o-transition: all 600ms;
  transition: all 600ms; }
  .operation > li {
    width: 100%; }
    .operation > li > a {
      display: block;
      width: 100%;
      text-align: center;
      line-height: 36px;
      font-size: 16px;
      color: #fff; }
    .operation > li > a:hover {
      color: #00b7ff; }

.nav {
  float: right; }
  .nav > li {
    position: relative; }
    .nav > li > a {
      display: inline-block;
      padding: 0 22px;
      font-size: 18px;
      line-height: 60px;
      color: #fff; }
  .nav > li:hover {
    background-color: #fff;
    -webkit-transition: all 600ms;
    -moz-transition: all 600ms;
    -ms-transition: all 600ms;
    -o-transition: all 600ms;
    transition: all 600ms; }
    .nav > li:hover > a {
      color: #1675bb; }
    .nav > li:hover > ul.operation {
      height: 36px;
      -webkit-transition: all 600ms;
      -moz-transition: all 600ms;
      -ms-transition: all 600ms;
      -o-transition: all 600ms;
      transition: all 600ms; }

.welcome-name {
  display: block;
  width: 100%;
  min-width: 1500px;
  height: 24px;
  background-color: #fff;
  border-bottom: 1px solid #dddddd;
  box-shadow: 0 3px 3px #ddd; }
  .welcome-name h3 {
    font-size: 14px;
    color: #737373;
    line-height: 24px; }

.login {
  padding-top: 24px; }

.login-left {
  width: 520px;
  height: 337px;
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(121, 121, 121, 0.5);
  border-radius: 5px;
  overflow: hidden; }
  .login-left > h1 {
    font-size: 20px;
    background-color: #8b8c8d;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    padding-left: 20px;
    color: #fff; }

dl.input-list {
  width: 100%;
  padding-left: 20px;
  box-sizing: border-box; }
  dl.input-list > dd {
    margin-top: 25px; }
    dl.input-list > dd input[type='text'],
    dl.input-list > dd input[type='password'],
    dl.input-list > dd input[type='file'],
    dl.input-list > dd textarea,
    dl.input-list > dd select {
      width: 233px;
      height: 30px;
      box-sizing: border-box;
      padding: 0 10px;
      border: 1px solid #707070;
      border-radius: 3px;
      box-shadow: 0 0 1px #ddd;
      outline: none; }
    dl.input-list > dd input[type='text']:focus,
    dl.input-list > dd input[type='password']:focus,
    dl.input-list > dd input[type='file']:focus,
    dl.input-list > dd textarea:focus,
    dl.input-list > dd select:focus {
      border: 1px solid #1675bb;
      box-shadow: 0 0 2px #1675bb; }
    dl.input-list > dd label {
      font-size: 14px;
      color: #707070;
      vertical-align: text-top; }

.notes {
  display: inline-block;
  font-size: 14px;
  color: #979797;
  vertical-align: top; }

.form-name {
  display: inline-block;
  width: 105px;
  font-size: 14px;
  color: #707070; }

dl.input-list.school .form-name {
  width: 170px;
  font-size: 14px; }

dl.school dd textarea {
  width: 400px;
  height: 100px;
  vertical-align: top;
  padding: 10px 10px; }

.form-error {
  display: inline-block;
  width: 150px;
  box-sizing: border-box;
  padding-left: 10px;
  font-size: 14px;
  color: #fb000c; }

.form-sub {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background-image: linear-gradient(-180deg, #47b2ff 0%, #3481be 100%);
  box-shadow: 0 0 2px #1D4C75;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  border: none;
  color: #fff;
  letter-spacing: 10px;
  font-family: 'Noto Sans SC', '黑体';
  cursor: pointer;
  outline: none; }

.form-sub:hover {
  background-image: linear-gradient(-180deg, #4496E0 0%, #265B8A 100%); }

button {
  background-image: linear-gradient(-180deg, #47b2ff 0%, #3481be 100%);
  border: none;
  border-radius: 3px; }

button:hover {
  background-image: linear-gradient(-180deg, #4496E0 0%, #265B8A 100%); }

a.link {
  font-size: 14px;
  text-decoration: underline; }

a.link:hover {
  color: #1675bb; }

.login-operation {
  display: inline-block;
  margin-left: 28px;
  font-size: 12px; }
  .login-operation > a {
    color: #1675bb;
    padding: 0 5px; }
  .login-operation > a:hover {
    color: #00b7ff; }

.important {
  display: inline-block;
  color: red; }

.tab {
  margin-left: 30px; }
  .tab > li {
    padding: 10px 20px 0;
    border-top: 5px solid #fff;
    font-size: 17px !important;
    cursor: pointer; }
  .tab > li.on {
    border-top: 5px solid #1675bb;
    color: #1675bb; }
  .tab > li:hover {
    color: #1675bb; }

.m-content-box {
  background-color: #fff;
  margin-top: 24px;
  padding-bottom: 50px;
  margin-bottom: 200px;
  box-shadow: 0px 0px 6px 0px rgba(121, 121, 121, 0.5); }

.register-dl {
  padding-left: 50px !important; }

.mt-25 {
  margin-top: 25px; }

/*****************
  |房产登记
********************/
.condition {
  display: inline-block;
  width: 200px;
  margin-right: 0;
  background-color: #dbefff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding-bottom: 10px;
  box-shadow: 0 0 3px #ddd; }
  .condition > dt {
    font-size: 16px;
    line-height: 2.5;
    color: #1675bb;
    text-align: center; }
  .condition > dd {
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
    padding: 2px 0 2px 12px;
    white-space: nowrap; }
    .condition > dd input,
    .condition > dd select {
      width: 111px;
      height: 20px;
      box-sizing: border-box;
      padding: 0 5px;
      font-size: 12px;
      border: 1px solid #707070;
      border-radius: 2px;
      box-shadow: 0 0 1px #ddd;
      outline: none;
      vertical-align: middle; }
    .condition > dd input:focus,
    .condition > dd select:focus {
      border: 1px solid #1675bb;
      box-shadow: 0 0 2px #1675bb; }
    .condition > dd > button {
      color: #fff;
      width: 93%;
      display: block;
      padding: 5px 21px;
      margin: 10px 0 10px 0px; }

.condition-name {
  display: inline-block;
  width: 60px;
  font-size: 12px;
  line-height: 30px; }

/* AI大数据选车2 快捷筛选块（位于「请输入选车条件」上方，与其间隔三行） */
.ai2-block { display: block; }
.ai2-gap { height: 3em; }

.content-left {
  width: 200px;
  flex-shrink: 0; }

.content-center {
  flex: 1 1 auto;
  min-width: 970px; }

.bar-hot {
  width: 250px;
  flex-shrink: 0;
  float: none; }

/* ===================== 左侧导航（仿懂车帝竖向菜单） ===================== */
.site-nav {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(22,117,187,.08), 0 1px 3px rgba(0,0,0,.05);
  overflow: hidden;
  position: sticky;
  top: 16px; }
.site-nav-head {
  padding: 13px 16px 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9aa3ad; }
.site-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0 6px; }
.site-nav-item + .site-nav-item {
  border-top: 1px solid #f4f5f7; }
.site-nav-btn,
.site-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .3px;
  color: #2b2f33;
  background: transparent;
  border: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font-family: 'bmwTypeNext', 'Noto Sans SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'STHeiti', Tahoma, 'SimHei', sans-serif;
  transition: background .18s ease, color .18s ease; }
.site-nav-btn:hover,
.site-nav-link:hover {
  background: #eef4ff;
  color: #1675bb; }
/* hover 左侧高亮条 */
.site-nav-btn:hover::before,
.site-nav-link:hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #1675bb; }
.site-nav-btn.site-nav-primary,
.site-nav-btn[data-modal="modal-car"] {
  font-weight: 600;
  color: #1675bb; }
/* 左侧导航统一描边 SVG 图标（徽章样式 + hover 反白放大） */
.nav-ico {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  padding: 5px;
  box-sizing: content-box;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: #f1f3f6;
  border-radius: 9px;
  transition: background .18s ease, transform .18s ease, stroke .18s ease; }
.site-nav-btn:hover .nav-ico,
.site-nav-link:hover .nav-ico {
  background: #1675bb;
  stroke: #fff;
  transform: scale(1.07); }
.site-nav-btn.site-nav-primary .nav-ico,
.site-nav-btn[data-modal="modal-car"] .nav-ico {
  background: #e6f0ff; }

/* ===================== 左侧导航「可展开子菜单」 ===================== */
.site-nav-toggle {
  justify-content: flex-start; }
.nav-arrow {
  margin-left: auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid #9aa3ad;
  border-bottom: 2px solid #9aa3ad;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .22s ease, border-color .18s ease;
  flex: 0 0 auto; }
.site-nav-toggle:hover .nav-arrow {
  border-color: #1675bb; }
.site-nav-item.has-sub.open .nav-arrow {
  transform: rotate(-135deg) translate(-1px, -1px); }

.site-nav-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: #f6f8fb;
  transition: max-height .26s ease; }
.site-nav-item.has-sub.open .site-nav-sub {
  max-height: 360px; }
.site-nav-sub-link {
  display: block;
  padding: 9px 14px 9px 44px;
  font-size: 13.5px;
  line-height: 1.4;
  color: #5a6169;
  text-decoration: none;
  border-top: 1px solid #eef1f5;
  font-family: 'bmwTypeNext', 'Noto Sans SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'STHeiti', Tahoma, 'SimHei', sans-serif;
  transition: background .15s ease, color .15s ease; }
.site-nav-sub-link:hover {
  background: #eef4ff;
  color: #1675bb; }

/* ===================== 选车 / 二手车 弹窗 ===================== */
.side-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none; }
.side-modal.open {
  display: block; }
.side-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45); }
.side-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  max-width: 92vw;
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  padding: 18px 20px 22px; }
.side-modal-close {
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 10;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: #999;
  cursor: pointer; }
.side-modal-close:hover { color: #333; }
/* 弹窗内让原 200px 筛选表单撑满弹窗并保持可读 */
.side-modal-box .condition {
  width: 100%;
  display: block;
  margin: 0 auto; }
.side-modal-box .condition > dd input,
.side-modal-box .condition > dd select {
  width: calc(100% - 78px);
  max-width: 300px;
  height: 30px;
  font-size: 13px; }
.side-modal-box .condition > dd > button {
  width: 100%;
  margin: 12px 0 4px; }
body.modal-open { overflow: hidden; }

/* 我的关注弹窗 */
.follow-modal-box { width: 360px; }
.follow-modal-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #1675bb; }
.follow-list { max-height: 60vh; overflow-y: auto; }
.follow-empty {
  margin: 30px 0;
  text-align: center;
  color: #999;
  font-size: 14px; }
.follow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  text-decoration: none;
  transition: background .15s ease; }
.follow-item:last-child { border-bottom: 0; }
.follow-item:hover { background: #f5f8ff; color: #1675bb; }

/* 小工具子菜单下的「今日油价」按钮（与 site-nav-sub-link 视觉一致） */
.site-nav-sub-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 14px 9px 44px;
  font-size: 13.5px;
  line-height: 1.4;
  color: #5a6169;
  background: transparent;
  border: 0;
  border-top: 1px solid #eef1f5;
  font-family: 'bmwTypeNext', 'Noto Sans SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'STHeiti', Tahoma, 'SimHei', sans-serif;
  cursor: pointer;
  transition: background .15s ease, color .15s ease; }
.site-nav-sub-btn:hover { background: #eef4ff; color: #1675bb; }

/* 今日油价弹窗 */
.oil-modal-box { width: 320px; text-align: center; }
.oil-modal-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #1675bb; }
.oil-city { font-size: 13px; color: #888; margin-bottom: 16px; }
.oil-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px; }
.oil-card {
  flex: 1;
  max-width: 130px;
  padding: 16px 10px;
  background: linear-gradient(180deg, #f4f9ff 0%, #eef4ff 100%);
  border: 1px solid #dce8fb;
  border-radius: 10px; }
.oil-label { font-size: 13px; color: #5a6169; margin-bottom: 8px; }
.oil-price { font-size: 30px; font-weight: 800; color: #e8541e; line-height: 1; }
.oil-price em {
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  color: #999;
  margin-left: 4px; }
.oil-date { font-size: 12px; color: #aaa; }
.oil-chg { font-size: 12px; color: #e8541e; margin-top: 8px; font-weight: 600; }
.oil-chg:empty { display: none; }

/* 自媒体流量甄别弹窗 */
.media-modal-box { width: 400px; text-align: left; }
.media-modal-box .oil-modal-title {
  position: relative;
  margin: 0 0 16px;
  padding: 0 0 12px 15px;
  font-size: 19px;
  font-weight: 800;
  color: #1a2b3c;
  border-bottom: 2px solid #eef2f7; }
.media-modal-box .oil-modal-title::before {
  content: "";
  position: absolute;
  left: 0; top: 3px; bottom: 14px;
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #2f9bff, #1675bb); }
.media-list {
  margin: 4px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 12px; }
.media-item {
  position: relative;
  padding: 13px 15px 13px 17px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-left: 4px solid #2f9bff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(22,117,187,.06);
  transition: transform .15s ease, box-shadow .15s ease; }
.media-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22,117,187,.14); }
.media-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #2b3a49;
  margin-bottom: 10px;
  line-height: 1.5; }
.media-rank {
  display: flex;
  flex-direction: column;
  gap: 6px; }
.media-brand {
  display: flex;
  align-items: center;
  font-size: 14.5px;
  color: #2b3a49;
  font-weight: 600;
  line-height: 1.5; }
.media-brand .rk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px; height: 21px;
  margin-right: 9px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  color: #fff;
  flex-shrink: 0; }
.media-brand .rk1 { background: linear-gradient(135deg, #ffd76b, #f5a623); }
.media-brand .rk2 { background: linear-gradient(135deg, #e3e9f0, #aeb9c7); }
.media-brand .rk3 { background: linear-gradient(135deg, #f3bd92, #cd7f32); }
.media-num {
  font-size: 30px;
  font-weight: 800;
  color: #e8541e;
  line-height: 1;
  letter-spacing: .5px; }
.media-num em {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: #b0b6bd;
  margin-left: 5px; }
.follow-item img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f5f5f5; }
.follow-noimg {
  width: 64px;
  height: 48px;
  border-radius: 4px;
  background: #f0f0f0;
  flex-shrink: 0; }
.follow-name {
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.page-route {
  width: 100%;
  box-sizing: border-box;
  background-color: #dbefff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  box-shadow: 0 0 3px #ddd;
  padding-left: 20px; }
  .page-route > li > a {
    line-height: 40px;
    font-size: 14px;
    color: #707070;
    padding: 0 3px; }
  .page-route > li.on > a {
    color: #1675bb; }

.house-property {
  box-sizing: border-box;
  width: 100%;
  padding: 0 16px 22px;
  /*  border: 1px solid #bcdbff;*/
  box-shadow: 0 1px 2px 1px #f2f2f2;
  background-color: #fff; }
  .house-property > h2 {
    font-size: 16px;
    line-height: 45px; }
  .house-property > button {
    width: 120px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    letter-spacing: 5px;
    float: right;
    margin: 10px 0 15px; }

.write-house-info {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #989898;
  border-radius: 3px;
  padding: 5px 20px 10px; }
  .write-house-info dd input,
  .write-house-info dd select {
    width: 180px;
    height: 20px;
    padding: 0 10px;
    border: 1px solid #989898;
    border-radius: 3px; }

input {
  outline: none !important; }

input:focus {
  border: 1px solid #1675bb !important;
  box-shadow: none; }

.house-info-name {
  display: inline-block;
  width: 120px;
  line-height: 35px; }

.upload-house-img {
  position: absolute;
  width: 150px;
  top: 20px;
  right: 20px; }
  .upload-house-img > a {
    position: relative;
    display: block;
    width: 100px;
    margin: 15px auto;
    padding: 0 8px;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    background-image: linear-gradient(-180deg, #FAD961 0%, #F76B1C 100%);
    border-radius: 2px;
    overflow: hidden; }
    .upload-house-img > a > input[type='file'] {
      cursor: pointer;
      position: absolute;
      left: -80%;
      opacity: 0;
      filter: alpha(opacity=0);
      font-size: 26px; }

#showImg {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=image); }

.upload-img {
  width: 100%;
  height: 150px;
  overflow: hidden; }
  .upload-img > img {
    height: 150px;
    display: block;
    margin: 0 auto;
    clear: both; }

.bar-hot {
  width: 250px; }

.show-house-info {
  background-color: #fff;
  border-top: none;
  padding: 0 21px;
  box-shadow: 0 2px 2px #f4f4f4;
  min-height: 400px; }
  .show-house-info > dd {
    min-height: 90px;
    border-top: 1px solid #bcdbff;
    padding: 10px;
    position: relative; }
    .show-house-info > dd > p {
      font-size: 15px;
      line-height: 25px; }
      .show-house-info > dd > p span {
        display: inline-block;
        width: 45%; }
  .show-house-info > dd:first-child {
    border-top: none; }

.house-del {
  position: absolute;
  bottom: 15px;
  right: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #878787; }

.house-del:hover {
  color: #0e87e3; }

.house-sub {
  line-height: 2;
  padding: 0 50px;
  color: #fff;
  margin: 20px; }

.show-info-bottom {
  display: block;
  margin-top: 10px; }
  .show-info-bottom > p {
    display: inline-block;
    font-size: 12px; }
  .show-info-bottom > a {
    display: inline-block;
    padding: 0 10px;
    letter-spacing: 5px;
    float: right;
    background-color: #1675bb;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    border-radius: 3px; }
  .show-info-bottom > a:hover {
    background-color: #1D4C75; }

.info-img {
  width: 100%;
  height: 200px;
  overflow: hidden; }
  .info-img > img {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
    clear: both; }

.bar-hot {
  width: 250px;
  float: none; }

.hot-school,
.hot-topic {
  width: 100%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  box-shadow: 0 0 2px #ddd;
  overflow: hidden;
  background-color: #fff; }
  .hot-school > dt,
  .hot-topic > dt {
    background-color: #dbefff;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    color: #1675bb;
    margin-bottom: 5px; }
  .hot-school > dd,
  .hot-topic > dd {
    width: 110px;
    overflow: hidden;
    margin-top: 5px;
    float: left;
    padding: 0 6px; }
    .hot-school > dd > a,
    .hot-topic > dd > a {
      display: block;
      width: 100%;
      font-size: 12px;
      text-align: center;
      line-height: 25px; }
      .hot-school > dd p,
      .hot-topic > dd p {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
      /* 热门车型缩略图：固定盒子 + object-fit:cover，
         避免宽幅/全景车图按 height:60px 算出的 auto 宽度溢出 dd（错位），
         也覆盖「无 <a> 包裹」的采集车型（原选择器 > a > img 漏匹配导致原图变形） */
      .hot-school > dd img,
      .hot-topic > dd img {
        width: 100%;
        height: 56px;
        object-fit: cover;
        border-radius: 3px;
        margin: 0 auto 4px;
        display: block;
        clear: both; }
    .hot-school > dd > a:hover,
    .hot-topic > dd > a:hover {
      color: #1675bb; }

dl.hot-topic {
  margin-top: 58px;
  padding-bottom: 15px; }
  dl.hot-topic > dd {
    width: 100%;
    box-sizing: border-box;
    clear: both;
    padding: 0 10px; }
    dl.hot-topic > dd > a {
      display: block;
      width: 100%;
      font-size: 14px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      text-align: left;
      color: #1675bb; }
  dl.hot-topic > dd:hover {
    background-color: #dbefff; }

/* ===================== result() 专用右侧栏（参数综述 + 同级/同档对比，仿懂车帝） ===================== */
/* result 页右侧栏加宽，便于展示参数综述与对比卡片 */
.bar-hot-rs {
  width: 340px;
  flex-shrink: 0; }
.rs-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(22,117,187,.08), 0 1px 3px rgba(0,0,0,.05);
  margin-bottom: 12px;
  overflow: hidden; }
.rs-card-hd {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #2b2f33;
  border-bottom: 1px solid #f1f2f4; }
.rs-hd-bar {
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: #1675bb;
  margin-right: 8px; }
.rs-more {
  margin-left: auto;
  font-size: 12px;
  font-weight: 400;
  color: #9aa3ad;
  text-decoration: none; }
.rs-more:hover { color: #1675bb; }

/* 参数综述：标题在卡片外居中 */
.rs-sec-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #2b2f33;
  text-align: center; }
/* 车身尺寸示意图卡片 */
.rs-body-card-wrap {
  position: relative;
  padding: 14px 12px 14px;
  background: #f7f8fa;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px #ebedf0; }
.rs-body-more {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  color: #9aa3ad; }
.rs-body-more:hover { color: #1675bb; }
.rs-body-graph {
  width: 100%;
  overflow: hidden; }
.rs-body-svg {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto; }
/* 单视图：一张侧视车形同图标注 长/宽/高/轴距 */
.rs-body-single .rs-body-svg {
  max-width: 484px;
  margin: 20px auto 0; }
.rs-ground {
  fill: none;
  stroke: #c2c8d0;
  stroke-width: 1; }
.rs-car-ground {
  fill: none;
  stroke: #c2c8d0;
  stroke-width: 1; }
.rs-car-body {
  fill: #ffffff;
  stroke: #c0c6cc;
  stroke-width: 1.5;
  stroke-linejoin: round; }
.rs-car-window {
  fill: #eef4fb;
  stroke: #c0c6cc;
  stroke-width: 1;
  opacity: 0.95; }
.rs-car-wheel {
  fill: #b8bec6;
  stroke: #9ca3ad;
  stroke-width: 1; }
.rs-car-hub {
  fill: #ffffff;
  stroke: #9ca3ad;
  stroke-width: 0.8; }
/* 用户提供的侧视矢量车形：白色填充 + 浅灰描边 */
.rs-car-raw path {
  fill: #ffffff;
  stroke: #c0c6cc;
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round; }
/* 尺寸标注：懂车帝风格红色虚线 + 黑色文字 */
.rs-dim-tick {
  stroke: #ff4d4f;
  stroke-width: 1;
  stroke-dasharray: 3,3; }
.rs-dim-arrow {
  stroke: #ff4d4f;
  stroke-width: 1.3;
  stroke-dasharray: 3,3;
  fill: none; }
.rs-dim-text {
  font-size: 10px;
  font-weight: 500;
  fill: #333333;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 2.5px;
  stroke-linejoin: round; }
/* 尺寸说明 */
.rs-dim-note {
  text-align: center;
  margin-top: 6px;
  font-size: 11px;
  color: #999; }
/* 车身图区域 TAB 切换（车身尺寸 / 最高速度） */
.rs-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0 0 12px; }
.rs-tab-btn {
  font-size: 13px;
  line-height: 1;
  padding: 7px 18px;
  border: 1px solid #d9dee5;
  border-radius: 18px;
  background: #fff;
  color: #5a6470;
  cursor: pointer;
  transition: all .15s; }
.rs-tab-btn:hover {
  border-color: #1675bb;
  color: #1675bb; }
.rs-tab-btn.active {
  background: #1675bb;
  color: #fff;
  border-color: #1675bb; }
.rs-tab-panel {
  display: none; }
.rs-tab-panel.active {
  display: block; }
.rs-speed-svg {
  display: block;
  width: 100%;
  max-width: 375px;
  height: auto;
  margin: 0 auto; }

/* 分栏区块标题：动力 / 操控 */
.rs-sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 8px;
  padding: 0 2px; }
.rs-sec-name {
  font-size: 15px;
  font-weight: 700;
  color: #2b2f33; }
.rs-sec-arrows {
  display: flex;
  align-items: center;
  gap: 10px; }
.rs-arr {
  font-size: 10px;
  color: #c8cdd3;
  cursor: default;
  user-select: none; }
.rs-arr-next { color: #2b2f33; cursor: pointer; }
.rs-arr-prev:not(.disabled) { color: #2b2f33; cursor: pointer; }

/* 双列对比卡片（动力 / 操控） */
.rs-pair-card {
  padding: 10px;
  background: #f7f8fa;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px #ebedf0; }
.rs-pair {
  display: flex;
  gap: 8px; }
.rs-pair-item {
  flex: 1 1 50%;
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.rs-pair-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #2b2f33;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
.rs-pair-title:hover { color: #1675bb; }
.rs-pair-count {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 400;
  color: #9aa3ad; }
.rs-pair-count b { color: #1675bb; font-weight: 600; }
.rs-pair-rows { margin-top: 8px; }
.rs-pair-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #f6f6f7; }
.rs-pair-row:last-child { border-bottom: 0; }
.rs-pair-k {
  font-size: 11px;
  color: #9aa3ad;
  flex-shrink: 0;
  margin-right: 6px;
  white-space: nowrap; }
.rs-pair-v {
  font-size: 12px;
  font-weight: 600;
  color: #2b2f33;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
/* 驱动方式分页卡片 */
.rs-drive-slider {
  position: relative;
  overflow: hidden; }
.rs-drive-slides {
  position: relative;
  min-height: 90px; }
.rs-drive-slide {
  width: 100%; }
.rs-pair-title-text {
  white-space: normal;
  overflow: visible;
  word-break: break-word;
  line-height: 1.3; }
.rs-drive-slide .rs-pair-title {
  white-space: normal;
  overflow: visible;
  align-items: flex-start;
  line-height: 1.3; }
.rs-drive-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 8px; }
.rs-drive-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8dde3;
  cursor: pointer; }
.rs-drive-dot.active {
  background: #1675bb; }
.rs-arr.disabled {
  color: #e2e5e9;
  cursor: not-allowed; }
/* 对比列表 */
.rs-cmp-list {
  list-style: none;
  margin: 0;
  padding: 0; }
.rs-cmp-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f6f6f7;
  text-decoration: none;
  color: inherit; }
.rs-cmp-item:last-child a { border-bottom: 0; }
.rs-cmp-item a:hover { background: #f7faff; }
.rs-cmp-img {
  width: 72px;
  height: 54px;
  flex: 0 0 72px;
  object-fit: cover;
  border-radius: 4px;
  background: #f0f0f0; }
.rs-cmp-meta {
  flex: 1 1 auto;
  min-width: 0; }
.rs-cmp-name {
  font-size: 13px;
  font-weight: 500;
  color: #2b2f33;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
.rs-cmp-price {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #e74c3c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
.rs-empty {
  padding: 16px 14px;
  font-size: 12px;
  color: #b3b9c0; }

/*分页*/
.pageing {
  float: right;
  margin: 20px 0 30px; }
  .pageing > li > a {
    display: block;
    padding: 0 13px;
    line-height: 35px;
    font-size: 14px;
    background-color: #e3e1e1;
    margin: 0 5px;
    color: #000;
    box-shadow: 0 0 2px #ddd;
    border-radius: 3px; }
  .pageing > li > a.on, .pageing > li > a:hover {
    background-color: #1675bb;
    color: #fff; }

/******************
|footer
****************/
.footer {
  width: 100%;
  min-width: 1500px;
  background-color: #2e2d35;
  /*  background: url("../images/footer.jpg");*/
  padding: 18px 0 20px;
  margin-top: 40px; }
  .footer > .m-content {
    position: relative; }
    .footer > .m-content h2 {
      font-size: 16px;
      line-height: 35px;
      margin-bottom: 20px;
      color: #fff; }

.foot-dl,
.foot-dl-big {
  box-sizing: border-box;
  width: 20%;
  height: 120px;
  display: inline-block;
  float: left;
  padding-left: 30px;
  margin-bottom: 15px; }
  .foot-dl > dt,
  .foot-dl-big > dt {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'bmwTypeNext', 'Noto Sans SC', 'Microsoft YaHei', Arial, Helvetica, sans-serif; }
  .foot-dl > dd,
  .foot-dl-big > dd {
    font-size: 12px;
    line-height: 20px;
    color: #fff; }
    .foot-dl > dd a,
    .foot-dl-big > dd a {
      color: #fff; }
    .foot-dl > dd > a:hover,
    .foot-dl-big > dd > a:hover {
      color: #1675bb; }

.foot-dl {
  border-right: 1px solid #fff; }

.foot-dl:nth-child(6) {
  border-right: none; }

.foot-dl-big > dd {
  box-sizing: border-box;
  padding-left: 10px;
  position: relative; }
.foot-dl-big > dd:before {
  content: ' ';
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: #fff;
  border-radius: 5px; }

.icp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 13px; }

.foot-school-name {
  color: #1675bb;
  display: inline-block;
  padding: 0 15px; }
  .foot-school-name a {
    color: #fff;
    font-size: 22px;
    font-weight: bold; }

select {
  border: solid 1px #000;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 14px;
  background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent; }

select::-ms-expand {
  display: none; }

/********
|index
********/
.bg-img {
  width: 100%; }
  .bg-img > li {
    width: 225px;
    height: 225px;
    margin-right: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative; }
  .bg-img > li > img {
    display: block;
    height: 225px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .bg-img > li:nth-child(6n) {
    margin-right: 0 !important; }

.mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); }

.mask dl.mask-alert {
  box-sizing: border-box;
  width: 461px;
  display: block;
  padding: 0 70px;
  margin: 80px auto 0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 3px 3px #404040;
  overflow: hidden; }
  .mask dl.mask-alert > dt {
    width: 461px;
    position: relative;
    top: 0;
    left: -70px;
    box-sizing: border-box;
    font-size: 18px;
    padding: 15px 70px;
    margin-bottom: 10px;
    color: #fff;
    background-color: #45494a; }
  .mask dl.mask-alert > dd {
    margin-top: 10px; }
    .mask dl.mask-alert > dd .form-name {
      width: 80px;
      color: #000; }
    .mask dl.mask-alert > dd > input, .mask dl.mask-alert > dd > select {
      color: #000; }
    /* 地址输入框占位符：比当前字号小 2px（“当前定位：”前缀已移除，仅显示城市） */
    .mask dl.mask-alert > dd #barAddress::placeholder,
    .mask dl.mask-alert > dd #barAddress::-webkit-input-placeholder,
    .mask dl.mask-alert > dd #barAddress::-moz-placeholder,
    .content-left dl.condition > dd #barAddress::placeholder,
    .content-left dl.condition > dd #barAddress::-webkit-input-placeholder,
    .content-left dl.condition > dd #barAddress::-moz-placeholder {
      font-size: calc(1em - 2px);
      color: #999; }

.mask-link-sm {
  color: #fff;
  font-size: 14px;
  margin-left: 60px; }

.mask-link-sm:hover {
  color: #0078c1; }


.fans-tip {
  margin-top: 18px;
  font-size: 15px;
  font-weight: bold;
  color: #45494a;
  text-align: left; }

/* 首页弹窗：选车偏好（autoprefer）组合 + 排序下拉 */
.autoprefer-wrap {
  display: inline-block;
  width: 233px;
  vertical-align: top;
  position: relative; }
.ap-trigger {
  height: 30px;
  box-sizing: border-box;
  padding: 0 10px;
  border: 1px solid #707070;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #707070; }
.ap-trigger:hover, .ap-trigger:focus { border-color: #1675bb; }
.ap-summary {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.ap-caret { margin-left: 6px; color: #707070; flex: none; }
.ap-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 233px;
  margin-top: 2px;
  background: #fff;
  border: 1px solid #1675bb;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  z-index: 50;
  max-height: 264px;
  overflow-y: auto; }
.ap-list { list-style: none; margin: 0; padding: 4px 0; }
.ap-item {
  display: flex;
  align-items: flex-start;
  padding: 6px 8px;
  border-bottom: 1px solid #f0f0f0; }
.ap-item:last-child { border-bottom: none; }
/* 「无偏好，大模型实时推荐」作为默认/自动项，与具体偏好隔开 */
.ap-item.ap-empty {
  border-top: 1px solid #dcdcdc;
  background: #fafafa;
  font-weight: bold; }
.ap-item.ap-empty .ap-text { color: #2b6cb0; }
/* 「以上所有」作为汇总项，与上方具体项隔开 */
.ap-item.ap-all {
  border-top: 1px solid #dcdcdc;
  background: #fafafa;
  font-weight: bold; }
/* dis_findbar（结果页顶部窄容器 .condition）内收窄 autoprefer/veto 控件，避免溢出首页弹窗的 233px 固定宽 */
.condition .autoprefer-wrap { width: 100%; max-width: 100%; }
.condition .ap-trigger { width: 100%; box-sizing: border-box; }
.condition .ap-panel { width: 100%; box-sizing: border-box; }
.condition .ap-summary { max-width: 100%; }
.ap-label {
  flex: 1;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: #45494a;
  cursor: pointer;
  line-height: 1.3; }
.ap-label input.ap-chk { margin: 2px 6px 0 0; flex: none; }
.ap-text { flex: 1; }

/* 品牌要求（pinpai）：与兄弟筛选框对齐的普通文本输入框
   - 去掉原先 display:block / width:233px（会掉到下一行并溢出 200px 的 .condition 容器）；
   - 改为 inline-block，宽度适配 dis_findbar（60px 标签 + ≤128px 输入 ≤ 188px 内容区）
     与 home.php（105px 标签 + 输入）两处布局，与 .condition > dd input 等兄弟框对齐。 */
.pp-text {
  display: inline-block;
  width: 120px;
  height: 30px;
  box-sizing: border-box;
  vertical-align: middle;
  padding: 0 10px;
  border: 1px solid #707070;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  color: #000; }
.pp-text:focus { border-color: #1675bb; outline: none; }

/* 「已确定车型」锁定下游时整行置灰、不可交互（座位/搜索范围/所在地址除外） */
.mask dl.mask-alert > dd.locked {
  opacity: 0.45;
  pointer-events: none; }
.ap-arrows {
  display: flex;
  flex-direction: column;
  margin-left: 6px;
  flex: none; }
.ap-arrows button {
  width: 16px;
  height: 13px;
  line-height: 8px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  color: #555;
  cursor: pointer;
  font-size: 8px;
  padding: 0;
  margin: 1px 0;
  border-radius: 2px; }
.ap-arrows button:hover { background: #e9e9e9; }
/* 上箭头红色、下箭头绿色（沿用国内涨红跌绿习惯） */
.ap-arrows button.ap-up { color: #e02020; }
.ap-arrows button.ap-down { color: #17aa3b; }

p.page-route-text {
  line-height: 40px;
  font-size: 15px;
  text-align: center;
  padding-left: 0 !important; }
  p.page-route-text .emphasize {
    color: red; }

input::-webkit-input-placeholder {
  font-size: 10px !important;
  font-family: 'bmwTypeNext', 'Noto Sans SC', "Microsoft Yahei", Arial; }

input:-moz-placeholder {
  font-size: 10px !important;
  font-family: 'bmwTypeNext', 'Noto Sans SC', "Microsoft Yahei", Arial; }

input:-ms-input-placeholder {
  font-size: 10px !important;
  font-family: 'bmwTypeNext', 'Noto Sans SC', "Microsoft Yahei", Arial; }

/******
|result
******/
.result-img-big {
  width: Auto;
  height: 380px;
  margin-top: 10px; }

.mainColor {
  color: #1675bb !important; }

.school-info-big-left,
.school-info-big-right {
  width: 54%;
  display: inline-block;
  box-sizing: border-box; }
  .school-info-big-left > dt,
  .school-info-big-right > dt {
    font-size: 18px;
    line-height: 50px;
    font-weight: bold; }
    .school-info-big-left > dt > h4,
    .school-info-big-right > dt > h4 {
      display: inline-block;
      font-size: 14px; }
    .school-info-big-left > dt > a,
    .school-info-big-right > dt > a {
      display: inline-block;
      font-size: 20px;
      font-weight: bold;
      color: #1675bb; }
    .school-info-big-left > dt > a:hover,
    .school-info-big-right > dt > a:hover {
      text-decoration: underline; }
  .school-info-big-left > dd,
  .school-info-big-right > dd {
    line-height: 30px;
    position: relative; }
    .school-info-big-left > dd img,
    .school-info-big-right > dd img {
      width: 15px;
      height: 15px; }
    .school-info-big-left > dd > button,
    .school-info-big-right > dd > button {
      margin-top: 10px;
      margin-bottom: 10px;
      background-image: none;
      background-color: #dbefff; }
      .school-info-big-left > dd > button > a,
      .school-info-big-right > dd > button > a {
        padding: 0 15px;
        margin: 25px 0;
        line-height: 30px;
        font-size: 10px;
        color: #292929 !important; }
    .school-info-big-left > dd > button:nth-child(2),
    .school-info-big-right > dd > button:nth-child(2) {
      position: static;
      right: auto;
      margin-left: 10px; }
    .school-info-big-left > dd > button:hover,
    .school-info-big-right > dd > button:hover {
      background-color: #0e87e3; }
      .school-info-big-left > dd > button:hover a,
      .school-info-big-right > dd > button:hover a {
        color: #fff !important; }

.result-name {
  display: inline-block;
  width: 120px;
  white-space: nowrap; }

.result-value {
  color: #939597; }
  .result-value > a {
    color: #569ccf; }
  .result-value > a:hover {
    text-decoration: underline; }

.school-info-big-right {
  width: 44%;
  vertical-align: top; }

.school-info-sm-div:nth-of-type(2n) {
  margin-right: 0; }

.school-info-sm-div {
  margin-right: 45px; }

.school-info-sm {
  display: inline-block;
  width: 450px;
  box-sizing: border-box; }
  .school-info-sm > p {
    margin-top: 20px; }
  .school-info-sm > a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 6px 10px;
    box-shadow: 0 1px 2px 1px #f5f3f3;
    background-color: #fff; }
    .school-info-sm > a > img {
      width: 100%;
      height: 186px;
      object-fit: cover; }
    .school-info-sm > a > p {
      font-size: 14px;
      line-height: 30px;
      text-align: center;
      color: #858587; }
  .school-info-sm > a:hover p {
    color: #1675bb; }

.school-info-sm.left {
  margin-right: 30px; }

/* result() top2/top3 图库：主图 + 右侧两张小图 */
.sm-gallery {
  display: flex;
  gap: 6px;
  width: 100%;
  height: 186px;
  box-sizing: border-box;
  overflow: hidden; }

.sm-gallery-main {
  flex: 2;
  min-width: 0;
  height: 100%;
  overflow: hidden; }

.sm-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.sm-gallery-side {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden; }

.sm-gallery-side img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  display: block; }

/********
|personal
********/
.personal-info {
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px #ddd;
  padding-bottom: 100px;
  margin-bottom: 100px; }
  .personal-info > dt > img {
    width: 190px;
    height: 130px; }
  .personal-info > dt > .upload-img {
    width: 190px;
    height: 130px;
    display: inline-block;
    position: relative; }
    .personal-info > dt > .upload-img > img {
      width: auto;
      height: 100%; }
  .personal-info > dt > a.btn-linear {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    width: 100px;
    padding: 0 8px;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    background-image: linear-gradient(-180deg, #FAD961 0%, #F76B1C 100%);
    border-radius: 2px;
    overflow: hidden; }
    .personal-info > dt > a.btn-linear > input[type='file'] {
      cursor: pointer;
      position: absolute;
      left: -80%;
      opacity: 0;
      filter: alpha(opacity=0);
      font-size: 26px; }
    .personal-info > dt > a.btn-linear > a:hover {
      text-decoration: underline; }
  .personal-info dd {
    border-top: 1px solid #f4f4f4;
    padding: 8px 0; }
    .personal-info dd > button {
      padding: 0 30px;
      margin-top: 20px;
      margin-left: 200px;
      line-height: 30px;
      font-size: 14px;
      color: #fff; }

.person-name {
  display: inline-block;
  width: 176px;
  text-align: right;
  margin-right: 20px; }

.person-value > input, .person-value > select {
  width: 250px;
  height: 25px;
  box-sizing: border-box;
  padding: 0 10px;
  border: 1px solid #8b8c8d;
  border-radius: 3px;
  box-shadow: 0 0 2px #ddd; }
.person-value > textarea {
  width: 250px;
  box-sizing: border-box;
  padding: 10px;
  height: 100px;
  vertical-align: top; }

.person-error {
  color: #a3a3a3;
  font-size: 14px;
  display: inline-block;
  margin-left: 20px; }

.modify-title {
  padding-left: 50px !important;
  line-height: 50px;
  font-size: 18px; }

.modify-notes {
  padding-left: 50px !important;
  color: #8b8c8d;
  font-size: 14px; }

/**
 *╭══════════╮
 *║  &文章
 *╰══════════╯
 */
.article {
  width: 810px;
  display: inline-block;
  padding: 20px 30px;
  background-color: #fff;
  border-bottom: 1px solid #E6E6E6;
  min-height: 1000px; }
  .article h2 {
    line-height: 3;
    text-align: center;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 20px; }
  .article p {
    line-height: 1.8; }

.ueditor {
  background-color: #fff;
  margin-top: 1px;
  padding: 20px 20px;
  box-sizing: border-box; }
  .ueditor span {
    margin-bottom: 30px; }

#container {
  height: 500px; }

.page-error {
  text-align: center;
  margin: 100px auto; }

.center-admin-btn {
  line-height: 3;
  color: #fff;
  margin: 30px 0 30px 30px;
  padding: 0 15px; }
  .center-admin-btn a {
    color: #fff !important; }

.center-admin-update {
  line-height: 3;
  color: #fff;
  width: 370px;
  margin: 30px 0 30px 98px;
  padding: 0 15px; }

table.gridtable {
  margin-left: 100px;
  font-family: verdana,arial,sans-serif;
  font-size: 11px;
  color: #333333;
  border-width: 1px;
  border-color: #c6c6c6;
  border-collapse: collapse; }
  table.gridtable caption {
    font-size: 20px;
    line-height: 3; }

table.gridtable th {
  border-width: 1px;
  padding: 8px;
  border-style: solid;
  border-color: #c6c6c6;
  font-size: 16px;
  background-color: #f5f5f5; }

table.gridtable td {
  border-width: 1px;
  padding: 8px;
  border-style: solid;
  border-color: #c6c6c6;
  background-color: #ffffff;
  text-align: center;
  font-size: 16px; }
  table.gridtable td input {
    border: 1px solid #c6c6c6;
    line-height: 22px;
    text-align: center; }
  table.gridtable td a:hover {
    text-decoration: underline;
    color: #1e92ea; }

/*字体*/
@font-face {
  font-family: 'zexiao';
  src: url("fonts/zexiao.eot?mnzft1");
  src: url("fonts/zexiao.eot?mnzft1#iefix") format("embedded-opentype"), url("fonts/zexiao.ttf?mnzft1") format("truetype"), url("fonts/zexiao.woff?mnzft1") format("woff"), url("fonts/zexiao.svg?mnzft1#zexiao") format("svg");
  font-weight: normal;
  font-style: normal; }
i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'zexiao' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-cancel:before {
  content: "\e900"; }

.icon-edit:before {
  content: "\e901"; }

.icon-play:before {
  content: "\e902"; }

.icon-setting:before {
  content: "\e903"; }

/* 排名依据：配图与视频同尺寸内联显示（video/iframe 与原上传图片一致） */
.rank-column-img,
.rank-column-video {
  margin: 8px 0; }
.rank-column-img img,
.rank-column-video video,
.rank-column-video iframe,
.rank-column-video .rank-v-slot {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 180px;
  border-radius: 4px;
  background: #000; }
.rank-column-video iframe {
  border: 0; }
.rank-column-video .rank-vplayer {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 9;
  min-height: 180px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000; }
.rank-column-video .rank-vplayer video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: auto;
  aspect-ratio: auto;
  border-radius: 0; }

/* 视频首次载入 / 切换视频源时的“载入中”遮罩（覆盖在黑屏之上） */
.rank-column-video,
.rank-v-slot {
  position: relative; }
.rank-v-loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 14px;
  letter-spacing: .5px;
  pointer-events: none; }

/* ===================== 滑块验证（注册/登录） ===================== */
.slider-verify {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 40px;
  margin: 14px 0 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.slider-verify * { box-sizing: border-box; }
.slider-track {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid #dcdfe6;
  border-radius: 20px;
  background: #f5f7fa;
  color: #909399;
  font-size: 14px;
  text-align: center;
  line-height: 38px;
  overflow: hidden;
}
.slider-mask {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: #d9f7e3;
  border-right: 1px solid #52c41a;
}
.slider-text {
  position: relative;
  z-index: 2;
}
.slider-btn {
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid #dcdfe6;
  border-radius: 20px;
  background: #fff;
  color: #c0c4cc;
  font-size: 18px;
  text-align: center;
  line-height: 38px;
  cursor: grab;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.slider-btn:active { cursor: grabbing; }
.slider-verify.passed .slider-track {
  border-color: #52c41a;
  color: #52c41a;
}
.slider-verify.passed .slider-btn {
  background: #52c41a;
  border-color: #52c41a;
  color: #fff;
}
.slider-verify.passed .slider-mask { background: #d9f7e3; }

/* ============================================================
   主页回退到原始 1100px 显示风格（参考 121.40.63.171）。
   仅作用于 <body class="home-page">，其他页面（result/rank 等）保持 1500px 不变。
   ============================================================ */
body.home-page .m-content {
    display: block;
    width: 1100px; }
body.home-page .header,
body.home-page .welcome-name {
    min-width: 1100px; }
body.home-page .bg-img > li {
    width: 165px;
    height: 165px;
    margin-right: 18px;
    margin-bottom: 18px; }
body.home-page .bg-img > li > img {
    height: 165px; }

/*# sourceMappingURL=style.css.map */
