/* roulang page: index */
:root{
  --brand:#FF5F3A;
  --brand-dark:#E24D25;
  --brand-light:#FFE8DF;
  --green:#0FA083;
  --green-light:#E3F5EF;
  --gold:#F5A623;
  --ink:#222B33;
  --text-body:#637083;
  --bg:#FFF5EE;
  --card-bg:#FFFFFF;
  --border:rgba(34,43,51,.08);
  --radius:16px;
  --radius-lg:24px;
  --shadow-sm:0 8px 24px -18px rgba(34,43,51,.2);
  --shadow-hover:0 18px 40px -20px rgba(31,41,55,.18);
  --font-cn:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Segoe UI",sans-serif;
  --section-gap:clamp(72px,8vw,116px);
  --bs-gutter-x:1.2rem;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-cn);
  background:var(--bg);
  color:var(--ink);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
a:hover{color:inherit}
button:focus-visible,.btn:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,.accordion-button:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(255,95,58,.85);
}
.container{max-width:1220px}
.section{padding-block:var(--section-gap)}
.sec-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.sec-head .lead-in{
  max-width:480px;
  color:var(--text-body);
  font-size:15px;
  line-height:1.8;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--brand-light);
  color:var(--brand-dark);
  font-size:13px;
  font-weight:600;
  padding:5px 14px;
  border-radius:8px;
  letter-spacing:.4px;
  margin-bottom:12px;
}
.sec-title{
  font-size:clamp(24px,3vw,38px);
  font-weight:800;
  line-height:1.35;
  margin:0;
  letter-spacing:-.3px;
}
.sec-subtitle{
  color:var(--text-body);
  font-size:15px;
  max-width:520px;
}

/* topbar */
.topbar{
  background:var(--ink);
  color:#fff;
  min-height:42px;
  display:flex;
  align-items:center;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar-text{
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  color:rgba(255,255,255,.92);
}
.topbar-text .dot{
  display:inline-block;
  width:7px;height:7px;
  background:var(--brand);
  border-radius:50%;
  margin-right:8px;
  vertical-align:middle;
}
.topbar-action{
  flex-shrink:0;
  background:transparent;
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
  font-size:13px;
  padding:4px 14px;
  border-radius:30px;
  transition:.25s ease;
}
.topbar-action:hover{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}

/* main header */
.main-header{
  background:rgba(255,251,248,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:1030;
}
.main-header .navbar{
  padding:12px 0;
}
.navbar-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-right:22px;
  padding:0;
}
.brand-mark{
  width:46px;height:46px;
  border-radius:14px;
  background:var(--brand);
  color:#fff;
  font-weight:800;
  font-size:23px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 16px -8px rgba(255,95,58,.7);
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.25;
}
.brand-name{
  font-size:21px;
  font-weight:800;
  color:var(--ink);
  letter-spacing:.4px;
}
.brand-sub{
  font-size:11px;
  color:var(--text-body);
  letter-spacing:1px;
}
.navbar .nav-link{
  color:var(--ink);
  font-size:15px;
  font-weight:500;
  padding:8px 15px!important;
  border-radius:30px;
  transition:.25s ease;
  white-space:nowrap;
}
.navbar .nav-link:hover{
  color:var(--brand-dark);
  background:var(--brand-light);
}
.navbar .nav-link.active{
  background:var(--brand-light);
  color:var(--brand-dark);
  font-weight:700;
}
.navbar .nav-cta{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  border-radius:30px;
  padding:8px 22px;
  font-weight:600;
  transition:.25s ease;
  font-size:14px;
  box-shadow:0 10px 18px -8px rgba(255,95,58,.55);
}
.navbar .nav-cta:hover{
  background:var(--brand-dark);
  color:#fff;
  transform:translateY(-2px);
}
.navbar-toggler{
  border:1px solid var(--border);
  border-radius:10px;
  padding:8px 12px;
  background:#fff;
}
.navbar-toggler:focus{
  box-shadow:0 0 0 3px rgba(255,95,58,.25);
}

/* button */
.btn{
  font-family:inherit;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
  transition:.28s ease;
  padding:12px 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn-brand{
  background:var(--brand);
  border:1px solid var(--brand);
  color:#fff;
  box-shadow:0 10px 18px -8px rgba(255,95,58,.55);
}
.btn-brand:hover,.btn-brand:focus{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 14px 22px -10px rgba(255,95,58,.6);
}
.btn-outline-brand{
  background:transparent;
  border:1px solid rgba(34,43,51,.35);
  color:var(--ink);
}
.btn-outline-brand:hover{
  border-color:var(--brand);
  color:var(--brand-dark);
  background:rgba(255,95,58,.06);
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  border:2px solid rgba(255,255,255,.7);
  color:#fff;
}
.btn-outline-light:hover{
  background:#fff;
  color:var(--ink);
  border-color:#fff;
}

/* hero */
.hero{
  position:relative;
  background:url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
  padding:clamp(40px,6vw,84px) 0;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(82deg, rgba(255,245,238,.98) 4%, rgba(255,240,233,.86) 38%, rgba(255,225,214,.55) 74%, rgba(255,222,210,.35) 100%);
  z-index:1;
}
.hero .container{
  position:relative;
  z-index:2;
}
.hero-wrap{
  display:flex;
  align-items:center;
  gap:clamp(30px,4vw,56px);
  min-height:72vh;
}
.hero-copy{
  flex:1 1 55%;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--brand);
  color:#fff;
  font-size:13px;
  padding:5px 15px;
  border-radius:8px;
  font-weight:600;
  box-shadow:0 8px 16px -6px rgba(255,95,58,.6);
}
.hero h1{
  font-size:clamp(30px,4.6vw,52px);
  line-height:1.28;
  font-weight:800;
  letter-spacing:-.8px;
  margin:20px 0 16px;
  color:var(--ink);
}
.hero-desc{
  font-size:17px;
  color:var(--ink);
  max-width:520px;
  line-height:1.8;
  margin-bottom:26px;
}
.hero-btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#fff;
  border:1px solid rgba(255,95,58,.2);
  border-radius:40px;
  font-size:13px;
  color:var(--ink);
  padding:6px 16px;
  box-shadow:var(--shadow-sm);
}
.hero-badge i{
  color:var(--green);
  font-style:normal;
  font-weight:700;
}
.hero-media{
  flex:1 1 45%;
  position:relative;
  max-width:560px;
}
.hero-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow:0 30px 60px -30px rgba(34,43,51,.3);
  border:1px solid rgba(34,43,51,.06);
  position:relative;
}
.hero-card-media{
  border-radius:18px;
  overflow:hidden;
  position:relative;
  aspect-ratio:16/10;
  background:#f1e8e3;
}
.hero-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-card-tag{
  position:absolute;
  top:14px;
  left:14px;
  background:rgba(255,255,255,.92);
  color:var(--brand-dark);
  font-size:12px;
  font-weight:700;
  padding:5px 12px;
  border-radius:20px;
  box-shadow:0 6px 12px rgba(0,0,0,.1);
}
.hero-card-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 8px 4px;
  gap:10px;
}
.hero-card-info .tagline{
  font-size:14px;
  color:var(--text-body);
}
.hero-card-info .tagline strong{
  color:var(--ink);
  font-weight:700;
}
.hero-ticket-num{
  text-align:center;
  background:var(--brand-light);
  color:var(--brand-dark);
  font-size:13px;
  padding:6px 14px;
  border-radius:30px;
  font-weight:600;
  white-space:nowrap;
}
.hero-media::after{
  content:'今日实测';
  position:absolute;
  top:-14px;
  right:-8px;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:600;
  padding:6px 16px;
  border-radius:30px;
  transform:rotate(3deg);
  box-shadow:0 10px 20px -8px rgba(15,160,131,.6);
  z-index:3;
}

