@charset "utf-8";
/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
}

@media (max-width: 380px) {
    html {
        font-size:56.3%; /* 10÷16=62.5% */
    }
}
@media (max-width: 321px) {
    html {
        font-size:50%; /* 10÷16=62.5% */
    }
}

/* 去除iPhone中默认的input样式 */
input[type=text],input[type=number],input[type=tel],input[type=search],input[type=email],input[type=date],input[type=month],input[type=password],select,textarea{  font-family: Microsoft YaHei,Tahoma,Arial,Roboto,"Droid Sans","Helvetica Neue","Droid Sans Fallback","Heiti SC",sans-self;-webkit-appearance:none; appearance:none; resize: none;border: none;background: none;}
/* 去除数字input中的上下箭头 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0;
}
/* 取消链接高亮  */
body,div,ul,li,ol,h1,h2,h3,h4,h5,h6,input[type=text],input[type=number],input[type=tel],input[type=search],input[type=email],input[type=date],input[type=password],textarea,p,dl,dt,dd,a,img,button,form,table,th,tr,td,tbody,article,
aside, details,figcaption,figure,footer,header,hgroup, menu,nav,section{ -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
    font-family: Microsoft YaHei,Tahoma,Arial,Roboto,"Droid Sans","Helvetica Neue","Droid Sans Fallback","Heiti SC",sans-self;
    list-style:none;
    -webkit-appearance:none;
    outline:none;
    word-wrap:break-word;
    word-break:break-all;}
/* 设置HTML5元素为块 */
article, aside, details,figcaption,figure,footer,header,hgroup, menu,nav,section {
    display: block;
}
/* 图片自适应 */
img {
    height: auto;
    width:auto\9; /* ie8 */
    -ms-interpolation-mode:bicubic;/*为了照顾ie图片缩放失真*/
}
*:focus {
    outline:none;
}
/* 清零 */
body,div,ul,li,ol,h1,h2,h3,h4,h5,h6,input,textarea,select,p,dl,dt,dd,a,img,button,form,table,th,tr,td,tbody,article,
aside, details,figcaption,figure,footer,header,hgroup, menu,nav,section{margin:0; padding:0;}

