/* ===== 镜湖石油 — 官网样式（基于品牌 DESIGN.md 设计系统）===== */
:root {
  --red: #c8161c;
  --red-deep: #7a0a0e;
  --red-700: #a10f14;
  --navy: #14457e;
  --navy-deep: #0e3461;
  --gold: #e6a015;
  --gold-soft: #f6c04a;
  --cream: #fbf4e6;
  --cream-line: #ebdfc4;
  --surface: #ffffff;
  --ink: #1a1410;
  --muted: #6b6259;
  --line: #ece6dc;
  --bg-soft: #faf7f1;
  --f-disp: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --f-num: "Oswald", "Noto Sans SC", sans-serif;
  --f-body: "Open Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --maxw: 1180px;
  --station-phone-size: 18px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--f-disp); font-weight: 900; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--f-num); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; }
.num { font-family: var(--f-num); font-weight: 700; font-variant-numeric: tabular-nums; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-disp); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 19px; height: 19px; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 26px -12px rgba(200, 22, 28, 0.7); }
.btn-red:hover { background: var(--red-700); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #3a2a00; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { transform: translateY(-2px); }
.section { padding: 84px 0; }
/* 锚点跳转时避开固定顶栏（约 72px 高）*/
#offer, #prices, #stations, #why, #quality, #recruit { scroll-margin-top: 84px; }
.head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.head .eyebrow { color: var(--red); }
.head h2 { font-size: clamp(28px, 4vw, 44px); margin-top: 12px; }
.head h2 em { font-style: normal; color: var(--red); }
.head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ===== 品牌标志 ===== */
.brand { display: flex; align-items: center; gap: 12px; }
.mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(to bottom, var(--navy) 0 50%, var(--red) 50% 100%);
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18); flex: none;
}
.mark svg { width: 24px; height: 24px; color: #fff; }
.brand .mark.has-img { background: none; box-shadow: none; border-radius: 8px; width: auto; height: 46px; }
.brand .mark.has-img .logo-img { height: 46px; width: auto; max-width: 180px; object-fit: contain; display: block; border-radius: 8px; }
footer.site .brand .mark.has-img, footer.site .brand .mark.has-img .logo-img { height: 42px; }
.brand .name { font-family: var(--f-disp); font-weight: 900; font-size: 22px; letter-spacing: 0.06em; line-height: 1; }
.brand .en { display: block; font-family: var(--f-num); font-weight: 500; font-size: 10.5px; letter-spacing: 0.22em; color: var(--muted); margin-top: 3px; }

/* ===== 顶栏 ===== */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: #4a443c; font-weight: 500; font-size: 15px; transition: color 0.18s var(--ease); }
.nav-links a:hover { color: var(--red); }
.nav .tag { font-family: var(--f-disp); font-weight: 700; font-size: 13px; color: var(--navy); text-align: right; line-height: 1.25; }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ===== 公告滚动条 ===== */
.notice-bar {
  background: var(--gold); color: #3a2a00;
  display: flex; align-items: center; gap: 14px;
  padding: 9px 24px; font-family: var(--f-disp); font-weight: 700; font-size: 14px;
  overflow: hidden;
}
.notice-bar .tag {
  flex: none; background: var(--red); color: #fff;
  border-radius: 6px; padding: 3px 10px; font-size: 12.5px; letter-spacing: 0.05em;
}
.notice-track { flex: 1; overflow: hidden; white-space: nowrap; }
.notice-move { display: inline-block; padding-left: 100%; animation: notice-scroll 28s linear infinite; }
.notice-move span { margin-right: 64px; }
.notice-bar:hover .notice-move { animation-play-state: paused; }
@keyframes notice-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ===== 轮播 ===== */
.carousel { position: relative; overflow: hidden; background: var(--red-deep); }
.slides { position: relative; height: clamp(440px, 60vh, 600px); }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.7s var(--ease);
  color: #fff; overflow: hidden;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
/* 三种主题底色 */
.slide.theme-brand {
  background: radial-gradient(120% 90% at 80% 10%, rgba(230, 160, 21, 0.25), transparent 46%),
    radial-gradient(130% 120% at 10% 0%, #1b5aa0 0%, var(--navy-deep) 48%, #07203f 100%);
}
.slide.theme-promo {
  background: radial-gradient(120% 90% at 78% 8%, rgba(230, 160, 21, 0.22), transparent 46%),
    radial-gradient(130% 120% at 12% 0%, #9b0f14 0%, var(--red-deep) 42%, #56070a 100%);
}
.slide.theme-recruit {
  background: radial-gradient(120% 90% at 80% 10%, rgba(246, 192, 74, 0.28), transparent 50%),
    linear-gradient(120deg, #0e3461 0%, #14457e 45%, #c8161c 130%);
}
.slide[data-bg]::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-image: var(--bg-img); opacity: 0.32;
}
.slide-inner {
  position: relative; z-index: 1; height: 100%;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.slide .eyebrow { color: var(--gold-soft); margin-bottom: 14px; }
.slide h2 { font-size: clamp(40px, 6.5vw, 78px); text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3); }
.slide .sub { font-family: var(--f-disp); font-weight: 700; font-size: clamp(18px, 2.6vw, 30px); margin-top: 14px; color: var(--gold-soft); }
.slide .desc { max-width: 560px; margin-top: 18px; font-size: 16px; color: #f0dcc0; }
.slide .s-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
/* 优惠主题：右侧直降卡片 */
.slide-drops { position: absolute; right: max(24px, calc((100% - var(--maxw)) / 2 + 24px)); top: 50%; transform: translateY(-50%); z-index: 2; display: grid; gap: 14px; width: 320px; max-width: 42vw; }
.mini-drop { background: var(--cream); color: var(--ink); border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 24px 50px -26px rgba(0, 0, 0, 0.6); }
.mini-drop .chip { flex: none; width: 64px; text-align: center; color: #fff; border-radius: 10px; padding: 10px 4px; font-family: var(--f-disp); font-weight: 900; font-size: 16px; }
.mini-drop.diesel .chip { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); }
.mini-drop.gas .chip { background: linear-gradient(160deg, var(--red), var(--red-700)); }
.mini-drop .v { display: flex; align-items: baseline; gap: 4px; }
.mini-drop .v .lab { font-family: var(--f-disp); font-weight: 900; font-size: 16px; }
.mini-drop .v .big { font-family: var(--f-num); font-weight: 700; font-size: 46px; line-height: 0.9; }
.mini-drop.diesel .big { color: var(--navy); }
.mini-drop.gas .big { color: var(--red); }
.mini-drop .v .unit { font-size: 13px; color: var(--muted); font-weight: 700; }

/* 轮播控制 */
.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0, 0, 0, 0.28); color: #fff; display: grid; place-items: center;
  transition: background 0.2s;
}
.car-arrow:hover { background: rgba(0, 0, 0, 0.5); }
.car-arrow svg { width: 22px; height: 22px; }
.car-prev { left: 18px; }
.car-next { right: 18px; }
.car-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.car-dots button { width: 11px; height: 11px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255, 255, 255, 0.45); transition: all 0.2s; padding: 0; }
.car-dots button.is-active { background: var(--gold-soft); width: 30px; border-radius: 6px; }

/* ===== 今日油价条 ===== */
.prices { background: var(--navy-deep); color: #fff; }
.prices .wrap { display: flex; align-items: center; gap: 22px; padding: 22px 24px; flex-wrap: wrap; }
.prices .ttl { display: flex; align-items: center; gap: 12px; font-family: var(--f-disp); font-weight: 900; font-size: 20px; }
.prices .ttl .badge { background: var(--gold); color: #3a2a00; border-radius: 8px; padding: 6px 12px; font-size: 15px; }
.prices .grid { display: flex; gap: 14px; flex: 1; flex-wrap: wrap; }
.pcard { flex: 1; min-width: 150px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard .g { font-family: var(--f-disp); font-weight: 700; font-size: 15px; line-height: 1.25; }
.pcard .g b { display: block; font-family: var(--f-num); font-weight: 700; font-size: 18px; color: var(--gold-soft); }
.pcard .v { font-family: var(--f-num); font-weight: 700; font-size: 30px; }
.pcard .v small { font-size: 13px; color: #aebfd6; font-family: var(--f-body); font-weight: 600; margin-left: 2px; }

/* ===== 优惠活动 / 门店 ===== */
.offer { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.offer-notice { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 11px; background: var(--cream); border: 1px solid var(--cream-line); border-radius: 14px; padding: 20px 24px; margin-bottom: 44px; }
.offer-notice .on-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--red); color: #fff; font-family: var(--f-disp); font-weight: 700; font-size: 13.5px; padding: 6px 15px; border-radius: 999px; }
.offer-notice .on-tag svg { width: 16px; height: 16px; }
.offer-notice .on-title { font-size: 19px; color: var(--navy-deep); margin: 0; line-height: 1.45; }
.offer-notice .on-text { margin: 0; color: #6b6259; font-size: 15px; line-height: 1.78; white-space: pre-line; max-width: 860px; width: 100%; text-align: left; }
.offer-notice .on-source { margin: 6px 0 0; color: #8a8178; font-size: 13px; line-height: 1.6; max-width: 860px; width: 100%; text-align: right; }
.offer-drops { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 0 auto 50px; }
.drop { background: var(--cream); border-radius: 16px; padding: 14px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.45); }
.drop .chip { width: 84px; border-radius: 11px; padding: 14px 8px; text-align: center; color: #fff; }
.drop .chip svg { width: 26px; height: 26px; display: block; margin: 0 auto 6px; }
.drop .chip b { font-family: var(--f-disp); font-weight: 900; font-size: 19px; letter-spacing: 0.04em; }
.drop.diesel .chip { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); }
.drop.gas .chip { background: linear-gradient(160deg, var(--red), var(--red-700)); }
.drop .body { display: flex; align-items: baseline; gap: 6px; color: var(--ink); }
.drop .body .lab { font-family: var(--f-disp); font-weight: 900; font-size: 22px; }
.drop .body .big { font-family: var(--f-num); font-weight: 700; font-size: clamp(44px, 7vw, 68px); line-height: 0.9; }
.drop.diesel .big { color: var(--navy); }
.drop.gas .big { color: var(--red); }
.drop .body .unit { font-family: var(--f-disp); font-weight: 700; font-size: 16px; color: var(--muted); }
.drop .arrow { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.drop.diesel .arrow { background: var(--navy); }
.drop.gas .arrow { background: var(--red); }
.drop .arrow svg { width: 28px; height: 28px; }

.st-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.st { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s; }
.st:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(20, 69, 126, 0.45); border-color: #d9e2ee; }
.st .no { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--red); color: #fff; font-family: var(--f-num); font-weight: 700; display: grid; place-items: center; font-size: 18px; }
.st.has-photo { padding: 0; gap: 0; overflow: hidden; align-items: stretch; }
.st .st-photo { position: relative; width: 158px; flex: none; }
.st .st-photo img { width: 100%; height: 100%; min-height: 124px; object-fit: cover; display: block; }
.st .st-photo .no.on-photo { position: absolute; top: 10px; left: 10px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
.st.has-photo .info { padding: 16px 18px; display: flex; flex-direction: column; justify-content: center; }
.st .info h3 { font-size: 17.5px; line-height: 1.3; }
.st .addr,
.st .phone { display: flex; align-items: flex-start; gap: 7px; color: var(--muted); font-size: 13.5px; margin-top: 9px; }
.st .addr svg { width: 15px; height: 15px; color: var(--red); flex: none; margin-top: 2px; }
.st .phone { align-items: center; margin-top: 7px; font-size: var(--station-phone-size, 18px); font-weight: 700; line-height: 1.25; }
.st .phone svg { width: 1em; height: 1em; color: var(--red); flex: none; }
.st .phone a { color: var(--navy); text-decoration: none; }
.st .phone a:hover { color: var(--red); }

/* ===== 为什么更低 ===== */
.why { background: #fff; }
.why .sub3 { display: flex; justify-content: center; flex-wrap: wrap; margin: 18px 0 0; }
.why .sub3 span { font-family: var(--f-disp); font-weight: 700; color: var(--navy); font-size: 16px; padding: 0 18px; border-right: 2px solid var(--cream-line); }
.why .sub3 span:last-child { border-right: 0; color: var(--red); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { position: relative; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(122, 10, 14, 0.35); }
.step .no { position: absolute; top: -13px; left: 22px; width: 30px; height: 30px; border-radius: 8px; background: var(--red); color: #fff; font-family: var(--f-num); font-weight: 700; display: grid; place-items: center; font-size: 16px; }
.step .ico { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: #fbeaea; color: var(--red); margin: 8px 0 16px; }
.step:nth-child(2) .ico { background: #eaf0f8; color: var(--navy); }
.step:nth-child(4) .ico { background: #fdf3df; color: #b5810b; }
.step .ico svg { width: 26px; height: 26px; }
.step h3 { font-size: 19px; }
.step p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.step .pill { display: inline-block; margin-top: 14px; font-family: var(--f-disp); font-weight: 700; font-size: 12.5px; color: var(--navy); background: #eaf0f8; border-radius: 999px; padding: 5px 12px; }
.step:nth-child(odd) .pill { color: var(--red); background: #fbeaea; }

/* ===== 品质 ===== */
.qual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qcard { border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px; background: #fff; text-align: center; }
.qcard .ico { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto 18px; background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; }
.qcard:nth-child(2) .ico { background: linear-gradient(160deg, var(--red), var(--red-700)); }
.qcard:nth-child(3) .ico { background: linear-gradient(160deg, var(--gold), #c5860b); color: #3a2a00; }
.qcard .ico svg { width: 32px; height: 32px; }
.qcard h3 { font-size: 21px; }
.qcard p { color: var(--muted); font-size: 15px; margin-top: 10px; }

/* ===== 招聘 ===== */
.recruit { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.recruit::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 26px); opacity: 0.6; }
.recruit .wrap { position: relative; z-index: 2; }
.recruit .head h2 { color: #fff; }
.recruit .head .eyebrow { color: var(--gold-soft); }
.recruit .head p { color: #cdd9e8; }
.rec-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.rec-list { display: grid; gap: 16px; }
.rec-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; padding: 22px 24px; }
.rec-card .top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.rec-card h3 { font-size: 22px; color: #fff; }
.rec-card .count { font-family: var(--f-disp); font-weight: 700; font-size: 13px; color: #3a2a00; background: var(--gold-soft); border-radius: 999px; padding: 5px 14px; }
.rec-card .salary { margin-top: 12px; font-family: var(--f-disp); font-weight: 700; color: var(--gold-soft); font-size: 16px; }
.rec-card .req { margin-top: 10px; color: #cdd9e8; font-size: 14.5px; }
.rec-contact { background: linear-gradient(160deg, var(--red), var(--red-deep)); border-radius: 18px; padding: 30px 28px; align-self: stretch; }
.rec-contact h3 { color: #fff; font-size: 22px; }
.rec-contact p { color: #ffe7c9; margin-top: 8px; font-size: 14.5px; }
.rec-contact .line { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-family: var(--f-disp); font-weight: 700; font-size: 17px; }
.rec-contact .line svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; }
.rec-contact .tel { font-family: var(--f-num); font-size: 26px; }

/* ===== 结尾 CTA ===== */
.cta { position: relative; color: #fff; text-align: center; overflow: hidden; background: radial-gradient(120% 140% at 50% 0%, #9b0f14, var(--red-deep) 60%, #54060a); }
.cta::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 26px); opacity: 0.5; }
.cta .wrap { position: relative; z-index: 2; padding: 72px 24px; }
.cta h2 { font-size: clamp(30px, 4.4vw, 52px); }
.cta h2 .gold { color: var(--gold-soft); }
.cta p { color: #f0dcc0; margin-top: 14px; font-size: 17px; }
.cta .acts { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; align-items: center; }
.cta .tel { font-family: var(--f-num); font-weight: 700; font-size: 26px; display: flex; align-items: center; gap: 10px; }
.cta .tel svg { width: 24px; height: 24px; color: var(--gold-soft); }

/* ===== 页脚 ===== */
footer.site { background: #241a14; color: #a99c8c; padding: 56px 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
.foot-top .brand .name { color: #fff; }
.foot-top .brand .en { color: #8a7e6f; }
.foot-brand p { margin-top: 16px; font-size: 14px; max-width: 340px; color: #8a7e6f; }
.foot-col h4 { font-family: var(--f-disp); color: #ede3d5; font-size: 14px; margin: 0 0 14px; }
.foot-col a { display: block; color: #a99c8c; font-size: 14px; margin-bottom: 10px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: #7d7263; }
.foot-bottom .lic { display: flex; gap: 16px; flex-wrap: wrap; }
.disclaim { margin-top: 10px; font-size: 12px; color: #6b6153; max-width: 760px; }
.admin-link { color: #6b6153; }
.admin-link:hover { color: var(--gold-soft); }

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .qual { grid-template-columns: 1fr; }
  .st-grid { grid-template-columns: 1fr; }
  .offer-drops { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .slide-drops { display: none; }
  .slide .desc { max-width: 100%; }
}
@media (max-width: 680px) {
  .nav-links, .nav .tag { display: none; }
  .section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .prices .wrap { flex-direction: column; align-items: stretch; }
  .foot-top { grid-template-columns: 1fr; }
  .car-arrow { display: none; }
  .st.has-photo { flex-direction: column; }
  .st .st-photo { width: 100%; height: 170px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; animation: none !important; }
}