/* category card */
.category-card{
  background:var(--card-bg);
  border-radius:var(--radius);
  border:1px solid var(--border);
  padding:28px 24px;
  height:100%;
  position:relative;
  overflow:hidden;
  transition:.3s ease;
  display:flex;
  flex-direction:column;
}
.category-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}
.category-icon{
  width:50px;height:50px;
  border-radius:14px;
  background:var(--brand-light);
  color:var(--brand-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:16px;
}
.category-card h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:6px;
  letter-spacing:-.2px;
}
.category-card p{
  color:var(--text-body);
  font-size:14px;
  margin:0;
  flex:1;
}
.category-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
  border-top:1px dashed rgba(34,43,51,.15);
  padding-top:14px;
}
.ticket-status{
  font-size:13px;
  font-weight:600;
  padding:4px 13px;
  border-radius:20px;
}
.ticket-status.has{
  background:var(--green-light);
  color:var(--green);
}
.ticket-status.queue{
  background:#FFF6DF;
  color:#B77908;
}
.arrow-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--bg);
  border:1px solid var(--border);
  transition:.25s;
}
.category-card:hover .arrow-link{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  transform:translateX(4px);
}

/* featured category */
.featured-card{
  background:url('/assets/images/coverpic/cover-2.webp') center/cover no-repeat;
  border-radius:var(--radius-lg);
  min-height:360px;
  position:relative;
  overflow:hidden;
  color:#fff;
  display:flex;
  align-items:flex-end;
  border:none;
}
.featured-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(200deg, rgba(18,24,30,.2) 0%, rgba(18,24,30,.72) 66%, rgba(18,24,30,.92) 100%);
}
.featured-card .featured-inner{
  position:relative;
  z-index:2;
  padding:clamp(22px,3vw,38px);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.featured-tag{
  align-self:flex-start;
  background:rgba(255,255,255,.2);
  backdrop-filter:blur(4px);
  color:#fff;
  border-radius:30px;
  font-size:13px;
  padding:5px 14px;
  margin-bottom:14px;
  border:1px solid rgba(255,255,255,.25);
}
.featured-card h3{
  font-size:clamp(20px,2.2vw,28px);
  font-weight:800;
  line-height:1.4;
}
.featured-card p{
  font-size:15px;
  color:rgba(255,255,255,.88);
  max-width:480px;
}

/* wide community card */
.community-card{
  background:var(--ink);
  border-radius:var(--radius-lg);
  color:#fff;
  min-height:210px;
  display:flex;
  align-items:center;
  gap:30px;
  padding:30px;
  position:relative;
  overflow:hidden;
}
.community-card::before{
  content:'';position:absolute;
  width:220px;height:220px;
  border:40px solid rgba(255,95,58,.11);
  border-radius:50%;
  top:-80px;right:-40px;
}
.community-card .icon{
  width:66px;height:66px;
  border-radius:18px;
  background:var(--brand);
  font-size:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.community-card h3{
  font-weight:800;
  font-size:22px;
  margin-bottom:6px;
}
.community-card p{
  color:rgba(255,255,255,.78);
  margin-bottom:0;
  font-size:15px;
}
.community-card .btn-brand{
  margin-left:auto;
  box-shadow:0 12px 24px -8px rgba(255,95,58,.5);
}

/* data band */
.data-band{
  background:var(--ink);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.data-band::after{
  content:'';
  position:absolute;
  width:360px;height:360px;
  border:64px solid rgba(255,255,255,.03);
  border-radius:50%;
  right:-120px;bottom:-140px;
}
.data-band .data-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:34px;
}
.data-band .data-header span{
  font-size:14px;
  color:rgba(255,255,255,.66);
  letter-spacing:1px;
}
.data-item{
  text-align:left;
  padding:28px 22px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  height:100%;
  transition:.3s;
}
.data-item:hover{
  background:rgba(255,255,255,.06);
}
.data-num{
  font-size:clamp(42px,4.2vw,68px);
  font-weight:800;
  line-height:1.2;
  color:#fff;
  letter-spacing:-2px;
}
.data-num small{
  font-size:18px;
  font-weight:600;
  color:var(--brand);
  margin-left:6px;
  letter-spacing:0;
}
.data-item p{
  color:rgba(255,255,255,.72);
  font-size:15px;
  margin:10px 0 0;
}
.data-item .trend-up{
  color:var(--green);
  font-size:14px;
  margin-left:8px;
  font-weight:600;
}
.data-note{
  font-size:13px;
  color:rgba(255,255,255,.5);
  text-align:right;
  margin-top:22px;
}

/* cases */
.case-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  height:100%;
  transition:.3s;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.case-card:hover{
  box-shadow:var(--shadow-hover);
  transform:translateY(-3px);
}
.case-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.case-plat{
  background:var(--brand-light);
  color:var(--brand-dark);
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  padding:4px 12px;
}
.case-result-tag{
  background:var(--green-light);
  color:var(--green);
  border-radius:30px;
  font-size:12px;
  font-weight:600;
  padding:4px 13px;
  white-space:nowrap;
}
.case-card h3{
  font-size:20px;
  font-weight:800;
  margin:0;
  line-height:1.5;
}
.case-card .case-desc{
  color:var(--text-body);
  font-size:14px;
  line-height:1.7;
  margin:0;
}
.case-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  gap:12px;
  border-top:1px dashed var(--border);
  padding-top:14px;
}
.case-step-list{
  list-style:none;
  padding:0;
  margin:0;
  counter-reset:step;
}
.case-step-list li{
  counter-increment:step;
  position:relative;
  padding-left:44px;
  font-size:14px;
  color:var(--text-body);
  margin-bottom:10px;
  line-height:1.7;
}
.case-step-list li::before{
  content:counter(step);
  position:absolute;
  left:0;top:1px;
  width:28px;height:28px;
  background:var(--brand-light);
  color:var(--brand-dark);
  font-size:13px;
  font-weight:800;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.case-wide{
  background:url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:none;
}
.case-wide::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(255,248,245,.96), rgba(255,248,245,.88) 60%, rgba(255,248,245,.72));
}
.case-wide .case-content{
  position:relative;
  z-index:1;
}
.arrow-link-lg{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--brand-dark);
  font-size:15px;
  font-weight:700;
  transition:.25s;
}
.arrow-link-lg span{
  background:var(--brand);
  color:#fff;
  width:32px;height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}
