/* 全局样式重置，但避免影响Bootstrap核心功能 */
body {
	margin: 0;
	padding: 0;
	font-family: "Microsoft YaHei", "Segoe UI", Tahoma, Geneva, Verdana,
		sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* 为自定义元素添加box-sizing，避免影响Bootstrap */
.custom-element, .custom-wrapper {
	box-sizing: border-box;
}

/* 导航栏样式 */
.navbar {
	transition: all 0.3s ease;
	padding-top: 15px;
	padding-bottom: 15px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Logo大小设置 */
.navbar-brand img {
	height: 56px;
	width: auto;
	object-fit: contain;
}

/* 导航栏菜单项大幅右移 */
#navbarNav {
	margin-left: 280px;
}

/* 增加导航项间距 */
.nav-item {
	margin-left: 30px !important;
	margin-right: 30px !important;
}

/* 确保覆盖Bootstrap的mx-3类 */
.nav-item.mx-3 {
	margin-left: 30px !important;
	margin-right: 30px !important;
}

/* 导航栏链接样式 */
.navbar-nav .nav-link {
	color: #151619;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	padding: 20px 0;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: #DB0018;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #DB0018;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}

/* 导航栏当前页面活跃状态样式 */
.navbar-nav .nav-link.active {
	color: #DB0018;
}

.navbar-nav .nav-link.active::after {
	width: 100%;
}

/* 关于我们冒泡弹窗样式 */
#aboutUsContainer {
	position: relative;
}

/* 为关于我们按钮添加微妙的悬停效果，与弹窗动画协调 */
#aboutUsBtn {
	transition: all 0.3s ease;
}

#aboutUsContainer:hover #aboutUsBtn {
	transform: translateY(-2px); /* 轻微上移，提示交互 */
}

/* 为了确保鼠标移入弹窗区域时弹窗不消失，我们需要在弹窗显示时也保持父元素的hover状态 */
#aboutUsContainer:hover .about-us-dropdown,
.about-us-dropdown:hover {
	visibility: visible;
	transform: translateY(0);
	opacity: 1;
	max-height: 500px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.about-us-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 5px;
	background-color: white;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* 初始更淡的阴影 */
	padding: 20px 10px;
	width: 112px;
	font-size: 14px;
	visibility: hidden;
	z-index: 1000;
	/* 从上到下拉出的动画效果 */
	transform: translateY(-8px); /* 减小初始位移，让动画更自然 */
	opacity: 0;
	/* 统一使用更自然的缓动函数，确保所有属性同步变化 */
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			visibility 0s ease 0.4s, 
			box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	max-height: 0;
	overflow: hidden;
}

/* 修复hover时的可见性和过渡效果 */
#aboutUsContainer:hover .about-us-dropdown {
	visibility: visible;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
			visibility 0s ease 0s, 
			box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 弹窗内容样式 */
.dropdown-content {
	display: flex;
	flex-direction: column;
}

/* 弹窗按钮样式 - 确保没有点击效果 */
.dropdown-item {
	background: none;
	border: none;
	text-align: center;
	padding: 12px 20px;
	cursor: pointer;
	color: #151619;
	font-size: 14px;
	/* 移除hover效果 */
	transition: none;
}

/* 覆盖任何可能的hover效果 */
.dropdown-item:hover {
	background-color: transparent;
	color: #151619;
	font-size: 14px;
}

/* 移动端手拉琴效果 */
@media (max-width: 768px) {
	.about-us-dropdown {
		/* 重置桌面端动画 */
		transform: translateY(0);
		opacity: 1;
		transition: max-height 0.5s ease;
	}
	
	.about-us-dropdown.show {
		/* 保持手拉琴效果 */
		transform: translateY(0);
		opacity: 1;
	}
}

/* 通用区块标题样式 */
.section-title {
	font-size: 62px;
	color: #333;
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
	margin-bottom: 40px;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background-color: #DB0018;
}

/* Banner大图样式 */
.about-banner {
	width: 100%;
	height: 470px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	overflow: hidden;
}

/* Banner图片样式 */
.banner-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* Banner内容容器 */
.banner-content {
	padding-left: 150px;
	max-width: 100%;
	position: relative;
	z-index: 2;
}