.clearfix:after{content:""; display:block; visibility:hidden; height:0; clear:both;}
.clearfix{zoom:1;}
a{text-decoration:none; color:#969696;}
a:hover{color:#969696; text-decoration:none;}
ul,ol,li{list-style:none;}

fieldset,img{border: none;}
table {
    border-collapse:collapse;
    border-spacing:0;
}
caption, th {
    text-align:left;
}

input:password {
    ime-mode:disabled;
}
/*连续英文、数字换行*/
.wordwrap { word-break: break-all; word-wrap: break-word; }
*{box-sizing:border-box;}
.line1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    line-clamp: 1;
    box-orient: vertical;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    line-clamp: 2;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.centerboth {
    display:flex;
    display: -webkit-flex;
    align-items:center;
    -webkit-align-items:center;
    justify-content: center;
    -webkit-justify-content: center;
}

.bgcolor {
    background: #f5f5f5;
}


.radioIu label {
    background: url("../images/check.png") no-repeat center left;
    background-size: 4.5vw auto;
    padding: 0 0 0 5.5vw;
    display: inline-block;
    line-height: 8vw;
    margin: 0 6vw 0 2vw;
}

.radioIu label.on {
    background: url("../images/check_on.png") no-repeat center left;
    background-size: 4.5vw auto;
}

.formBox {
    margin-top: 2vw;
    background: #ffffff;
    padding: 3vw 0;
}

.formBox li {
    padding: 0 3vw;
    font-size: 1.5rem;
}

.formBox li>span {
    font-size: 1.5rem;
    color: #666666;
}
.formBox li>span b {
    color: #F05C5C;
}

.formBox li.zhe p {
    margin-top: 3vw;
}

.formBox .flexo {
    display: box;
    display: -webkit-box;
}

.formBox .flexo p {
    -webkit-box-flex: 1;
    box-flex: 1;
    height: 7vw;
}
.formBox .flexo p input {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 2vw;
    font-size: 1.5rem;
}

.formBox .flexo>span {
    line-height: 7vw;
}

.formBox .textIu {
    width: 100%;
    height: 25vw;
    border-top: 1px solid #f5f5f5;
}
.formBox .textIu textarea {
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    line-height: 160%;
    padding: 2vw 0;
}

.formBox .nozhe span {
    float: left;
}

.formBox .nozhe p {
    float: left;
}

.formBox .nozhe p label {
    line-height: 6vw;
    margin-left: 3vw;
    margin-right: 5vw;
}

.formBox .flexo p select {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 2vw;
    font-size: 1.5rem;
    background: url("../images/arr.png") no-repeat center right;
    background-size: 4vw auto;
}

.formBox.big li {
    padding-bottom: 3vw;
    border-bottom: 1px solid #f5f5f5;
    padding-top: 3vw;
}

.formBox.big li:first-child {
    padding-top: 0;
}

.linkBtn {
    width: 80vw;
    margin: 8vw auto 0 auto;
    height: 11vw;
}

.linkBtn a {
    display: block;
    width: 100%;
    height: 100%;
    background: #108DEF;
    color: #ffffff;
    font-size: 1.6rem;
    text-align: center;
    line-height: 11vw;
    border-radius: 3px;
}

.teltext {
    text-align: center;
    margin-top: 8vw;
    font-size: 1.4rem;
    color: #999999;
}
.teltext a {
    color: #108DEF;
}
.tebie {
    padding: 10vw 3vw 5vw 3vw;
    font-size: 1.3rem;
    color: #999999;
}

.resultBox {
    text-align: center;
    padding-top: 24vw;
}

.resultBox img {
    width: 20vw;
}
.resultBox h2 {
    padding-top: 3vw;
    font-size: 2.2rem;
    font-weight: normal;
    color: #108DEF;
}
.miaoshu {
    padding-top: 18vw;
    font-size: 1.4rem;
    line-height: 160%;
}
.miaoshu p {
    color: #999999;
}

.miaoshu h3 {
    font-size: 1.4rem;
    font-weight: normal;
    color: #333333;
}
.miaoshu h3 a {
    color: #108DEF;
}


.yun .tebie {
    border-top: 1px solid #ECECEC;
    padding-top: 4vw;
    color: #333333;
    text-align: center;
    background: #ffffff;
}


.yun .tebie a {
    color: #108DEF;
}


.litext {
    text-align: center;
    font-size: 1.6rem;
    color: #323232;
    padding: 3vw 0;
}

.clist {
    padding: 1vw 3vw;
}

.litcont {
    background: #ffffff;
    padding: 3vw;
    margin-bottom: 2vw;
}
.litcont h3 {
    font-size: 1.53rem;
    padding-bottom: 2vw;
}


.litcont h2 {
    font-size: 2rem;
    font-weight: normal;
    padding-top: 1vw;
}
.litcont h2 a {
    color: #108DEF;
}
.litcont p {
    font-size: 1.4rem;
    color: #999999;
    line-height: 180%;
}
.litcont .pl span {
    color: #108DEF;
}

.litcont .pl {
    padding-bottom: 3vw;
}

.linka {
    width: 100%;
    height: 11vw;
    line-height: 11vw;
    text-align: center;
    background: #108DEF;
    border-radius: 5px;
    margin-top: 6vw;
}

.linka a {
    display: block;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 1.6rem;
}

.linka.kuang {
    background: none;
    border: 1px solid #108DEF;
}

.linka.kuang a {
    color: #108DEF;
}
.litcont .tishi_info {
    text-align: center;
    padding: 7vw 0 2vw;
    font-size: 1.4rem;
    color: #EC4F33;
}
.litcont .tishi_info a {
    color: #108DEF;
}
.xiahu a {
    text-decoration: underline;
}
.bdpan {
    padding: 0 3vw;

}

.bdpan span {
    color: #F06262;
    font-size: 1.3rem;
}