.arrow-link-lg:hover{
  color:var(--brand-dark);
}
.arrow-link-lg:hover span{
  transform:translateX(4px);
  background:var(--brand-dark);
}

/* plan/steps */
.plan-section{
  background:var(--card-bg);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.steps-panel{
  background:var(--ink);
  border-radius:var(--radius-lg);
  padding:clamp(24px,3vw,46px);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.steps-panel::before{
  content:'白嫖之家 · 上车路线';
  position:absolute;
  right:20px;top:20px;
  font-size:14px;
  color:rgba(255,255,255,.1);
  letter-spacing:2px;
  font-weight:700;
}
.step-item{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  padding:14px 18px 14px 0;
}
.step-item:not(:last-child)::after{
  content:'→';
  position:absolute;
  right:-4px;
  top:26px;
  font-size:23px;
  color:var(--brand);
  font-weight:700;
  opacity:.8;
}
.step-circle{
  width:54px;height:54px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  font-size:22px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  box-shadow:0 12px 22px -8px rgba(255,95,58,.75);
}
.step-item h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:8px;
  color:#fff;
}
.step-item p{
  color:rgba(255,255,255,.74);
  font-size:14px;
  margin-bottom:12px;
  flex:1;
}
.fit-tag{
  color:var(--gold);
  background:rgba(245,166,35,.12);
  display:inline-block;
  border-radius:6px;
  font-size:12px;
  padding:4px 10px;
  border:1px solid rgba(245,166,35,.25);
  line-height:1.5;
}

/* faq */
.faq-panel{
  max-width:880px;
  margin:0 auto;
}
.accordion-custom .accordion-item{
  background:transparent;
  border:none;
  border-bottom:1px dashed rgba(34,43,51,.16);
}
.accordion-custom .accordion-item:first-child{
  border-top:1px dashed rgba(34,43,51,.16);
}
.accordion-custom .accordion-button{
  background:transparent;
  box-shadow:none;
  font-size:17px;
  font-weight:700;
  color:var(--ink);
  padding:20px 46px 20px 12px;
  position:relative;
  font-family:inherit;
}
.accordion-custom .accordion-button:hover{
  color:var(--brand-dark);
}
.accordion-custom .accordion-button::after{
  content:'';
  position:absolute;
  right:12px;
  top:50%;
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--brand-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23E24D25' viewBox='0 0 16 16'%3E%3Cpath d='M8 3a1 1 0 0 1 1 1v3h3a1 1 0 1 1 0 2H9v3a1 1 0 1 1-2 0V9H4a1 1 0 1 1 0-2h3V4a1 1 0 0 1 1-1z'/%3E%3C/svg%3E") center/14px no-repeat;
  background-position:center;
  transform:translateY(-50%);
  transition:.3s;
}
.accordion-custom .accordion-button:not(.collapsed)::after{
  transform:translateY(-50%) rotate(135deg);
  background-color:var(--brand);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 3a1 1 0 0 1 1 1v3h3a1 1 0 1 1 0 2H9v3a1 1 0 1 1-2 0V9H4a1 1 0 1 1 0-2h3V4a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}
.accordion-custom .accordion-body{
  padding:0 46px 24px 12px;
  color:var(--text-body);
  font-size:15px;
  line-height:1.85;
}

/* join */
.join-wrap{
  background:#fff;
  border-radius:var(--radius-lg);
  max-width:1180px;
  margin:0 auto;
  padding:clamp(24px,4vw,56px);
  border:1px solid rgba(255,95,58,.16);
  position:relative;
  overflow:hidden;
}
.join-inner-card{
  background:var(--brand-light);
  border-radius:var(--radius-lg);
  padding:clamp(24px,3.6vw,48px);
  display:flex;
  gap:36px;
  align-items:center;
  flex-wrap:wrap;
}
.join-left{
  flex:1 1 46%;
}
.join-left h2{
  font-size:clamp(24px,3vw,38px);
  font-weight:800;
  line-height:1.35;
  letter-spacing:-.3px;
}
.join-left p{
  font-size:15px;
  color:var(--ink);
  opacity:.78;
  margin-top:12px;
  line-height:1.85;
}
.join-right{
  flex:1 1 44%;
  background:#fff;
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow-sm);
}
.form-label{
  font-weight:600;
  font-size:14px;
  color:var(--ink);
}
.form-control,.form-select{
  border:1px solid rgba(34,43,51,.16);
  border-radius:10px;
  padding:12px 14px;
  font-family:inherit;
  font-size:15px;
  background:#fff;
  color:var(--ink);
  transition:.25s;
}
.form-control::placeholder{
  color:#A4AFB8;
}
.form-control:focus,.form-select:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(255,95,58,.14);
}
.qr-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#F0F0F2;
  border-radius:16px;
  min-height:180px;
  color:#A0A6AD;
  font-size:14px;
  flex-direction:column;
  gap:8px;
  border:2px dashed #D2D6DB;
}
.qr-placeholder span{
  font-size:30px;
}
.qr-copy-note{
  font-size:12px;
  color:var(--text-body);
  margin-top:8px;
  text-align:center;
}
.note-line{
  font-size:12px;
  color:var(--text-body);
  margin-top:10px;
}