/* Banner标题样式 */
.banner-title {
	color: white;
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 响应式适配 */
@media (max-width: 768px) {
	.about-banner {
		height: 300px;
	}
	
	.banner-content {
		padding-left: 30px;
	}
	
	.banner-title {
		font-size: 36px;
	}
}

@media (max-width: 480px) {
	.about-banner {
		height: 250px;
	}
	
	.banner-title {
		font-size: 28px;
	}
}

/* 公司介绍部分样式 */
.company-intro-section {
	position: relative;
	margin-top: -60px;
	z-index: 3;
	padding-top: 100px;
}

.intro-content {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}

.intro-text {
	width: 800px;
	background-color: white;
	box-sizing: border-box;
	margin-top: 0;
}

.intro-title {
	font-size: 36px;
	font-weight: 700;
	color: #007ac9;
	margin-bottom: 30px; 
}

.intro-paragraph {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
}

.intro-paragraph:last-child {
	margin-bottom: 0;
}

.intro-image-container {
	min-width: 300px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-top: -90px;
}

.blue-bg {
	background-color: #007ac9;
	border-radius: 8px;
	padding: 60px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* 添加阴影效果 */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	/* 过渡效果使hover更平滑 */
	transition: all 0.3s ease;
}

/* 添加hover伪类效果 */
.blue-bg:hover {
	/* 增强阴影效果 */
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	/* 轻微上浮效果 */
	transform: translateY(-2px);
}

.intro-image {
	width: 260px;
	height: 160px;
	object-fit: cover;
}

.rock-text {
	color: white;
	margin-top: 20px;
	font-size: 30px;
	font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.intro-content {
		gap: 40px;
	}
	
	.intro-text,
	.intro-image-container {
		width: 100%;
		min-width: auto;
	}
	
	.intro-title {
		font-size: 32px;
	}
	
	.intro-image {
		width: 260px;
		height: 160px;
	}
}

@media (max-width: 992px) {
	.company-intro-section {
		margin-top: -60px;
		padding-top: 100px;
	}
	
	.intro-content {
		flex-direction: column;
		gap: 30px;
	}
	
	.intro-text,
	.intro-image-container {
		min-width: 100%;
	}
	
	.intro-text {
		padding: 40px 30px;
	}
	
	.intro-title {
		font-size: 28px;
	}
	
	.intro-paragraph {
		font-size: 16px;
	}
	
	.intro-image {
		width: 260px;
		height: 160px;
	}
}

@media (max-width: 768px) {
	.company-intro-section {
		margin-top: -40px;
		padding-top: 80px;
		padding-bottom: 80px;
	}
	
	.blue-bg {
		padding: 60px 20px;
	}
	
	.intro-image {
		width: 260px;
		height: 160px;
	}
}

@media (max-width: 576px) {
	.company-intro-section {
		padding-top: 70px;
		padding-bottom: 60px;
	}
	
	.intro-text {
		padding: 30px 20px;
	}
	
	.intro-title {
		font-size: 24px;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
	
	.intro-paragraph {
		font-size: 15px;
		margin-bottom: 15px;
	}
	
	.blue-bg {
		padding: 60px 15px;
	}
	
	.intro-image {
		width: 240px;
		height: 145px;
	}
	
	.rock-text {
		font-size: 16px;
	}
}

/* 产品展示部分样式 */
.product-section {
	background-color: #fff;
	padding: 80px 0;
}

.product-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 220px;
	flex-wrap: wrap;
}

.product-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 0 0 auto;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border: 2px solid transparent;
	padding: 15px;
	border-radius: 8px;
}

/* 三个优势项的悬停效果 */
.product-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 122, 201, 0.1);
	border-color: #007ac9;
}

/* 优势项之间的分隔线 */
.product-item:nth-child(1) {
	position: relative;
}

.product-item:nth-child(1)::after {
	content: '';
	position: absolute;
	right: -110px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80px;
	background-color: #ddd;
}

.product-item:nth-child(2) {
	position: relative;
}

.product-item:nth-child(2)::after {
	content: '';
	position: absolute;
	right: -110px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80px;
	background-color: #ddd;
}

/* 响应式分隔线适配 - 1200px以下 */
@media (max-width: 1200px) {
	.product-item:nth-child(1)::after,
	.product-item:nth-child(2)::after {
		right: -30px;
	}
}

/* 响应式分隔线适配 - 992px以下 */
@media (max-width: 992px) {
	.product-item:nth-child(1)::after,
	.product-item:nth-child(2)::after {
		right: -20px;
		height: 60px;
	}
}

/* 响应式分隔线适配 - 768px以下 */
@media (max-width: 768px) {
	.product-item:nth-child(1)::after,
	.product-item:nth-child(2)::after {
		right: -15px;
		height: 50px;
	}
}

