* {
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}
.main {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  font-size: 15px;
  line-height: 1.5;
  font-family: "微软雅黑";
  color: #606266;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
}
.select {
  position: absolute;
  width: 130px;
  top: 80px;
  right: 10px;
  box-sizing: border-box;
  font-size: 14px;
  border: 1px solid #b3d8ff;
  cursor: pointer;
  background: #ecf5ff;
  color: #409eff;
}
.select-msg {
  padding: 5px 1px 5px 4px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.select-check::after {
  position: absolute;
  content: '';
  border-top: 12px solid #409eff;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  right: 3px;
  top: 12px;
}
.select-nocheck::after {
  position: absolute;
  content: '';
  border-bottom: 12px solid #409eff;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  right: 3px;
  top: 12px;
}
.select ul {
  width: 100%;
  text-align: center;
  display: none;
  overflow: hidden;
  position: relative;
}
.select ul li {
  list-style-type: none;
  font-size: 16px;
  border-top: 1px solid #b3d8ff;
  padding: 5px 1px 5px 4px;
  box-sizing: border-box;
  overflow: hidden;
}
/* .select ul li:nth-child(1) {
  border-top: none;
} */
.select ul li:hover {
  background: #409eff;
  color: #fff;
}
.title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 100px;
}
.box {
  margin-top: 30px;
  padding: 20px;
}
p {
  margin-top: 15px;
  font-weight: bold;
}
.strong {
  font-weight: 700;
  color: #000;
}
table{
	border-collapse:collapse;
	width:70%;
  table-layout: fixed;
}
td{
	border: 1px solid #555;
  text-align: left;
}
th{
	border: 1px solid #555;
  text-align: left;
}
a {
  color: #409eff;
  text-decoration: none;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 75px !important;
  }
}
