/* 全局样式重置与基础设置 */
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:'Inter',system-ui,sans-serif;
}
body {
	background-color:#f9f9f9;
	min-height:100vh;
	color:#363636;
}
@media (max-width:768px) {
body {
  padding-top: 50px;
}
}
.clear {clear: both;}
.container {
	max-width:1280px;
	margin:0 auto;
	padding:2rem 1.5rem;
}
.header {
	text-align:center;
	margin-bottom:3.5rem;
}
.header .logo {
	width:188px;
	display:inline-block;
	margin-bottom:20px;
}
.header p {
	color:#585858;
	letter-spacing:1px;
	font-size: 15px;
}

/* 移动端导航 */
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fafafa;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  height: 45px;
}
.nav-logo {
  font-size: 16px;
  color: #333;
}
.nav-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 3px;
  background: #555;
  transition: 0.3s;
}
.nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
.nav-menu.active {
  max-height: 620px;
  border-top: 1px solid rgba(238, 238, 238, 0.5);
}
.nav-menu li a {
  display: block;
  padding: 10px 20px;
  color: #363636;
  font-size: 14px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
  text-decoration: none;
}

.main {
	max-width:800px;
	margin:0 auto;
	background:#fff;
	padding:15px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.main p {
	color:#363636;
	line-height:30px;
	font-size:14px;
	padding:10px 0px;
}
.main p img{
	max-width:100%;
	border-radius: 2px;
}
.main h1 {
	font-size:1.2rem;
	color:#363636;
	margin:1rem 0 2rem;
	display:flex;
	align-items:center;
	gap:0.5rem;
	max-width:800px;
	margin:0 auto;
	line-height:50px;
	margin-bottom:0px;
	margin-top:15px;
	letter-spacing: 1px;
}
.main h1 .star-desc {
    background:#f7f7f7;
    border-radius: 2px;
    color: #06c;
    font-size: 12px;
    padding: 0px 6px;
	line-height:22px;
	font-weight:500;
}
.main h1 a {
    text-decoration: none;
}
.main h2 {
	color:#363636;
	font-size:1rem;
	font-weight:700;
	padding-top:30px;
	padding-bottom:0px;
	line-height:50px;
	margin-bottom:15px;
	border-bottom:1px solid #eee;
}
.main p a{
    color:#0066cc;
	text-decoration: none;
}
.main p a:hover{
    padding-bottom:1px;
	border-bottom:1px solid #0066cc;
}
.blue {
	color:#0066cc;
}
.red {
	color:#c00000;
}
.green {
	color: #0ebe98;
}
.vip {
	padding-top: 8px;
	background: url(images/vip-da.png) no-repeat;
	background-size: 255px 170px;
	background-position: center 166px;
}
.main .feature-list {
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
	gap:1rem;
	margin:2rem 0;
}
.main .feature-item {
	display:flex;
	flex-direction:column;
	align-items:center;
	padding:1rem;
	border-radius:0.75rem;
	background:#f9fafb;
}
.main .feature-item i {
	font-size:2rem;
	color:#0066CC;
	margin-bottom:0.75rem;
}
.main .feature-item span {
	font-weight:500;
	color:#1f2937;
	text-align:center;
}
.main .fb15 {
	font-size:15px;
	font-weight:700;
	padding-top:25px;
}
/* Banner容器 - 核心自适应 */
.banner-container {
	position:relative;
	width:100%;
	max-width:1920px;
	/* PC端最大宽度 */
    height:400px;
	/* PC端高度 */
    margin:0 auto;
	overflow:hidden;
	border-radius:10px;
	cursor:grab;
	/* 拖拽光标提示 */
}
.banner-container:active {
	cursor:grabbing;
	/* 拖拽中光标提示 */
}
/* 移动端适配 */
@media (max-width:768px) {
	.banner-container {
	height:200px;
	/* 移动端高度自适应 */
}
}/* 轮播图列表 - JS控制滑动 */
.banner-slider {
	display:flex;
	width:400%;
	/* 4张图则设为400%，n张图设为n*100% */
    height:100%;
	transition:transform 0.5s ease;
	/* 平滑切换过渡 */
}
/* 单张Banner图 */
.banner-item {
	width:25%;
	/* 4张图则设为25%，n张图设为100%/n */
    height:100%;
	flex-shrink:0;
}
.banner-item img {
	width:100%;
	height:100%;
	object-fit:cover;
	/* 图片自适应填充，不拉伸 */
}
/* 左右切换按钮 - 自适应定位 */
.banner-btn {
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:34px;
	height:55px;
	border-radius:0%;
	background:rgba(000,000,000,0.2);
	border:none;
	font-size:20px;
	color:#dadada;
	cursor:pointer;
	z-index:10;
	outline:none;
	user-select:none;
}
.banner-btn:hover {
	background:rgba(000,000,000,0.4);
}
.btn-prev {
	left:15px;
}
.btn-next {
	right:15px;
}
/* 移动端按钮缩小 */
@media (max-width:768px) {
.banner-btn {
	width:30px;
	height:30px;
	font-size:16px;
}
}/* 轮播指示器 - 自适应居中 */
.banner-indicator {
	position:absolute;
	bottom:15px;
	left:50%;
	transform:translateX(-50%);
	display:flex;
	gap:8px;
	z-index:10;
}
.indicator-dot {
	width:10px;
	height:10px;
	border-radius:50%;
	background:rgba(255,255,255,0.5);
	cursor:pointer;
	user-select:none;
	transition:background 0.3s ease;
}
.indicator-dot.active {
	background:white;
}

/* 七巧板导航网格布局 */
.nav-grid {
	display:grid;
	/* 移动端2列 */
    grid-template-columns:repeat(2,1fr);
	gap:1rem;
}
/* 平板端3列 */
@media (min-width:768px) {
.nav-grid {
	grid-template-columns:repeat(3,1fr);
}
.container {
  padding: 2rem 1.5rem 3rem 1.5rem;
}
}/* PC端4列 */
@media (min-width:1024px) {
.nav-grid {
	grid-template-columns:repeat(4,1fr);
}
}
/* 导航块基础样式 */
.nav-block {
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    cursor: pointer;
    padding: 1rem;
    height: 100%;
    width: 100%;
    text-decoration: none;
}
.nav-block {
    transition: all 0.3s ease;
}
.nav-block:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
/* 不同尺寸的块 */
.block-lg {
	grid-column:span 2;
	grid-row:span 2;
	min-height:180px;
}
.block-md {
	grid-column:span 1;
	grid-row:span 2;
	min-height:180px;
}
.block-sm {
	grid-column:span 1;
	grid-row:span 1;
	min-height:80px;
}
/* 图标样式 */
.nav-block i {
	margin-bottom:0.8rem;
}
.block-lg i {
	font-size:3rem;
}
.block-md i {
	font-size:2.25rem;
}
.block-sm i {
	font-size:1.5rem;
}
/* 文字样式 */
.block-lg span {
	font-size:1.125rem;
	letter-spacing:1px;
	font-weight:600;
}
.block-md span {
	font-size:1rem;
	letter-spacing:1px;
	font-weight:600;
}
.block-sm span {
	font-size:0.9rem;
	letter-spacing:1px;
	font-weight:600;
}

@media (max-width:590px) {
.main h1 {
  font-size: 1.1rem;
}
}

/* 渐变背景预设 */
.gradient-1 {background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);}
.gradient-2 {background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);}
.gradient-3 {background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);}
.gradient-4 {background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);}
.gradient-5 {background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);}
.gradient-6 {background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);}
.gradient-7 {background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);}
.gradient-8 {background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);}
.gradient-9 {background: linear-gradient(135deg, #FFCC99 0%, #CC9966 100%);}
.gradient-10 {background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);}
.gradient-11 {background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);}
.gradient-12 {background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);}
.gradient-13 {background: linear-gradient(135deg, #8ec5fc 0%, #e0c3fc 100%);}
.footer {
            margin-top: 5rem;
            padding: 10px 0;
            color: #363636;
            border-top: 1px solid #eee;
			line-height:24px;
}
.footer p{
            float:left;
			font-size:12px;
}
.footer .about{
            float:right;
}
.footer .about a{
            padding-left:10px;
			font-size:12px;
            color: #363636;
            text-decoration: none;
}
.footer .about a:hover{text-decoration: none;}

/* 关于我们内容区 */
.about-content {
	max-width:800px;
	margin:0 auto;
	background:white;
	border-radius:1rem;
	box-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1);
	padding:2rem 1rem;
}
.about-content h1 {
	color:#0066CC;
	font-size:1.3rem;
	margin-bottom:1.5rem;
	display:flex;
	align-items:center;
	gap:0.5rem;
}
.about-content h1 i {
	font-size:1.25rem;
}
.about-content p {
	line-height:1.8;
	margin-bottom:1.25rem;
	color:#4b5563;
	font-size:0.875rem;
}
.about-content p a{
    text-decoration: none;
}
.about-content .feature-list {
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
	gap:1rem;
	margin:2rem 0;
}
.about-content .feature-item {
	display:flex;
	flex-direction:column;
	align-items:center;
	padding:1rem;
	border-radius:0.75rem;
	background:#f9fafb;
}
.about-content .feature-item i {
	font-size:2rem;
	color:#0066CC;
	margin-bottom:0.75rem;
}
.about-content .feature-item span {
	font-weight:500;
	color:#1f2937;
	text-align:center;
}

/* 联系我们内容区 */
.contact-content {
	max-width:800px;
	margin:0 auto;
	background:white;
	border-radius:1rem;
	box-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1);
	padding:2rem;
}
.contact-content h1 {
	color:#0066CC;
	font-size:1.3rem;
	margin-bottom:1.5rem;
	display:flex;
	align-items:center;
	gap:0.5rem;
}
.contact-content h1 i {
	font-size:1.25rem;
}
/* 联系方式列表 */
.contact-list {
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
	gap:1.5rem;
	margin-bottom:2rem;
}
.contact-item {
	display:flex;
	align-items:flex-start;
	gap:1rem;
	padding:1rem;
	border-radius:0.75rem;
	background:#f9fafb;
}
.contact-item .icon-box {
	width:3rem;
	height:3rem;
	border-radius:50%;
	background:linear-gradient(135deg,#0099FF 0%,#0066CC 100%);
	display:flex;
	align-items:center;
	justify-content:center;
	color:white;
	flex-shrink:0;
}
.contact-item .info-box {
	flex:1;
}
.contact-item .info-box h3 {
	font-size:1rem;
	font-weight:600;
	margin-bottom:0.5rem;
	color:#1f2937;
}
.contact-item .info-box p {
	color:#363636;
	line-height:1.5;
	font-size:0.875rem;
}
.contact-item .wx-ico {
	width:3rem;
	height:3rem;
	background: url('images/weixin-ico.png') no-repeat;
	background-size:100% 100%;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-shrink:0;
}
/* 留言提示 */
.message-tip {
	padding:1rem;
	background:#e8f5f8;
	border-left:4px solid #0066CC;
	border-radius:0.5rem;
	margin-top:2rem;
	margin-bottom:1rem;
}
.message-tip p {
	color:#363636;
	line-height:1.6;
	font-size:0.875rem;
}
/* 导航返回链接 */
.back-link {
	display:inline-block;
	color:#0066CC;
	text-decoration:none;
	font-weight:500;
	display:flex;
	align-items:center;
	gap:0.5rem;
	max-width:800px;
	margin:0 auto;
	margin-top:2rem;
	margin-bottom:1rem;
	font-size:0.875rem;
}
.back-link:hover {
	text-decoration:underline;
}
/* 页面标题 */
.page-title {
	font-size:1.2rem;
	color:#363636;
	margin:1rem 0 2rem;
	display:flex;
	align-items:center;
	gap:0.5rem;
	max-width:800px;
	margin:0 auto;
	line-height:50px;
	margin-bottom:10px;
	margin-top:10px;
}
.table-container {width: 100%;margin: 0 auto;padding: 10px 0px;box-sizing: border-box;}
table {
       width: 100%; /* 核心：表格宽度跟随容器 */
       border-collapse: collapse;
       font-family: 微软雅黑, Arial, sans-serif;
       max-width: 100%;
       white-space: normal; /* 允许文本换行，实现紧凑化 */
}
th, td {border: 1px solid #eee;padding: 8px 15px;text-align: center;font-size: 14px;box-sizing: border-box;word-wrap: break-word;vertical-align: middle;}
th {background-color: #f8f8f8;font-weight: bold;}
/* 奇偶行交替背景，提升可读性 */
tbody tr:nth-child(even) {background-color: #fafafa;}
/* 鼠标悬停高亮 */
tbody tr:hover {background-color: #f0f8ff;}

/* 穿衣指南 */
.maina {
	max-width:800px;
	margin:0 auto;
	padding-bottom:15px;
	border-radius:10px;
	margin-bottom:20px;
}
:root {
	/* 品牌主色（哈尔滨蓝） */
    --primary:#0066CC;
	--primary-light:#E8F4F8;
	/* 辅助色（冬季/夏季区分） */
    --winter-accent:#4CC9F0;
	--summer-accent:#F77F00;
	/* 中性色 */
    --text-dark:#1F2937;
	--text-medium:#4B5563;
	--text-light:#6B7280;
	--bg-light:#F9FAFB;
	--white:#FFFFFF;
}
.month-card {
	background:linear-gradient(135deg,var(--primary) 0%,var(--winter-accent) 100%);
	color:var(--white);
	border-radius:10px;
	padding:2rem 1.5rem;
	margin-bottom:2rem;
	text-align:center;
	box-shadow:0 4px 12px rgba(0,102,204,0.15);
}
.month-card.summer {
	background:linear-gradient(135deg,var(--summer-accent) 0%,#FCBF49 100%);
}
.month-card h1 {
	font-size:1.6rem;
	font-weight:700;
	margin-bottom:1rem;
	color:#fff;
	text-align:center;
	display:block;
}
.month-card .climate-tag {
	display:inline-block;
	background:rgba(255,255,255,0.2);
	padding:0.25rem 0.75rem;
	border-radius:999px;
	font-size:0.85rem;
	margin-bottom:20px;
}
.month-card .temp-info {
	font-size:0.9rem;
	opacity:0.9;
	color:#fff;
}
.content-grid {
	display:grid;
	grid-template-columns:1fr;
	gap:1.5rem;
}
@media (min-width:768px) {
.content-grid {
	grid-template-columns:1fr 1fr;
}
}
.card {
	background:#fff;
	border-radius:0.75rem;
	padding:1.5rem;
	border:1px solid eee#;
	box-shadow:0 2px 8px rgba(0,0,0,0.05);
	transition:transform 0.2s ease,box-shadow 0.2s ease;
}
.card h2 {
	color:var(--text-dark);
	font-size:1.1rem;
	font-weight:600;
	margin-bottom:1rem;
	display:flex;
	align-items:center;
	gap:0.5rem;
}
.card h2 i {
	font-size:1rem;
}
.card h3 {
	color:var(--text-dark);
	font-size:1rem;
	font-weight:600;
	margin-bottom:1rem;
	display:flex;
	align-items:center;
	gap:0.5rem;
}
.clothes-list {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:0.75rem;
}
.clothes-item {
	display:flex;
	align-items:center;
	gap:0.5rem;
	padding:0.5rem;
	background:var(--primary-light);
	border-radius:0.5rem;
}
.clothes-item i {
	font-size:0.9rem;
}
.clothes-item span {
	font-size:0.9rem;
}
.tips-list {
	list-style:none;
}
.tips-list li {
	padding-left:1.5rem;
	position:relative;
	margin-bottom:0.75rem;
	font-size:0.9rem;
}
.tips-list li::before {
	content:"✓";
	position:absolute;
	left:0;
	font-weight:700;
}
.mc1 i {color:#404ad9;}
.mc1 li::before {color:#404ad9;}
.mc2 i {color:#3f3ccd;}
.mc2 li::before {color:#3f3ccd;}
.mc3 i {color:#6fc3ac;}
.mc3 li::before {color:#6fc3ac;}
.mc4 i {color:#6de275;}
.mc4 li::before {color:#6de275;}
.mc5 i {color:#a6cb6c;}
.mc5 li::before {color:#a6cb6c;}
.mc6 i {color:#f9981d;}
.mc6 li::before {color:#f9981d;}
.mc7 i {color:#f06135;}
.mc7 li::before {color:#f06135;}
.mc8 i {color:#f9961a;}
.mc8 li::before {color:#f9961a;}
.mc9 i {color:#eeb666;}
.mc9 li::before {color:#eeb666;}
.mc10 i {color:#ad853d;}
.mc10 li::before {color:#ad853d;}
.mc11 i {color:#5fafbf;}
.mc11 li::before {color:#5fafbf;}
.mc12 i {color:#499def;}
.mc12 li::before {color:#499def;}
.feature-card {
	grid-column:1 / -1;
	display:flex;
	flex-direction:column;
	gap:1rem;
}
.feature-content {
	display:flex;
	align-items:center;
	gap:1rem;
	flex-wrap:wrap;
}
.feature-img {
	width:100%;
}
.feature-img img {
	width:25%;
	float:left;
	max-width:300px;
	border-radius:5px;
	object-fit:cover;
	margin-bottom:20px;
}
.feature-text {
	line-height:25px;
	font-size:0.9rem;
}
.footer-nav {
	display:flex;
	justify-content:space-between;
	padding-top:1rem;
}
.month-nav {
	text-decoration:none;
	font-weight:500;
	align-items:center;
	gap:0.5rem;
	font-size:0.9rem;
}
@media (max-width:768px) {
.month-card h1 {font-size:1.5rem;}
.content-grid {
	gap:1rem;
}
.card {
	padding:1rem;
}
}
/* 月份导航列表 */
.month-list {
	display:flex;
	flex-direction:column;
	gap:1.2rem;
	max-width:800px;
	margin:0 auto;
}
.month-btn {
	display:flex;
	align-items:center;
	justify-content:center;
	height:70px;
	border-radius:10px;
	box-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1);
	color:white;
	font-size:1.2rem;
	font-weight:600;
	text-decoration:none;
	transition:all 0.3s ease;
}
.month-btn:hover {
	transform:translateY(-2px);
	box-shadow:0 8px 12px -2px rgb(0 0 0 / 0.1);
}
/* 12个月不同渐变配色 */
.month-1 {
            background:linear-gradient(90deg,#4361EE 0%,#3A0CA3 100%);
}
.month-2 {
            background:linear-gradient(90deg,#3A0CA3 0%,#4361EE 100%);
}
.month-3 {
            background:linear-gradient(90deg,#4CC9F0 0%,#90BE6D 100%);
}
.month-4 {
            background:linear-gradient(90deg,#9BE15D 0%,#00E3AE 100%);
}
.month-5 {
            background:linear-gradient(90deg,#00E3AE 0%,#FCBF49 100%);
}
.month-6 {
            background:linear-gradient(90deg,#FCBF49 0%,#F77F00 100%);
}
.month-7 {
            background:linear-gradient(90deg,#FF9F1C 0%,#E63946 100%);
}
.month-8 {
            background:linear-gradient(90deg,#F77F00 0%,#FCBF49 100%);
}
.month-9 {
            background: linear-gradient(90deg, #E9C46A 0%, #F4A261 100%);
 }
.month-10 {
            background: linear-gradient(90deg, #BB9457 0%, #936639 100%);
}
.month-11 {
            background:linear-gradient(90deg,#936639 0%,#4CC9F0 100%);
}
.month-12 {
            background:linear-gradient(90deg,#4CC9F0 0%,#4361EE 100%);
}
.menu-list {
	display:flex;
	flex-direction:column;
	gap:1.2rem;
	max-width:800px;
	margin:0 auto;
	padding-bottom:30px;
}
.menu-btn {
	display:flex;
	align-items:center;
	justify-content:center;
	height:70px;
	border-radius:10px;
	box-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1);
	color:white;
	font-size:1.2rem;
	font-weight:600;
	text-decoration:none;
	transition:all 0.3s ease;
	background:linear-gradient(90deg,#9BE15D 0%,#00E3AE 100%);
	letter-spacing:1px;
}
.menu-btn span {
	padding-left:8px;
}
.menu-btn:hover {
	transform:translateY(-2px);
	box-shadow:0 8px 12px -2px rgb(0 0 0 / 0.1);
}

/* 地铁站点 */
.metro-container {
	max-width:800px;
	margin:20px auto;
	border:1px solid #eee;
	border-radius:5px;
	overflow:hidden;
	box-shadow:0 2px 12px rgba(0,0,0,0.15);
	background:linear-gradient(135deg,#f5f7fa 0%,#c3cfe2 100%);
}
.metro-header {
	background-color:#4E6EF2;
	color:white;
	padding:16px 24px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	gap:15px;
}
.route-title {
	font-size:20px;
	font-weight:600;
	flex:1;
	min-width:200px;
}
.header-right {
	display:flex;
	align-items:center;
	gap:25px;
	flex-wrap:wrap;
}
.time-info,.price-info {
	font-size:14px;
	display:flex;
	align-items:center;
	gap:8px;
}
.time-info span {
	background:#fff;
	border-radius:4px;
	display:inline-block;
	width:20px;
	height:18px;
	line-height:18px;
	text-align:center;
}
.return-btn {
	background:rgba(255,255,255,0.2);
	color:white;
	border:1px solid rgba(255,255,255,0.3);
	padding:6px 16px;
	border-radius:6px;
	cursor:pointer;
	font-size:14px;
	transition:all 0.3s ease;
	display:flex;
	align-items:center;
	gap:6px;
}
.return-btn:hover {
	background:rgba(255,255,255,0.3);
	transform:translateY(-1px);
}
.metro-route {
	padding:55px 30px 0px 20px;
	background:white;
	min-height:230px;
}
.route-track {
	display:flex;
	flex-wrap:wrap;
	align-items:flex-start;
	gap:20px;
	position:relative;
}
.station-item {
	display:flex;
	flex-direction:column;
	align-items:center;
	position:relative;
}
.station-item:not(:last-child)::after {
	content:'';
	position:absolute;
	top:13px;
	left:22px;
	right:-30px;
	height:2px;
	background-color:#FF0000;
	z-index:1;
}
.station-itema {
	display:flex;
	flex-direction:column;
	align-items:center;
	position:relative;
}
.station-itema:not(:last-child)::after {
	content:'';
	position:absolute;
	top:13px;
	left:22px;
	right:-30px;
	height:2px;
	background-color:#3a8e56;
	z-index:1;
}
.station-itemb {
	display:flex;
	flex-direction:column;
	align-items:center;
	position:relative;
}
.station-itemb:not(:last-child)::after {
	content:'';
	position:absolute;
	top:13px;
	left:22px;
	right:-30px;
	height:2px;
	background-color:#fdb500;
	z-index:1;
}
.station-dot {
	width:28px;
	height:28px;
	border-radius:50%;
	background-color:white;
	border:2px solid #FF0000;
	z-index:3;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#555;
	font-size:12px;
	transition:all 0.3s ease;
	position:relative;
}
.transfer-1 {background-color:#FF0000;color:#fff;}
.transfer-2 {background-color:#3a8e56;color:#fff;}
.transfer-3 {background-color:#fdb500;color:#fff;}
.transfer-tip {
	position:absolute;
	top:-30px;
	left:50%;
	transform:translateX(-50%);
	font-size:12px;
	color:#777;
	text-align:center;
	background-color:#fff;
	padding:3px 8px;
	border-radius:12px;
	border:1px solid #eee;
	box-shadow:0 1px 3px rgba(0,0,0,0.1);
	z-index:4;
	white-space:nowrap;
}
.station-name {
	margin-top:15px;
	font-size:14px;
	color:#333;
	text-align:center;
	line-height:1.3;
	letter-spacing:0.5px;
	font-weight:500;
	max-width:15px;
	word-wrap:break-word;
	margin-bottom:30px;
}
.station-item:nth-child(even) .station-name {
	color:#333;
}
.station-item:nth-child(odd) .station-name {
	color:#333;
}
@media (max-width:768px) {
.route-title {
	font-size:16px;
	text-align:center;
}
.header-right {
	justify-content:center;
	gap:15px;
}
.route-track {
	gap:15px;
	padding:10px 10px 0px 10px;
}
.station-name {
	font-size:12px;
}
.transfer-tip {
	top:-28px;
}
.metro-route {
	padding:30px 15px 0px 15px;
}
.menu-btn {
	height:50px;
	font-size:1rem;
}
}

@keyframes pulse {
	0% {
	box-shadow:0 0 0 0 rgba(230,0,18,0.4);
}
70% {
	box-shadow:0 0 0 10px rgba(230,0,18,0);
}
100% {
	box-shadow:0 0 0 0 rgba(230,0,18,0);
}
}

.fa {
    font-family: var (--fa-style-family, "Font Awesome 6 Free");
    font-weight: var (--fa-style, 900);
}
.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased;
    display: var (--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}
.fa-classic,.fa-regular,.fa-solid,.far,.fas {font-family: "Font Awesome 6 Free";}
.fa-brands, .fab {
  font-weight: 400;
}
.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands";
}
.fa-mountain-sun::before {
  content: "\e52f";
}
.fa-utensils::before {
    content: "\f2e7";
}
.fa-snowflake::before {
    content: "\f2dc";
}
.fa-landmark::before {
    content: "\f66f";
}
.fa-bus::before {
  content: "\f207";
}
.fa-phone::before {
  content: "\f095";
}
.fa-tree-city::before {
  content: "\e587";
}
.fa-map-location-dot::before, .fa-map-marked-alt::before {
  content: "\f5a0";
}
.fa-shirt::before {
  content: "\f553";
}
.fa-store::before {
  content: "\f54e";
}
.fa-hotel::before {
  content: "\f594";
}
.fa-crown::before {
  content: "\f521";
}
.fa-check-circle::before, .fa-circle-check::before {
  content: "\f058";
}
.fa-heart::before {
  content: "\f004";
}
.fa-map-marker-alt::before {
  content: "\f3c5";
}
.fa-arrow-left::before {
  content: "\f060";
}
.fa-weixin::before {
  content: "\f1d7";
}
.fa-home::before{content:"\f015";}
.fa-plane::before{content:"\f072";}
.fa-train::before{content:"\f238";}
.fa-train-subway::before{content:"\f239";}
.fa-university::before{content:"\f19c";}
.fa-temperature-arrow-down::before,.fa-temperature-down::before{content:"\e03f";}
.fa-people-group::before{content:"\e533";}
.fa-area-chart::before,.fa-chart-area::before{content:"\f1fe";}
.fa-history::before{content:"\f1da";}
.fa-money-check-dollar::before{content:"\f53d";}
.fa-angle-left::before{content:"\f104";}
.fa-angle-right::before{content:"\f105";}
.fa-wechat::before, .fa-weixin::before{content:"\f1d7";}
.fa-taxi::before{content:"\f1ba";}
.fa-file::before{content:"\f15b";}
.fa-plane-circle-exclamation::before{content:"\e556";}
.fa-unlock-alt::before{content:"\f13e";}
.fa-heartbeat::before{content:"\f21e";}
.fa-lightbulb::before{content:"\f0eb";}
.fa-chevron-left::before{content:"\f053";}
.fa-chevron-right::before{content:"\f054";}
.fa-star::before{content:"\f005";}
.fa-leaf::before{content:"\f06c";}
.fa-sun::before{content:"\f185";}
.fa-droplet::before{content:"\f043";}
.fa-cloud::before{content:"\f0c2";}
.fa-cloud-sun::before{content:"\f6c4";}
.fa-icicles::before{content:"\f7ad";}
.fa-exchange::before{content:"\f0ec";}
.fa-refresh::before{content:"\f021";}
.fa-star-half-alt::before{content:"\f5c0";}
.fa-location::before{content:"\f601";}
.fa-map-marker::before{content:"\f041";}
.fa-link::before{content:"\f0c1";}
.fa-lock::before{content:"\f023";}
.fa-angle-double-down::before{content:"\f103";}
.fa-tree::before{content:"\f1bb";}
.fa-gift::before{content:"\f06b";}
.fa-award::before{content:"\f559";}
.fa-wine-glass::before{content:"\f4e3";}
.fa-fire::before{content:"\f06d";}
.fa-building::before{content:"\f1ad";}
.fa-route::before{content:"\f4d7";}
.fa-compass::before{content:"\f14e";}
.fa-drumstick-bite::before{content:"\f6d7";}
.fa-fire-burner::before{content:"\e4f1";}
: host,:root {--fa-style-family-classic: "Font Awesome 6 Free"; --fa-font-solid: normal 900 1em / 1 "Font Awesome 6 Free"}
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(fonts/fa-solid-900.woff2) format("woff2"),
    url(fonts/fa-solid-900.ttf) format("truetype")
}
.fa-solid,.fas {
    font-weight: 900;
}
.dhang {
    max-width:800px;
    margin:0 auto;
}
.d-hang {
    float:left;
	border:1px solid #eee;
	border-radius:5px;
	background:#fff;
	width:100%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.d-hang h3{
    height:50px;
	line-height:50px;
	background:#f9f9f9;
	padding-left:20px;
	font-size:1.0rem;
	font-weight:600;
}
.d-hang ul{
    width:100%;
	float:left;
}
.d-hang ul li {
    float:left;
	border-top: 1px solid rgba(238, 238, 238, 0.5);
	width:100%;
	list-style: none;
	padding-left:20px;
	background-image: url("images/r-jt.png");background-position: 95% 50%;background-repeat: no-repeat;
}
.d-hang ul li:hover {
    background:#f9f9f9;
	border-top: 1px solid rgba(238, 238, 238, 0.5);
	background-image: url("images/r-jt.png");background-position: 95% 50%;background-repeat: no-repeat;
}
.d-hang ul li a{
    height:45px;
	line-height:45px;
	color:#363636;
	width:100%;
	float:left;
	font-size:14px;
	text-decoration: none;
}
.d-hang ul li a span{
    padding-left:5px;
}
/* 返回顶部、反馈 */
#dt-side-combo {
    border: 1px solid #eee;
	position: fixed; 
	bottom: 68px; 
	z-index: 10000; 
	width: 47px;
	left: 50%; 
	right: 10px; 
	top: auto; 
	margin-left: 410px; 
	opacity: 1; 
	display: block;
	border-radius:0px;
}
#dt-side-combo a {
    background-image: url("images/backtopa.png");
    background-repeat: no-repeat;
    display: block;
    height: 45px;
    text-indent: -99999px;
    width: 45px;
}
#dt-side-combo a.dt-backtotop {
    border-top: 0px solid #eee;
	background-position: 0px -41px;
}
#dt-side-combo a.dt-app {
    border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
    background-position: 0px -91px;
}
#dt-side-combo a.dt-index {
    border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
    background-position: 0px -3px;
}
#dt-side-combo a.dt-report {
    background-position: 0px -140px;
}
#dt-side-combo .dt-backtotop:hover {
    background-position: 0px -194px;
}
#dt-side-combo .dt-index:hover {
    background-position: 0px -339px;
}
#dt-side-combo .dt-app:hover {
    background-position: 0px -240px;
}
#dt-side-combo .dt-report:hover {
    background-position: 0px -288px;
}
@media (max-width:768px) {
.header .logo {
	width:118px;
}
.container {
  padding: 30px 15px;
  margin-bottom: 20px;
}
.swiper-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    width: 100%;
    overflow: unset;
}
.swiper-wrapper .swiper-slide {
    float: none;
    padding: 0 10px;
    margin-top: 0!important;
    margin-left: 0!important;
    width: 100%;
    height: 225px;
    text-align: center;
}
.swiper-slide .imgBox {
    float: none;
    margin: 20px auto 0;
    width: 100px;
}
.swiper-slide .descBox {
    float: none;
    padding: 20px;
    width: 100%;
    height: 140px;
}
}