/* 响应式分隔线适配 - 576px以下（垂直布局） */
@media (max-width: 576px) {
	.product-item:nth-child(1)::after,
	.product-item:nth-child(2)::after {
		/* 水平布局变为垂直布局，隐藏水平分隔线 */
		display: none;
	}

	/* 为垂直布局添加垂直分隔线 */
	.product-item:nth-child(1),
	.product-item:nth-child(2) {
		position: relative;
		padding-bottom: 30px;
	}

	.product-item:nth-child(1)::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 80px;
		height: 1px;
		background-color: #ddd;
	}

	.product-item:nth-child(2)::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 80px;
		height: 1px;
		background-color: #ddd;
	}
}

.product-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-icon img {
	height: 90px;
}

.product-title {
  margin-top: 20px;
	font-size: 24px;
	color: #333;
	font-weight: 500;
}

/* 合规性部分样式 */
.compliance-section {
	background-color: #fff;
	padding-bottom: 80px;
}

.compliance-section .container {
	max-width: 1450px;
	margin: 0 auto;
}

.compliance-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 80px;
  margin-top: 80px;
}

.compliance-text {
	flex: 1;
}

.compliance-text p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

.compliance-text-image {
	margin-top: 20px;
	width: 100%;
  display: flex;
  justify-content: center;
}

.compliance-text-image img {
	width: 100%;
	height: auto;
	max-width: 100%;
}
.image_small img {
  width: 10% !important;
  height: auto;
}

.compliance-image {
	flex: 1;
	max-width: 700px; /* 进一步加大图片尺寸 */
	overflow: hidden; /* 确保图片放大时不会超出容器 */
}

.compliance-image img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease; /* 添加过渡效果 */
}

.compliance-image img:hover {
	transform: scale(1.05); /* 鼠标悬停时图片略微放大 */
}

.compliance-certifications {
	text-align: center;
}

.compliance-title {
	font-size: 28px;
	font-weight: 700;
	color: #007ac9;
	margin-bottom: 20px;
}

.small-black-title {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-bottom: 15px;
}

.compliance-paragraph {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	max-width: 800px;
	margin: 0 auto 40px;
}

.certification-logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.cert-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 合规性下方新增图片样式 */
.compliance-extra-image {
	margin-top: 60px;
	max-width: 100%;
	text-align: center;
}

