@charset "utf-8";
:root {
  --theme-color: #ff8400;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  word-wrap: break-word;
}

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 16px;
}

ul,
li {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

body,
input,
select,
textarea,
button,
table {
  outline-style: none;
}

body {
  color: #4c4c4c;
  margin: 0;
  word-break: break-all;
}

li img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

figure {
  margin: 0;
}

img,
fieldset {
  border: 0 none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

p {
  margin-bottom: 5px;
}

a {
  color: #4c4c4c;
  text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

button::-moz-focus-inner {
  border: 0 none;
  padding: 0;
}

input {
  border: 1px solid #dbdbdb;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  height: 34px;
  line-height: 32px;
  padding: 0 1rem;
}

::placeholder {
  color: #ccc;
}

input[type="text"],
input[type="password"] {
  background-color: #fff;
  border-color: #dbdbdb;
  padding-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

input[type="file"] {
  background-color: #fff;
  border-color: #bbb;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding-left: 0;
  line-height: 27px;
  overflow: hidden;
}

input[type="radio"],
input[type="checkbox"] {
  width: 0;
  height: 0;
  margin-left: -1px;
  position: absolute;
  left: -1px;
  overflow: hidden;
}

input[type="radio"]+label,
input[type="checkbox"]+label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

input[type="radio"]+label:before,
input[type="checkbox"]+label:before {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #dbdbdb;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
}

input[type="radio"]:checked+label:before,
input[type="checkbox"]:checked+label:before {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="radio"]+label:after,
input[type="checkbox"]+label:after {
  display: block;
  content: '';
  width: 16px;
  height: 9px;
  border: solid #dbdbdb;
  border-width: 0 0 3px 3px;
  position: absolute;
  left: 4px;
  top: 5px;
  transform: rotate(-45deg);
}

input[type="radio"]:checked+label:after,
input[type="checkbox"]:checked+label:after {
  border-color: #fff;
}

input:read-only,
select:disabled {
  background: #f5f5f5;
  color: #555;
}


select {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  height: 34px;
  line-height: 32px;
  margin: 2px auto;
  vertical-align: middle;
}

textarea {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  overflow: auto;
  padding: 2px;
  resize: vertical;
}

button {
  cursor: pointer;
}

form .submit {
  border: none;
  cursor: pointer;
}

.table>thead>tr>th {
  vertical-align: middle;
  text-align: center;
}