/* CSS Document */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
img {
  border: medium none;
  margin: 0;
  padding: 0;
}

body {
  font: 14px/20px "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  color: #000;
}

img {
  border: 0;
  display: block;
}

a {
  cursor: pointer;
  text-decoration: none;
}

p {
  word-break: break-all;
  word-wrap: break-word;
}

ul {
  list-style: none;
}

/*Chrome和Firefox里面的边框是不一样的，所以复写了一下 很关键：将默认的select选择框样式清除,ie10+,ie9需要模拟 在选择框的最右侧中间显示小箭头图片*/
/* select {
    border: solid 1px #ddd;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../images/arrow.png") no-repeat scroll transparent;
    background-position: right 50%;
    background-size: 13px auto;
    padding-right: 14px;
    background: none\9;
} */

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
/* select::-ms-expand {
    display: none;
}

select::-webkit-expand {
    display: none;
}

select::-moz-expand {
    display: none;
} */

/* 滚动条 滚动条整体样式 滚动条里面小方块 滚动条里面轨道 */

/* ::-webkit-scrollbar {
  width: 8px;    
  height: 1px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #535353;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
} */

button {
  cursor: pointer;
}

.boxSizing * {
  font-size: 14px;
  box-sizing: border-box;
}

.allContainer {
  width: 100%;
  height: 100%;
  position: relative;
}

.flexContainer {
  display: flex;
  position: relative;
  z-index: 3;
}

.flexAuto {
  flex: 1;
}

.flexCenter {
  justify-content: center;
  align-items: center;
}

.flexTop {
  align-items: flex-start;
}

.flexColumn {
  flex-direction: column;
}

.flexBetween {
  justify-content: space-between;
  align-items: center;
}

.inputRContainer {}

.inputRContainer input[type=checkbox],
.inputRContainer input[type=radio] {
  display: none;
}

.inputRContainer input[type=checkbox]+label:before {
  content: "\2714";
  color: transparent;
  display: inline-block;
  border: 2px solid #d3d4d5;
  font-size: 18px;
  line-height: 22px;
  margin: -5px 5px 0 0;
  height: 23px;
  width: 23px;
  text-align: center;
  vertical-align: middle;
  transition: color ease .3s;
  border-radius: 3px;
}

.inputRContainer input[type=checkbox]:checked+label:before {
  color: #1468b6;
  border-color: #1468b6;
}

.inputRContainer input[type=radio]+label,
.inputRContainer input[type=checkbox]+label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.inputRContainer input[type=radio]+label:before {
  content: "\2714";
  color: transparent;
  display: inline-block;
  border: 2px solid #d3d4d5;
  font-size: 18px;
  line-height: 22px;
  margin: -5px 5px 0 0;
  height: 23px;
  width: 23px;
  text-align: center;
  vertical-align: middle;
  transition: color ease .3s;
  border-radius: 50%;
}

.inputRContainer input[type=radio]:checked+label:before {
  color: #1468b6;
  border-color: #1468b6;
}

.inputRContainer input[type=radio]+label .name,
.inputRContainer input[type=checkbox]+label .name {
  word-break: break-all;
  line-height: 23px;
  margin-top: -5px;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: 400;
}

.fontWeight {
  font-weight: 700;
}

.marginR5 {
  margin-right: 5px;
}

.header {
  position: fixed;
  width: 100%;
  max-width: 750px;
  height: 46px;
  line-height: 46px;
  z-index: 2;
  background: #1468b6;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.header-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 16px;
  cursor: pointer;
}

.header-right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 16px;
  cursor: pointer;
}

.header-title {
  text-align: center;
}

.width100 {
  width: 100%;
}

.van-button,
a.van-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 44px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 44px;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-appearance: none;
  border-radius: 20px;
  margin-bottom: 12px;
  text-decoration: none;
}

.van-button--danger {
  color: #fff;
  background-color: #ee0a24;
  border: 1px solid #ee0a24;
}

.van-button--blue {
  color: #fff;
  background-color: #1468b6;
  border: 1px solid #1468b6;
}

.van-button--blue:hover {
    color: #fff;
}

.van-button--default {
  color: #323233;
  background-color: #fff;
  border: 1px solid #ebedf0;
}

.section {
  position: relative;
  padding: 12px;
  padding-top: 58px;
}

