 @media screen and (min-width: 751px) {

 	/* 重构浮动容器 */
 	.float-container {
 		position: fixed;
 		right: 20px;
 		top: 18%;
 		transform: translateY(0);
 		display: flex;
 		flex-direction: column;
 		gap: 20px;
 		z-index: 999;
 	}

 	/* 主要功能菜单样式 */
 	.floatOne {
 		width: 60px;
 	}

 	.floatOne .float-list {
 		width: 60px;
 		background: linear-gradient(180deg, #419EFF 0%, #0567FE 100%);
 		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07);
 		border-radius: 30px;
 		padding: 15px 0px;
 	}

 	.floatOne .float-item {
 		height: 20%;
 		align-items: center;
 		cursor: pointer;
 		display: flex;
 		flex-direction: column;
 		justify-content: space-evenly;
 		position: relative;
		margin-bottom: 10px;
 	}

 	.floatOne .float-item:last-child {
 		margin-bottom: 0;
 	}

 	.floatOne .boxPhone {
 		align-items: center;
 		display: flex;
 		flex-direction: column;
 		justify-content: center;
 	}

 	.floatOne .online_contact {
 		display: flex;
 		justify-content: center;
 		align-items: center;
 		position: relative;
 	}

 	.floatOne .online_contact img {
 		height: 26px;
 		width: 26px;
 	}

 	.floatOne .txt {
 		font-weight: 500;
 		font-size: 12px;
 		color: #FFFFFF;
 		line-height: 27px;
 	}

 	/* 二维码弹出框样式 */
 	.qr-popover {
 		position: absolute;
 		left: -170px;
 		top: 50%;
 		transform: translateY(-50%);
 		width: 168px;
 		height: 189px;
 		opacity: 0;
 		visibility: hidden;
 		transition: all 0.3s ease;
 		z-index: 1000;
 		background-image: url('../assets/img/right-float/right-floatbj.png');
 		background-repeat: no-repeat;
 		background-size: 100% 100%;
 		display: flex;
 		flex-direction: column;
 		justify-content: flex-start;
 		align-items: center;

 	}

 	.float-item:hover .qr-popover {
 		left: -170px;
 		opacity: 1;
 		visibility: visible;
 	}

 	.qr-code {
 		margin-top: 10px;
 		width: 140px;
 		height: 140px;
 	}

 	.qr-text {
 		font-weight: 400;
 		font-size: 12px;
 		color: #323232;
 		line-height: 25px;
 		text-align: center;
 	}

 	.phone {
 		position: absolute;
 		left: -175px;
 		top: 50%;
 		transform: translateY(-50%);
 		width: 175px;
 		height: 85px;
 		opacity: 0;
 		visibility: hidden;
 		transition: all 0.3s ease;
 		z-index: 1000;
 		background-image: url('../assets/img/right-float/right-floatbj.png');
 		background-repeat: no-repeat;
 		background-size: 100% 100%;
 		display: flex;
 		align-items: center;
 		justify-content: center;
 		flex-direction: column;
 	}

 	.float-item:hover .phone {
 		left: -175px;
 		opacity: 1;
 		visibility: visible;
 	}

 	.phone-text {
 		font-weight: 600;
 		font-size: 18px;
 		color: #323232;
 		line-height: 25px;
 		text-align: center;
 	}

 	/* 辅助功能菜单样式 */
 	.floatTwo {
 		width: 60px;
 	}

 	.floatTwo .float-list {
 		width: 60px;
 		background: #FFFFFF;
 		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07);
 		border-radius: 30px;
 		padding: 15px 0px;
 	}

 	.floatTwo .float-item {
 		height: 50%;
 		align-items: center;
 		cursor: pointer;
 		display: flex;
 		flex-direction: column;
 		justify-content: space-evenly;
		margin-bottom: 10px;
 	}
	.floatTwo .float-item:last-child {
		margin-bottom: 0;
	}

 	.floatTwo .boxPhone {
 		align-items: center;
 		display: flex;
 		flex-direction: column;
 		justify-content: center;
 	}

 	.floatTwo .online_contact {
 		display: flex;
 		justify-content: center;
 		align-items: center;
 		position: relative;
 	}

 	.floatTwo .online_contact img {
 		height: 26px;
 		width: 26px;
 	}

 	.floatTwo .txt {
 		font-weight: 500;
 		font-size: 12px;
 		color: #323232;
 		line-height: 27px;
 	}

 	/* 返回顶部按钮样式 */
 	.floatThree {
 		width: 60px;
 		opacity: 0;
 		visibility: hidden;
 		transition: opacity 0.3s ease, transform 0.3s ease;
 	}

 	.floatThree .float-list {
 		width: 60px;
 		height: 60px;
 		background: #FFFFFF;
 		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07);
 		border-radius: 50%;
 		cursor: pointer;
 	}

 	.floatThree .float-item {
 		height: 100%;
 		align-items: center;
 		display: flex;
 		flex-direction: column;
 		justify-content: space-evenly;
 	}

 	.floatThree img {
 		transition: transform 0.3s ease;
 	}

 	/* .floatThree:hover img {
                transform: rotate(180deg);
            } */
 }