﻿@charset "utf-8";

/* 滚动条清除样式 */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: transparent;
}
/* 设置整体的高度 */
html, body {
    height: 100%;
}
/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
    font-size:100px;
}

/* 禁止缩放表单 */
input[type="submit"], input[type="reset"], input[type="button"], input {
    resize: none;
    border: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}
/* 取消链接高亮 */
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;
}

/* 图片自适应 */
img {
    width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
    display: block;
    -ms-interpolation-mode: bicubic; /*为了照顾ie图片缩放失真*/
}

/* 初始化 */
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: #F8F8F8;
}

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;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
}

input {
    font-family: 'Microsoft YaHei';
}
/*单行溢出*/
.one-txt-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*多行溢出 手机端使用*/
.txt-cut {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* 移动端点击a链接出现蓝色背景问题解决 */
a:link, a:active, a:visited, a:hover {
    background: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.w50 {
    width: 50%;
}

.w25 {
    width: 25%;
}

.w20 {
    width: 20%;
}

.w33 {
    width: 33.333333%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.db {
    display: block !important;
}

.dn {
    display: none;
}
.mbw {
    width: 7.5rem;
    margin: 0 auto;
    position: relative;
}
/*提示框*/
.alert {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 300px;
    max-width: 600px;
    transform: translate(-50%,-50%);
    z-index: 99999;
    text-align: center;
    padding: 15px;
    border-radius: 3px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.num-kp-move{
    z-index:3;
}
.shoucang {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    width: 0.34rem;
    height: 0.34rem;
    color: #fe552e;
    font-size: 0.34rem;
}
.yyy {
    display: none !important;
}
.biangray {
    color: #AFAFB1 !important;
}
.biangray .blue{
    color: #AFAFB1 !important;
}



input[type="checkbox"] {
    position: relative;
    width: 0;
    height: 0.3rem;
    margin-right: 0.5rem;
    margin-top: 0;
    border-radius: 100%;
    vertical-align: middle;
    cursor: pointer;
}

    input[type="checkbox"]::before {
        content: '';
        display: block;
        width: 0.3rem;
        height: 0.3rem;
        background-color: #dedede;
        border-radius: 3px;
    }

input[type="checkbox"]:checked::before {
    background-color: #FE552E;
}

    input[type="checkbox"]:checked::after {
        content: '';
        position: absolute;
        width: 0.1rem;
        height: 0.15rem;
        border: 2px solid #ffffff;
        border-top-width: 0;
        border-left-width: 0;
        top: 0.03rem;
        left: 0.1rem;
        -ms-transform: rotate( 45deg);
        transform: rotate( 45deg);
    }


input[type="radio"] {
    position: relative;
    width: 0;
    height: 0.3rem;
    margin-right: 0.5rem;
    margin-top: 0;
    vertical-align: middle
}

    input[type="radio"]::before {
        content: '';
        display: block;
        width: 0.28rem;
        height: 0.28rem;
        border-radius: 50%;
        border: 1px solid #FE552E;
        background-color: #ffffff;
    }

    input[type="radio"]:checked::before {
        border: 1px solid #FE552E;
    }

    input[type="radio"]:checked::after {
        content: '';
        position: absolute;
        top: 0.05rem;
        left: 0.05rem;
        width: 0.16rem;
        height: 0.16rem;
        border-radius: 50%;
        background-color: #FE552E
    }
.hot_city {
    width: 100%;
    height: .8rem;
    background: white;
    line-height: .8rem;
}
.hot_city span:nth-child(1){
    font-size:.3rem;
    color:black;
    font-weight:bold;
    font-family:"微软雅黑";
    margin-left:.2rem;
    float:left;
}
.hot_city span:nth-child(2){
    color:white;
    font-weight:bold;
    font-family:"微软雅黑";
    margin-right:.2rem;
    float:right;
    display:inline-block;
    width:.5rem;
    height:.5rem;
    background:#E4E4E4;
    text-align:center;
    line-height:.5rem;
    margin-top:.15rem;
    font-size:.3rem;
}
.hot_citys {
    width: 100%;
    overflow: hidden;
    padding-bottom: .1rem;
    display: flex;
    flex-wrap:wrap;
    border-top: 2px solid #E4E4E4;
    border-bottom: 2px solid #E4E4E4;
}
.hot_citys li{
    margin-left:.2rem;
    color:#6D6D6D;
    font-size:.3rem;
    margin-top:.1rem;
}

.nonum_mask{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background:rgba(0,0,0,0.3);
    z-index:999;
    display:none;
}
.nonum_box{
    width:5.2rem;
    height:3.6rem;
    background:#fff;
    margin:3.6rem auto;
    position:relative;
    overflow:hidden;
    border-radius:0.1rem;
}
.nonum_cuo{
    font-size:.5rem;
    position:absolute;
    top:0;
    right:.2rem;
}
.nonum_icon {
    width: .6rem;
    height: .6rem;
    border: .05rem solid #fe552e;
    color: #fe552e;
    font-weight:bold;
    font-size:.4rem;
    text-align:center;
    line-height:.55rem;
    margin:0 auto;
    margin-top:.32rem;
    border-radius:50%;
}
.nonum_text{
    text-align:center;
    margin:.36rem auto;
    font-size:.32rem;
    padding: 0 0.28rem;
}
.nonum_txt {
    text-align: center;
    font-size: .2rem;
}
.nonum_btn{
    width:1.6rem;
    height:.64rem;
    text-align:center;
    line-height:.64rem;
    color:#fff;
    font-size:.32rem;
    margin:.1rem auto;
    background:#ef3030;
    border-radius:0.06rem;
}

.dialog_mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 19999;
    display: none;
}

.dialog {
    position: fixed;
    z-index: 20000;
    left: 50%;
    top: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transform: translate(-50%, -50%);
    display: none;
}

.dialog_cont {
    position: relative;
    padding: 10px;
    background: #fff;
}

.dialog_loading_cont {
    /*display: none;*/
    padding: 10px;
}
.dialog_loaging_img {
    width: 50px;
    height: 50px;
}
.backtop {
    width: 47px;
    height: 47px;
    background: rgba(0,0,0,0.3);
    position: fixed;
    right: 0.05rem;
    bottom: 3.4rem;
    color: #fff;
    font-size: .28rem;
    border-radius: 50%;
    display: none;
    z-index: 800;
}
.backtop img{
	width: 26px;
    height: 26px;
    margin: 12px auto;
}
.extend {
    width: 60%;
    height: 0.6rem;
    color:#959595;
    font-size: .25rem;
    text-align: center;
    padding: 0.1rem 0;
    background: #F6F6F6;
    margin: 0 auto 0.1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.extend img {
    width: .4rem;
    height: .4rem;
}
.extends {
    width: 60%;
    height: 0.6rem;
    color: #959595;
    font-size: .25rem;
    text-align: center;
    padding: 0.1rem 0;
    background: #F6F6F6;
    margin: 0 auto 0.1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.extends img{
    width:.4rem;
    height:.4rem;
}


/* 号码样式 */
.num-kp {
    width: 47%;
    padding: 0.15rem 0.2rem 0.2rem;
    position: relative;
    background-color: #FFFFFF;
    float: left;
    margin-left: 2%;
    margin-top: 0.18rem;
    border-radius: 0.12rem;
    box-shadow: 0.02rem 0.02rem 0.08rem 0rem #C6C6C6;
}

.number-yd {
    background: url(/Img/mb/bg-yd.png) 100% 56% no-repeat;
    background-size: 50%;
}

.number-dx {
    background: url(/Img/mb/bg-dx.png) 100% 56% no-repeat;
    background-size: 50%;
}

.number-lt {
    background: url(/Img/mb/bg-lt.png) 100% 56% no-repeat;
    background-size: 50%;
}

.number-gd {
    background: url(/Img/mb/guangdian.png) 100% 56% no-repeat;
    background-size: 50%;
}

.num-list .num-love:nth-child(odd) {
    border-right: 0.01rem solid #EEEEEE;
}

.num-hd {
    /*font-size: 0.40rem;*/
    font-size: 0.37rem;
    color: #000000;
    line-height: 0.6rem;
    font-weight: 900;
}

.blue {
    color: #FF552E;
}

.after:before {
    content: "-";
    color: #AFAFB1;
}

.num-md {
    width: 100%;
    overflow: hidden;
    height: 0.4rem;
    display: flex;
    align-items: center;
}

.num-fd {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.unm-city {
    max-width: 70%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.24rem;
    line-height: 0.24rem;
    color: #AFAFB1;
    margin-right: 0.16rem;
}

.num-label {
    background-color: #ffeade;
    border-radius: .3rem;
    color: #f9613e;
    display: inline-block;
    /* margin-left: .15rem; */
    overflow: hidden;
    padding: 0 .15rem;
    text-align: center;
    text-overflow: clip;
}

.label_icon {
    width: 0.3rem;
    height: 0.3rem;
    display: inline-block;
}

.num-kp .price, .num-love .price {
    font-size: 0.24rem;
    color: #EC0507;
}

.price-txt {
    font-size: 0.28rem;
    color: #EC0507;
}

.price-num {
    font-size: 0.24rem;
    color: #AFAFB1;
    margin-left: 0.16rem;
}

.num-kp .shoucang_btn {
    width: 0.38rem;
    height: 0.38rem;
    position: absolute;
    right: 0.2rem;
    bottom: 0.2rem;
}

.num-kp-move {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right,#61ACFD, #A267D5);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    color: #fff;
    border-radius: 0.12rem;
}

    .num-kp-move div:nth-child(2) {
        display: flex;
        justify-content: center;
    }

    .num-kp-move .num-hd {
        color: white;
        font-size: 0.42rem;
        line-height: 0.8rem;
        text-align: center;
    }

.after2:before {
    content: "-";
    color: white;
}

.Collection-btn {
    font-size: 0.3rem;
    background: white;
    width: 1.55rem;
    height: 0.75rem;
    text-align: center;
    line-height: 0.75rem;
    border-radius: 0.05rem;
    color: #000;
}

.appointment-btn {
    width: 1.55rem;
    height: 0.75rem;
    font-size: 0.3rem;
    background: #FF5500;
    text-align: center;
    line-height: 0.75rem;
    margin-left: 0.2rem;
    color: white;
    border-radius: 0.05rem;
}

/*挽留弹框*/
.popup-image-wrapper {
    width: 100%;
    height: 100%;
    max-width: 7.5rem;
    display: flex;
    flex-direction: column;
    padding-top: 18vh;
    position: fixed;
    top: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10;
}

    .popup-image-wrapper .image_box {
        width: 100%;
        height: auto;
    }

    .popup-image-wrapper .close_btn {
        width: 100%;
        height: 1.04rem;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

        .popup-image-wrapper .close_btn img {
            width: 0.44rem;
            height: 0.44rem;
        }
/*.seo_img {
    display: flex;
    align-items: center;
    justify-content: center;
}*/
.add_tips {
    font-size: .24rem;
    color: #7A7A7A;
}