/* footer */
.footer{
  background:var(--ink);
  color:rgba(255,255,255,.68);
}
.footer-top{
  padding:56px 0 26px;
}
.footer .widget-title{
  color:#fff;
  font-size:16px;
  font-weight:700;
  margin-bottom:15px;
  letter-spacing:.3px;
}
.footer .brand-footer{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.footer .brand-name{
  color:#fff;
  font-size:20px;
}
.footer-desc{
  font-size:14px;
  color:rgba(255,255,255,.5);
  line-height:1.8;
  max-width:270px;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:9px;
}
.footer-links a{
  color:rgba(255,255,255,.62);
  font-size:14px;
  transition:.25s;
}
.footer-links a:hover{
  color:var(--brand);
  padding-left:5px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  font-size:13px;
  color:rgba(255,255,255,.4);
}
.footer .contact-line{
  font-size:14px;
  color:rgba(255,255,255,.68);
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}
.footer .contact-line i{
  color:var(--brand);
  font-style:normal;
}

/* misc */
.bg-soft{
  background:var(--brand-light);
}
.bg-white{
  background:#fff;
}
.text-green{
  color:var(--green);
}

@media (max-width: 991.98px){
  .navbar-collapse{
    background:#fff;
    border-radius:var(--radius);
    padding:16px;
    box-shadow:var(--shadow-hover);
    margin-top:14px;
  }
  .navbar-nav .nav-item{
    margin-bottom:4px;
  }
  .hero-wrap{
    flex-direction:column;
  }
  .hero-media{
    width:100%;
    max-width:none;
  }
  .step-item:not(:last-child)::after{
    content:'↓';
    right:auto;
    left:38px;
    top:auto;
    bottom:-12px;
    transform:rotate(0);
    z-index:5;
  }
  .community-card{
    flex-direction:column;
    align-items:flex-start;
    padding:26px;
  }
  .community-card .btn-brand{
    margin-left:0;
  }
  .data-header{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 767.98px){
  body{
    font-size:15px;
  }
  .topbar-text{
    max-width:220px;
  }
  .sec-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero{
    padding-top:46px;
  }
  .hero h1{
    letter-spacing:-.4px;
  }
  .hero-badge{
    padding:5px 11px;
    font-size:12px;
  }
  .join-inner-card{
    flex-direction:column;
    align-items:stretch;
  }
  .join-right{
    width:100%;
  }
  .case-wide{
    background-position:left;
  }
}

/* roulang page: category1 */
:root{
  --brand:#FF5F3A;
  --brand-dark:#E24D25;
  --brand-light:#FFE8DF;
  --green:#0FA083;
  --green-light:#E3F5EF;
  --gold:#F5A623;
  --ink:#222B33;
  --text-body:#637083;
  --bg:#FFF5EE;
  --card-bg:#FFFFFF;
  --border:rgba(34,43,51,.08);
  --radius:16px;
  --radius-lg:24px;
  --shadow-sm:0 8px 24px -18px rgba(34,43,51,.2);
  --shadow-hover:0 18px 40px -20px rgba(31,41,55,.18);
  --font-cn:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Segoe UI",sans-serif;
  --section-gap:clamp(72px,8vw,116px);
  --bs-gutter-x:1.2rem;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-cn);
  background:var(--bg);
  color:var(--ink);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
a:hover{color:inherit}
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.accordion-button:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(255,95,58,.85);
}
.container{max-width:1220px}
.section{padding-block:var(--section-gap)}
.sec-head .lead-in{max-width:480px;color:var(--text-body);font-size:15px;line-height:1.8}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--brand-light);
  color:var(--brand-dark);
  font-size:13px;
  font-weight:600;
  padding:5px 14px;
  border-radius:8px;
  letter-spacing:.4px;
  margin-bottom:12px;
}
.sec-title{
  font-size:clamp(24px,3vw,38px);
  font-weight:800;
  line-height:1.35;
  margin:0;
  letter-spacing:-.3px;
}
.sec-subtitle{color:var(--text-body);font-size:15px;max-width:520px}
p{margin-bottom:.9em}

