* {
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #f2f5f7;
}
.nav {
  width: 100vw;
  height: 50px;
  padding: 5px;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  background: #1cb877;
  border-bottom: 2px solid #039b4f;
}

.nav > a {
  display: block;
  background: #016d37;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
}
.banner {
  background: #1cb877;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
section {
  margin: 10px auto;
  padding: 20px 0;
  background: #fff;
  width: 100%;
  max-width: 1200px;
  border-radius: 0;
}
.section1 {
  margin: 0px auto;
  padding-bottom: 0;
}

.table-wrap {
  overflow-x: scroll;
}

h1 {
  text-align: center;
  color: #1cb877;
  margin: 5px;
}
h1::before,
h1::after {
  content: "";
  display: inline-block;
  margin: 10px 10px;
  width: 50px;
  border-bottom: 2px dotted #1cb877;
}

::selection {
  background-color: rgb(255, 230, 0);
}

/* 表格 */
table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

tr {
  height: 30px;
  width: 100px;
  /* border: 1px solid #ccc; */
  padding: 20px;
}

th,
td {
  padding: 20px;
  width: calc(100% / 11);
}
tr:nth-child(odd) {
  background-color: #f2f2f2;
}
tr:nth-child(1) {
  background-color: #1cb877;
  color: #f2f2f2;
}
td:nth-child(1) {
  background-color: #1cb877;
  color: #f2f2f2;
}

tr:nth-child(even) > td:nth-child(1) {
  background-color: #11ac6b;
  color: #f2f2f2;
}
/* 搜索 */
.search-box {
  text-align: center;
  border-radius: 20px;
  padding: 20px;
  width: 90%;
  margin: auto;
}
label {
  display: block;
  margin: 10px 0;
}

input,
select {
  border: none;
  padding: 10px;
  width: 240px;
  outline: 2px solid #cdebde;
  margin: 0;
  box-sizing: border-box;
}

/* select {
  width: 257px;
} */

input:focus,
select:focus {
  outline: 2px solid #1cb877;
}

.btn {
  display: inline-block;
  background: #1cb877;
  color: #fff;
  padding: 10px;
  width: 150px;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
}

/* 列表 */
#list {
  padding: 10px;
  margin: 0;
}

#list > li {
  display: block;
  padding: 10px;
  background: #f7f3e1;
  margin: 5px;
  border: 1px solid rgb(235, 228, 198);
  cursor: pointer;
}

td {
  cursor: pointer;
}
tr > td:nth-child(n + 2):hover,
#list > li:hover {
  background: #ddeeee;
}
.last-one {
  flex: 1;
}
/* 其他资源 */
.links {
  text-align: center;
}
.links > a {
  border-radius: 100px;
  display: inline-block;
  width: 30%;
  height: 2rem;
  line-height: 2rem;
  margin: 10px;
  background: #1cb877;
  color: #fff;
  text-align: center;
  transition: all 0.3s;
}

.links > a:hover {
  background: #ff9900;
  border-radius: 20px;
}

.hide {
  display: none !important;
}
