body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

ol,
ul,
li {
  list-style: none;
}

* {
  /* -webkit-tap-highlight-color: rgba(255, 0, 0, 0); */
  /* 在移动端浏览器中，用户点击一个元素时，浏览器会默认给该元素周围添加一个高亮效果，以提示用户当前元素被点击了。这个高亮效果的颜色默认是蓝色的，但是通过设置 -webkit-tap-highlight-color 属性，可以修改该高亮效果的颜色。 */
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  outline: none;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hide {
  display: none;
}

.one-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 0;
}

.one-page-content {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* 网络请求loading效果的样式 s */
#jq-network {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 20000;
}

#jq-network .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#jq-network .loading {
  width: 200rem;
  height: 200rem;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
}

#jq-network .loading-content {
  width: 60rem;
  height: 60rem;
  border: 4rem solid #fff;
  border-top-color: transparent;
  border-radius: 100%;
  animation: jq-network-circle infinite 0.75s linear;
}

#jq-network .loading-text {
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: 24rem;
  margin-top: 25rem;
  color: #fff;
}

@keyframes jq-network-circle {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 网络请求loading效果的样式 e */

/* toast样式 s */
#jq-toast {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#jq-toast .toast-content {
  max-width: 500rem;
  min-width: 200rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10rem;
  box-sizing: border-box;
  padding: 20rem;
}

#jq-toast .toast-content__icon {
  max-width: 200rem;
  min-width: 200rem;
}

#jq-toast .toast-content .toast-content-text {
  width: 100%;
  line-height: 50rem;
  text-align: center;
  font-size: 28rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#jq-toast .toast-content .toast-content-image {
  width: 64rem;
  height: 64rem;
  margin: 10rem auto 20rem auto;
}

/* toast样式 e */

/* 页面loading效果 s */
#jq-loading {
  background-color: #333;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 30000;
}

#jq-loading .wrap,
#jq-loading .wrap > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#jq-loading .wrap {
  display: block;
  font-size: 0;
  color: #ff5800;
  width: 328rem;
  height: 328rem;
}

#jq-loading .wrap > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
}

#jq-loading .wrap > div:first-child {
  position: absolute;
  width: 224rem;
  height: 224rem;
  background: transparent;
  border-style: solid;
  border-width: 16rem;
  border-right-color: transparent;
  border-left-color: transparent;
  animation: jq-loading-ball-clip-rotate-pulse-rotate 1s
    cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

#jq-loading .wrap > div:last-child {
  width: 64rem;
  height: 64rem;
  animation: jq-loading-ball-clip-rotate-pulse-scale 1s
    cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@keyframes jq-loading-ball-clip-rotate-pulse-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes jq-loading-ball-clip-rotate-pulse-scale {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  30% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.15);
  }
}

/* 页面loading效果 e */

/* modal弹窗 s */
#jq-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20000;
}

#jq-modal .modal-wrap {
  width: 650rem;
  min-height: 335rem;
  background-color: #fff;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  border-radius: 20rem;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 30%;
}

#jq-modal .modal-wrap-title {
  width: 100%;
  margin-top: 30rem;
  font-size: 36rem;
  font-weight: bold;
  line-height: 70rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  padding: 0 50rem;
  box-sizing: border-box;
}

#jq-modal .modal-wrap-content {
  width: 100%;
  text-align: center;
  min-height: 45rem;
  line-height: 45rem;
  font-size: 30rem;
  display: -webkit-box;
  box-orient: vertical;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding: 0 50rem;
  box-sizing: border-box;
  margin-top: 20rem;
  margin-bottom: 70rem;
}

#jq-modal .modal-wrap-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100rem;
  border-top: 1px solid #e0e0e0;
}

#jq-modal .modal-wrap-btn .modal-wrap-btn-confirm,
#jq-modal .modal-wrap-btn .modal-wrap-btn-cancel {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 34rem;
  font-weight: bold;
}

#jq-modal .modal-wrap-btn .modal-wrap-btn-confirm {
  border-left: 1px solid #e0e0e0;
  color: #ff5800;
}
/* modal弹窗 e */