/* topbar */
.topbar{
  background:var(--ink);
  color:#fff;
  min-height:42px;
  display:flex;
  align-items:center;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar-text{
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  color:rgba(255,255,255,.92);
}
.topbar-text .dot{
  display:inline-block;
  width:7px;
  height:7px;
  background:var(--brand);
  border-radius:50%;
  margin-right:8px;
  vertical-align:middle;
}
.topbar-action{
  flex-shrink:0;
  background:transparent;
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
  font-size:13px;
  padding:4px 14px;
  border-radius:30px;
  transition:.25s ease;
}
.topbar-action:hover{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}

/* header */
.main-header{
  background:rgba(255,251,248,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:1030;
}
.main-header .navbar{padding:12px 0}
.navbar-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-right:22px;
  padding:0;
}
.brand-mark{
  width:46px;
  height:46px;
  border-radius:14px;
  background:var(--brand);
  color:#fff;
  font-weight:800;
  font-size:23px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 16px -8px rgba(255,95,58,.7);
}
.brand-text{display:flex;flex-direction:column;line-height:1.25}
.brand-name{
  font-size:21px;
  font-weight:800;
  color:var(--ink);
  letter-spacing:.4px;
}
.brand-sub{
  font-size:11px;
  color:var(--text-body);
  letter-spacing:1px;
}
.navbar .nav-link{
  color:var(--ink);
  font-size:15px;
  font-weight:500;
  padding:8px 15px!important;
  border-radius:30px;
  transition:.25s ease;
  white-space:nowrap;
}
.navbar .nav-link:hover{
  color:var(--brand-dark);
  background:var(--brand-light);
}
.navbar .nav-link.active{
  background:var(--brand-light);
  color:var(--brand-dark);
  font-weight:700;
}
.navbar .nav-cta{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  border-radius:30px;
  padding:8px 22px;
  font-weight:600;
  transition:.25s ease;
  font-size:14px;
  box-shadow:0 10px 18px -8px rgba(255,95,58,.55);
}
.navbar .nav-cta:hover{
  background:var(--brand-dark);
  color:#fff;
  transform:translateY(-2px);
}
.navbar-toggler{
  border:1px solid var(--border);
  border-radius:10px;
  padding:8px 12px;
  background:#fff;
}
.navbar-toggler:focus{
  box-shadow:0 0 0 3px rgba(255,95,58,.25);
}

/* buttons */
.btn{
  font-family:inherit;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
  transition:.28s ease;
  padding:12px 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn-brand{
  background:var(--brand);
  border:1px solid var(--brand);
  color:#fff;
  box-shadow:0 10px 18px -8px rgba(255,95,58,.55);
}
.btn-brand:hover,
.btn-brand:focus{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 14px 22px -10px rgba(255,95,58,.6);
}
.btn-outline-brand{
  background:transparent;
  border:1px solid rgba(34,43,51,.35);
  color:var(--ink);
}
.btn-outline-brand:hover{
  border-color:var(--brand);
  color:var(--brand-dark);
  background:rgba(255,95,58,.06);
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  border:2px solid rgba(255,255,255,.7);
  color:#fff;
}
.btn-outline-light:hover{
  background:#fff;
  color:var(--ink);
  border-color:#fff;
}

/* category hero */
.category-hero{
  position:relative;
  background:linear-gradient(90deg,rgba(255,245,238,.98) 0%,rgba(255,239,230,.92) 40%,rgba(255,229,216,.55) 100%),url('/assets/images/coverpic/cover-5.webp') right/cover no-repeat;
  padding:clamp(34px,5vw,72px) 0;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.category-hero .cat-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--brand);
  color:#fff;
  font-size:13px;
  padding:5px 15px;
  border-radius:8px;
  font-weight:600;
  box-shadow:0 8px 16px -6px rgba(255,95,58,.6);
}
.category-hero h1{
  font-size:clamp(28px,4vw,48px);
  font-weight:800;
  line-height:1.3;
  letter-spacing:-.8px;
  margin:18px 0 14px;
  color:var(--ink);
}
.category-hero .cat-hero-desc{
  color:var(--ink);
  font-size:16px;
  max-width:560px;
  line-height:1.8;
  margin-bottom:24px;
}
.hero-state-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:24px;
  box-shadow:var(--shadow-hover);
  position:relative;
}
.hero-state-card::after{
  content:'领前看状态';
  position:absolute;
  right:18px;
  top:16px;
  font-size:11px;
  color:#fff;
  background:var(--green);
  padding:2px 10px;
  border-radius:20px;
  letter-spacing:.6px;
}
.state-count-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.state-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
}
.state-number{
  font-size:30px;
  font-weight:800;
  color:var(--brand);
  line-height:1;
}
.state-number small{
  font-size:14px;
  font-weight:500;
  color:var(--text-body);
  margin-left:3px;
}
.state-label{
  font-size:13px;
  color:var(--text-body);
  margin-top:6px;
}
.state-note{
  margin-top:16px;
  font-size:13px;
  color:var(--text-body);
  background:var(--bg);
  border-radius:10px;
  padding:10px 14px;
  line-height:1.6;
}
.state-note .green-dot{
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
  vertical-align:middle;
}