.section2 {
  position: relative;
  padding: 12px;
  /* padding-top: 58px; */
}

.index-title {
  padding: 80px 0;
  text-align: center;
  color: #000;
  margin-bottom: 15px;
}

.index-title img {
  display: inline-block;
  width: 20px;
  margin: 0 5px;
}

.section-title {
  padding: 70px 10px;
  text-align: center;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}

.qa-header {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 46px;
  line-height: 46px;
  z-index: 2;
  font-size: 16px;
}

.qa-left,
.qa-right {
  color: #1468b6;
  position: absolute;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  font-size: 14px;
}
.qa-header a:link{text-decoration:none; }  /* 指正常的未被访问过的链接*/
.qa-header a:visited{text-decoration:none; }/*指已经访问过的链接*/
.qa-header a:hover{text-decoration:none;}/*指鼠标在链接*/
.qa-header a:active{text-decoration:none;}/* 指正在点的链接*/ 

.qa-header  .btn{border: 0px none;background-color: #FFFFFF; }
.qa-header  .btn:hover{ color: #1468b6; }
.qa-header .btn:focus{outline: none; border: 0px none;}

.qa-left {
  top: 0;
  bottom: 0;
  left: 0;
}


.qa-right {
  top: 0;
  bottom: 0;
  right: 0;
}

.qa-detail-header {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 46px;
    line-height: 46px;
    z-index: 2;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}


.qa-num {
    text-align: center;
    color: black;
    margin-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.qa-title {
  width: 60%;
  margin: 0 auto;
  height: 46px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.qa-problem {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
}

.qa-problem2 {
  margin-bottom: 10px;
}

.qa-title-content { 
    word-break:break-all;
}

.qa-option {
  margin-bottom: 20px;
}

.qa-list {
  margin-bottom: 20px;
}

.answerContainer {
  margin-bottom: 60px;
}

.answer-list {
  align-items: center;
  justify-content: space-between;
  line-height: 20px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.answer-order {
  width: 35px;
}

.answer-img img {
    margin-left: 10px;
    width: 20px;
}

.answer-right-order {
    width: 15px;
}

.again {
  position: fixed;
  bottom: 0;
  z-index: 100;
  width: 100%;
  max-width: 750px;
  background: #fff;
  padding: 12px 12px 0;
}

.sub-title {
  color: #979595;
  text-align: center;
  margin-bottom: 20px;
}

.review-list {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}

.qa-answer {
  min-height: 20px;
  line-height: 20px;
  margin-bottom: 15px;
}

.qa-answer-text {
  display: none;
  color: #ee0a24;
}

.banner {
  position: relative;
  width: 100%;
  padding: 0 0px;
  background: none;
  background-color: #0065CE;
  /* background-image: url(../images/topbanner_mobile.jpg); */
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}

.banner .topbanner {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-height: 130px;
}

.logo {
  display: block;
  /* background-image: url(../images/iamlogo.png); */
  background-size: auto 100%;
  background-repeat: no-repeat;
  width: 126px;
  height: 50px;
  margin-left: 12px;
  vertical-align: middle;
}
.logo img{
  width: 100%;
}

.nav-title,
.nav-subtitle {
  font-size: 18px;
  height: 30px;
  line-height: 30px;
  width: 100%;
  color: #fff;
  margin-top: 20px;
  font-family: 微軟正黑體, 蘋果麗黑字體, Adobe繁黑體Std B, Microsoft JhengHei, Lucida Sans Unicode, ARIAL;
}

.nav-title {
  font-weight: bold;
  padding-left: 12px;
}

.nav-subtitle {
  padding-right: 12px;
  text-align: right;
}

.home {
  font-size: 22px;
  padding: 5px 7px;
  margin-right: 12px;
  border: 1px solid#fff;
  color: #fff;
  border-radius: 5px;
  margin-top: 5px;
}
.none {
    display: none;
}
.block {
    display: block;
}
.no_click {
    pointer-events:none;
}

.answer_btn {
  color: #fff;
  background-color: #1468b6;
  border: 1px solid #1468b6;
  border-radius: 5px;
  padding: 0 5px;
  margin-right: 10px;
  cursor: pointer;
}

@media screen and (min-width: 450px) {
  .logo {
    height: 62px;
    width: 156px;
    margin-bottom: 50px;
  }
  .home {
    margin-bottom: 50px;
  }
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.block {
    display: block;
}