.page-list {
  text-align: center;
  color: #666;
  width: 100%;
  height: 31px;
  clear: both;
  margin: 10px auto;
}
.page-list a {
  color: #666;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  background: #F7F7F7;
  display: inline-block;
  text-decoration: none;
}
.page-list a:hover,
.page-list > b {
  color: #ffffff;
  background: #09A183;
}
.page-list > b {
  display: inline-block;
  padding: 5px 10px;
}
.page-list a.curPage {
  color: #09A183;
  font-weight: bold;
}

/*输入框样式*/
.xc-input {
  box-sizing: border-box;
  margin: 0;
  padding: 4px 11px 4px 26px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  width: 100%;
  height: 32px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: all 0.3s;
}
.xc-input:focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
/*按钮样式*/
.xc-button {
  line-height: 1.5;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.65);
  width: 100%;
  border: 1px solid #d9d9d9;
  background-color: #fff;
}
.xc-button:hover {
  color: #1890ff;
  background-color: #fff;
  border: 1px solid #1890ff;
}
.xc-button:focus {
  outline: 0;
}
/*多选框*/
.xc-checkbox {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.65);
  list-style: none;
  position: relative;
  top: -0.09em;
  white-space: nowrap;
  vertical-align: middle;
  outline: 0;
  cursor: pointer;
  width: 14px;
  height: 14px;
}

/*输入块样式*/
.input-block {
  position: relative;
  color: #d9d9d9;
  margin-bottom: 20px;
}
.input-block .icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
  position: absolute;
  margin-left: 8px;
  margin-top: 8px;
}
/*按钮块样式*/
.button-block {
  position: relative;
  color: #d9d9d9;
  margin-bottom: 10px;
}
.button-block .xc-button {
  color: #fff;
  background-color: #1890ff;
  border: 1px solid #1890ff;
}
.button-block .xc-button:hover {
  color: #fff;
  background-color: #40a9ff;
  border: 1px solid #1890ff;
}
/*多选框*/
.input-checkbox {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  position: relative;
  margin-bottom: 20px;
}
.input-checkbox .checkbox {
  margin-top: 5px;
  display: inline-block;
  vertical-align: top;
}
.input-checkbox .checkbox input {
  display: inline-block;
  vertical-align: top;
}
.input-checkbox .checkbox span {
  display: inline-block;
  vertical-align: top;
}
/*错误信息*/
.error {
  color: red;
  font-size: 14px;
  display: none;
}
.required::before {
  content: '*';
  color: red;
}

.footer {
  height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.footer a {
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
}
.footer .copyright {
  display: inline-block;
  margin-top: 10px;
}

