@charset "utf-8";
/* -------------@ reset css------------ */
body,
h1,
h2,
h3,
h4,
h5,
hr,
p,
blockquote,
nav,
header,
section,
footer,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
fieldset,
lengend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td /* table elements 表格元素 */
{
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
* {
  /*可点击元素点触效果*/
/*
-webkit-tap-highlight-color:rgba(0,0,0,0);
*/ }
html,
body {
  width: 100%;
}
body {
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*禁止长按*/
  -webkit-touch-callout: none;
  /*禁止复制功能，可能会导致导致输入框无法输入*/
  -webkit-user-select: none;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  /*取消ios默认样式*/
  -webkit-appearance: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  outline: none;
}
img {
  vertical-align: middle;
  border: 0;
}
button,
input,
select,
textarea {
  vertical-align: middle;
  outline: none;
  border: none;
}
textarea {
  resize: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ins {
  text-decoration: none;
}
i {
  font-style: normal;
}
strong {
  font-weight: normal;
}
/*------------------@ global HTML Element style--------------------*/
body {
  font-family: "PingFang Medium", "PingFang SC", "Source Han Sans";
  font-size: 0.28rem;
  font-weight: normal;
  line-height: 1.2em;
  min-width: 320px;
  /*hex mobile client background*/
  background: #f5f5f5;
  color: #323232;
}
body.blackPattern {
  background-color: #202022;
  color: #d2d2d3;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
h1 {
  font-weight: normal;
}
textarea {
  font-family: inherit;
}
input,
textarea {
  color: #323232;
}
.blackPattern input,
.blackPattern textarea {
  color: #d2d2d3;
}
/*------------------@ layout CSS---------------------------------------*/
.hide {
  display: none !important;
}
/*基本页*/
html,
body {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
section {
  max-width: 7.2rem;
  margin: 0 auto;
}
section.popUpWrap {
  width: 100%;
  margin: 0;
}
/*问卷弹窗*/
.hidden {
  display: none !important;
}
.question { position: fixed; top: 0; left: 0; background-color:rgba(0,0,0,.6); height: 100%; width: 100%; z-index: 9;}
.loadWrap { position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 9;}
.loadingWrap {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 50%;
  margin-top: -1rem;
  left: 50%;
  margin-left: -1rem;
  z-index: 50;
  background-color: rgba(0,0,0,.6);
  border-radius: 0.12rem;
  -webkit-border-radius: 0.12rem;
}
.loadingWrap .loadingItem {
  position: absolute;
  width: 1rem;
  height: 0.2rem;
  top: 50%;
  margin-top: -0.1rem;
  left: 50%;
  margin-left: -0.5rem;
}
.loadingWrap .loadingItem .point {
  position: absolute;
  right: 0;
  width: 0.2rem;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 0.1rem;
  opacity: 0;
  -webkit-border-radius: 0.1rem;
}
@keyframes cycilc {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1
  }
  100% {
    opacity: 0;
  }
}
.loadingWrap .loadingItem:nth-child(1) {
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
}
.loadingWrap .loadingItem:nth-child(1) .point {
  animation:cycilc 1.2s infinite;
  -webkit-animation:cycilc 1.2s infinite;
}
.loadingWrap .loadingItem:nth-child(2) {
  transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
}
.loadingWrap .loadingItem:nth-child(2) .point {
  animation:cycilc 1.2s 0.1s infinite;
  -webkit-animation:cycilc 1.2s 0.1s infinite;
}
.loadingWrap .loadingItem:nth-child(3) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.loadingWrap .loadingItem:nth-child(3) .point {
  animation:cycilc 1.2s 0.2s infinite;
  -webkit-animation:cycilc 1.2s 0.2s infinite;
}
.loadingWrap .loadingItem:nth-child(4) {
  transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
}
.loadingWrap .loadingItem:nth-child(4) .point {
  animation:cycilc 1.2s 0.3s infinite;
  -webkit-animation:cycilc 1.2s 0.3s infinite;
}
.loadingWrap .loadingItem:nth-child(5) {
  transform: rotate(150deg);
  -webkit-transform: rotate(150deg);
}
.loadingWrap .loadingItem:nth-child(5) .point {
  animation:cycilc 1.2s 0.4s infinite;
  -webkit-animation:cycilc 1.2s 0.4s infinite;
}
.loadingWrap .loadingItem:nth-child(6) {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.loadingWrap .loadingItem:nth-child(6) .point {
  animation:cycilc 1.2s 0.5s infinite;
  -webkit-animation:cycilc 1.2s 0.5s infinite;
}
.loadingWrap .loadingItem:nth-child(7) {
  transform: rotate(210deg);
  -webkit-transform: rotate(210deg);
}
.loadingWrap .loadingItem:nth-child(7) .point {
  animation:cycilc 1.2s 0.6s infinite;
  -webkit-animation:cycilc 1.2s 0.6s infinite;
}
.loadingWrap .loadingItem:nth-child(8) {
  transform: rotate(240deg);
  -webkit-transform: rotate(240deg);
}
.loadingWrap .loadingItem:nth-child(8) .point {
  animation:cycilc 1.2s 0.7s infinite;
  -webkit-animation:cycilc 1.2s 0.7s infinite;
}
.loadingWrap .loadingItem:nth-child(9) {
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
.loadingWrap .loadingItem:nth-child(9) .point {
  animation:cycilc 1.2s 0.8s infinite;
  -webkit-animation:cycilc 1.2s 0.8s infinite;
}
.loadingWrap .loadingItem:nth-child(10) {
  transform: rotate(300deg);
  -webkit-transform: rotate(300deg);
}
.loadingWrap .loadingItem:nth-child(10) .point {
  animation:cycilc 1.2s 0.9s infinite;
  -webkit-animation:cycilc 1.2s 0.9s infinite;
}
.loadingWrap .loadingItem:nth-child(11) {
  transform: rotate(330deg);
  -webkit-transform: rotate(330deg);
}
.loadingWrap .loadingItem:nth-child(11) .point {
  animation:cycilc 1.2s 1s infinite;
  -webkit-animation:cycilc 1.2s 1s infinite;
}
.loadingWrap .loadingItem:nth-child(12) {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.loadingWrap .loadingItem:nth-child(12) .point {
  animation:cycilc 1.2s 1.1s infinite;
  -webkit-animation:cycilc 1.2s 1.1s infinite;
}
.question .hint {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: -webkit-box;
  -webkit-box-pack:center;
  -webkit-box-align:center;   
}
.hint .wrap {
  margin: 0 0.64rem;
  border-radius: 0.1rem;
  -webkit-border-radius: 0.1rem;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.hint .wrap p:nth-of-type(1) {
  text-align: center;
  height: 1.12rem;
  line-height: 1.12rem;
  font-size: 0.4rem;
}
.hint .wrap p {
  text-align: justify;
  padding: 0 0.48rem;
  font-size: 0.34rem;
  line-height: 0.42rem;
}
.hint .wrap p span {
  font-weight: bold;
}
.hint .wrap p:nth-of-type(4) {
  padding: 0.64rem 0.48rem 0;
}
.hint .wrap .option {
  margin-top: 0.64rem;
  border-top: 1px solid #ddd;
  display: -webkit-box;
  text-align: center;
  -webkit-box-align:center;
  line-height: 0.9rem;
  font-size: 0.36rem;
}
.hint .wrap .option div {
  height: 0.9rem;
  -webkit-box-flex:1;
  width: 50%;
}
.hint .wrap .option a {
  color: #323232;
}
.hint .wrap .option .left {
  border-right:1px solid #ddd;
}
.alertMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0,0,0,0.6);
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
}
.alertMask .alertInner {
  margin: 0 0.64rem;
  border-radius: 0.1rem;
  -webkit-border-radius: 0.1rem;
  background-color: #ffffff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.alertMask .alertInner > div:first-child {
  padding: 0 0.48rem;
  font-size: 0.4rem;
  line-height: 1.12rem;
  height: 1.12rem;
  text-align: center;
}
.alertMask .alertInner .alertContent {
  font-size: 0.34rem;
  line-height: 0.42rem;
  text-align: justify;
  padding: 0 0.48rem;
}
.alertMask .alertInner .alertContent span {
  color: #e93030;
}
.alertMask .alertInner .alertFoot {
  display: -webkit-box;
  -webkit-box-align: center;
  margin-top: 0.64rem;
  border-top: 1px solid #ddd;
  font-size: 0.36rem;
  line-height: 0.9rem;
  text-align: center;
}
.alertMask .alertInner .alertFoot div {
  width: 50%;
  -webkit-box-flex: 1;
  border-right: 1px solid #ddd;
}
.alertMask .alertInner .alertFoot > div:last-child {
  border-right: none;
}
.questionBox {
  position: relative;
  width: 100%;
  padding-bottom: 1.6rem;
  background-color: #fff;
}
.questionBox .questionTip {
  padding: 0.32rem 0.36rem;
  font-size: 0.24rem;
  color: #e93030;
  line-height: 1.6em;
  letter-spacing: -0.6px;
}
.questionBox .number {
  display: -webkit-box; 
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align:center;
  height: 1.38rem;
  padding: 0 0.36rem;
}
.questionBox .number span {
  font-style: italic;
  font-weight: bold;
}
.questionBox .number span:nth-of-type(1) {
  font-size: 0.64rem;
  color: #e93030;
}
.questionBox .number span:nth-of-type(2) {
  font-size: 0.34rem;
}
.questionBox .number span:nth-child(3) {
  margin-left: 0.32rem;
  display:inline-block;
  width: 0.96rem;
  height: 0.16rem;
  border: 1px solid #ddd;
  background-color: #f65c3a;
}
.questionBox .number span:nth-child(4) {
  margin-left: 2px;
  display:inline-block;
  width: 0.96rem;
  height: 0.16rem;
  border: 1px solid #ddd;
}
.questionBox .number span:nth-child(5) {
  margin-left: 2px;
  display:inline-block;
  width: 0.96rem;
  height: 0.16rem;
  border: 1px solid #ddd;
}
.questionBox .topic {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 0.32rem;
}
.topic .item {
  border: 1px solid #000;
  margin-bottom: 0.32rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0.28rem 0.24rem 0.32rem;
  border: 1px solid #ddd;
  border-radius: 0.1rem;
  -webkit-border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem #ddd;
  font-size: 0.32rem;
}
.topic .special {
  margin-bottom: 1rem;
}
.topic .item p{
  text-align: justify;
}
.topic .item .opt {
  display: -webkit-box;
  padding-top: 0.35rem;
  height: 0.5rem;
  line-height: 0.5rem;  
}
.topic .item .opt .box {
  display: -webkit-box;
  width: 1.2rem;
  margin-right: 2rem;
  height: 0.48rem;
}
.topic .item .opt .box .side {
  width: 0.48rem;
  height: 0.48rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 1px solid #ddd;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 0.24rem;
}
.footBtn {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.3rem 0.32rem;
  border-top: 1px solid #ddd;
  background-color: #ffffff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
}
.footBtn div {
  width: 3.1rem;
  padding: 0.32rem 0;
  font-size: 0.32rem;
  color: #ffffff;
  text-align: center;
  background-color: #e93030;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.footBtn .footPre {
  margin-right: 0.36rem;
  color: #e93030;
  background-color: #ffffff;
  border: 1px solid #e93030;
}

/*iPhoneX 适配*/
[data-adapter="thsIphoneXAdapter"] .questionBox {
  padding-bottom: 2.28rem;
}
[data-adapter="thsIphoneXAdapter"] .footBtn {
  padding-bottom: 0.98rem;
}
