/* 全局样式 */
body {
	margin: 0;
	padding: 0;
	/*background-image: url("../img/HTT6.jpg");*/
	background-size: cover;
	background-color: rgb(255, 247, 249); /* 设置背景颜色透明度，最后一个参数为透明度值，取值范围为0（完全透明）到1（完全不透明） */
	font-family: Arial, sans-serif;

}
table {
	border-collapse: collapse;
	margin-bottom: 10px;
}
th, td {
	text-align: left;
	padding: 5px;
	border-bottom: 1px solid #ddd;
}

th {
	/* background-color: #4CAF50; */
	color: white;
}
.table2 th {
	background-color: #4CAF50;
}
.table3 th {
	background-color: #4CAF50;
}
.table1 th {
	background-color: #999;
}

.table2 {
	width: 100%;
}

.b_c_one{
	background-color: #f8f8f8;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.table1 {
	width: 50%;
	margin: 10px auto;
}
h1{
	text-align: center;
}
h2{
	text-align: center;
}




/* 表单容器样式 */
.form-container {
	text-align: center;
	/*max-width: 300px;*/
	margin: 50px auto;
	padding: 5px;
	background-color: #f8f8f8;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.div-one{
	text-align: center;
}

.form-container-esc {
	text-align: center;
	/*max-width: 300px;*/
	margin: 0 auto;
	padding: 0;
	/*background-color: #f8f8f8;*/
	/*border-radius: 8px;*/
	/*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*/
}

/* 表单标题样式 */
.form-title {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
}

/* 表单元素样式 */
.form-group {
	margin: 0 auto;
	margin-bottom: 25px;
}

label {
	/*display: block;*/
	display: inline;
	font-size: 16px;
	font-weight: bold;
	color: #555;
	margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
	/*width: 150px;*/
	padding: 12px 16px;
	margin: 0 auto;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: #66afe9;
	box-shadow: 0 0 8px rgba(102, 175, 233, 0.5);
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	margin: 10px auto;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 32px;
}

select option {
	background-color: #fff;
	color: #333;
	padding: 8px 12px;
}

select option:hover {
	background-color: #f2f2f2;
}

textarea {
	height: 120px;
	resize: vertical;
}

/* 提交按钮样式 */
.form-submit{
	display: inline;
	/*width: 50%;*/
	padding: 14px 20px;
	margin: 10px auto;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #4CAF50;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.form-submit2{
	outline: none; /* 鼠标点击时去除元素的默认轮廓样式 */
	/*display: block;*/
	display: inline;
	/*display: inline-block; !* 将元素显示为内联块元素，使其在一行内水平排列，同时可以设置宽高 *!*/
	/*width: 50%;*/
	padding: 7px 10px; /* 设置元素内边距，上下为 15px，左右为 10px */
	margin: 0 auto; /* 设置元素外边距，垂直方向为 5px，水平方向自动居中 */
	font-size: 18px; /* 设置字体大小为 18像素 */
	font-weight: bold; /* 设置字体加粗 */
	color: #fff; /* 设置文本颜色为白色 */
	background-color: #00a0af; /* 设置背景颜色为深蓝绿色 */
	border: none; /* 去除元素边框 */
	border-radius: 4px; /* 设置圆角边框半径为 4像素 */
	cursor: pointer; /* 鼠标悬停时显示手型指针 */
	transition: background-color 0.3s ease; /* 设置背景颜色变化的过渡效果，持续时间为 0.3秒，缓动效果为 ease */
}
.popup-form {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #f9f9f9;
	padding: 20px;
	border: 1px solid #ccc;
	z-index: 1000;
	max-width: 400px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-submit-input{
	display: inline;
	/*width: 50%;*/
	padding: 14px 20px;
	margin: 10px auto;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #fbb4bf;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}



/* 提交按钮样式 */
.form-esc {
	/*display: flex;*/
	align-items: center;
	padding: 7px 10px;
	margin: 0 auto;
	margin-top: 10px;
	font-size: 15px;
	color: #fff;
	background-color: #00ca87;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}


.form-submit:hover {
	background-color: #45a049;
}

.form-submit2:hover {
	background-color: #007077;
}


/* 响应式样式 */
@media (max-width: 767px) {
	.form-container {
		padding: 20px;
		max-width: 300px;
	}
	label {
		display: block;
	}

	.form-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	input[type="email"],
	input[type="password"],
	input[type="email"],
	select,
	textarea {
		width: 100%;
		padding: 10px 14px;
		font-size: 14px;
	}
	input[type="text"],
	input[type="number"]{
		width: 90%;
		padding: 10px 14px;
		font-size: 14px;
	}

	.form-submit {
		display: block;
		width: 50%;
		font-size: 16px;
		padding: 12px 18px;
	}
	.form-submit2 {
		display: block;
		width: 50%;
		font-size: 14px;
		padding: 10px 15px;
	}
	.titleone{
		/*font-size: 0.9rem;*/
	}
}





@media all and (max-width: 767px) {
	body{
	    font-size: 0.75rem;
	}
	.table1 {
	width: 100%;
	}
}