@charset "utf-8";

/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling : touch;
}

/* 禁止缩放表单 */
input[type="submit"], input[type="reset"], input[type="button"], input {
    resize: none;
    border: 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 {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置HTML5元素为块 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}


/* 初始化 */
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;
}
body {
    font: 12px/1.5 'Microsoft YaHei','宋体', Tahoma, Arial, sans-serif;
    color: #555;
    background-color: #F7F7F7;
}
em, i {
    font-style: normal;
}
ul,li{
    list-style-type: none;
}
strong {
    font-weight: normal;
}
.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}
.clearfix {
    zoom: 1;
}
a {
    text-decoration: none;
    color: #969696;
    font-family: 'Microsoft YaHei', Tahoma, Arial, sans-serif;
}
a:hover {
    text-decoration: none;
}
ul, ol {
    list-style: none;
}
.nav_list li{
    width: 25%;
    font-size: 0.34rem;
    text-align: center;
    float: left;
    font-weight: 400;
    height: 1rem;
    line-height: 1rem;
}
.nav_list li a{
    color: #FFFFFF;
    opacity: 0.7;
}
.nav_in{
    position: fixed;
    top: 0.93rem;
    width: 7.5rem;
    z-index: 2;
    left: 0;
    right: 0;
    margin:auto;
}
.nav_list li.active{
    font-size: 0.38rem;
    font-weight: 700;
    background: url(/indexnew/image/factive.png) no-repeat center 0.8rem;
    background-size: 0.63rem 0.09rem;
}
.nav_list li.active a{
    opacity: 1;
}
.nav_active{
    background: #FFFFFF;
    box-shadow: 0rem 0.02rem 0.19rem 0rem rgba(0, 0, 0, 0.1);
    border-radius: 0rem 0rem 0.33rem 0.33rem;
}
.nav_active li a{
    color: #333333;
}
.nav_active li.active{
    font-size: 0.38rem;
    font-weight: 700;
    background: url(/indexnew/image/nav_active.png) no-repeat center 0.8rem;
    background-size: 0.63rem 0.09rem;
}
/*新增：*/
.public {
    width: 7.5rem;
    margin: 0 auto;
    margin-bottom: 0.94rem;
}
.slideNew {
    background: #eee;
    position: fixed;
    left: 0;
    top:0rem;
    right: 0;
    margin: auto;
    z-index: 19;
    display: flex;
    align-items: center;
}
.slideLeft {
    width: .65rem;
    height: .65rem;
    position: relative;
    margin-left: .16rem;
}
.slideLeft>img{
    width: 0.7rem;
}
.wx-sp {
    position: absolute;
    right: -.1rem;
    top: -.1rem;
    font-size: .16rem;
    display: block;
    width: .3rem;
    height: .3rem;
    background: red;
    text-align: center;
    line-height: .3rem;
    color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: ani 2s ease-in infinite;
}
.slideRight {
    height: .8rem;
    margin-left: .2rem;
}
.slideRight h2 {
    font-size: .26rem;
    /*margin-top: .05rem;*/
    color: #d62c2c;
}
.slideRight .view {
    overflow: hidden;
    height: .45rem;
}
.slideRight ul li {
    font-size: .26rem;
    line-height: .45rem;
}
.slideLeft img, img {
    vertical-align: top;
}
.slideNew .arrow {
    font-size: .5rem;
    position: absolute;
    right: .2rem;
}.public .logo, .slideNew {
     width: 7.5rem;
     height: .94rem;
 }
