/*CSS reset*/
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body {
    font: 12px/1.5 "Microsoft YaHei", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, button, textarea, p, th, td, pre {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Microsoft YaHei", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #999;
}


.mark_bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 98;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    display: none;
}

.card .shareMain {
    display: none;
    overflow: hidden;
}

.card .shareMain .detail {
    position: fixed;
    z-index: 100;
    width: 250px;
    /*min-height: 100px;*/
    left: 50%;
    top: 50%;
    margin-top: -125px;
    margin-left: -125px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    display: none;
    box-shadow: 3px 4px 17px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #ccc;
    -webkit-animation-name: dropdownSlideInDown;
    -moz-animation-name: dropdownSlideInDown;
    -o-animation-name: dropdownSlideInDown;
    animation-name: dropdownSlideInDown;
    -webkit-animation-duration: .3s;
    -moz-animation-duration: .3s;
    -o-animation-duration: .3s;
    animation-duration: .3s;
}

@-webkit-keyframes dropdownSlideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: scale(0.2);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: scale(1);
    }
}

@-moz-keyframes dropdownSlideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: scale(0.2);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: scale(1);
    }
}

@-o-keyframes dropdownSlideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: scale(0.2);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: scale(1);
    }
}

@keyframes dropdownSlideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: scale(0.2);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: scale(1);
    }
}

.card .shareMain .detail .row_text {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.card .shareMain .phoneDetail, .card .shareMain .emailDetail {
    min-height: 50px;
    margin-top: -50px;
    word-wrap: break-word;
    word-break: break-all;
}

.card .shareMain .phoneDetail .row_text, .card .shareMain .emailDetail .row_text {
    line-height: 40px;
    padding-top: 5px;
}

.card .shareMain .weChatDetail p {
    margin-top: 10px;
}

.card .shareMain .weChatDetail p img,
.card .shareMain .qqDetail p img {
    max-width: 160px;
    max-height: 160px;
    margin-top: 10px;
}

.card .shareMain .qqDetail p {
    margin-top: 50px;
}

.card .shareMain .mapDetail {
    height: 250px;
    width: 400px;
    margin-left: -200px;
    padding: 0;
}

.card .shareMain .detail .allmap {
    width: 100%;
    height: 100%;
}

.card .shareMain .qqDetail p, .card .shareMain .weChatDetail p {
    margin-top: 0px;
}

.card .shareMain .qqDetail .row_text, .card .shareMain .weChatDetail .row_text {
    padding-top: 10px;
}


.like {
    position: absolute;
    bottom: 10px;
    left: 15px;
    z-index: 90;
    float: left;
    min-width: 40px;
    height: 33px;
    line-height: 33px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 12px;
    font-family: Microsoft YaHei;
    border-radius: 5px;
    cursor: pointer;
    display: block;
}

.like .number {
    float: left;
    text-align: center;
    padding: 0 10px;
}

.like .like_btn {
    float: left;
    min-width: 20px;
    margin-left: 10px;
}

.like .like_btn img {
    height: 20px;
    width: auto;
    margin-top: 5px;
}

.like .like_ok {
    display: none;
}

.like.light .like_btn img {
    -webkit-animation: niceIn 0.8s .2s ease;
    -moz-animation: niceIn 0.8s .2s ease;
    -o-animation: niceIn 0.8s .2s ease;
    animation: niceIn 0.8s .2s ease;
}

.like .likeIndex {
    color: #fff;
    margin: 0 10px;
}

.like .like_ranking {
    float: left;
    margin-right: 10px;
}

.like .gradeBtn {
    float: left;
    width: 26px;
    margin: 3px 0 0;
}

.JsGradeBtn {
    float: left;
}

@-webkit-keyframes niceIn {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
    70% {
        -webkit-transform: scale(.8);
        transform: scale(.8)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes niceIn {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5)
    }
    70% {
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        transform: scale(.8)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

@-o-keyframes niceIn {
    0% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 1;
        -o-transform: scale(1.5);
        transform: scale(1.5)
    }
    70% {
        -o-transform: scale(.8);
        transform: scale(.8)
    }
    100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1)
    }
}