/* category process strip */
.cat-steps{
  padding:clamp(30px,4vw,56px) 0;
  background:#fff;
}
.steps-wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.step-item{
  display:flex;
  gap:16px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  transition:transform .25s ease,box-shadow .25s ease;
}
.step-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-hover);
}
.step-index{
  width:42px;
  height:42px;
  flex-shrink:0;
  border-radius:50%;
  background:var(--brand-light);
  color:var(--brand-dark);
  font-weight:800;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.step-content h3{
  font-size:17px;
  font-weight:700;
  margin:0 0 6px;
}
.step-content p{
  color:var(--text-body);
  font-size:14px;
  margin:0;
  line-height:1.7;
}

/* category toolbar */
.category-main{
  padding:clamp(44px,6vw,78px) 0 20px;
}
.channel-title-row{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}
.list-toolbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:#fff;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  margin-bottom:26px;
}
.filter-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.filter-tabs .btn-filter{
  border:1px solid transparent;
  background:var(--bg);
  color:var(--ink);
  font-size:14px;
  padding:6px 16px;
  border-radius:30px;
  transition:.22s ease;
}
.filter-tabs .btn-filter:hover{
  background:var(--brand-light);
  color:var(--brand-dark);
}
.filter-tabs .btn-filter.active{
  background:var(--brand);
  color:#fff;
  font-weight:600;
  box-shadow:0 6px 14px -6px rgba(255,95,58,.5);
}
.sort-box{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--text-body);
}
.sort-box select{
  border:1px solid var(--border);
  background:var(--bg);
  border-radius:8px;
  padding:6px 12px;
  font-size:14px;
  color:var(--ink);
  cursor:pointer;
}