@keyframes ani {
    0%,100% {
        opacity: 1
    }

    33%,66% {
        opacity: 0
    }
}
.fee{
    animation: none;
    top: 68%;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    text-align: center;
    line-height: 1.2rem;
    font-size: 0.5rem;
    font-weight: bold;
    background-color:rgba(48,151,239,.96);
    right: 0;
    z-index: 2;
}
.fee a{
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background: url(/public/img/jmy_xx.png) no-repeat center;
    background-size: 0.6rem;
    line-height: 0.8rem;
    margin: auto;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
}
@keyframes donghua {
    0%,to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }
}
.fixedBot{
    width: 7.5rem;
    height: 1.34rem;
    line-height: 1.34rem;
    position: fixed;
    bottom: 0;
    z-index: 10;
   background-color: rgba(255,255,255,.9);
    box-shadow: 0 0.02rem 0.19rem 0 rgba(0, 0, 0, 0.1);
    border-radius:0.33rem 0.33rem 0 0;
}
.fixedBot ul li{
    width: 3.48rem;
    height: 0.9rem;
    background-color: rgba(58,141,255,1);
    border-radius: 0.48rem;
    float: left;
    font-size: 0.38rem;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    line-height: 0.9rem;
    margin-left: 0.16rem;
    margin-top: 0.22rem;
    position: relative;
    padding-right: 0.2rem;
}
.fixedBot ul li a{
    color: #ffffff;
    padding-right: 0.4rem;
}
.fixedBot ul li:last-child{
    float: right;
    margin-right: 0.16rem;
    background-color: rgba(254,49,79,1);
}
.fixedBot ul li .random{
    display:block;
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
    background: #FE3451;
    font-size: 0.24rem;
    line-height: 0.44rem;
    position: absolute;
    top: 0;
    right: 0.54rem;
    bottom: 0;
    margin: auto 0;
    font-weight: 500;
}
.fixedBot ul li:first-child .random{
    background: #FE3451;
    color: #FFFFFF;
}
.fixedBot ul li:last-child .random{
    color: #E93F59;
    background: #FFFFFF;
}
.fixedPhone .freeCall {
    color: #fff;
    background: #0678d1;
    position: fixed;
    right: 0;
    top: 35%;
    font-size: .28rem;
    padding: .2rem 0;
    border-radius: 2px;
    z-index: 100;
}
.phoneBox {
    width: 6rem;
    height: 2.8rem;
    border: 3px solid #0b7bd2;
    left: 50%;
    margin-left: -3rem;
    top: 38%;
    border-radius: 5px;
    display: none;
    z-index: 100;
    background: #fff;
}
.fee, .phoneBox {
    position: fixed;
}
.phoneBox {
    width: 6rem;
    height: 2.8rem;
    border: 3px solid #0b7bd2;
    left: 50%;
    margin-left: -3rem;
    top: 38%;
    border-radius: 5px;
    display: none;
    z-index: 100;
    background: #fff;
}
.phone-form {
    width: 5.8rem;
    font-size: 0;
    margin: .3rem auto 0;
}
.fixedBot ul, .phone-form form {
    display: flex;
}
.phoneIpt {
    width: 4rem;
    height: .7rem;
    margin-left: .1rem;
    position: relative;
    border: 2px solid #e5e5e5;
}
input {-webkit-appearance:none;}
.phone-btn {
    display: block;
    width: 1.5rem;
    height: .7rem;
    margin-left: .1rem;
    background: #0678d1;
    color: #fff;
    border: none;
    font-size: .25rem;
    text-align: center;
    outline: 0;
    border-radius: initial;
}
input{
    background:none;
    outline:none;
    border:none;
}
.phoneBox .pro {
    color: #0678d1;
    font-size: .3rem;
    width: 5.8rem;
    line-height: .45rem;
    margin: .2rem auto 0;
    text-indent: 1em;
}
.phoneBox .close_ {
    right: -.26rem;
    top: -.42rem;
    font-size: .5rem;
    color: #0678d1;
    position: absolute;
}
.phoneIpt input{
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 0.2rem;
    font-size: 0.3rem;
}

