body {
	font-family: Arial, sans-serif;
}
table {
	border-collapse: collapse;
	margin-bottom: 20px;
}
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%;
}

.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);
}

/* 表单标题样式 */
.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"],
select,
textarea {
	/*width: 100%;*/
	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,
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-submit:hover {
	background-color: #45a049;
}


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

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

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

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





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