@-moz-keyframes niceIn {
    0% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 1;
        -moz-transform: scale(1.5);
        transform: scale(1.5)
    }
    70% {
        -o-transform: scale(.8);
        transform: scale(.8)
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1)
    }
}

.gradeDialog {
    position: fixed;
    z-index: 100;
    width: 320px;
    top: 50%;
    left: 50%;
    margin-top: -160px;
    margin-left: -160px;
    text-align: center;
    -webkit-animation-name: dropdownSlideInDown;
    -moz-animation-name: dropdownSlideInDown;
    -o-animation-name: dropdownSlideInDown;
    animation-name: dropdownSlideInDown;
    -webkit-animation-duration: .3s;
    -moz-animation-duration: .3s;
    -o-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}

.gradeMain {
    float: left;
    width: 100%;
    padding: 30px 0;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #ccc;
    border-radius: 7px;
    box-shadow: 3px 4px 17px rgba(0, 0, 0, 0.2);
}

.grade_progress {
    position: relative;
    float: left;
    width: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.grade_progress img {
    position: relative;
    float: left;
    width: 60px;
    z-index: 99;
}

.grade_progress img.pro_img_end {
    float: right;
}

.grade_progress .proBox {
    position: absolute;
    z-index: 90;
    float: left;
    width: 100%;
    top: 20px;
    padding-left: 54px;
    padding-right: 93px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.grade_progress .proTxt {
    font-size: 16px;
    padding: 5px 0;
}

.protips {
    font-size: 12px;
}

.probar {
    position: relative;
    width: 100%;
    height: 15px;
    background: #999999;
}

.probar .vip {
    float: left;
    height: 100%;
}

.probar p, .probar ol {
    position: absolute;
    top: 0;
    float: left;
    height: 100%;
    width: 100%;
}

.probar ol li {
    z-index: 88;
    float: left;
    width: 20%;
    height: 100%;
    border-right: 1px solid #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.probar p {
    width: 0;
    background: #f1bc5e;
}

/*.probar .vip:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  float: left;
  height: 100%;
  background: #f1bc5e;
}*/

/*.probar ul.vip_1 li:nth-child(1),.probar ul.vip_2 li:nth-child(1),.probar ul.vip_2 li:nth-child(2),.probar ul.vip_3 li:nth-child(1),.probar ul.vip_3 li:nth-child(2),.probar ul.vip_3 li:nth-child(3),.probar ul.vip_4 li:nth-child(1),.probar ul.vip_4 li:nth-child(2),.probar ul.vip_4 li:nth-child(3),.probar ul.vip_4 li:nth-child(4),.probar ul.vip_5 li:nth-child(1),.probar ul.vip_5 li:nth-child(2),.probar ul.vip_5 li:nth-child(3),.probar ul.vip_5 li:nth-child(4),.probar ul.vip_5 li:nth-child(5){
  background: #f1bc5e;
}*/

.gradeExplain {
    padding: 0 15px;
}

.gradeExplain p {
    float: left;
    width: 100%;
    font-size: 18px;
    padding-top: 30px;
    line-height: 36px;
}

.gradeExplain ul {
    float: left;
    width: 100%;
}

.gradeExplain ul li {
    float: left;
    text-align: left;
    line-height: 25px;
}

.gradeExplain ul li:nth-child(2) {
    padding-left: 10px;
}

.alMain {
    position: absolute;
    margin: 0 auto;
    overflow: hidden;
    top: 50%;
    left: 50%;
    z-index: 99;
    margin-left: -180px;
    margin-top: -300px;
    z-index: 1;
}

@media (max-width: 767px) {

    .card .shareMain .mapDetail {
        position: fixed;
        left: 5%;
        top: 10%;
        width: 90%;
        height: 40%;
        margin-left: 0;
        margin-top: 20%;
    }

    .gradeDialog {
        position: fixed;
        z-index: 100;
        width: 100%;
        top: 50%;
        left: 0;
        margin: 0;
        margin-top: -200px;
        padding: 20px;
    }

    .alMain {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        z-index: 1;
    }


}