.jmy{
    position: fixed;
    right: 0.1rem;
    bottom: 1.4rem;
    z-index: 100;
}
.jmy_tc{
    width: 4rem;
    box-sizing: border-box;
    -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.1);
    /* box-shadow: 0 3px 4px rgba(0,0,0,.1); */
    border-radius:0.2rem;
    color: #555;
    background: #fff;
    z-index: 15;
    font-size: 0.3rem;
    padding: 0.3rem;
    border: 1px solid #ccc;
    font-weight: 600;
    -webkit-animation: fadeleftIn .4s;
    animation: fadeleftIn .4s;
    -webkit-animation-name: popIn;
    animation-name: popIn;
    position: relative;
}
.jmy_tc b{
    color: rgb(184,49,47);
}
.close_jmy{
    width: 0.3rem;
    height: 0.3rem;
    display: block;
    right: 0.1rem;
    top: 0.1rem;
    font-size: 0.35rem;
    position: absolute;
    background: url("/public/img/jmygb.png") no-repeat center;
    background-size: 100%;
}
.close_xx{
    width: 0.45rem;
    height: 0.45rem;
    display: block;
    background: url("/public/img/jmy_xx.png") no-repeat center;
    background-size: 100%;
    margin: 0 auto;
    margin-top: 0.1rem;
}
.jmy_zx{
    border-radius: 50%;
    color: rgb(255, 255, 255);
    background: rgb(243, 53, 49);
    transform: scale(1);
    transform-origin: 100% 100%;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    overflow: hidden;
    float: right;
    margin-top: 0.2rem;
}
.jmy_zx b{
    font-size: 0.26rem;
    display: block;
    height: 0.4rem;
    line-height: 0.4rem;
}
.consult-blank-wt-two-btn-icon {
    position: absolute;
    display: block;
    top:0rem;
    left:-0.5rem;
    height: 100%;
    width: 0.8rem;
    background-image: url(https://imagelib.cdn.bcebos.com/cip_ml_pic42474230-e57d-4343-9cbd-6a08aeaee5da.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-animation: move 3s infinite both;
    animation: move 3s infinite both;
    opacity: 0.5;
}
@-webkit-keyframes move{
    0%{left:-40px;opacity:.6}
    25%{left:100%;opacity:.2}
    50%{left:100%;opacity:.2}
    75%{left:-40px;opacity:.6}to{left:-40px;opacity:.6}}
@-webkit-keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}
.jmy_tc:before {
    position: absolute;
    display: inline-block;
    bottom: -.06rem;
    right: 0.5rem;
    width: 0;
    height: 0;
    content: "";
    border: 5px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    /*-webkit-box-shadow: 1.33px -1.33px 4px rgba(0,0,0,.2);*/
    /*box-shadow: 1.33px -1.33px 4px rgba(0,0,0,.2);*/
    background: #fff;
    z-index: 1;
}
/*20201217新增底部*/
.footer_new{
    width: 7.5rem;
    height: 1.3rem;
    background-image: linear-gradient(90deg,#ff9233,#fe5136 31%,#fd2245 64%,#fd227a);
    position: fixed;
    bottom: 0;
    z-index: 100;
}
.footer_zxjlq{
    float: right;
    width: 3.2rem;
    height: 0.7rem;
    background-image: linear-gradient(90deg, rgb(255, 243, 218) 4%, rgb(255, 231, 162) 96%);
    border-radius: 0.24rem;
    text-align: center;
    line-height: 0.7rem;
    font-size: 0.38rem;
    color: rgb(250, 24, 24);
    font-weight: 800;
    animation: scale 4s linear infinite;
    margin-top: 0.3rem;
    margin-right: 0.4rem;
    letter-spacing: 0.05rem;
}
@-webkit-keyframes scale{
    0%{-webkit-transform:scale(1);transform:scale(1)}
    12.5%{-webkit-transform:scale(1.1);transform:scale(1.1)}
    25%{-webkit-transform:scale(1);transform:scale(1)}
    37.5%{-webkit-transform:scale(1.1);transform:scale(1.1)}
    50%{-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:scale(1);transform:scale(1)}
}
@keyframes scale{
    0%{-webkit-transform:scale(1);transform:scale(1)}
    12.5%{-webkit-transform:scale(1.1);transform:scale(1.1)}
    25%{-webkit-transform:scale(1);transform:scale(1)}
    37.5%{-webkit-transform:scale(1.1);transform:scale(1.1)}
    50%{-webkit-transform:scale(1);transform:scale(1)}to{-webkit-transform:scale(1);transform:scale(1)}
}
.footer_zxph{
    float: left;
    margin-top: 0.3rem;
}
.footer_zxph a{
    display: block;
    font-size: 0.28rem;
    float: left;
    color: #fff;
    padding-top: 0.4rem;
    margin-left: 0.4rem;
}
.footer_zxph a:first-child{
    background: url("/indexnew/image/footer_xx.png") no-repeat top;
    background-size:0.4rem;
}
.footer_zxph a:last-child{
    background: url("/indexnew/image/footer_ph.png") no-repeat top;
    background-size:0.4rem;
}
.tjtc{
    width: 100%;
    height: 0;
    background: #fff;
    position: fixed;
    bottom: 0;
    z-index: 1001;
    transition: all 0.25s ease 0s;
    /*display: none;*/
    border-radius: 0.24rem 0.24rem 0 0;
}
.tjtc_box{
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,.2);
    position: fixed;
    z-index: 1000;
    display: none;
}
.tjtc_gb{
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
}
.tjtc_title{
    text-align: center;
    font-size: 0.3rem;
    margin-top: 0.5rem;
}
.iptBoxfoot,.tijiaofoot{
    width: 95%;
    height: 0.8rem;
    margin: 0 auto;
    margin-top: 0.3rem;
}
.iptBoxfoot input,.tijiaofoot button{
    width: 100%;
    height: 100%;
    display: block;
    font-size: 0.28rem;
    padding-left: 0.2rem;
    border: 0.01rem solid #eee;
}

.tijiaofoot button{
    padding-left: 0;
    outline: none;
    border: none;
    background: #f33531;
    color: #fff;
}
/*end*/

.header{
    margin-top: 0.94rem;
    background: #ffffff;
}
.nav_list li {
    width: 25%;
    font-size: 0.34rem;
    text-align: center;
    float: left;
    font-weight: 400;
    height: 1rem;
    line-height: 1rem;
}
.nav_list li a {
    color: #000;
    opacity: 0.7;
}
.jjs {
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    background: red;
    position: absolute;
    right: -0.2rem;
    top: -0.3rem;
    text-align: center;
    line-height: 0.4rem;
    border-radius: 50%;
    /* animation: ani 2s ease-in infinite; */
    font-size: 0.22rem;
}