body {
  margin: 0;
  font-size: 0;
  color: #000;
  background-color: #fff;
  font-family: Microsoft Sans Serif, Helvetica, Geneva, sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#app {
  width: 1000px;
  margin: 0 auto;
}

.header {
  position: relative;
  height: 36px;
  line-height: 36px;
  margin-top: 40px;
  margin-bottom: 60px;
  font-size: 18px;
}

.left-logo,
.right-logo {
  position: absolute;
  display: inline-block;
  height: 36px;
}

.left-logo>div,
.right-logo>div {
  display: inline-block;
  vertical-align: top;
}

.left-logo {
  left: 0;
}

.right-logo {
  right: 0;
}

.left-logo img,
.right-logo img {
  height: 36px;
  margin-left: 10px;
}

.refuse-message {
  font-size: 16px;
  line-height: 1.5;
}

.btn-box {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-box>div {
  width: 280px;
  margin-bottom: 12px;
}

.btn-box a {
  height: 80px;
  display: flex;
  text-align: center;
  align-items: center;
  width: 100%;
  line-height: 1.2;
  padding: 10px 17px;
  background-color: #b31c2a;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.btn-box a span {
  display: block;
  width: 100%;
}

.btn-box a.btn-en {
  font-size: 15px;
  padding: 10px 15px;
}
.btn-box a.left-btn.btn-en {
  font-size: 14px;
}
.btn-box .btn-remarks {
  width: 100%;
  text-align: left;
  color: #5f5151;
  font-size: 15px;
  line-height: 1.5;
}

.important-notes {
  background: #f7f7f7;
  border-radius: 10px;
  border: 1px solid #ededed;
  margin-top: 60px;
  margin-bottom: 60px;
}

.important-notes .notes-title {
  height: 60px;
  line-height: 60px;
  background: #e6e6e6;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  border-radius: 10px 10px 0px 0px;
}

.important-notes ul {
  padding: 20px;
}

.important-notes li {
  line-height: 1.5;
  padding: 8px 0;
  font-size: 16px;
  list-style-type: none;
}

.important-notes li.notes-point {
  width: 2px;
  height: 2px;
  line-height: 1;
  background-color: #000;
  border-radius: 1px;
  margin-left: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1024px) {
  #app {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header {
    width: 100%;
    min-height: 50px;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .left-logo,
  .right-logo {
    min-height: 50px;
  }
  .left-logo>div,
  .right-logo>div {
    display: block;
    font-size: 14px;
    line-height: 1.5;
  }
  .left-logo img,
  .right-logo img {
    height: 36px;
    margin-left: 0;
  }
  .refuse-message {
    font-size: 15px;
  }
  .btn-box {
    width: 100%;
  }
  .btn-box>a {
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0 10px;
    font-size: 15px;
  }
  .btn-box a.btn-en {
    font-size: 14px;
  }
  .important-notes {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
  }
  .important-notes .notes-title {
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    border-radius: 5px 5px 0 0;
  }
  .important-notes ul {
    padding: 15px;
  }
  .important-notes li {
    padding: 5px 0;
    font-size: 14px;
  }
  .important-notes li.notes-point {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 600px) {
  .left-logo img,
  .right-logo img {
    height: 0.46rem;
    margin-left: 0;
  }
  .btn-box div {
    width: 100%;
  }
}