.btn {
	display: inline-block;
	/* 设置为行内块元素 */
	padding: 6px 6px;
	/* 设置内边距 */

	margin-right: 5px;
	margin-top: 5px;
	/* 设置右侧外边距 */
	background-color: #ccc;

	/* 设置背景颜色 */
	border: none;
	/* 去掉边框 */
	border-radius: 5px;
	/* 设置圆角 */
	color: #fff;
	/* 设置文字颜色 */
	text-align: center;
	/* 文字居中 */
	text-decoration: none;
	/* 去掉下划线 */
	font-size: 15px;
	/* 设置字体大小 */
}


.button-container {
	display: flex;
	flex-wrap: wrap;
}

button {
	width: 30px;
	margin: 1px;
}

hr {
	border: none;
	border-top: 1px solid #333;
	height: 1px;
	margin: 10px 0;
	margin-top: 10px;
}


table {

	border-collapse: collapse;
	/* 去掉单元格之间的间隙 */
	font-family: "Source Han Sans", "Microsoft Yahei", sans-serif;
	position: relative;
	border-collapse: collapse;
}

/* 伪元素在表格底部画一条虚线 */
/* table::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	border-bottom: 1px dashed #ccc;
}
 */

td,
th {
	vertical-align: top;
	border: 1px dashed #ccc;
	/* 横向的虚线 */
	border-top: none;
	border-left: none;
	/* 左侧无边框 */
	border-right: none;
	/* 右侧无边框 */
	/* 	border-bottom: none; */
	/* 底部无边框 */
	padding: 1px;
	/* 单元格内边距 */
	font-size: 16px;
	font letter-spacing: 2px;

}


#btnContainer1 {

	display: flex;
	/* 使用flex布局 */
	justify-content: center;
	/* 水平居中对齐 */
	align-items: center;
	/* 垂直居中对齐 */


}

#btnContainer1>* {

	display: inline-block;
	/* 设置为行内块元素 */
	text-align: center;
	/* 文字水平居中 */
	vertical-align: middle;
	/* 垂直居中 */

}

/* 
 dt a, dt span, dt h3 {
   display: inline;
   margin-right: 10px;
 }
 
 dt h3 {
   font-size: 18px;
   font-weight: bold;
 }
 */

/* .Pic_divs {

	float: left;
	flex: 1;
	margin: 6px;
	width: 15%
}


.New_divs {

	float: left;
	flex: 1;
	margin: 6px;
	width: 82%
}

 */
/* 如果设备宽度小于600px，则应用以下样式 */
@media only screen and (max-width: 600px) {
	/* 在这里设置适合手机的样式 */

	#table-container {
		overflow: auto;
		width: 100%;
		float: left;
		margin-left: 6%;
		margin-top: 50px;
		background-color: white
	}

}


.Pic_divs {

	float: left;
	
	margin: 6px;
	width: 30%
}


.New_divs {

	float: left;
	
	margin: 6px;
	width: 30%
}

/* 如果设备宽度在600px到1200px之间，则应用以下样式 */
@media only screen and (min-width: 600px) and (max-width: 1200px) {
	/* 在这里设置适合平板电脑的样式 */
}

/* 如果设备宽度大于1200px，则应用以下样式 */
@media only screen and (min-width: 1200px) {

	/* 在这里设置适合PC的样式 */

	#table-container {
		overflow: auto;
		width: 50%;
		float: left;
		margin-left: 25%;
		margin-top: 50px;
		background-color: white
	}








}