/* deal list */
.deal-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.deal-card{
  display:flex;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease,box-shadow .25s ease;
  position:relative;
}
.deal-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}
.deal-cover{
  flex:0 0 164px;
  max-width:164px;
  min-height:190px;
  background:var(--brand-light);
  overflow:hidden;
}
.deal-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.deal-card:hover .deal-cover img{
  transform:scale(1.05);
}
.deal-body{
  flex:1;
  padding:18px 18px 14px;
  min-width:0;
  display:flex;
  flex-direction:column;
}
.deal-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:8px;
}
.chip-type{
  display:inline-flex;
  align-items:center;
  background:var(--brand-light);
  color:var(--brand-dark);
  font-size:12px;
  font-weight:600;
  padding:2px 10px;
  border-radius:6px;
}
.condition-badge{
  background:var(--ink);
  color:#fff;
  font-size:12px;
  padding:2px 10px;
  border-radius:6px;
}
.condition-badge.green{
  background:var(--green);
}
.deal-body h3{
  font-size:19px;
  font-weight:700;
  line-height:1.4;
  margin:6px 0 6px;
}
.deal-desc{
  color:var(--text-body);
  font-size:14px;
  line-height:1.7;
  margin-bottom:12px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.deal-meta{
  margin-top:auto;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  font-size:13px;
  color:var(--text-body);
}
.deal-meta .meta-source{
  color:var(--green);
  font-weight:600;
}
.deal-meta span i{
  margin-right:4px;
  font-style:normal;
}
.deal-ticket{
  flex:0 0 210px;
  max-width:210px;
  background:var(--brand-light);
  border-left:2px dashed rgba(255,95,58,.28);
  padding:18px 16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  text-align:center;
}
.deal-ticket::before,
.deal-ticket::after{
  content:'';
  position:absolute;
  left:-11px;
  width:20px;
  height:20px;
  background:var(--bg);
  border-radius:50%;
  z-index:1;
}
.deal-ticket::before{top:-11px}
.deal-ticket::after{bottom:-11px}
.ticket-status{
  font-size:14px;
  font-weight:700;
  color:var(--brand-dark);
  margin-bottom:6px;
}
.ticket-code{
  font-size:12px;
  color:var(--text-body);
  background:rgba(255,255,255,.75);
  border-radius:8px;
  padding:8px 10px;
  margin-bottom:14px;
  border:1px dashed rgba(34,43,51,.16);
  line-height:1.5;
}
.ticket-btn{
  background:var(--brand);
  color:#fff;
  border:0;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  padding:9px 10px;
  transition:.22s ease;
  box-shadow:0 8px 14px -8px rgba(255,95,58,.55);
}
.ticket-btn:hover{
  background:var(--brand-dark);
  color:#fff;
  transform:translateY(-2px);
}
.deal-card.is-expired{
  opacity:.55;
}
.deal-card.is-expired::after{
  content:'已过期';
  position:absolute;
  right:22px;
  top:20px;
  transform:rotate(-12deg);
  border:2px solid var(--ink);
  color:var(--ink);
  font-size:12px;
  font-weight:800;
  padding:2px 12px;
  border-radius:6px;
  letter-spacing:2px;
  background:rgba(255,255,255,.5);
  z-index:3;
}
.pagination-wrap{
  margin:34px 0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.page-btn{
  min-width:38px;
  height:38px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:9px;
  font-size:14px;
  color:var(--ink);
  transition:.2s ease;
}
.page-btn:hover{
  border-color:var(--brand);
  color:var(--brand-dark);
}
.page-btn.active{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  font-weight:700;
}
.page-next{
  padding:0 18px;
}

/* sidebar */
.sidebar-col{
  margin-bottom:26px;
}
.widget-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  margin-bottom:22px;
  box-shadow:var(--shadow-sm);
}
.widget-title{
  font-size:17px;
  font-weight:700;
  margin-bottom:15px;
  padding-left:12px;
  position:relative;
  letter-spacing:.3px;
}
.widget-title::before{
  content:'';
  position:absolute;
  left:0;
  top:5px;
  height:16px;
  width:4px;
  border-radius:4px;
  background:var(--brand);
}
.hot-list{
  list-style:none;
  margin:0;
  padding:0;
}
.hot-list li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 4px;
  border-bottom:1px dashed rgba(34,43,51,.1);
  transition:.2s ease;
}
.hot-list li:last-child{border-bottom:0}
.hot-list li:hover{
  transform:translateX(4px);
  color:var(--brand-dark);
}
.hot-index{
  font-size:22px;
  font-weight:800;
  color:var(--brand-light);
  width:30px;
  flex-shrink:0;
  text-align:center;
  line-height:1;
}
.hot-list li:first-child .hot-index{color:var(--brand)}
.hot-list li:nth-child(2) .hot-index{color:var(--gold)}
.hot-list .hot-text{
  flex:1;
  font-size:14px;
  font-weight:500;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hot-list .hot-arrow{
  color:var(--text-body);
  font-size:14px;
  transition:.2s;
}
.hot-list li:hover .hot-arrow{
  transform:translateX(3px);
  color:var(--brand);
}
.alert-form .form-label{
  font-size:14px;
  color:var(--ink);
  font-weight:600;
}
.alert-form .form-control{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:10px;
  color:var(--ink);
  min-height:46px;
  font-size:14px;
  padding:9px 14px;
}
.alert-form .form-control:focus{
  background:#fff;
  border-color:rgba(255,95,58,.55);
  box-shadow:0 0 0 3px rgba(255,95,58,.16);
}
.alert-form .btn{
  width:100%;
  margin-top:10px;
  border-radius:10px;
}
.form-footnote{
  font-size:12px;
  color:var(--text-body);
  margin:12px 0 0;
  text-align:center;
}
.tag-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag-chip{
  background:var(--bg);
  border:1px solid transparent;
  color:var(--ink);
  font-size:13px;
  padding:5px 14px;
  border-radius:30px;
  transition:.2s ease;
}
.tag-chip:hover{
  background:var(--brand-light);
  color:var(--brand-dark);
  border-color:rgba(255,95,58,.2);
}
.help-note{
  background:var(--bg);
  border:1px dashed rgba(34,43,51,.16);
  border-radius:10px;
  padding:12px 14px;
  font-size:13px;
  color:var(--text-body);
  line-height:1.7;
}
.help-note strong{color:var(--ink)}

/* bottom cta / mini faq */
.channel-footer-cta{
  padding:clamp(44px,6vw,72px) 0 0;
}
.cta-panel{
  background:linear-gradient(90deg,rgba(34,43,51,.96) 0%,rgba(34,43,51,.88)),
  url('/assets/images/backpic/back-4.jpg') right/cover no-repeat;
  border-radius:var(--radius-lg);
  padding:clamp(28px,4vw,48px);
  color:#fff;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta-panel h2{
  font-size:clamp(21px,2.6vw,32px);
  font-weight:800;
  margin:0 0 8px;
  color:#fff;
}
.cta-panel p{
  color:rgba(255,255,255,.82);
  margin:0;
  max-width:560px;
}
.mini-faq{
  padding:clamp(48px,7vw,86px) 0 30px;
  background:var(--bg);
}
.mini-faq .accordion-item{
  background:transparent;
  border:0;
  border-bottom:1px dashed rgba(34,43,51,.18);
  border-radius:0;
}
.mini-faq .accordion-button{
  background:transparent;
  box-shadow:none;
  font-size:16px;
  font-weight:700;
  color:var(--ink);
  padding:20px 0;
}
.mini-faq .accordion-button:not(.collapsed){
  color:var(--brand-dark);
  background:transparent;
}
.mini-faq .accordion-button::after{
  background-image:none;
  width:26px;
  height:26px;
  border-radius:50%;
  background-color:var(--brand-light);
  display:flex;
  align-items:center;
  justify-content:center;
  content:'+';
  font-size:19px;
  font-weight:700;
  color:var(--brand-dark);
  position:relative;
}
.mini-faq .accordion-button:not(.collapsed)::after{
  transform:rotate(45deg);
  background-color:var(--brand);
  color:#fff;
}
.mini-faq .accordion-body{
  padding:0 0 18px;
  color:var(--text-body);
  font-size:15px;
  line-height:1.8;
}

/* next block */
.next-channel{
  padding:0 0 var(--section-gap);
}
.next-title{
  margin:0 0 24px;
}
.next-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.next-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:.25s ease;
}
.next-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}
.next-card img{
  width:100%;
  height:150px;
  object-fit:cover;
}
.next-card-body{
  padding:18px;
}
.next-card-body h4{
  font-size:16px;
  font-weight:700;
  margin:0 0 6px;
}
.next-card-body p{
  color:var(--text-body);
  font-size:14px;
  margin:0;
}
.next-card-body .next-link{
  display:inline-block;
  margin-top:10px;
  color:var(--brand-dark);
  font-weight:600;
  font-size:14px;
}
.next-card-body .next-link i{
  font-style:normal;
  transition:transform .2s;
  display:inline-block;
}
.next-card:hover .next-link i{
  transform:translateX(4px);
}

