@-webkit-keyframes myRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

*:not(input, textarea) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

html {
  font-size: calc(100vw / 37.5);
}

@media (min-width: 600px) {
  html {
    font-size: 10px;
  }
}

body,
td,
th,
input,
textarea,
select {
  font-family: arial, "Microsoft Yahei", "Hiragino Sans GB", sans-serif;
  font-size: 1.2rem;
  color: #000000;
}

body,html {
  margin: 0;
  background: #fbfbfb;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a,
input,
textarea,
select,
button {
  outline: none;
}

h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

ul,
li,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul:after,
header:after,
main:after,
footer:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  clear: both;
}

img {
  border: 0;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="button"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  border: 0.1rem solid #d8d8d8;
  padding: 0 1rem;
  box-sizing: border-box;
  border-radius: 0;
}

select {
  width: auto;
}

textarea {
  width: 100%;
  line-height: 1.5em;
  border: 0.1rem solid #d8d8d8;
  padding: 0.5em 10px;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
  border: 0.1rem solid #0099ff;
}

input[type="submit"],
button[type="submit"],
button[type="reset"],
input.submit {
  -webkit-appearance: none;
  background: #fafafa;
  border: 0.1rem solid #d7d7d7;
  height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  color: #333;
  border-radius: 0.2rem;
  cursor: pointer;
  box-sizing: border-box;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
button[type="reset"]:hover,
input.submit:hover {
  background: #e7e7e7;
  border: 0.1rem solid #adadad;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 10rem white inset !important;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.center {
  text-align: center;
}

#msgbox {
  position: fixed;
  top: 40%;
  width: 20rem;
  left: 50%;
  margin-left: -10rem;
  border: 0.1rem solid #000;
  border-radius: 0.4rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 20000;
  box-sizing: border-box;
  height: auto;
  text-align: center;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header,
main,
footer {
  margin: 0;
  padding: 0;
  margin: 0 auto;
}

a.link-btn,
a.link-btn-green,
a.link-btn-red,
a.link-btn-blue {
  display: inline-block;
  height: 3rem;
  line-height: 3rem;
  border-width: 0.1rem;
  border-style: solid;
  padding: 0 1rem;
  border-radius: 0.2rem;
  color: #fff;
  margin: 0 0.3rem;
  box-sizing: border-box;
}

a.link-btn {
  border-color: #e7e7eb;
  color: #222;
}

a.link-btn-green {
  background: #44b549;
  border-color: #2f9833;
}

a.link-btn-red {
  background: #ee2222;
  border-color: #c00;
}

a.link-btn-blue {
  background: #4285f4;
  border-color: #1055ce;
}

a.link-btn:hover {
  border-color: #dadbe0;
  background: #e7e7eb;
}

a.link-btn-green:hover {
  background: #2f9833;
}

a.link-btn-red:hover {
  background: #cc0000;
}

a.link-btn-blue:hover {
  background: #1055ce;
}

.non-result {
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  background: #fffced;
  line-height: 1.5em;
  border-radius: 0.3rem;
  border: 0.1rem solid #ffbf7a;
}

.non-result a {
  color: #1055ce;
}

.mask-layer {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.transparent-layer {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirm-box {
  border-radius: 1rem;
  background: #fff;
  width: 30rem;
  height: 17rem;
}

.confirm-box .confirm-intro {
  width: 100%;
  height: 100%;
  position: relative;
}

.confirm-box .confirm-intro .title {
  font-size: 1.8rem;
  color: #626262;
  font-weight: 600;
  text-align: center;
  padding-top: 3rem;
}

.confirm-box .confirm-intro .content {
  color: #808080;
  padding: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.6em;
  box-sizing: border-box;
  text-align: center;
}

.confirm-box .confirm-intro .action {
  display: flex;
  width: 100%;
  height: 4.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
}

.confirm-box .confirm-intro .action .cancel,
.confirm-box .confirm-intro .action .confirm {
  width: 50%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  height: 100%;
  cursor: pointer;
}

.confirm-box .confirm-intro .action .cancel {
  background: #efefef;
  color: #808285;
}

.confirm-box .confirm-intro .action .confirm {
  background: #ff5614;
  color: #fff;
}

.toast-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 10rem;
  height: 10rem;
  color: #fff;
}

.toast-box .icon {
  width: 6rem;
  height: 6rem;
}

.toast-box .icon img {
  width: 100%;
  height: 100%;
}

.toast-box .title {
  font-size: 1.4rem;
}

.message-box {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.6rem;
  padding: 1.5rem;
  color: #fff;
}

.pagination {
  display: flex;
  margin: 1.5rem 2rem;
}

.pagination .page-detail {
  min-height: 3.2rem;
  line-height: 3.2rem;
}

.pagination .page-detail select {
  border: 0.1rem solid #d7d7d7;
  height: 3rem;
  line-height: 3rem;
  padding: 0 0.5rem;
  border-radius: 0.4rem;
  margin: 0 0.4rem;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
}

.pagination ul li {
  margin-left: -0.1rem;
}

.pagination ul li a {
  display: block;
  line-height: 3rem;
  padding: 0 1.2rem;
  border: 0.1rem solid #d7d7d7;
  background: #fafafa;
  color: #999;
}

.pagination ul li a:hover {
  background: #eee;
}

.pagination ul li a.selected {
  background: #3e3e3e;
  border-color: #3e3e3e;
  color: #fff;
}

.share-box {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
}

.share-tips {
  width: 100%;
  height: 100%;
  background: url(../img/share-arrow.png) right top no-repeat rgba(0, 0, 0, 0.9);
  background-size: 50px auto;
  color: #fff;
}

.share-tips .box {
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 25px;
  text-align: center;
  left: 0;
  top: 50%;
  margin-top: -25px;
}

.post-box .notice {
  padding: 1rem 1.5rem;
  background: #ffeae1;
  color: #f15a24;
}

.post-box .bar,
.post-box .flats dl dt {
  margin-top: 0.77em;
  margin-bottom: 0.3em;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #808080;
  font-size: 1.4rem;
}

.post-box .cells,
.post-box .flats dl dd {
  background-color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.5em;
  overflow: hidden;
  position: relative;
}

.post-box .cells:before,
.post-box .flats dl dd:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #e5e5e5;
  color: #e5e5e5;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}

.post-box .cells:after,
.post-box .flats dl dd:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #e5e5e5;
  color: #e5e5e5;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}

.post-box .cells dl {
  position: relative;
  padding: 1rem 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.post-box .cells dl:before {
  content: " ";
  position: absolute;
  left: 1.5rem;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #e5e5e5;
  color: #e5e5e5;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}

.post-box .cells dl dt {
  width: 8rem;
}

.post-box .cells dl dt label {
  width: 100%;
  display: block;
  word-wrap: break-word;
  word-break: break-all;
}

.post-box .cells dl dt label span {
  color: #f00;
}

.post-box .cells dl dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: flex;
}

.post-box .flats dl dd {
  padding: 1rem 1.5rem;
}

.post-box dl dd input,
.post-box dl dd select {
  border: none;
  height: 1.5em;
  line-height: 1.5;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
  background-color: transparent;
}

.post-box dl dd input {
  width: 100%;
}

.post-box .btn {
  margin: 1rem 1.5rem;
}

.post-box .btn a {
  position: relative;
  display: block;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  line-height: 2.55555556;
  border-radius: 0.5rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}

.post-box .btn a:after {
  content: " ";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  box-sizing: border-box;
  border-radius: 1rem;
}

.post-box .btn input[type="submit"] {
  width: 100%;
  background-color: #f15a24;
  border: none;
  color: #fff;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.8rem;
  border-radius: 0.5rem;
}

.yellow-btn {
  background-color: #f15a24;
}

header .head-bar {
  width: 100%;
  height: 5.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #fff;
  position: relative;
}

header .head-bar h1 {
  font-size: 1.5rem;
}

header .head-bar h1.logo {
  display: block;
  width: 10rem;
  height: 3rem;
  text-indent: -9999px;
  overflow: hidden;
}

header .head-bar aside {
  height: 3rem;
  display: flex;
  align-items: center;
  min-width: 5rem;
}

header .head-bar aside.left-side {
  justify-content: flex-start;
}

header .head-bar aside.right-side {
  justify-content: flex-end;
}

header .head-bar aside a {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  margin: 0 1.5rem;
  color: #fff;
}

header .head-bar aside a i {
  font-size: 2.2rem;
}

header .head-bar a.save,
header .head-bar a.clear {
  display: inline-block;
  height: 3rem;
  line-height: 3rem;
  margin: 0 1.5rem;
  background: #f15a24;
  border-radius: 0.3rem;
  padding: 0 1.5rem;
  color: #fff;
}

footer .foot-space {
  width: 100%;
  height: 60px;
}

footer .foot-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}

.list-line ul li {
  position: relative;
}

.list-line ul li:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #e5e5e5;
  color: #e5e5e5;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}

.nav-tabs {
  border-bottom: 1px solid #eee;
}

.nav-tabs ul {
  display: flex;
}

.nav-tabs ul li {
  flex: 1;
}

.nav-tabs ul li a {
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-tabs ul li a span {
  display: inline-block;
  line-height: 4rem;
  font-size: 1.4rem;
  color: #333;
}

.nav-tabs ul li.selected a span {
  position: relative;
  color: #000;
}

.nav-tabs ul li.selected a span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 0.2rem;
  background: #000;
}

.non-list {
  text-align: center;
  padding: 4em 1em 1em;
}

.non-list img {
  width: 18rem;
  margin: 0 auto;
}

.non-list p {
  color: #999ba4;
  font-size: 1.8rem;
}

.pw {
  max-width: 78rem;
  margin: 0 auto;
}

.content-box .content {
  background: #fff;
  padding: 1rem 1.5rem;
  line-height: 1.6em;
  font-size: 1.6rem;
  overflow: hidden;
}

.content-box .content img {
  max-width: 100%;
  height: auto;
  margin: auto;
}

.wechat-subscribe {
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 8rem;
  display: flex;
  justify-content: center;
}

.wechat-subscribe .tips {
  position: relative;
}

.wechat-subscribe .tips a {
  color: #fff;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  background: linear-gradient(
    to right,
    rgba(236, 129, 72, 0.7),
    rgba(233, 78, 62, 0.7)
  );
  border-radius: 0.4rem;
}

.wechat-subscribe .tips i {
  background-color: rgba(0, 0, 0, 0.8);
  background-image: url(../img/icon-close.png);
  background-size: cover;
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
}

.wechat-subscribe .qrcode {
  position: fixed;
  left: 50%;
  top: 50%;
}

.wechat-qrcode {
  width: 24rem;
  height: 30rem;
  padding: 2rem;
  border-radius: 0.6rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.wechat-qrcode .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 8rem;
  border-bottom: 0.1rem dashed #dcdcdc;
}

.wechat-qrcode .title h1 {
  color: #333;
  font-size: 1.6rem;
}

.wechat-qrcode .title h2 {
  color: #aeaeae;
  font-size: 1.2rem;
  margin: 1rem 0;
}

.wechat-qrcode .qrcode {
  width: 15rem;
  height: 15rem;
}

.wechat-qrcode .qrcode img {
  width: 100%;
  height: 100%;
}

.wechat-qrcode .tips {
  color: #aeaeae;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.wechat-qrcode .close {
  position: absolute;
  right: 0;
  top: -6rem;
  cursor: pointer;
}

.wechat-qrcode .close i {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-image: url(../img/icon-close.png);
  background-size: cover;
  position: relative;
}

.wechat-qrcode .close i:after {
  position: absolute;
  left: 1rem;
  bottom: -4rem;
  width: 0.1rem;
  height: 4rem;
  content: "";
  display: block;
  background: #fff;
}

.loading {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading div {
  width: 10rem;
  height: 2rem;
  display: flex;
  justify-content: space-between;
}

.loading div span {
  display: inline-block;
  width: 0.8rem;
  height: 100%;
  border-radius: 0.4rem;
  background: #fff;
  -webkit-animation: load 1s ease infinite;
}

@-webkit-keyframes load {
  0%,
  100% {
    height: 2rem;
  }
  50% {
    height: 4rem;
    margin: -1.5rem 0;
  }
}

.loading div span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
}

.loading div span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
}

.loading div span:nth-child(4) {
  -webkit-animation-delay: 0.6s;
}

.loading div span:nth-child(5) {
  -webkit-animation-delay: 0.8s;
}
