.omron-footer {
	padding: 80px 0 30px;
	background-color: #003153;
}

.footer_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.footer_l a {
	color: white;
	margin-right: 46px;
	display: inline-block;
	font-family: "SourceHanSans";
}

.footer_img {
	margin-left: 40px;
}

.footer_img img {
	width: 40px;
	cursor: pointer;
}

.footer_r {
	display: flex;
}

.footer_img:nth-of-type(3) img {
	width: 70px;
}

.footer_img:nth-of-type(4) img {
	width: 30px;
}

/* 二维码悬停效果 */
.qr-hover-container {
	position: relative;
}

.qr-code-popup {
	position: absolute;
	bottom: 60px; /* 在图标上方显示 */
	left: 50%;
	transform: translateX(-50%);
	background: white;
	border: 2px solid #ddd;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
	pointer-events: none;
}

.qr-code-popup::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-top-color: white;
}

.qr-code-popup img {
	width: 120px !important;
	height: 120px !important;
	display: block;
	border-radius: 4px;
}

.qr-hover-container:hover .qr-code-popup {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-5px);
}


/* 移动端适配 */
.mbomron-footer {
	background: #013153;
	padding: .4rem 0;
}

.mb_footer_row1{
	display: flex;
	justify-content: center;
	color: white;
}
.mb_footer_row1 a{
	color: white;
}

.mb_footer_row2{
	display: flex;
	justify-content: space-around;
	margin-top: .4rem;
	align-items: center;
}

.mb_footer_row2 img{
	width: auto;
	height: .5rem;
}
.mb_footer_row2 .footer_img{
	margin-left: 0;
} 

.mb_footer_row2 .footer_img:nth-of-type(3) img {
	width: auto;
	height: .3rem;
}

.mb_footer_row2 .footer_img:nth-of-type(4) img {
	width: auto;
	height: .6rem;
}

/* 移动端二维码弹出样式 */
.mb_footer_row2 .qr-hover-container {
    position: relative;
}

.mb_footer_row2 .mb_qr-code-popup {
    position: absolute;
    bottom: 40px; /* 在图标上方显示 */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.mb_footer_row2 .mb_qr-code-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: white;
}

.mb_footer_row2 .mb_qr-code-popup img {
    width: 100px !important;
    height: 100px !important;
    display: block;
    border-radius: 4px;
}

/* 移动端点击显示二维码 */
.mb_footer_row2 .qr-hover-container.active .mb_qr-code-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}