input[type="submit"]{
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.HeaIns{
    margin: 0 auto;
    text-align: center;
}
.HeaIns1{
    height: 260px;
    display: flex;
    justify-content: space-around;

}
.HeaIns1>span{
    width: 470px;
    /*height: 100%;*/
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #666;
    position: relative;
    color: #666;
    cursor: pointer;
}

.HeaIns .maxtit{
    line-height: 94px;
    margin-bottom: 24px;
    font-weight: bold;
    color: #00adec;
}

.HeaIns1>span>b{
    text-align: center;
    font-size: 20px;
    position: absolute;
    display: block;
    bottom: 20px;
    width: 100%;
}

.HeaIns>div:last-child{
    margin-top: 137px;
    font-size: 16px;
    margin-bottom: 33px;
}
.HeaIns>div:last-child>span:nth-child(2){
    font-size: 20px;
}
::-webkit-input-placeholder{
    font-size: 16px;
}
.HeaIns2{
    color: #666;
    line-height: 44px;
    display: inline-block;
    margin: 0 auto;
    margin-top: 20px;
}
.HeaIns2>div{
    display: flex;
}
.HeaIns2>div>span{
    display: block;
}
.HeaIns2>div>span:nth-child(1){
    width: 134px;
    font-size: 20px;
    text-align: left;
}
.HeaIns2>div:nth-child(1)>span:nth-child(2){
    width: 278px;
    height: 44px;
    border-bottom: 1px solid #999999;
    line-height: 44px;
}
.ips{
    display: block!important;
    width: 100%!important;
    height: 100%!important;
    padding: 0 42px!important;
    outline: none!important;
    border: none!important;
    background: none!important;
    box-shadow: none!important;
}

input::-webkit-input-placeholder {

     color: #cacaca;
     font-size: 20px;

      text-align: center;
  }

.HeaIns2>div:nth-child(1){
    margin-bottom: 53px;
}

.ipt{
    width: 278px!important;
    height: 40px!important;
    text-align: left!important;
    line-height: 40px!important;
    color: #7d7d7d!important;
    font-size: 20px!important;
    display: block!important;
    border: 1px solid #dcdcdc!important;
    padding: 0 14px!important;
    border-radius: 6px!important;
    cursor: pointer!important;
    margin-bottom: 32px!important;
    background: none!important;
}

.HeaIns2>div:nth-child(2)>span:nth-child(1){
    line-height: 112px;
}

.btns{
    display: block!important;
    width: 100px;
    height: 44px;
    text-align: center!important;
    line-height: 44px;
    background: #00adec;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 5px;
    background: linear-gradient(#36c9fe,#04afed)!important;
    cursor: pointer;
}

.HeaIns3{
    width: 100%;
}
.HeaIns3>div:nth-child(1){
    display: flex;
    justify-content: space-between;
    line-height: 58px;
}
.HeaIns3>div:nth-child(1)>span:nth-child(1){
    color: #00adec;
    font-weight: bold;
    font-size: 20px;
}
.HeaIns3>div:nth-child(1)>span:nth-child(2){
    font-size: 16px;
    color: #666;
    display: inline-block;
    float: right;
    text-decoration: underline;
}
.HeaIns3>div:nth-child(2){
    line-height: 34px;
    font-size: 16px;
    color: #666;
    text-align: left;
}
.HeaIns3>div:nth-child(2)>span{
    display: block;
}
.HeaIns3>div:nth-child(3){
    height: 210px;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.HeaIns3>div:nth-child(3)>a{
    width: 470px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #999999;
    position: relative;
    text-align: center;
    color: #999999;

}
.HeaIns3>div:nth-child(3)>a>span{
    display: block;
}
.HeaIns3>div:nth-child(3)>a>span:nth-child(1){
    font-size: 70px;
    margin-top: 30px;
}
.HeaIns3>div:nth-child(3)>a>span:nth-child(2){
    font-size: 20px;
    line-height: 50px;
}
.HeaIns3>div:nth-child(3)>a>span:nth-child(3){
    font-size: 16px;
}

.agearea>div:nth-child(1){
    font-size: 20px;
    text-align: left;
    color: #666;
    line-height: 100px;
}
.agearea>div:nth-child(2){
    width: 504px;
    display: flex;
    justify-content: space-between;
}
.agearea>div:nth-child(2)>span{
    width: 160px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #666;
    color: #666;
    font-size: 20px;
    border-radius: 5px;
}


.animated {
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

/**/

.icon-guanbi{
    font-family: 'iconfont';
    font-size: 34px;
    color: #00adec!important;
}
#dialogBg {
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .5;
    filter: alpha(opacity=60);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

#dialog,#dialog2 {
    width: 712px;
    height: 600px;
    display: none;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 10000;
    border: 1px solid #ccc;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0 102px;
    padding-top: 50px;
}

.dialogTop {
    position: absolute;
    left: 20px;
    top: 20px;
}

.tishi>span{
    display: block;
    color: #00aeeb;
}
.tishi>span:nth-child(1){
    font-size: 33px;
    margin-top: 30px;
    margin-bottom: 18px;
}
.tishi>span:nth-child(2){
    font-size: 43px;
    font-weight: bold;
}
.HeaIns3>div:nth-child(1)>span:nth-child(2){
    cursor: pointer;
}
.editInfos {
    width: 382px;
    height: 230px;
    padding-top: 50px;
}

.editInfos li {
    width: 100%;
    height: 55px;
    line-height: 40px;
    padding-top: 11px;
    border-bottom: 1px solid #dcdcdc;
    display: flex;
    justify-content: space-between;
}
input[placeholder], [placeholder], *[placeholder] {
    color: #7d7d7d !important;
}

.ipts {
    width: 100%;
    height: 100%;

    padding: 5px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    padding-left: 25px;
    font-size: 20px;
}
.editInfos>li:nth-child(2)>.ipts{
    width: 170px;
    display: inline-block;
}
.ipts:focus {
    outline: none;
    border-color: #66afe9;
}
.yzm{
    display: inline-block;
    width: 180px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #24c369;
    border-radius: 5px;
    color: #fff;
}
.submitBtn {
    width: 100%;
    height: 52px;
    line-height: 52px;
    cursor: pointer;
    margin-top: 22px;
    display:block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: center;
    background-image:linear-gradient(135deg, #00adec 141.4213562373095px, #6fc5e8 282.842712474619px);
    color: #fff;
    font-size: 23px;
    font-weight: bold;
    box-shadow: 3px 3px 3px  #dcdcdc;
    -webkit-box-shadow: 3px 3px 3px  #dcdcdc;
}


.radios{
    width: 25px;
    height: 25px;
    border: 1px solid #666;
    border-radius: 3px;
}
.qianzheng{
    width: 280px;
    display: flex!important;
    justify-content: space-around;
    padding-top: 10px;
    margin-bottom: 70px;
}
.qianzheng>span{
    width: 53px;

    display: flex;
    line-height: 28px;
}
.qianzheng>span>label{
    margin-right: 10px;
    font-size: 20px;
}
.qianzheng>span>input{
    outline: none;
    margin-bottom: 0!important;
    display: inline-block;
}

.icon-duigou{
    font-family: 'iconfont';
    text-align: center;
    line-height: 24px!important;
    color: #fff!important;
    border: none!important;
    background: #00adec!important;
}

.step2{
    display: none;
}
.step3{
    display: none;
}
.types>span>.icon:nth-child(1){
    display: block;
    margin: 0 auto;
}
.types>span>.icon:nth-child(2){
    display: none;
}
.riskactive{
    border-color: #00adec!important;
    box-shadow: inset 5px 5px 50px #cceffb!important;
    color: #00adec!important;
    cursor: pointer;

}
.riskactive>span>.icon:nth-child(1){
    display: none;
}
.riskactive>span>.icon:nth-child(2){
    display: block;
    text-align: center;
    margin: 0 auto;
}
.activeage,.activeages{
    border-color: #00adec!important;
    color: #00adec!important;
}

.ages>img{
    display: none;
    width: 300px;
    height: 168px;
}
.ages>.ageimg{
    display: block;
}
.queryDevice{
    height: 100%;
    font-size: 20px;
    color: #666;
    text-align: center;
    border-radius: 5px;
    border-color:#fff;
    background-color: #fff;
    outline:none;
}