
/* 遮罩层 */
    .modal-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none; /* 默认隐藏 */
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* 弹窗容器 */
    .modal-box {
      width: 400px;
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      position: relative;
    }

    /* 关闭按钮 */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 24px;
      height: 24px;
      line-height: 24px;
      text-align: center;
      cursor: pointer;
      font-size: 20px;
      color: #999;
    }
    .close-btn:hover {
      color: #333;
    }

.modalmask-title{
	text-align: center;
	margin-bottom: 30px;
}

.modalmask-title .title-48{
	font-weight: bold;
	color: #000;
	font-size: 36px;
}


.modalmask-mess-box .box{
	padding: initial;
}

.modalmask-mess-box .box input{
	background-color: #f5f5f5;
	border: 1px solid rgba(0, 0, 0, .2);
}

.modalmask-mess-box .box textarea{
	background-color: #f5f5f5;
	border: 1px solid rgba(0, 0, 0, .2);
}

.product-mess-box .box {
	padding: 10px 10px 10px;
}

.product-mess-box .input {
	margin-bottom: 16px;
	margin-top: 0;
	width: 92%;
	padding: 0 4%;
	height: 48px;
	font-size: 16px;
	color: #333;
}

.product-mess-box .textarea {
	margin-top: 0;
	width: 92%;
	padding: 10px 4%;
	font-size: 16px;
	color: #333;
	height: 96px;
	font-family: Arial, Helvetica, sans-serif;
}

.product-mess-box .submit {
	margin-top: 20px;
}

.product-mess-box .submit a{
	width: 100%;
	background-color: #ce0f1a;
	height: 48px;
	line-height: 48px;
	color: #fff;
	font-size: 16px;
	display: block;
	text-align: center;
}



 /* 侧边浮窗容器 - 统一管理所有浮窗元素 */
        .sidebar-float {
            position: fixed;
            right: 30px;
            bottom: 50px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        /* 通用按钮样式 */
        .float-btn {
            width: 50px;
            height: 50px;
            background-color: #ce0f1a;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            border: none;
            outline: none;
        }

        .float-btn:hover {
            background-color: #ce0f1a;
            transform: scale(1.1);
			color: white;
        }

        /* 返回顶部按钮 */
        .back-to-top {
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
		
		 /* 电话浮窗 */
		 
		 .wechat-qrcode.tel-qrcode{
			 width: 150px;
			 height: 54px;
			 background-color: #fff;
			  border-radius: 8px;
			  padding: 10px 15px;
			  text-align: left;
			  bottom: -8px;
		 }
		 
		 .wechat-qrcode.tel-qrcode span{
		 			 color: #333;
		 					  font-size: 14px;
		 					 line-height: 24px !important;
							 display: block;
							  margin-bottom: 5px;
		 }
		 
		 .wechat-qrcode.tel-qrcode p{
		 			 color: #ce0f1a;
					  font-size: 22px;
					  font-weight: bold;
					 line-height: 22px !important;
					 margin-bottom: 0;
					  text-align: left;
		 }
		 
		 

        /* 微信二维码浮窗 */
        .wechat-float {
            position: relative;
        }
		
        .wechat-qrcode {
            position: absolute;
            right: 60px;
            bottom: 0;
            width: 130px;
            height: 160px;
            background-color: white;
            border-radius: 8px;
            padding: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .wechat-qrcode img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        .wechat-qrcode p {
            text-align: center;
            font-size: 14px;
            color: #333;
            margin-bottom: 10px;
			height: auto;
			line-height: 36px !important;
        }

        .wechat-float:hover .wechat-qrcode {
            opacity: 1;
            visibility: visible;
            right: 60px;
        }
		
		