.compliance-extra-image img {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.compliance-extra-image img:hover {
	transform: scale(1.05);
}

.cert-logo img {
	width: 80px;
	height: 80px;
	margin-bottom: 10px;
	object-fit: contain;
}

.cert-logo span {
	font-size: 14px;
	color: #333;
}

/* 合规性部分响应式设计 */
@media (max-width: 1200px) {
	.compliance-content {
		gap: 40px;
	}
	
	.compliance-title {
		font-size: 26px;
	}
	
	.small-black-title {
		font-size: 18px;
	}
}

@media (max-width: 992px) {
	.compliance-section {
		padding: 60px 0;
	}
	
	.compliance-content {
		flex-direction: column;
		gap: 30px;
	}
	
	.compliance-text,
	.compliance-image {
		max-width: 100%;
	}
	
	.compliance-title {
		font-size: 24px;
	}
	
	.small-black-title {
		font-size: 17px;
	}
	
	.compliance-paragraph {
		font-size: 15px;
	}
	
	.certification-logos {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.compliance-section {
		padding: 50px 0;
	}
	
	.compliance-title {
		font-size: 22px;
	}
	
	.small-black-title {
		font-size: 16px;
	}
	
	.cert-logo img {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 576px) {
	.compliance-section {
		padding: 40px 0;
	}
	
	.compliance-content {
		margin-bottom: 40px;
	}
	
	.compliance-title {
		font-size: 20px;
	}
	
	.small-black-title {
		font-size: 15px;
	}
	
	.compliance-extra-image {
		margin-top: 40px;
	}
	
	.compliance-text-image {
		margin-top: 15px;
	}
	
	.compliance-paragraph {
		font-size: 14px;
		margin-bottom: 30px;
	}
	
	.certification-logos {
		gap: 15px;
	}
	
	.cert-logo img {
		width: 60px;
		height: 60px;
	}
	
	.cert-logo span {
		font-size: 12px;
	}
}

/* 联系我们横幅样式 */
.contact-banner-section {
	background-color: #ff9a00;
	padding: 30px 0;
}

.contact-banner-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.contact-banner-icon {
	flex-shrink: 0;
}

.contact-banner-text {
	font-size: 20px;
	color: white;
	font-weight: 500;
	margin: 0;
}

.contact-banner-button {
	background-color: #007ac9;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.contact-banner-button:hover {
	background-color: #005a8c;
	color: white;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.contact-banner-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.contact-banner-text {
		font-size: 18px;
	}
	
	.contact-banner-button {
		padding: 10px 25px;
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.contact-banner-section {
		padding: 25px 0;
		margin: 30px 0;
	}
	
	.contact-banner-text {
		font-size: 16px;
	}
}

/* 环保理念部分样式 */
.green-concept-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.concept-image {
	position: relative;
	width: 100%;
	height: 600px;
}

.concept-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.concept-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.concept-content {
	max-width: 1200px;
	padding: 0 30px;
}

.concept-text {
	color: white;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.4;
}

.concept-paragraph {
	color: white;
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
	max-width: 800px;
}

/* 产品展示和环保理念的响应式设计 */
@media (max-width: 1200px) {
	.product-grid {
		gap: 60px;
	}
	.concept-text {
		font-size: 30px;
	}
}

@media (max-width: 992px) {
	.product-section {
		padding: 60px 0;
	}
	.product-grid {
		gap: 40px;
	}
	.product-icon {
		width: 100px;
		height: 100px;
	}
	.product-title {
		font-size: 20px;
	}
	.concept-image {
		height: 500px;
	}
	.concept-text {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.product-grid {
		gap: 30px;
	}
	.product-icon {
		width: 80px;
		height: 80px;
	}
	.product-title {
		font-size: 18px;
	}
	.concept-image {
		height: 400px;
	}
	.concept-text {
		font-size: 20px;
	}
	.concept-paragraph {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.product-section {
		padding: 40px 0;
	}
	.product-grid {
		flex-direction: column;
		gap: 30px;
	}
	.concept-image {
		height: 300px;
	}
	.concept-text {
		font-size: 18px;
	}
}

/* 页脚样式 - 手写兼容样式，移除Bootstrap依赖 */
footer {
	background: #141519;
	padding-top: 60px;
	padding-bottom: 30px;
	width: 100vw;
	margin: 0;
	overflow-x: hidden;
}

/* 移除Bootstrap容器限制，使用自定义容器，并添加左右内边距 */
footer > .container {
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

/* 使用Flexbox布局实现100vw横向排列，每项长度由内部元素决定 */
footer .row {
	display: flex !important;
	flex-direction: row;
	justify-content: center;
	gap: 180px;
	margin: 0 !important;
	width: 100%;
	padding: 0;
}

/* 页脚列样式 - 长度由内部元素决定 */
footer .col-md-3 {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	padding: 0 !important;
	display: flex;
	align-items: flex-start;
}

/* 统一的列内容容器 - 默认上下居中对齐 */
.footer-column-content {
	padding: 10px 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: auto;
}

/* 联系方式和关注品牌监测平台 - 上下对齐，左右靠左对齐 */
.col-md-3:nth-child(3) .footer-column-content,
.col-md-3:nth-child(4) .footer-column-content,
.col-md-3:nth-child(5) .footer-column-content {
	align-items: flex-start;
	text-align: left;
}

/* 页脚标题 - 统一标题样式 */
.footer-title {
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	text-align: center;
  height: 60px;
}

.footer-title-diff {
  text-align: left !important;
}

/* 链接列表 - 关于我们和业务介绍 */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: center;
}

.about-us-links, .business-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

/* 链接点击动画 */
.footer-link-item {
	color: #b0b0b0;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	position: relative;
	padding: 2px 0;
	line-height: 1.4;
}

.footer-link-item::before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #ff6b6b;
	transition: width 0.3s ease;
}

.footer-link-item:hover {
	color: #ffffff;
	transform: translateX(5px);
}

.footer-link-item:hover::before {
	width: 100%;
}

/* 联系我们 */
.contact-info {
	margin-top: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* 确保联系地址与联系方式电话元素持平对齐 */
.contact-phone,
.contact-address {
	margin-top: 0;
	padding-top: 0;
}

.contact-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	width: 100%;
	flex-wrap: wrap;
	box-sizing: border-box;
	max-width: 100%;
}

.contact-phone,
.contact-address {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.contact-phone p,
.contact-address p {
	color: #b0b0b0;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 3px;
}

.contact-phone img,
.contact-address img {
	width: 24px;
  height: 24px;
  margin-bottom: 13px;
}

/* 二维码容器 */
.qrcode-container {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 0;
	width: 100%;
}

.qrcode-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.qrcode-image {
	width: 80px;
	height: 80px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 5px;
	background-color: white;
	border-radius: 4px;
	object-fit: cover;
}

.qrcode-text {
	color: #ffffff;
	font-size: 14px;
	margin-top: 14px;
	text-align: center;
}

/* 页脚底部 */
.footer_bottom {
  width: 100%;
  height: 98px;
  background: #333538;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
}