@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: "Microsoft YaHei", "PingFang SC", arial, helvetica, "Microsoft Sans Serif", sans-serif;
  cursor: url(../images/cursor_01.png), auto;
}

ul li {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  background-color: transparent;
  cursor: url(../images/cursor_02.png), auto;
}

a:hover, a:active {
  outline: none;
}

img {
  outline: none;
  border: 0;
  vertical-align: middle;
}

em {
  font-style: normal;
}

p {
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

iframe {
  border: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

table td,
table th {
  padding: 0;
}

input {
  outline: none;
  line-height: normal;
}

/* chrome记住密码后的默认填充样式解决 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  border: 1px solid #ccc !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #d0d0d0;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d0d0d0;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d0d0d0;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #d0d0d0;
}

.container {
  width: 1000px;
  margin: 0 auto;
}

.clearfix {
  zoom: 1;
  /*为IE6，7的兼容性设置*/
}

.clearfix:after {
  clear: both;
  /*清除浮动*/
}

.clearfix:after, .clearfix:before {
  content: "";
  /*加一段内容*/
  display: table;
  /*创建匿名的表格单元，触发bfc*/
}

.relative {
  position: relative;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.center-block {
  display: block;
  margin-right: auto;
}

.line-height {
  line-height: 1;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.logo {
  display: inline-block;
}

.logo a {
  display: inline-block;
  width: 100px;
  height: 53px;
  margin-right: 20px;
  background: url(../images/logo-jump.png) center center no-repeat;
  background-size: contain;
  font: 0/0 a;
  vertical-align: middle;
}

.logo a:hover {
  filter: brightness(1.1);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

.modal .cont-none {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin: 60px 0 40px;
  color: #444;
}

.modal.modal-example .modal-body {
  width: 400px;
  height: 695px;
  margin-left: -200px;
  margin-top: -347.5px;
}

.modal.modal-example .modal-body .example-box img {
  display: none;
  width: 100%;
}

.modal.modal-example .modal-body .example-box .example-04 {
  margin-top: 50%;
}

.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -300px;
  margin-top: -170px;
  width: 600px;
  height: 340px;
  background: #fff;
  background-size: contain;
  animation: tc 0.5s;
}

.modal-body .close {
  position: absolute;
  top: 0;
  right: -42px;
  width: 32px;
  height: 31px;
  display: block;
  background: url(../images/close.png) center center no-repeat;
  background-size: contain;
  -webkit-transition: transform 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out;
  -ms-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}

.modal-body .close:hover {
  filter: brightness(115%);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@keyframes tc {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.head {
  height: 100px;
  line-height: 100px;
  background: #413438;
  color: #fff;
  font-size: 20px;
}

.main {
  background: #f8efe7;
  color: #3f3e3e;
  font-size: 18px;
  padding: 50px 0 100px;
}

.group-row {
  padding: 10px 0;
  margin-bottom: 10px;
  font-weight: 700;
}

.group-row .text {
  display: inline-block;
}

.btn {
  display: inline-block;
  width: 150px;
  height: 40px;
  line-height: 40px;
  margin: 0 20px;
  background: #ffa201;
  color: #413438;
  text-align: center;
  font-size: 20px;
  letter-spacing: 5px;
}

.btn.btn-cancel {
  background: #cdcdcd;
}

.btn.btn-submit {
  margin-top: 30px;
}

.btn:hover {
  filter: brightness(1.08);
}

input {
  width: 400px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  color: #666;
  padding: 0 15px;
  border: 1px solid #ccc;
  font-size: 18px;
  transition: .3s ease;
}

input:focus {
  border: 1px solid #fcc623;
  box-shadow: 0px 0px 5px 0px rgba(89, 69, 10, 0.3);
}

.checkbox_state {
  width: 20px;
  height: 20px;
}

.checkbox_state + label {
  position: relative;
  cursor: url(../images/cursor_02.png), auto;
  font-size: 1em;
}

.checkbox_state + label {
  background-color: #ffffff;
  border: 2px solid #444;
  padding: 8px;
  display: inline-block;
  vertical-align: middle;
}

.checkbox_state:checked + label:before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #ffc622;
  content: '';
}

.status {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.status a {
  color: #ee800b;
}

.status a:hover {
  color: #ff931f;
  text-decoration: underline;
}

.select {
  display: inline-block;
  position: relative;
  width: 200px;
  background: #fff;
}

.select p {
  width: 100%;
  height: 38px;
  line-height: 38px;
  border: 1px solid #ccc;
  border-radius: 0;
  color: #666;
  padding: 0 20px;
}

.select p i {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 38px;
  height: 36px;
  border-left: 1px solid #ccc;
  background: url(../images/icon_01.png) center center no-repeat;
}

.select p i:hover {
  background-color: #eee;
  cursor: url(../images/cursor_02.png), auto;
}

.select ul {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  height: 0;
  max-height: 265px;
  overflow: auto;
  transition: height .1s ease-in-out;
}

.select ul li a {
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 20px;
  color: #888;
  font-size: 14px;
  border-bottom: 1px solid #d8d8d8;
  background: #f9f9f9;
}

.select ul li a:hover {
  color: #666;
  background: #e7e7e7;
}

.select ul.open {
  border: 1px solid #ccc;
  border-top: 0;
  height: auto;
}

.drop_area {
  float: left;
  margin: 10px 0 0;
}

.drop_area:hover {
  cursor: url(../images/cursor_02.png), auto !important;
}

.img-file {
  overflow: hidden;
  margin-bottom: 5px;
}

.img-file .example {
  float: right;
  margin-top: 130px;
}

.img-file .example .open {
  color: #ee800b;
}

.img-file .example .open:hover {
  color: #ff931f;
  text-decoration: underline;
}

.doing,
.fail {
  color: #e10000;
}

.pass {
  color: #0fb300;
}

.checkbox-block {
  display: inline-block;
}

@media (max-width: 1000px) {
  .container {
    width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 640px) {
  .head {
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
  .head .logo a {
    width: 80px;
    height: 43px;
    margin-right: 5px;
  }
  .main {
    font-size: 14px;
    padding: 30px 0 50px;
  }
  .main .group-row {
    padding: 5px 0;
  }
  .relevant-cont p {
    padding-left: 32px !important;
  }
  .relevant-cont p em {
    width: 32px !important;
  }
  .relevant-tit {
    margin-top: 10px !important;
    font-size: 18px !important;
  }
  .container {
    padding: 0 15px;
  }
  .checkbox_state {
    display: block;
  }
  .btn-query {
    margin: 5px 0;
  }
  .select,
  input {
    width: 100%;
    margin: 5px 0;
    font-size: 14px;
  }
  .btn {
    font-size: 18px;
  }
  .modal .modal-body {
    width: 80%;
    height: 260px;
    margin-left: -40%;
    padding: 10px;
  }
  .modal .modal-body .cont-none {
    font-size: 14px;
    margin: 40px 0 20px;
  }
  .modal .modal-body .btn {
    width: 100px !important;
    margin: 0 5px;
  }
  .modal .modal-body .close {
    width: 20px;
    height: 19px;
    top: -22px;
    right: 0;
  }
  .modal.modal-example .modal-body {
    padding: 0;
    width: 260px;
    height: 487px;
    margin-left: -130px;
    margin-top: -243.5px;
  }
}

@media (max-width: 320px) {
  .head {
    font-size: 15px;
  }
  .logo a {
    width: 60px !important;
    margin-right: 0;
  }
  .drop_area {
    width: 160px !important;
  }
  .example {
    margin-top: 105px !important;
  }
}

.page-query {
  padding-bottom: 220px;
}

.relevant-cont p {
  position: relative;
  line-height: 1.8;
  overflow: hidden;
  padding-left: 50px;
}

.relevant-cont p em {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  text-align: right;
}

.relevant-cont .relevant-tit {
  margin: 20px 0 5px;
  font-weight: 700;
  font-size: 20px;
}
