﻿div,span,a,li,ul,body,html,input{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
a{
    text-decoration:none;
}
li,ul{
    list-style:none;
}
.WapMap .map_header {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:60px;
    background:#fff;
    z-index:99;
}
.WapMap .back_page {
    position: absolute;
    color:#666;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    font-size:20px;
}
.WapMap .header_actichs {
    position: absolute;
    color: #666;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.WapMap .actich_item {
    margin-left:10px;
    font-size:30px;
}
.WapMap .map_header_tabs {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.WapMap .header_tab_item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 17px;
    color: #333;
    cursor: pointer;
    margin: 0 10px;
}
.WapMap .header_tab_item a{
    color:#333;
}
.WapMap .header_tab_item.active a {
    color: #00ae66;
}
.WapMap .header_tab_item.active:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #00ae66;
    position: absolute;
    left: 0;
    bottom: 0;
}


.WapMap .map_focus {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 10;
    box-shadow: 0 0 6px 1px rgba(0,0,0,0.2);
}
.WapMap .map_focus i {
    font-size: 20px;
    color: #666;
}

.WapMap .find_house_types {
    width: 70%;
    border-radius: 30px;
    box-shadow: 0 0 6px 1px rgba(0,0,0,0.2);
    background:#fff;
    position:fixed;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    padding:15px 0;
    z-index:10;
    display:flex;
}
.WapMap .find_type{
    width:50%;
    border-right:solid 1px #f2f2f2;
    display:flex;
    align-items:center;
    height:30px;
    justify-content:center;
    color:#333;
}
.WapMap .find_type:last-child{
    border:none;
}
.WapMap .find_type i {
    font-size:25px;
    margin-right:10px;
    color:#333;
}

/***过滤条件*/
.WapMap .filter_bg {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display:none;
    z-index: 100;
}
.WapMap .filter_main {
    width:80%;
    height:100%;
    position:absolute;
    right:0;
    top:0;
    background:#fff;
}
.WapMap .filter_body {
    height: calc(100% - 50px);
    overflow: auto;
    padding: 0 10px;
}
.WapMap .filter_footer {
    height: 50px;
    display: flex;
    box-shadow: 0 0 10px -5px rgba(0,0,0,0.3);
    border-top: solid 1px #f2f2f2;
}
.WapMap .filter_footer_btn {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #666;
    font-weight: bold;
    cursor: pointer;
}
.WapMap .filter_footer_btn.filter_submit {
    color: #fff;
    background: #00ae66;
}
.WapMap .filter_title {
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #000;
}
.WapMap .filter_list {
    display: flex;
    flex-wrap: wrap;
}
.WapMap .filter_item {
    width: 31%;
    margin-right: 2.5%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    font-size: 12px;
    color: #666;
    font-weight: 700;
    margin-bottom: 15px;
    border-radius: 3px;
}
.WapMap .filter_item.active {
    color: #00ae66;
    background: rgba(0, 174, 102,0.2);
}
.WapMap .filter_item:nth-of-type(3n) {
    margin-right: 0;
}
.WapMap .filter_item_inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
.WapMap .filter_input_item {
    width: 49%;
    height: 40px;
    border-radius: 4px;
    background: #f2f2f2;
    text-align: center;
    font-size: 15px;
    color: #666;
    outline: none;
    padding: 5px;
    border: none;
}
.WapMap .filter_list_main {
    padding-bottom: 20px;
    border-bottom: solid 1px #f2f2f2;
}
.filter_tip{
    color:#999;
    font-size:14px;
    margin:20px 0;
}
/**搜索页**/
.WapMap .map_search_page {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 100;
    display: none;
}
.WapMap .map_search {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    border-bottom: solid 1px #999;
}
.WapMap .map_search_data {
    height: calc(100% - 60px);
    width: 100%;
    overflow: auto;
}
.WapMap .map_search_main {
    display: flex;
    align-items: center;
    flex: 1;
    background: #e8e8e8;
    border-radius: 3px;
    height: 40px;
    padding: 0 10px;
}
.WapMap .search_type_select {
    display: flex;
    align-items: center;
    color: #333;
    width: 80px;
    font-size: 15px;
}
.WapMap .search_type_select i {
    font-size: 12px;
    margin: 0 10px;
}
.WapMap .search_house_ipt {
    flex: 1;
    border: none;
    background: none;
    font-size: 15px;
}
.WapMap .close_search_page {
    color: #666;
    font-size: 17px;
    padding: 0 10px;
}
.WapMap .search_type_select_main {
    position: absolute;
    top: 50px;
    left: 10px;
    background: #fff;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
    border-radius: 10px;
    width: 100px;
    display: none;
}
.WapMap .search_type_select_main:after {
    content: '';
    border: 10px solid #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-100%);
    top: 0;
    border-color: transparent transparent #fff transparent;
}
.WapMap .select_type_item {
    padding: 10px 15px;
    border-bottom: solid 1px #f2f2f2;
    color: #999;
    font-size: 16px;
}
.WapMap .select_type_item.active {
    color: #00ae66;
}
.WapMap .map_search_data li {
    padding: 20px;
    border-bottom: solid 1px #f2f2f2;
}

