        .wmgameFooter {
	background:#282a2c;
	font-size:12px;
	font-family:"Microsoft YaHei";
	color:#81868c;
	text-align:center;
	line-height:24px;
	padding:10px 0;
}
.wmgameFooter_healthTitle {
	font-size:14px;
	text-align:center;
}
.wmgameFooter_logo img {
	display:inline-block;
	height:70px;
	margin:0 10px;
}
.wmgameFooter_nav a {
	color:#81868c;
}
.wmgameFooter_nav a:hover {
	color:#FFF;
}
.wmgameFooter_nav span {
	padding:0 6px;
}
.wmgameFooter_navyang {
	position:relative;
	cursor:pointer;
}
#wmgameFooter_navShow {
	position:absolute;
	left:50%;
	z-index:10;
	margin-left:-85px;
	top:20px;
	border:2px solid #393c40;
	width:170px;
	line-height:22px;
	background-color:#303338;
	padding:6px 0;
	color:#f15733;
	display:none;
}
#wmgameFooter_navShow em {
	display:block;
	background:url(/skin/default/images/stel.png) no-repeat 24px center;
	font-family:"Microsoft YaHei";
}
#wmgameFooter_navClose {
	display:block;
	width:12px;
	height:12px;
	position:absolute;
	right:1px;
	top:1px;
	cursor:pointer;
	background:url(/skin/default/images/sclose.png) no-repeat center center;
	background-size:100% auto;
}
.wmgameFooter_infolink {
	padding:0 10px;
}
.wmgameFooter_infolink a {
	color:#81868c;
}
.wmgameFooter_infolink a:hover {
	color:#FFF;
}
.wmgameFooter_infoDiv span {
	padding:0 10px;
}
.wmgameFooter_infoDiv strong {
	font-weight:normal;
	color:#81868c;
}
@media only screen and (max-width:750px) {
	.wmgameFooter {
	position:relative;
	line-height:18px;
	-webkit-text-size-adjust:none;
}
.wmgameFooter_infolink {
	padding:0 10px;
}
.wmgameFooter_logo img {
	height:46px;
}
.wmgameFooter_infoDiv span {
	padding:0 10px;
}
.wmgameFooter_infoDiv span.beian {
	display:block;
}
.wmgameFooter_nav span {
	padding:0 5px;
}
;}

/*右侧悬浮客服*/
._wrap_1facf_1 {
    background: url(../images/community-bg.87d60694.png) no-repeat 0 0;
    background-size: 100% 100%;
    position: fixed;
    right: 0;
    top: 48.5%;
    transform: translateY(-50%);
    transition: transform .2s;
    width: 150px;
    z-index: 9;
}
._content_1facf_36 {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding:10px
}

._content_1facf_36 ._btnImg_1facf_42 {
    cursor: pointer;
    height: 44px;
    margin-top: .1rem;
    width: 110px
}

._content_1facf_36 p {
    margin: 0;
    padding: 0
} 

._content_1facf_36 ._scan_1facf_52 { 
    position: relative
}

._content_1facf_36 ._scan_1facf_52 img {
    height: 110px;
    width: 110px
}

._content_1facf_36 ._scan_1facf_52:after {
    animation: _scan_1facf_52 3s infinite;
    background: #bdd9ff;
    content: "";
    height: .04rem;
    left: 0;
    position: absolute;
    width: 1.3rem
}


        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            height: 200vh; /* 用于测试滚动效果 */
            background-color: #f5f5f5;
        }

        /* 悬浮客服按钮样式 */
        .float-service {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            z-index: 1000;
            /* 保持简单的过渡效果 */
            transition: transform 0.3s ease;
        }

        .float-service img {
            /* 使用图片实际大小，移除所有边框和阴影 */
            width: 100px;
            height: 320px;
            display: block;
            border: none;
            outline: none;
            box-shadow: none;
        }

        .float-service:hover {
            transform: translateY(-50%) scale(1.05);
            /* 移除hover时的阴影 */
            box-shadow: none;
        }

        /* 二维码弹窗样式 */
        .qr-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1100;
        }

        .qr-modal.active {
            display: flex;
        }

        .qr-content {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .qr-image {
            width: 200px;
            height: 200px;
            margin-bottom: 15px;
            border: 2px solid #f0f0f0;
            border-radius: 8px;
            /* 确保图片正确显示 */
            display: block;
            object-fit: cover;
        }

        .qr-title {
            font-size: 18px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 10px;
        }

        .qr-tip {
            font-size: 11px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 10px;
        }

        .qr-desc {
            font-size: 14px;
            color: #666666;
            margin-bottom: 20px;
        }

        .close-btn {
            background-color: #07C160;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }

        .close-btn:hover {
            background-color: #06b355;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .float-service {
                /* 在移动端仍保持图片实际大小 */
                width: auto;
                height: auto;
                right: 10px;
            }

            .qr-image {
                width: 150px;
                height: 150px;
            }

            .qr-content {
                padding: 15px;
            }
        }