/* 定义字体变量 */
:root {
	--chinese-font-family: PingFang SC, Helvetica, Helvetica, Microsoft YaHei, \5fae\8f6f\96c5\9ed1, Arial, sans-serif;
	--english-font-family: "Courier New", "Lucida Bright", Georgia, serif;
}

/* html {
	font-size: 16px;
} */
.main {
			font-size: 40px;
			display:flex;
			height:100%;
			min-height: 1000px;
			width:100%;
			align-items: center;
			align-self: center;
			align-content: center;
			color: rgb(236, 62, 27);
			justify-content: center;
		}
.header {
	/* background-color:midnightblue; */
	display: flex;
	flex-direction: column;
	width: 100%;
	font-size: 1em;
	color: black;
	background: #f8e8e8;
	/* background-image: url("../../static/image/banner.png"); */
}

.banner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	height: 80px;
}

.tiile {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
}

.menu {
	width:auto;
	color:black;
	margin: 0;
	text-align: center;
	list-style-type: none;  
	padding: 0;  
}

.tiile .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.bottom {
	width: 100%;
	height: 100px;
	color: rgb(29, 15, 15);
	text-align: center;
	/* background-color:midnightblue; */
	/* background-image: url("../../static/image/footer.png"); */
	margin-top: auto;
}
footer{
	font-family: var(--chinese-font-family);
	font-size: 14px;
	font-weight: 400;
}
.ewm{
	width: 70px;
	height: 70px;
	text-align: center;
	margin: auto 30px;
	/* padding: 28px; */
	align-items: center;
	/* object-fit: fill;  使img元素自适应div大小，同时保持其纵横比  */
	/* border: 1px solid purple; */
}
.erweima{
	display: flex;
	flex-direction: column;
	font-family: var(--chinese-font-family);
	font-size: 12px;
	font-weight: 400;
	align-items: center;
	align-self: center;
	line-height: 20px;
	color: white;
	/* border: 1px solid purple; */
}
.weixin{
	display: flex;
	height: auto;
	/* object-fit: contain;  使img元素自适应div大小，同时保持其纵横比  */
	/* border: 1px solid yellow; */
}
/* 		.menu {  
} */ 

.menu li {  
	position: relative;  
	display: inline-block;  
	margin-right: 20px;  
}  

.submenu {  
	display: none;
	flex-direction: column;
	align-items: center;
	align-self: center;
	position: absolute;
	top: 100%;  
	left: 0;  
	background-color: #ffffff;
	color: black;
	width: auto; /* 改为auto，自适应宽度 */
	min-width: 10em; /* 设置最小宽度 */
	max-width: 20em; /* 设置最大宽度限制 */
	padding: 8px 0;
	margin: auto;
	border-radius: 5px;
	white-space: nowrap;
	z-index: 1002; /* 确保子菜单显示在最上层，高于轮播图的z-index */
}

.submenu .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	min-height: auto;
	padding: 8px 16px; /* 增加水平padding */
	width: 100%;
	box-sizing: border-box;
}

.submenu .english {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 1px;
	white-space: nowrap;
}

.submenu .chinese {
	font-size: 12px;
	font-weight: 400;
	white-space: nowrap;
}
.menu li:hover .submenu {
	display: flex;
}
.item{
	display: block;
	color: black;
	/* background-color: yellow; */
	width: 5em; /* 从6em减少到5em，让菜单项更窄 */
	margin: 10px auto;
	padding: auto 5px;
	text-decoration: none;
	font-family: var(--chinese-font-family);
	font-size: 14px;
	font-weight: 500;
	background-color: #f8e8e8; /* 添加与body一致的背景色 */
}

.item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	background-color: #f8e8e8; /* 添加与body一致的背景色 */
}

.submenu .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	min-height: auto;
	padding: 8px 16px; /* 增加水平padding */
	width: 100%;
	box-sizing: border-box;
	background-color: #ffffff; /* 子菜单项保持白色背景 */
}

.tiile .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px; /* 从30px减少到20px，让菜单项间距更紧凑 */
}