/**详情页**/
.WapMap .map_house_detail_page {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    display:none;
}
.WapMap .house_detail_header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
    font-size: 20px;
    color: #000;
    background: #f8f8f8;
}
.WapMap .close_detail {
    font-size: 18px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.WapMap .detail_sort_main {
    height: 60px;
    background: #f8f8f8;
    display: flex;
}
.WapMap .sort_item {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
}
.WapMap .sort_item.active {
    color: #00ae66;
}
.WapMap .house_detail_main {
    height: calc(100% - 120px);
    overflow: auto;
    padding-left: 15px;
}
.WapMap .sort_item i {
    font-size: 12px;
    margin-left: 5px;
}
.WapMap .loupan_info {
    position: relative;
    padding: 20px 0;
    border-bottom: solid 1px #f2f2f2;
}
    .WapMap .loupan_info a {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
.WapMap .loupan_info_name {
    font-size: 20px;
    color: #000;
    display: flex;
    align-items: flex-end;
}
.WapMap .loupan_info_money {
    color: red;
    font-size: 17px;
    margin-left: 10px;
    line-height: 20px;
}
.WapMap .loupan_info_name i {
    color: #999;
    font-size: 20px;
    margin-left: 10px;
}
.WapMap .loupan_info_address {
    color: #999;
    font-size: 15px;
    margin-top: 10px;
}
.WapMap .follow_loupan {
    position: absolute;
    right: 20px;
    top: 25px;
    color: #00ae66;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.WapMap .follow_loupan i {
    margin-right: 10px;
}
.WapMap .loupan_people {
    padding: 20px 0;
    border-bottom: solid 1px #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.WapMap .loupan_people_info {
    display: flex;
    align-items: center;
}
.WapMap .loupon_people_photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: gray;
    overflow: hidden;
}
.WapMap .loupon_people_photo img {
    width: 100%;
}
.WapMap .loupan_people_name {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.WapMap .people_title {
    font-size: 15px;
    color: #999;
    margin-top: 10px;
    font-weight: normal;
}
.WapMap .people_makes {
    display: flex;
}
.WapMap .people_make_item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #00ae66;
    color: #00ae66;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.WapMap .people_make_item i {
    font-size: 25px;
}

.WapMap .loupan_house_list {
}
.WapMap .loupan_house_item {
    padding: 20px 20px 20px 0;
    display: flex;
    border-bottom: solid 1px #f2f2f2;
}
.WapMap .loupan_house_cover {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 10px;
    background: gray;
}
    .WapMap .loupan_house_cover img {
        width: 100%;
    }
.WapMap .loupan_house_info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: calc(100% - 130px);
}
.WapMap .loupan_house_name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.WapMap .loupan_house_other {
    font-size: 15px;
    color: #999;
    margin: 5px 0;
}
.WapMap .loupan_house_ul {
    display: flex;
    margin-bottom: 5px;
}
.WapMap .loupan_house_li {
    margin-right: 5px;
    padding: 2px 5px;
    font-size: 15px;
}
.WapMap .loupan_house_li:last-child {
    margin-right: 0;
}
.WapMap .loupan_house_li:nth-of-type(1) {
    background: rgba(254,145,118,0.3);
    color: rgb(254,145,118);
}
.WapMap .loupan_house_li:nth-of-type(2) {
    background: rgba(111,182,252,0.3);
    color: rgb(111,182,252);
}
.WapMap .loupan_house_li:nth-of-type(3) {
    background: rgba(154,181,254,0.3);
    color: rgb(154,181,254);
}
.WapMap .loupan_house_money {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 15px;
}
.WapMap .house_money_num {
    color: red;
    font-size: 18px;
}