.que-wrapper {
  width: 100%;
  background-color: #f0f5f6;
  padding-bottom: 80px;
}

.que-header {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 40px 0;
}

.que-header .left {
  display: flex;
  align-items: center;
}

.que-header .left .icon {
  width: 8px;
  height: 40px;
  background: #00aac4;
  border-radius: 3px;
  margin-right: 16px;
}

.que-header .left .text {
  font-size: 30px;
  font-weight: 500;
}

.que-header .que-tabs {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 8px;
  border-radius: 16px;
}

.que-header .que-tabs .tab-item {
  width: 200px;
  height: 72px;
  line-height: 48px;
  text-align: center;
  border-radius: 4px;
  background: #EBF9FB;
  color: #00aac4;
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
}

.tab-item i {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 8px;

}

.tab-item .tab1 {
  background: url(../imgs/questionnaire/抑郁症测评_蓝@2x.png) center no-repeat;
  background-size: 100%;
}

.tab-item .tab2 {
  background: url(../imgs/questionnaire/自闭症_蓝@2x.png) center no-repeat;
  background-size: 100%;
}

.tab-item .tab3 {
  background: url(../imgs/questionnaire/睡眠测评_蓝@2x.png) center no-repeat;
  background-size: 100%;
}

.active .tab1 {
  background: url(../imgs/questionnaire/抑郁症测评_白@2x.png) center no-repeat;
  background-size: 100%;
}

.active .tab2 {
  background: url(../imgs/questionnaire/自闭症_白@2x.png) center no-repeat;
  background-size: 100%;
}

.active .tab3 {
  background: url(../imgs/questionnaire/睡眠测评_白@2x.png) center no-repeat;
  background-size: 100%;
}

.tab_img {
  width: 172px;
  height: 50px;
  
  box-shadow: 0px 8px 16px 0px rgba(0, 170, 196, 0.1);
  border-radius: 24px;
  font-size: 20px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #00AAC4;
  margin-right: 16px;
  background: #FFFFFF url(../imgs/questionnaire/箭头@2x.png)  126px center no-repeat;
  background-size: 40px 40px;
  line-height: 48px;
}
.tab_img span{
  margin-left: 20px;
}
.que-header .que-tabs .tab-item.active {
  background: #00aac4;
  color: #fff;
}

#autism,
#sleep {
  display: none;
}

.que-cont {
  width: 1200px;
  padding: 80px;
  background: #ffffff;
  border-radius: 8px;
  margin: 0 auto;
}

.que-cont .cont-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}

.que-cont .cont-tip {
  font-size: 20px;
  color: #999999;
  margin-top: 16px;
  text-indent: 15px;
  text-align: justify;
}

.que-cont .que-item {
  font-size: 24px;
  margin-top: 40px;
}

.que-cont .que-item .que-radio,
.que-cont .que-item .que-radio:checked {
  appearance: none;
  width: 24px;
  height: 24px;
  background: url(../imgs/questionnaire/radio.png);
  background-size: 100%;
  margin-right: 16px;
}

.que-cont .que-item .que-radio:checked {
  background: url(../imgs/questionnaire/radio_checked.png);
  background-size: 100%;
}

.que-cont .que-item .que-radio:focus {
  outline: none;
  background: url(../imgs/questionnaire/radio_checked.png);
  background-size: 100%;
}

.que-cont .que-item .options {
  margin-top: 27px;
  display: flex;
}

.que-cont .que-item .options .option {
  margin-right: 80px;
  display: flex;
}

.que-cont .que-item .option2 {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.input-box {
  width: 232px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 0 12px;
  margin-top: 5px;
}

.input-box:focus {
  outline: none;
}

.submit-btn {
  width: 120px;
  height: 48px;
  background: #00aac4;
  border-radius: 4px;
  text-align: center;
  line-height: 48px;
  margin: 0 auto;
  margin-top: 82px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.dialog-box {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1050;
}

.dialog-box .inner-box {
  width: 964px;
  margin: 0 auto;
  margin-top: 120px;
  background-color: #f0f7f7;
  border-radius: 8px;
}

.dialog-box .inner-box .header {
  padding: 20px;
  font-size: 32px;
  font-weight: 500;
  color: #00aac4;
  display: flex;
  justify-content: flex-end;
}

.dialog-box .inner-box .header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.dialog-box .inner-box .header .text {
  flex: 1;
  text-align: center;
}

.dialog-box .inner-box .split-line {
  height: 1px;
  background: #d6e2e2;
  width: 100%;
}

.dialog-box .inner-box .content {
  padding: 34px 46px;
  display: flex;
  justify-content: space-around;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

.dialog-box .inner-box .content .left {
  width: 384px;
  font-size: 20px;
}

.inner-box .content .left .result-item {
  font-weight: 500;
}

.inner-box .content .left .result-item {
  font-weight: 500;
  margin-bottom: 16px;
}

.inner-box .content .left .result-item span {
  color: #ff8200;
  margin-left: 5px;
}

.inner-box .detail-box {
  font-size: 20px;
  text-align: justify;
  line-height: 36px;
}

.inner-box .content .split-line {
  width: 1px;
  min-height: 240px;
  max-height: 240px;
  background: #d6e2e2;
  margin: 0 48px;
}

.inner-box .content .right .title {
  font-weight: 500;
  color: #00aac4;
  font-size: 20px;
}

.inner-box .content .right .form-item {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.inner-box .content .right .label {
  width: 100px;
  font-size: 20px;
  color: #333333;
  text-align: left;
  padding: 0;
}

.inner-box .content .right .input-box {
  margin: 0;
  background-color: #fff;
}

.inner-box .content .right .submit-btn {
  margin-top: 24px;
  margin-right: 0;
}

#qrcode-dialog .inner-box {
  width: 432px;
  height: 510px;
  background-color: #fff;
  margin-top: 150px;
}

#qrcode-dialog .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#qrcode-dialog .content img {
  width: 48px;
  height: 48px;
}

#qrcode-dialog .content .text {
  font-weight: 500;
  color: #00aac4;
  margin-top: 16px;
  font-size: 32px;
}

#qrcode-dialog .content .tip {
  margin-top: 8px;font-size: 20px;
}

#qrcode-dialog .content .qrcode {
  width: 120px;
  height: 120px;
  margin-top: 48px;
}

#qrcode-dialog .content .footer {
  font-size: 16px;
  color: #999999;
  margin-top: 16px;
}