.menu li {  
	position: relative;  
	display: inline-block;  
	margin-right: 15px; /* 从20px减少到15px，让菜单项间距更紧凑 */  
}  
.item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
}

.full-width-separator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	background: #f8e8e8;
	margin: 20px 0;
	position: relative;
	visibility: visible;
}

.full-width-separator::before,
.full-width-separator::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.full-width-separator::before {
	margin-right: 15px;
}

.full-width-separator::after {
	margin-left: 15px;
}

.full-width-separator .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #d4af37;
	border-radius: 50%;
}

/* Split Text Separator */
.split-text-separator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	background: #f8e8e8;
	margin: 40px 0 20px 0;
	position: relative;
	border-top: 1px solid #d4af37;
	border-bottom: 1px solid #d4af37;
	overflow: hidden;
}

.split-text-separator .split-text {
	display: flex;
	flex-wrap: nowrap;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 8px;
	text-transform: uppercase;
	color: #3a2e23;
	font-family: var(--english-font-family);
	justify-content: center;
	gap: 40px;
}

.split-text-separator .split-text span {
	display: inline-block;
	opacity: 1;
	white-space: nowrap;
}

/* 分隔线响应式设计 */
@media (max-width: 1080px) {
	.split-text-separator {
		height: 45px;
		margin: 0px 0 15px 0;
	}
	
	.split-text-separator .split-text {
		font-size: 18px;
		letter-spacing: 6px;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.header {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	
	.banner {
		width: 100%;
		max-width: 100%;
		padding: 10px 15px;
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.name {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.name .company-name {
		flex-direction: column;
		gap: 5px;
		text-align: center;
	}
	
	.name .english {
		font-size: 24px;
	}
	
	.name .chinese {
		font-size: 20px;
	}
	
	.tiile {
		width: 100%;
		padding: 0;
		justify-content: center;
	}
	
	.tiile .menu {
		flex-wrap: nowrap; /* 禁止换行 */
		gap: 5px; /* 减少间距 */
		justify-content: flex-start; /* 左对齐 */
		overflow-x: auto; /* 水平滚动 */
		overflow-y: hidden; /* 垂直方向隐藏 */
		padding: 0 10px; /* 添加内边距 */
		-webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
	}
	
	.tiile .menu li {
		margin: 0 3px;
		flex-shrink: 0; /* 禁止收缩 */
	}
	
	.tiile .menu .item {
		font-size: 14px;
		padding: 4px 8px; /* 减少内边距 */
		width: auto; /* 改为自动宽度，适应内容 */
		min-width: 80px; /* 减少最小宽度 */
		max-width: 100px; /* 减少最大宽度 */
	}
	
	/* 优化移动端菜单项布局 - 紧凑垂直排列 */
	.tiile .menu .item {
		flex-direction: column; /* 保持垂直排列 */
		align-items: center;
		gap: 0px; /* 进一步减少间距 */
		line-height: 1.0; /* 调整行高 */
	}
	
	.tiile .menu .item .english {
		font-size: 11px; /* 减小字体 */
		font-weight: 600;
		white-space: nowrap;
	}
	
	.tiile .menu .item .separator {
		font-size: 7px; /* 减小分隔符 */
		color: #666;
		line-height: 0.7;
	}
	
	.tiile .menu .item .chinese {
		font-size: 10px; /* 减小字体 */
		font-weight: 400;
		white-space: nowrap;
	}
	
	/* 优化菜单项间距和布局 */
	.tiile .menu {
		gap: 5px; /* 进一步减少菜单项之间的间距 */
	}
	
	.tiile .menu li {
		margin: 0 2px; /* 进一步减少左右边距 */
	}
	
	/* 分隔线现在在header外面，需要调整样式 */
	.split-text-separator {
		height: 30px;
		margin: 0; /* 重置margin */
		overflow-x: auto;
		overflow-y: hidden;
		width: 100%; /* 确保宽度100% */
		background-color: #f8f9fa; /* 添加背景色，与header一致 */
	}
	
	/* 移除banner的底部边距，因为分隔线现在在外面 */
	.banner {
		margin-bottom: 0; /* 移除底部边距 */
	}
	
	.split-text-separator .split-text {
		font-size: 14px;
		letter-spacing: 3px;
		gap: 15px;
		flex-wrap: nowrap;
		justify-content: flex-start;
		padding: 0 15px;
		min-width: max-content;
	}
	
	.split-text-separator .split-text span {
		white-space: nowrap;
		margin: 0;
	}
}

@media (max-width: 480px) {
	.header {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	
	.banner {
		width: 100%;
		max-width: 100%;
		padding: 8px 10px;
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.name {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.name .company-name {
		flex-direction: column;
		gap: 3px;
		text-align: center;
	}
	
	.name .english {
		font-size: 20px;
	}
	
	.name .chinese {
		font-size: 16px;
	}
	
	.tiile {
		width: 100%;
		padding: 0;
		justify-content: center;
	}
	
	.tiile .menu {
		flex-wrap: nowrap; /* 禁止换行 */
		gap: 4px; /* 进一步减少间距 */
		justify-content: flex-start; /* 左对齐 */
		overflow-x: auto; /* 水平滚动 */
		overflow-y: hidden; /* 垂直方向隐藏 */
		padding: 0 8px; /* 添加内边距 */
		-webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
	}
	
	.tiile .menu li {
		margin: 0 2px;
		flex-shrink: 0; /* 禁止收缩 */
	}
	
	.tiile .menu .item {
		font-size: 11px;
		padding: 3px 6px; /* 进一步减少内边距 */
		min-width: 70px; /* 进一步减少最小宽度 */
		max-width: 90px; /* 进一步减少最大宽度 */
	}
	
	/* 分隔线现在在header外面，需要调整样式 */
	.split-text-separator {
		height: 25px;
		margin: 0; /* 重置margin */
		width: 100%; /* 确保宽度100% */
		background-color: #f8f9fa; /* 添加背景色，与header一致 */
	}
	
	/* 移除banner的底部边距，因为分隔线现在在外面 */
	.banner {
		margin-bottom: 0; /* 移除底部边距 */
	}
	
	.split-text-separator .split-text {
		font-size: 12px;
		letter-spacing: 2px;
		gap: 12px;
		padding: 0 10px;
	}
}

.separator {
	display: block;
	width: 100%;
	height: 1px;
	background-color: transparent;
	margin: 1px 0;
	position: relative;
	visibility: hidden;
}

.item:hover .separator {
	background-color: #3a2e23;
	visibility: visible;
}

.english {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
	height: 20px;
	line-height: 20px;
	font-family: var(--english-font-family);
	display: block;
	text-align: center;
}

.chinese {
	font-size: 14px;
	font-weight: 400;
	height: 20px;
	line-height: 20px;
	font-family: var(--chinese-font-family);
	display: block;
	text-align: center;
}
.submenu .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	min-height: auto;
	padding: 8px 5px;
}

.submenu .english {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 1px;
}

.submenu .chinese {
	font-size: 12px;
	font-weight: 400;
}
.submenu .item {
	color: #30366a;
	margin: 5px;
	font-family: var(--chinese-font-family);
	font-size: 13px;
	font-weight: 400;
}
.icp:link {
	color: rgb(29, 15, 15);
}
.icp:visited {
	color: rgb(29, 15, 15);
}
p.icp {
	color: #fff;
	font-family: var(--chinese-font-family);
	font-size: 14px;
	font-weight: 500;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	background: #f8e8e8; /* 很浅的暗粉色背景 */
	font-family: var(--chinese-font-family);
	font-size: 14px;
	line-height: 1.5;
	max-width: 1080px;
	margin: 0 auto;
}
/* nav {
	margin-top: auto;
} */

/* 右侧固定功能栏样式 */
.sidebar-fixed {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 1000;
	padding: 5px 0;
}

.sidebar-button {
	background: #2c3e50;
	color: white;
	border: none;
	padding: 0;
	border-radius: 15px 0 0 15px;
	font-family: var(--chinese-font-family);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
	width: 45px;
	height: 45px;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
}

.sidebar-button:hover {
	background: #34495e;
	transform: translateX(-3px);
	box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.sidebar-button .qrcode-popup {
	position: absolute;
	left: -160px !important;
	top: 0 !important;
	background: white;
	border-radius: 8px;
	padding: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	pointer-events: none;
	transform: translateX(-8px);
	z-index: 1001;
	min-width: 130px;
}

.sidebar-button .qrcode-popup::before {
	content: '';
	position: absolute;
	right: -8px !important;
	top: 15px !important;
	width: 0;
	height: 0;
	border-left: 8px solid white;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.sidebar-button:hover .qrcode-popup {
	opacity: 1 !important;
	transform: translateX(0) !important;
	pointer-events: auto !important;
}

.sidebar-button .qrcode-popup img {
	width: 100px;
	height: 100px;
	display: block;
	margin: 0 auto 8px;
	border-radius: 4px;
}

.sidebar-button .qrcode-popup p {
	font-family: var(--chinese-font-family);
	font-size: 12px;
	color: #666;
	text-align: center;
	margin: 0;
	line-height: 1.3;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.sidebar-fixed {
		right: -8px;
	}
	
	.sidebar-button {
		width: 40px;
		height: 40px;
		font-size: 9px;
	}
	
	.sidebar-button .qrcode-popup {
		left: -140px !important;
		min-width: 120px;
	}
	
	.sidebar-button .qrcode-popup img {
		width: 90px;
		height: 90px;
	}
}

@media (max-width: 480px) {
	.sidebar-fixed {
		display: none;
	}
}

.name .menu {
	font-size: 20px;
	color: #3a2e23; /* 很暗的暗褐色 */
	font-weight: bold;
	margin: 0;
	/* border: 1px solid #2c3e50; */
	padding: 0;
}

.header .name .company-name {
	display: flex;
	/* border: 1px solid #2c3e50; */
	align-items: center;
	gap: 10px;
	font-weight: bold;
	text-decoration: none;
	font-size: 20px;
	color: #3a2e23; /* 很暗的暗褐色 */
	background-color: #f8e8e8; /* 与body背景色一致 */
}

.tiile {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	background-color: #f8e8e8; /* 与body背景色一致 */
}

.banner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	height: 80px;
	background-color: #f8e8e8; /* 与body背景色一致 */
}
.name a { 
	display: flex;
	flex-direction: row;
	text-decoration: none;
}

.logo-container {
	display: flex;
	align-items: center;
}

.logo {
	height: 50px;
	width: auto;
	object-fit: contain;
}

.company-name {
	display: flex;
	flex-direction: row;
	align-items: center; /* 基线对齐 */
	justify-content: center;
	/* line-height: 1.2; */
	text-align: center;
	gap: 8px;
}

.name .english {
	font-size: 34px;
	font-weight: 700;
	font-family: var(--english-font-family);
	color: #3a2e23; /* 很暗的暗褐色 */
	text-decoration: none;
	line-height: 1; /* 确保行高一致 */
}

.card-item h3 {
	margin: 10px 0 5px 0;
	font-size: 30px;
	font-weight: 600;
	font-family: var(--english-font-family);
	color: #3a2e23; /* 很暗的暗褐色 */
	text-decoration: none;
}

.name .chinese {
	font-size: 30px;
	font-weight: 600;
	font-family: var(--chinese-font-family);
	color: #3a2e23; /* 很暗的暗褐色 */
	text-decoration: none;
	line-height: 1; /* 确保行高一致 */
}

/* 双卡片通栏样式 - 可被其他页面共用 */
.double-card-container {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
	padding: 30px 0;  /* 与轮播图容器保持一致 */
	position: relative;
	overflow: hidden;
	border-radius: 25px;
}

.double-card-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: 1080px;  /* 与轮播图保持一致 */
	margin: 0 auto;
}

.double-card-item {
	flex: 1;
	height: 280px;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
	background-color: white;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
}

.double-card-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 25px;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.double-card-item:hover {
	transform: translateY(-10px);
}

.double-card-item:hover img {
	transform: scale(1.05);
}

/* 响应式设计 - 适配较小屏幕 */
@media (max-width: 1080px) {
	.card-carousel-container {
		max-width: 95%;
		padding: 20px 0;
	}
	
	.card-carousel {
		height: 400px;
	}
	
	.card-item {
		height: 400px;
	}
	
	.double-card-wrapper {
		max-width: 95%;
		flex-direction: column;
		gap: 15px;
	}
	
	.double-card-item {
		height: 250px;
	}
}

@media (max-width: 768px) {
	.card-carousel-container {
		max-width: 100%;
		padding: 15px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	
	.card-carousel {
		height: 300px;
		max-width: 100%;
		width: 100%;
	}
	
	.card-item {
		height: 300px;
		max-width: 100%;
		width: 100%;
		left: 0;
		transform: translateX(0);
	}
	
	.card-item.active {
		transform: translateX(0);
	}
	
	.card-carousel-indicators {
		width: 100%;
		max-width: 100%;
	}
	
	.double-card-wrapper {
		max-width: 100%;
		padding: 0 10px;
		flex-direction: column;
		gap: 10px;
	}
	
	.double-card-item {
		height: 200px;
	}
}

@media (max-width: 480px) {
	.card-carousel-container {
		padding: 10px 5px;
		width: 100%;
		box-sizing: border-box;
	}
	
	.card-carousel {
		height: 250px;
		max-width: 100%;
		width: 100%;
	}
	
	.card-item {
		height: 250px;
		max-width: 100%;
		width: 100%;
		left: 0;
		transform: translateX(0);
	}
	
	.card-item.active {
		transform: translateX(0);
	}
	
	.card-carousel-indicators {
		width: 100%;
		max-width: 100%;
	}
	
	.double-card-wrapper {
		padding: 0 5px;
		gap: 8px;
	}
	
	.double-card-item {
		height: 150px;
	}
}

/* 卡片式轮播图样式 - 调整为好利来官网样式，可被其他页面共用 */
.card-carousel-container {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 30px 0;
	position: relative;
	overflow: hidden;
	border-radius: 25px;
}

.card-carousel {
	position: relative;
	width: 100%;
	max-width: 1080px;
	height: 520px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 25px;
}

.card-item {
	position: absolute;
	width: 100%;
	max-width: 1080px;
	height: 520px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
	background-color: white;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 1;
	transform: translateX(100%) translateX(-50%);
	z-index: 1;
}

.card-item.active {
	opacity: 1;
	transform: translateX(0) translateX(-50%);
	z-index: 3;
}

.card-item.prev {
	transform: translateX(-100%) translateX(-50%);
	opacity: 1;
	z-index: 2;
}

.card-item.next {
	transform: translateX(100%) translateX(-50%);
	opacity: 1;
	z-index: 1;
}

.card-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 25px;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-item:hover img {
	transform: scale(1.08);
	border-radius: 25px;
}

/* 静态卡片样式，不参与轮播动画 */
.card-item.static-card {
	position: relative;
	transform: translateX(0) !important;
	left: 0 !important;
	opacity: 1 !important;
	z-index: 3 !important;
	pointer-events: auto;
}

/* 轮播指示器样式 - 优化为好利来官网风格 */
.card-carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 15px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: 1080px;
}

.indicator {
	width: 40px;
	height: 6px;
	border-radius: 2px;
	background-color: rgba(0, 0, 0, 0.2);
	border: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.indicator.active {
	background-color: #ff6b6b;
	transform: scaleX(1.2);
	box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.indicator:hover {
	background-color: #ff8e8e;
	transform: scaleX(1.1);
}

/* 响应式设计 - 适配不同屏幕尺寸 */
@media (max-width: 768px) {
	.card-carousel-container {
		padding: 20px 15px;
	}
	
	.card-carousel {
		height: 300px;
	}
	
	.card-carousel-indicators {
		margin-top: 20px;
		gap: 10px;
	}
	
	.indicator {
		width: 30px;
		height: 3px;
	}
}


















