.zebra-table-wrapper {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Microsoft Yahei', 'PingFang SC', Arial, sans-serif;
}
.zebra-table-wrapper * {
  box-sizing: border-box;
}
.zebra-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 13px;
}
.zebra-table-wrapper table thead {
  background: #f5f5f5;
}
.zebra-table-wrapper table thead tr th {
  padding: 8px 10px 10px;
  font-weight: 700;
  color: #222;
  line-height: 18px;
}
.zebra-table-wrapper table thead tr th:nth-child(1) {
  width: 40%;
}
.zebra-table-wrapper table thead tr th:nth-child(2) {
  width: 20%;
}
.zebra-table-wrapper table tbody tr:nth-child(2n) {
  background: #f9f9f9;
}
.zebra-table-wrapper table tbody tr td {
  padding: 9px 10px;
  text-align: left;
  color: #222;
  line-height: 18px;
}
.zebra-table-wrapper table tbody tr td div {
  margin-bottom: 4px;
}
.zebra-table-wrapper table tbody tr td div:nth-last-child(1) {
  margin-bottom: 0;
}
.zebra-table-wrapper table tbody tr td a {
  color: #005bac;
}

.zebra-table-wrapper table tbody tr td p {
  margin: 0 0 4px 0;
}

.zebra-table-wrapper table tbody tr td p:nth-last-child(1) {
  margin: 0;
}



.search-form {
  display: flex;
  width: 360px;
  border-radius: 4px;
  margin-bottom: 40px;
  overflow: hidden;
  font-size: 18px;
  float: right;
}

.search-form input {
  border: none;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding: 8px 24px 8px 16px;
  flex: 1;
  outline: none;
  border: 1px solid #ced4da;
  border-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.search-form button {
  outline: none;
  border: none;
  padding: 0 18px 0 20px;
  cursor: pointer;
  background: #005bac;
  color: #fff;
  letter-spacing: 2px;
}

.search-form button:hover {
  opacity: 0.95;
}

.search-form button:active {
  opacity: 1;
}