/* footer */
.footer{
  background:var(--ink);
  color:rgba(255,255,255,.82);
  padding:70px 0 0;
  font-size:14px;
}
.footer .brand-footer{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.footer .brand-mark{
  width:38px;
  height:38px;
  border-radius:12px;
  background:var(--brand);
  color:#fff;
  font-size:19px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.footer .brand-name{
  color:#fff;
  font-size:20px;
  font-weight:800;
  letter-spacing:.6px;
}
.footer-desc{
  color:rgba(255,255,255,.64);
  font-size:14px;
  line-height:1.9;
  max-width:300px;
  margin-bottom:20px;
}
.widget-title-footer{
  color:#fff;
  font-weight:700;
  font-size:15px;
  margin-bottom:16px;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:9px;
}
.footer-links a{
  color:rgba(255,255,255,.66);
  transition:color .2s,padding-left .2s;
}
.footer-links a:hover{
  color:var(--brand);
  padding-left:4px;
}
.contact-line{
  font-size:14px;
  color:rgba(255,255,255,.72);
  margin-bottom:9px;
}
.contact-line i{
  font-style:normal;
  margin-right:6px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:44px;
  padding:18px 0;
  font-size:13px;
  color:rgba(255,255,255,.5);
}
.footer-bottom .container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:8px;
}

/* responsive */
@media (max-width: 1024px){
  .deal-card{
    flex-wrap:wrap;
  }
  .deal-cover{
    flex:0 0 132px;
    max-width:132px;
    min-height:180px;
  }
  .deal-ticket{
    flex-basis:100%;
    max-width:100%;
    border-left:0;
    border-top:2px dashed rgba(255,95,58,.25);
    text-align:left;
    padding-top:15px;
  }
  .deal-ticket::before,
  .deal-ticket::after{
    display:none;
  }
  .ticket-btn{
    max-width:240px;
  }
  .steps-wrap{
    grid-template-columns:1fr;
  }
  .next-cards{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 768px){
  .category-hero .hero-state-card{
    margin-top:20px;
  }
  .hot-list .hot-text{
    white-space:normal;
  }
  .next-cards{
    grid-template-columns:1fr;
  }
  .cta-panel{
    flex-direction:column;
    align-items:flex-start;
  }
  .deal-cover{
    flex:0 0 100%;
    max-width:100%;
    height:150px;
    min-height:0;
  }
  .deal-body{
    padding:16px;
  }
  .deal-ticket{
    flex-basis:100%;
    max-width:100%;
    text-align:left;
    border-left:0;
    border-top:2px dashed rgba(255,95,58,.25);
  }
  .deal-meta{
    gap:8px;
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 520px){
  .topbar-action{
    font-size:12px;
    padding:3px 11px;
  }
  .navbar-brand{
    margin-right:6px;
  }
  .brand-name{
    font-size:18px;
  }
  .brand-sub{
    font-size:10px;
  }
  .deal-desc{
    -webkit-line-clamp:3;
  }
  .list-toolbar{
    flex-direction:column;
    align-items:stretch;
  }
  .filter-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:4px;
  }
  .sort-box{
    justify-content:space-between;
  }
  .steps-wrap{
    gap:12px;
  }
  .step-item{
    padding:16px;
  }
}

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
