.bluebutton {
	background-color:#068bfb;
	border-radius:16px;
	/* border:1px solid #4661d9; */
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	font-weight:bold;
	padding: 8px 31px;
	text-decoration:none;
	margin-top: 5px;
	margin-bottom: 5px;
}
.bluebutton:hover {
	background-color:#4661d9;
}
.bluebutton:active {
	position:relative;
	top:1px;
}
.webdiv {
width:1024px;
height:1180px;
margin:0 auto;


}

.arediv {
	width:1024px;
	margin:0px auto;
	background-color: #ffffff;
	border-radius: 25px;
	padding: 20 20px;

	}




.printerban{
	display: flex;
	justify-content: space-between;
	margin: 20 0 0 0px;
}

.printertitle{
	text-align: left;
	width: 100%;
}
.printers{
 	text-align: right; 
	width: 100%;
	height: 30px;
	padding-right: 55px;
}

.onedowndiv{
	width: 1024px;
	height: 50px;
}

.downbuttondiv{
	width: 200px;
	/* height: 50px; */
	margin-top: -3px;
	float: left;
	text-align: center;
}
.downtxtdiv{
	text-align: left;
	width: 750px;
	height: 24px;
	/* border:3px solid rgb(43, 32, 172); */
	float: left;
	padding: 5px 10px;
	border-radius: 15px;
	background-color: rgb(210, 208, 208);
	margin-top: 5px;
	margin-bottom: 5px;
}
.guanwang{
	border-collapse: collapse;
	word-wrap: break-word;
	word-break: break-word;
	list-style: none;
	font: 18px/22px Arial,sans-serif;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	font-style: normal;
	color: #fff;
	overflow: hidden;
	font-size: 12px;
	line-height: 18px;
	height: 18px;
	font-weight: 400;
	background-color: #068bfb;
	border-radius: 4px;
	padding: 0 6px;
	margin: 0 10px;
	cursor:pointer;
	
}


.inputText{
	font-size: 12px;
	width: 150px;
	height: 30px;
	/* outline: none;
	border: none;
	border-bottom: 1px solid #dcd4fe; */
	color: #2b2b33;
	margin-bottom: 0px;
	padding: 4px 0;
	display: inline-block;

}

.i_buttonText{
	background-color:#068bfb;
	border-radius:16px;
	/* border:1px solid #4661d9; */
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:12px;
	font-weight:bold;
	padding: 5px 15px;
	text-decoration:none;
	margin-top: 0px;
	margin-bottom: 0px;

}


/*下方是微信下载弹窗引导所用到的css*/

#overlay {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* 半透明黑色背景 */
    z-index: 1000; /* 确保覆盖层在最上面 */
}

#overlay .contentyd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 80%; /* 调整宽度以适应内容 */
    height: 80%; /* 调整高度以适应内容 */
    display: flex;
    flex-direction: column; /* 改为列方向 */
    overflow-y: auto; /* 如果内容超过高度，允许滚动 */
}

#overlay .image {
    flex: 1;
    margin-bottom: 20px; /* 图片与文字之间留空隙 */
    text-align: center;
}

#overlay .image img {
    max-width: 100%; /* 确保图片不会超出容器 */
    border-radius: 20px; /* 圆角图片 */
    border-width: 5px;
    border-style: solid;
    border-color: rgb(139, 139, 139);
}

#overlay .text {

    text-align: center; /* 文字两端对齐 */
}

#overlay .close {
    position: absolute;
    top: 10px;
    right: 10px; /* 更靠近右上角 */
    width: 40px; /* 增加宽度 */
    height: 40px; /* 增加高度 */
    line-height: 40px; /* 文本垂直居中 */
    text-align: center;
    font-size: 24px; /* 增加字体大小 */
    color: #fff;
    background-color: #333;
    cursor: pointer;
    border-radius: 50%; /* 圆形按钮 */
}

/*上方是微信下载弹窗引导所用到的css*/