
@font-face {
    font-family: 'Futura-Light';
    src: url('./fonts/Futura-Light.eot?') format('eot'),
    url('./fonts/Futura-Light.woff') format('woff'),
    url('./fonts/Futura-Light.ttf')  format('truetype'),
    url('./fonts/Futura-Light.svg#Futura-Light') format('svg');
}

@font-face {
    font-family: 'Futura-Book';
    src: url('./fonts/Futura-Book.eot?') format('eot'),
    url('./fonts/Futura-Book.woff') format('woff'),
    url('./fonts/Futura-Book.ttf')  format('truetype'),
    url('./fonts/Futura-Book.svg#Futura-Book') format('svg');
}

@font-face {
    font-family: 'Futura-Heavy';
    src: url('./fonts/Futura-Heavy.eot?') format('eot'),
    url('./fonts/Futura-Heavy.woff') format('woff'),
    url('./fonts/Futura-Heavy.ttf')  format('truetype'),
    url('./fonts/Futura-Heavy.svg#Futura-Heavy') format('svg');
}

/* ==========================================================================
   Base styles: opinionated defaults  Base styles: opinionated defaults
   ========================================================================== */

html, button, input, select, textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio, canvas, img, video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/
div, aside, article, section, iframe, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
}

a {  color: inherit;
    text-decoration:none;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

a:hover {color: inherit;}

/*img*/
img{
    display:inline-block;
    *display: inline;
    *zoom:1;
    border:0;
    margin:0;
    padding:0;
    max-width: 100%;
    height: auto;
}

.amap-layers img {
    max-width: initial;
    width:30px;
}

/*text styles*/
h1      {font-size:2.5em;}
h2      {font-size:1.25em;}
h3      {font-size:1.125em;}
h4      {font-size:1em;}
h5      {font-size:0.875em;}
h6      {font-size:0.75em;}
p       {font-size:0.875em;}

label   {font-size:0.875em;}

input{
    border:none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea{
    border:none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    resize:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:#000;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#000;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#000;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#000;
}

input:focus, textarea:focus {
    outline: 0;
}

a:focus {
    outline: 0;
}

h1, h2, h3,  h4, h5, h6, strong, b, p {
    letter-spacing: 0.03em;
    line-height: 1.25em;
    margin-bottom: 0.8em;
    color: inherit;
}

h1, h2, h3, strong, b {
    font-family: 'Futura-Heavy', Arial, 'microsoft yahei', '微软雅黑', 'SimHei', '中易黑体', sans-serif;
    font-weight: 300;
}

p {
    line-height: 1.45em;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.bold           {font-weight:bold;}
.text-right     {text-align:right;}
.text-center    {text-align:center;}
.text-left      {text-align:left;}

/*Display*/
.block          {display:block;}
.inline         {display:inline;}
.hide           {display:none;}
.inline-block   {display:inline-block; *display: inline; *zoom:1;}


/*Positioning*/
.center         {margin:0 auto;}
.float-left     {float:left;}
.float-right    {float:right;}
.clear-left     {clear:right;}
.clear-right    {clear:left;}
.clear-both     {clear:both;}
.relative       {position:relative;}
.absolute       {position:absolute;}
.fixed          {position:fixed;}

/*overflow*/
.overflow-h      {overflow: hidden;}
.overflow-a      {overflow: auto;}
.overflow-v      {overflow: visible;}

/*Opacity*/
.half-opacity {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/*page styles*/
body{
    background-color:#FFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, input, textarea, select
{
    font-family: 'Futura-Book', Arial, 'microsoft yahei', '微软雅黑', 'SimHei', '中易黑体', sans-serif;
}

*, *:after, *:before {
    box-sizing:border-box;
    -moz-box-sizing:border-box; /* Firefox */
    -webkit-box-sizing:border-box; /* Safari */
}

#wrapper {
    width:100%;
    height: 100%;
    // min-width: 1360px;
    padding: 0;
    color: #404040;
    /*overflow: hidden;*/
}

.container {
    width:100%;
    max-width: 1200px;
    min-width: 320px;
    padding:0px;
    margin: 0 auto;
    position: relative;
    *zoom: 1;
}

.container:before,
.container:after {
    content: " ";
    display: table;
}

.container:after {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.row {
    margin-right: 0px;
    margin-left: 0px;
}
.page {
    overflow: hidden;
}

.section  {
    margin-bottom: 30px;
}

.section .btn {
    float: right;
    margin-bottom: 30px;
}

/*********************************************************************************/
/* FEATURE                                                                       */
/*********************************************************************************/

/*********************** Colour ***********************/
.white{color:#FFF;}
.black{color:#000;}

*::-moz-selection {
    background: #DDD;
    text-shadow: none;
}

*::selection {
    background: #DDD;
    text-shadow: none;
}

img::selection {
    background: transparent;
    text-shadow: none;
}

/*********************** Button ***********************/

.btn {
    text-align: center;
    color: #404040;
    font-size: 0.875em;
    font-family: 'Futura-Heavy', Arial, 'microsoft yahei', '微软雅黑', 'SimHei', '中易黑体', sans-serif;
    line-height: 1em;
    font-weight: normal;
    text-transform: none;
    padding: 0.5em 1.5em 0.4em;
    background-color: transparent;
    border: 1px solid #404040;
    display:inline-block; *display: inline; *zoom:1;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.btn:hover {
    border-color: #0F80D9;
    background-color: #0F80D9;
    color: #FFF;
}

.blue-btn-ux {
    font-family: 'Futura-Heavy', Arial, 'microsoft yahei', '微软雅黑', 'SimHei', '中易黑体', sans-serif;
    border-color: #0F80D9;
    background-color: #0F80D9;
    color: #FFF;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.blue-btn-ux:hover {
    border-color: #404040;
    background-color: #404040;
    color: #FFF;
}


input[type="submit"], button {
    text-align: center;
    color: #FFF;
    font-size: 0.875em;
    font-family: 'Futura-Heavy', Arial, 'microsoft yahei', '微软雅黑', 'SimHei', '中易黑体', sans-serif;
    line-height: 1em;
    font-weight: 300;
    text-transform: none;
    padding: 0.3em 1em 0.25em;
    background-color: #0F80D9;
    border: 2px solid #0F80D9;
    display:inline-block; *display: inline; *zoom:1;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    width: auto;
    text-shadow: none;
    border-radius: 0;
    -moz-box-shadow:    none;
    -webkit-box-shadow: none;
    box-shadow:         none;

}

input[type="submit"]:hover, button:hover {
    border-color: #404040;
    background-color: #404040;
}

.backtop-btn {
    background-position: -122px -162px;
    border: 2px solid #404040;
}

/*********************************************************************************/
/* FORM                                                                          */
/*********************************************************************************/

::-webkit-input-placeholder { /* WebKit browsers */
    color:#333;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#333;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#333;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#333;
}

/*********************** input ***********************/

input:focus, textarea:focus, select:focus {
    outline: 0;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 0.3em 1em 0.25em;
    border: 1px solid #BABABA;
    border-radius: 0;
    background: transparent;
    color: #404040;
    font-size: 0.875em;
    min-height: 2em;
    display:inline-block; *display: inline; *zoom:1;
}

form textarea {
    min-height: 5em;
}


form label {
    display: block;
    margin-bottom: 0.8em;
}

form .description {
}

/*********** select ***********/

form select {
    background-color: transparent;
    background-image: url("../images/select-icon.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: none;
    outline:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
    text-indent: 0.01px;
    text-overflow: "";
    padding-right: 20px;
}
/* for ie 8~11 */
form select, select {
    padding-right: 0\0;
}
select::-ms-expand {
    display: none;
}

/*********** Checkbox & Radio ***********/

input[type=radio]:not(old),
input[type=checkbox]:not(old){
    width   : 0;
    margin  : 0;
    padding : 0;
    opacity : 0;
    float: left;
    min-height: 0;
}

// input[type=radio]:not(old) + label {
//     margin-left: 0px;
//     background: url("../images/radio.png") no-repeat left center;
//     background-size: auto 50%;
//     font-size: 1em;
//     line-height: 1.5em;
// }

// input[type=checkbox]:not(old) + label {
//     display: inline-block; *display: inline; *zoom:1;
//     margin-left: 0px;
//     padding-left: 1.5em;
//     background: url("../images/checkbox.png") no-repeat 0 5px;
//     background-size: 13px 13px;
//     font-size: 1em;
//     line-height: 1.5em;
// }

// input[type=radio]:not(old):checked + label{ background-image: url("../images/radio-selected.png"); }
// input[type=checkbox]:not(old):checked + label{ background-image: url("../images/checkbox-selected.png"); }

/*********** Fields ***********/

.fields {
    *zoom: 1;
}

.fields:before,
.fields:after {
    content: " ";
    display: table;
}

.fields:after {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.fields .field {
    width: 50%;
    float: left;
    padding-right: 10px;
}

.fields .field + .field {
    padding-right: 0px;
    padding-left: 10px;
}

.fieldset+.fieldset {
    padding-top: 20px;
}

.input-box {
    margin-bottom: 0.8em;
}

.gutter-left{
    float:left;
    width:74%;
}
.gutter-right{
    float:right;
    width:24%;
}



/*********** Webform-component ***********/

.legend {
    text-align: center;
    margin-bottom: 20px;
}

.element-invisible {
    display: none;
}

.form-item {
    margin-bottom: 20px;
}


/*********************** Globe ***********************/

.column-wrapper:before,
.column-wrapper:after {
    content: " ";
    display: table;
}

.column-wrapper:after {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.column-wrapper {
    margin: 0 -10px;
    overflow: hidden;
    *zoom: 1;
}

.eighth-column, .seveth-column, .half-column, .onethird-column, .third-column, .quat-column {
    float: left;
    padding: 10px;
}

.full-column        {width: 100%; padding: 0 10px;}
.eighth-column      {width: 75%;}
.seveth-column      {width: 66.66%;}
.half-column        {width: 50%;}
.onethird-column    {width: 33.33%;}
.third-column       {width: 33.33%;}
.quat-column        {width: 25%;}

#nb_icon_wrap {
    /*display: none !important;*/
}

.call, .chat, .school, .wishlist, .location, .id, .size, .rental, .district, .phone, .bedroom, .business, .shower, .metro, .area, .mobile, .info, .mail,
.wechat, .insta, .facebook, .backtop-btn, .online-service, .ask-for-rent, .landlord ,.cn_wechat, .home_phone,.update,.views,.viewones{
    display:inline-block; *display: inline; *zoom:1;
    background-image: url('../images/sprites@X2.png');
    background-repeat: no-repeat;
    background-size: 1040px 200px;
    overflow: hidden;
    text-indent: -9999px;
    text-align: left;
    width: 40px;
    height: 40px;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
}

.wechat     {background-position: 0px -160px;}
.insta      {background-position: -40px -160px;}
.facebook   {background-position: -80px -160px;}
.wechat.success,
.insta.success,
.facebook.success
{background-position: -240px -160px;}
span.appendWish{vertical-align: top;}

.viewones   { background-position: -600px -160px;}
.call       { background-position: 0px 0px;}
.chat       { background-position: -40px 0px;}
.school     { background-position: -80px 0px;}
.wishlist   { background-position: -120px 0px;}
.location   { background-position: -160px 0px;}
.id         { background-position: -200px 0px;}
.size       { background-position: -240px 0px;}
.rental     { background-position: -280px 0px;}
.district   { background-position: -320px 0px;}
.phone      { background-position: -360px 0px;}
.bedroom    { background-position: -400px 0px;}
.business   { background-position: -440px 0px;}
.shower     { background-position: -480px 0px;}
.metro      { background-position: -520px 0px;}
.area       { background-position: -560px 0px;}
.mobile     { background-position: -600px 0px;}
.info       { background-position: -640px 0px;}
.mail       { background-position: -680px 0px;}
.ask-for-rent       { background-position: -840px 0px;}
.landlord   { background-position: -880px 0px;}
.online-service    { background-position: -920px 0px;}
.cn_wechat    { background-position: -960px 0px;}
.home_phone    { background-position: -1000px 0px;}

.g.call       { background-position: 0px -40px;}
.g.chat       { background-position: -40px -40px;}
.g.school     { background-position: -80px -40px;}
.g.wishlist   { background-position: -120px -40px;}
.g.location   { background-position: -160px -40px;}
.g.id         { background-position: -197px -40px;}
.g.size       { background-position: -240px -40px;}
.g.rental     { background-position: -280px -40px;}
.g.district   { background-position: -320px -40px;}
.g.phone      { background-position: -360px -40px;}
.g.bedroom    { background-position: -400px -40px;}
.g.business   { background-position: -440px -40px;}
.g.shower     { background-position: -480px -40px;}
.g.metro      { background-position: -520px -40px;}
.g.area       { background-position: -560px -40px;}
.g.mobile     { background-position: -600px -40px;}
.g.info       { background-position: -640px -40px;}
.g.mail       { background-position: -680px -40px;}
.g.ask-for-rent       { background-position: -840px -40px;}
.g.landlord   { background-position: -880px -40px;}
.g.online-service    { background-position: -920px -40px;}
.g.cn_wechat    { background-position: -960px -40px;}
.g.home_phone    { background-position: -1000px -40px;}
.g.update      {background-position: -560px -160px;}
.g.views      {background-position: -520px -160px;}


.b.call       { background-position: 0px -80px;}
.b.chat       { background-position: -40px -80px;}
.b.school     { background-position: -80px -80px;}
.b.wishlist   { background-position: -120px -80px;}
.b.location   { background-position: -160px -80px;}
.b.id         { background-position: -200px -80px;}
.b.size       { background-position: -240px -80px;}
.b.rental     { background-position: -280px -80px;}
.b.district   { background-position: -320px -80px;}
.b.phone      { background-position: -360px -80px;}
.b.bedroom    { background-position: -400px -80px;}
.b.business   { background-position: -440px -80px;}
.b.shower     { background-position: -480px -80px;}
.b.metro      { background-position: -520px -80px;}
.b.area       { background-position: -560px -80px;}
.b.mobile     { background-position: -600px -80px;}
.b.info       { background-position: -640px -80px;}
.b.mail       { background-position: -680px -80px;}
.b.ask-for-rent       { background-position: -840px -80px;}
.b.landlord   { background-position: -880px -80px;}
.b.online-service    { background-position: -920px -80px;}
.b.cn_wechat    { background-position: -960px -80px;}
.b.home_phone    { background-position: -1000px -80px;}

.lg.call       { background-position: 0px -120px;}
.lg.chat       { background-position: -40px -120px;}
.lg.school     { background-position: -80px -120px;}
.lg.wishlist   { background-position: -120px -120px;}
.lg.location   { background-position: -160px -120px;}
.lg.id         { background-position: -200px -120px;}
.lg.size       { background-position: -240px -40px;}
.lg.rental     { background-position: -280px -120px;}
.lg.district   { background-position: -320px -120px;}
.lg.phone      { background-position: -360px -120px;}
.lg.bedroom    { background-position: -400px -40px;}
.lg.business   { background-position: -440px -120px;}
.lg.shower     { background-position: -480px -43px;}
.lg.metro      { background-position: -520px -120px;}
.lg.area       { background-position: -560px -120px;}
.lg.mobile     { background-position: -600px -120px;}
.lg.info       { background-position: -640px -120px;}
.lg.mail       { background-position: -680px -120px;}
.lg.ask-for-rent       { background-position: -840px -120px;}
.lg.landlord   { background-position: -880px -120px;}
.lg.online-service    { background-position: -920px -120px;}
.lg.cn_wechat    { background-position: -960px -120px;}
.lg.home_phone    { background-position: -1000px -120px;}

.close {
    display:inline-block; *display: inline; *zoom:1;
    background: url('../images/icon-close.png')no-repeat center;
    background-size: 40px 40px;
    overflow: hidden;
    text-indent: -9999px;
    text-align: left;
    width: 40px;
    height: 40px;
}

/*.wishlist:hover     { background-position: -800px -0px;}*/
.g.wishlist:hover   { background-position: -800px -40px;}
.b.wishlist:hover   { background-position: -800px -80px;}
.lg.wishlist:hover  { background-position: -800px -120px;}
.wishlist.activeWish { background-position: -800px -0px;}
.wishlist-block .wishlist.activeWish { background-position: -800px -0px;}
/*********************** WYSIWYG ***********************/
.l-content {
    text-align: left;
}

.l-content h1, .l-content h2, .l-content h3, .l-content h4, .l-content h5, .l-content h6 {
    font-family: 'Futura-Heavy', Arial, 'microsoft yahei', '微软雅黑', 'SimHei', '中易黑体', sans-serif;
    margin-bottom: 20px;
}

.l-content p {
    margin-bottom: 20px;
}

.l-content a {
    color: inherit;
    text-decoration: underline;
}

.l-content a:hover {
    color: #0F80D9;
}

.l-content ul, .l-content ol {
    padding-left: 20px;
    margin-bottom: 1em;
    font-size: 1em;
}

.l-content ul {list-style-type: disc;}

.l-content ol {list-style-type: decimal; padding-left: 25px;}

.l-content ul li, .l-content ol li {
    padding: 0.25em 0;
    color: inherit;
}

.l-content ul li h3, .l-content ul li h4, .l-content ul li h5, .l-content ul li h6, .l-content ul li a, .l-content ul li p, .l-content ul li span,
.l-content ol li h3, .l-content ol li h4, .l-content ol li h5, .l-content ol li h6, .l-content ol li a, .l-content ol li p, .l-content ol li span {
    color: inherit;
    margin: 0;
}

.l-content ul li a:hover,
.l-content ol li a:hover {
    color: #0F80D9;
}

.l-content table {
    display: block;
    overflow: auto;
    width: 100%;
    color: #404040;
}

.l-content table thead {
    background: #333;
    color: #FFF;
}

.l-content table tr {
    background-color: #fff;
    border-top: 1px solid #c5c5c5;
}

.l-content table tr:nth-child(2n) {
    background-color: #F6F6F6;
}

.l-content table th {
    font-family: 'Futura-Heavy', Arial, 'microsoft yahei', '微软雅黑', 'SimHei', '中易黑体', sans-serif;
    font-weight: normal;
}

.l-content table th, .l-content table td {
    border: 1px solid #C5C5C5;
    padding: 6px 13px;
}


/* ul.row, li.col-... */
.l-content .row {
    margin: 0 -15px;
    padding: 0;
    list-style: none;
}
.l-content .row:after {
    content: '';
    display: table;
    clear: both;
}

/********autocomplete*******/
.ui-autocomplete-category {
    font-weight: bold;
    line-height: 25px;
    padding-left: 10px;
}
.ui-autocomplete {
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.ui-menu .ui-menu-item{
    // line-height: 25px;
    // padding-left: 20px;
}
.ui-menu-item-wrapper strong {
    font-weight: normal;
    color: #0078d7;
}
.ui-menu .ui-menu-item-wrapper{
    padding-left: 20px;
    line-height: 25px;
}
.ui-button.ui-state-active:hover {
    border: 1px solid #f0f0f0 !important;
    background: #f0f0f0 !important;
    font-weight: normal;
    /*color: #ffffff;*/
}
/***************header start*************/
#header-top{
    padding: 15px 0;
    background: #f2f2f2;
}
.headleft{
    line-height:30px;
}
.mobile-number{
    margin-right: 40px;
    font-size: 0.875em;
}
.mobile-number .glyphicon-m-right,.email .glyphicon-m-right{
    margin-right: 2px;
}
.a2a_default_style{
    text-align: right;
    float: right;line-height: 30px;
}
.a2a_default_style a {
    float: left;
    padding: 0 10px;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-size: 0.875em;
}
.a2a_button{
    text-decoration: none;
}
.a2b_button,.a2a_default_style a:hover{
    color: #0f80d9;
}
.a2a_default_style a.a2a_button_twitter{
    padding-right: 0px;
}
/*.header-block-logo, .main-nav, .block-locale-language, .main-nav ul, .header-block-menu li{
    float: left;
}
.logo-box {
    padding: 14px 0 12px;
    display: block;
}
.header-block-menu {
    float: right;
    color: #404040;
}
.header-block-menu {
    float: right;
    color: #404040;
}
.header-block-menu li a {
    display: block;
    padding: 24px 15px;
    font-size: 0.875em;
    line-height: 1em;
}
.main-nav li a:hover{
    color: #0f80d9;
}
.header-block-menu li a:hover{
    background: #EFEFEF;
}
.main-nav li .level1 {
    display: none;
    position: absolute;
    z-index: 99;
    background-color: #fff;
    border: 1px solid #EFEFEF;
    border-top: 0 none;
}
.main-nav li:hover .level1 {
    display: block;
}
.main-menu > li .level1 li {
    border-top: 1px solid #EFEFEF;
    float: none;
}
.main-menu > li .level1 a {
    width: 12em;
    padding: 10px 15px!important;
}

.block-locale-language li {
    font-family: 'Futura-Heavy',Arial,'microsoft yahei','微软雅黑','SimHei','中易黑体',sans-serif;
    padding: 24px 0px 24px 10px;
    color: #A7A7A7;
}
.block-locale-language li a{
    padding: 0px;
}

.header-block-menu li .active{
    color: #0F80D9;
}*/

.applogo {
    border-bottom: 1px solid #efefef;
    padding: 8px 0px;
    position: fixed;
    top: 0px;
    background: #fff;
    z-index: 99999999;
    width: 100%;
}
.close-img{
    position:absolute;
    top: 20px;
    left: 12px;
}
.close-img img{
    width:70%;
}
.left-logo {
    float: left;
    width: 60%;
}
.left-logo dl{
    margin-left:25px;
}
.left-logo dt,
.left-logo dd {
    float: left;
}

.left-logo dt {
    width: 30%;
    text-align: center;
}

.left-logo dt img {
    width: 70%;
}

.left-logo dd p {
    font-size: 18px;
    margin-bottom: 0px;
}

.left-logo dd img {
    width: 80%;
}

.right-down {
    float: left;
    width: 40%;
    margin-top: 10px;
}

.right-down span {
    display: inline-block;
}

.right-down span:nth-child(1) {
    background-color: #2f76bc;
    border-radius: 7px;
    color: #fff;
    padding: 6px 10px;
    margin-right: 10px;
}

.right-down span:nth-child(2) {
    background-color: #999;
    border-radius: 7px;
    color: #fff;
    padding: 6px 10px;
}
.header-mobile-menu, .headMenu {
    position: relative;
    height: 55px;
}

 .header-mobile-menu .caret{
    position:relative;
    top:5px;
}
/*.header-mobile-menu .navbar{
    border:none;
    border-bottom:1px solid #e7e7e7;
}


.header-mobile-menu .navbar{
    margin-bottom:0px;
}
.header-mobile-menu .navbar-nav{
    margin: 1px -15px;
}
.header-mobile-menu .navbar-default .navbar-toggle{
    border:none;
}
.header-mobile-menu .navbar-default .navbar-toggle .icon-bar {
    background-color: #0f80d9;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #f8f8f8;
}
*/


 #nav-container {
  height: 100%;
    width: 100%;
    pointer-events: none;
    margin-bottom: 15px;
    position: relative;
    padding-left: 80px;
    top: 4px;
}
#nav-container * {
  visibility: visible;
}
.button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 10px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
      margin-top: 15px;
      outline:none;
}
.icon-bar {
  display: block;
  width: 70%;
  height: 3px;
  background: #0f80d9;
  transition: .3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}
#nav-container .button {
    color: #2f76bc;
        width: 80px;
}
#nav-container .button p {
    font-size: 16px;
}
#nav-container:focus-within .button {
  pointer-events: none;
}
#nav-container:focus-within .icon-bar:nth-of-type(1) {
  transform: translate3d(0,8px,0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container:focus-within .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-44deg);
}

#nav-content {
  margin-top: 33px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform: translateX(-100%);
  transition: transform .3s;
  will-change: transform;
  contain: paint;
  z-index: 999;
  height: auto;
  padding-bottom:10%;
}
#nav-content ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
}
#nav-content li{
    list-style: none;
    margin: 0px;
    list-style-position: inside;
    border-top: 1px solid #EFEFEF;
}
#nav-content>ul>li:first-child a{
    display:inline-block;
    float:right;
}

#nav-content li:last-child{
    border-bottom: 2px solid #EFEFEF;
}
#nav-content li a {
  padding: 20px 10px;
  display: block;
  text-transform: uppercase;
  transition: color .1s;
  font-size: 0.875em;
  text-decoration:none;
  font-family: Futura-Heavy, Arial, "microsoft yahei", 微软雅黑, SimHei, 中易黑体, sans-serif;
}

#nav-container:focus-within #nav-content {
  transform: none;
}


#nav-content li .current{
    text-decoration:none;
    color:#0f80d9;
    background-color:#efefef;
}
#nav-content li .dropdown-menu1{
    margin:0px 10px;
}
#nav-content li .dropdown-menu1 li.leaf{
    border-top: 1px solid #EFEFEF;
}
#nav-content li .dropdown-menu1 li.last{
    border-bottom:none;
    border-top: 1px solid #EFEFEF;
}
#nav-content li .dropdown-menu1 a{
    color:#000;
    padding:10px 15px;
}

.header-block-logo{
    margin-left:10px;
    display: inline-block;
        position: absolute;
    top: 4px;
}
.header-block-logo a{
    display:block;
}
.navbar-brand{
    display: none;
}

.header-block-logo{
   /*  position: absolute;
   top:4px;
   left: 17%; */
}
.header-block-logo img{
    width:60%;
}
#example-navbar-collapse{
    position:absolute;
    top:49px;
    width:100%;
    z-index:9999;
    background:#fff;
}
.navbar-toggle{
    float: left;
    margin-left: 5px;
}

.header-mobile-wishlist{
    float: right;
    width: 10%;
    position: absolute;
    top:6px;
    right: 5%;
}

@media only screen and (max-width: 767px){
   .header-mobile-wishlist span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    bottom: 8px;
    right: -3px;
    background: #0078d7;
    color: #FFF;
    font-size: 0.625em;
    line-height: 22px;
} 
}


/*******side-block-menu********/
.side-block-menu{
    background: url(../images/black30.png);
    position: fixed;
    top: 63px;
    right: 0;
    padding: 20px 0;
    z-index: 201;
}
.side-block-menu li {
    position: relative;
    width: 40px;
    display: block;
    color: rgb(255, 255, 255);
    font-family: 'Futura-Heavy', Arial, "microsoft yahei", '微软雅黑', 'SimHei', '中易黑体', sans-serif;
    padding: 12px 0px;
}
.sidebar-wishlist-total{
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    top: 10px;
    right: 2px;
    background: white;
    color: #a7a7a7;
    font-size: 0.625em;
    line-height: 22px;
}
.side-block-menu li a .apps {
    display: inline-block;
    background: url(../images/home_page_app_app_icon.png) no-repeat 0 0 transparent;
    overflow: hidden;
    text-indent: -9999px;
    text-align: left;
    width: 40px;
    height: 55px;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
}
.side-block-menu .w.mail{background-position: -680px 0px;}
.side-block-menu .w.wishlist{background-position: -120px 0px;}
.side-block-menu .w.facebook{background-position: -760px 0px;}
.side-block-menu .w.call{background-position: -0px 0px;}
.side-block-menu .w.wechat{background-position: -720px 0px;}

.side-block-menu .w.wishlist:hover{background-position: -120px -80px;}
.side-block-menu .w.mail:hover{background-position: -680px -80px;}
.side-block-menu .w.call:hover{background-position: -0px -80px;}
.side-block-menu .w.facebook:hover{background-position: -760px -80px;}
.side-block-menu .w.wechat:hover{background-position: -720px -80px;}

.side-block-menu .side-icson-1{position: absolute; bottom: -40px;}

.side-block-menu .mail-form, .side-block-menu .call-list{
    position: absolute;
    top: 0;
    right: 100%;
    padding: 25px 30px 20px;
    background: #fff;
    cursor: default;
    display: none;
    color: #000;
    border: 1px solid #efefef;
}
.side-block-menu a.mail-parent, .side-block-menu a.call-parent{
    display: inline-block;
}
.side-block-menu a.mail-parent:hover .mail-form{
    display:block;
    color: #f00;
}
.side-block-menu a.call-parent:hover .call-list{
    display:block;
    color: #f00;
}
.side-block-menu .mail-form{
    top: -96px;
    width: 400px;
}
a.call-parent h4, a.mail-parent h4{
    color: #000;
}
.side-block-menu .g.mail{background-position: -680px -40px;}
.side-block-menu .side-nav .call-list {
    width: 370px;
    text-indent: 0;
    color: #000;
}
.side-block-menu .side-nav .call-list  .ga-event{
    line-height: 40px;
    color: #000;
}
.side-block-menu .side-nav .call-list a.ga-event:hover{
    color: #0F80D9;
}
.side-block-menu .app-img{
    position: absolute;
    top: 0;
    right: 100%;
    display: none;
    width: 211px;
}
.side-block-menu a.app-parent:hover .app-img{
    display:block;
}
.side-block-menu .wechat-img{
    position: absolute;
    top: 0;
    right: 100%;
    display: none;
    width: 211px;
}
.side-block-menu a.wechat-parent:hover .wechat-img{
    display:block;
}
.sidebar-block .servicesphone {
    margin-bottom: 10px;
}
.sidebar-block .cta-online .tel-span1 {
    width: 19%;
}
.sidebar-block .cta-online .tel_number1 span {
    display: inline-block;
}
.sidebar-block .cta-online .tel-span1 img {
    width: 88%;
}
.sidebar-block .cta-online .tel-span2 {
    width: 78%;
    font-size: 23px;
    position: relative;
    top: -9px;
}
.sidebar-block .cta-online .online-contact {
    margin: 10px 0px;
    font-size: 16px;
}
/*************header end***************/

/*************searchbar start***************/
.navigation{
    width: 100%;
    background: #d3d3d3;
}
.navigation .searchbar .form-text{
    background:#fff;
    width:30%;
    padding: 6px;
    margin-top:10px;
    border: none;
}
.navigation .searchbar .form-submit {
    float: right;
    height: 53px;
    padding-left: 2.5em;
    padding-right: 1.5em;
    background: #0078d7 url(../images/search-icon-w@X2.png) no-repeat 14px center / 16px;
    background: #0078d7 url(../images/search-icon-w.png) no-repeat 14px center\9;
}
/*************searchbar end***************/


.breadcrumb-outer {
    margin: 30px 10px;
    text-align:left;
}


.inforwrap{
   font-size:14px;
   line-height:1.45em;
}

/*************footer start**********************/

*{
    margin: 0;padding: 0;
}
      /* 通用 */
::-webkit-input-placeholder { color:#b3b3b3; }
::-moz-placeholder { color:#b3b3b3; } /* firefox 19+ */
:-ms-input-placeholder { color:#b3b3b3; } /* ie */
input:-moz-placeholder { color:#b3b3b3; }

footer .row {
    margin-right: 0px;
    margin-left: 0px;
}
.tel_img{
    position: absolute;
    top: 40px;
    right: 20px;
    background: #fff;
    padding: 10px;
    font-size:15px;
    z-index:9;
}
.tel_img p{
    margin-bottom:0px;
}
ul,li{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
ul,li{list-style: none;}
a{text-decoration: none;}
img {
    display: inline-block;
    border: 0;
    margin: 0;
    padding: 0;
    // max-width: 100%;
    height: auto;
}
footer .form-submit {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 0.875em;
    font-family: Futura-Heavy, Arial, "microsoft yahei", 微软雅黑, SimHei, 中易黑体, sans-serif;
    line-height: 1em;
    font-weight: 300;
    text-transform: none;
    background-color: rgb(15, 128, 217);
    display: inline-block;
    width: auto;
    text-shadow: none;
    box-shadow: none;
    padding: 0.3em 1em 0.25em;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(15, 128, 217);
    border-image: initial;
    transition: all 0.25s ease-out;
    border-radius: 0px;
}
.l-footer {
    // background: #EFEFEF;
    color: #404040;
    // padding: 10px 0;
}
.l-footer h3 {
    font-size: 1em;
    display: block;
    width: 50%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #404040
}
.footer-copy .inline-block {
    display: inline-block;
}
.l-footer li {
    display: block;
    font-size:1em;
    line-height: 1em;
    padding: 10px 0;
}

.l-footer li a {
    display: block;
}
.l-footer a:hover {
    color: #0F80D9;
    text-decoration: underline;
}
.l-footer li a:hover {
    color: #0F80D9;
    text-decoration: underline;
}


.l-footer li a:hover .wechat     {background-position: -400px -160px;}
.l-footer li a:hover .insta      {background-position: -440px -160px;}
.l-footer li a:hover .facebook   {background-position: -480px -160px;}

.l-footer .half-column h3 {
    width: 100%;
}

.l-footer .half-column .onethird-column {
    padding-left: 0;
}

.l-footer .half-column .seveth-column {
    padding-right: 0;
}


.l-footer .block-locale-language li {
    float: left;
}

.l-footer .block-locale-language {
    float: right;
}

.l-footer .block-locale-language li {
    padding: 24px 0 24px 10px;
}

.l-footer .backtop-btn {
    float: right;
}

.l-footer .backtop-btn:hover {
    background-color: #FFF;
}


.l-footer #block-itcblocks-itc-footer-contact-block--2 {
    text-align: left;
}

.l-copyright {
    text-align: center;
    font-size: 11px;
    padding: 20px;
    border-top: 1px solid #404040
}
.l-footer .block-locale-language {
    position: absolute;
    right: 14px;
    top: 40px;
}
.l-footer .backtop-btn {
    position: absolute;
    right: 14px;
    top: 100px;
}
.inline {
    display: inline;
    float: left;
}
footer .footer-row-2,footer .footer-row-3, footer .footer-row-4 {
    padding: 5px 0;
    line-height: 24px;
}

footer .footer-row-1 {
    background-color: #EFEFEF;
    color: #808080;
    font-size: 16px;
    // padding: 20px 0;
    margin-top: 20px;
}

footer .footer-row-2 {
    background: #b7b7b7;
}

footer .footer-row-3 {
	padding-top: 0;
    background: #a5a5a5;
    color: #fff;
    /*padding-bottom: 35px;*/
}
footer .footer-row-4 {
    background: #fff;
    // color: #fff;
}

footer .footer-row-3 a {
    color: #fff;
    font-size:14px;
}

footer .btn {
    background-color: #a5a5a5;
    border: none;
    color: #fff;
    border-radius: 0;
}
footer .request:hover{
    background: #0F80D9;
    color: #fff;
}

footer .glyphicon-phone {
    color: #808080;
}

footer .subscription {
    text-align: right;
}

footer .subscription .form-item label {
    display: none;
    visibility: hidden;
}

footer .subscription .form-item {
    display: inline-block;
    margin-bottom: 0px;
}
.footer-main-nav a {
    font-size: 15px;
    color: #808080;
    line-height: 40px;
}

.footer-main-nav ul li {
    display: inline;
    float: left;
    padding: 0;
    margin: 0;
    margin-right: 10%;
}

.footer-social {
    // text-align: right;
    position: relative;
    height: 40px;
}

.footer-social .label {
    font-size: 15px;
    color: #808080;
    font-weight: normal;
    line-height: 40px;
    padding: 0;
    margin: 0;

}
footer .inline-block {
    display: inline;
}

.footer-social .social-group img {
    height: auto;
}

.footer-social .social-group ul li {
    display: inline;
    float: left;
    padding: 0;
    margin: 0;
}
.isIpad .ipadSpecil{
    text-align: right;
    display: inline;
   margin:10px 0px;
    padding-right: 20px;
}
.subscription {
    text-align: right;
    display: inline;
    float: left;
}
.footer-citylink {
    color: #808080;
    width: 83%;
    margin:10px auto 10px auto;
   
}
.footer-citylink a{
    color: #808080;
}

.footer-citylink span.footer-loca {
    font-size: 14px;
}

.footer-citylink span.footer-bull {
    font-size: 8px;
    padding: 0 5px;
}

.footer-copy {
    width: 83%;
    margin: auto;
}

.footer-copy,.footer-copy a {
    font-size: 12px;
}

.footer-copy .gs {
    padding-bottom: 10px;
    margin-left: 0px;
}

.footer-copy .txt-inner {
    padding: 10px 0 0;
    //width: 90%;
    margin: auto;
}
.pop-link ul li {
    padding-bottom: 5px;
    padding-top: 5px;
}
.block {
    display: block;
}
input.error, textarea.error, select.error {
    border: 2px solid red;
}
footer .col-sm-12,footer .col-md-12,footer .col-lg-12,footer .col-xs-12 {
    padding-left: 30px !important;
    padding-right: 10px !important;
}

footer li.wechat_li {
    position: relative;
}

footer .wechat_img {
    position: absolute;
    z-index: 99;
    left: -40px;
}
footer .ipadSpecil span{
    line-height:40px;
}
footer .subscription input {
    padding: 0.3em 0.45em 0.25em;
    margin-left:-5px;
}
footer .subscription input.form-text{
    
    height:38px;
    border:none;
    background:#fff;
}
footer .subscription input.form-submit{
    height:38px;
}
.pop-link h4 {

    border-bottom: 1px solid #fff;
    padding: 20px 0 10px;
    font-size: 14px;
}
.font-size-24 {
    font-size: 24px;
}
footer .policyPrivate{width:45%;}
footer .policyPrivate a{color:#808080;}
footer .euraAndmember{width:50%;margin:10px 0 10px 0;}
footer .euraAndmember span{
    font-size: 16px;
    color: #808080;
}
footer img.eura, footer img.member{display:inline-block !important;}

/*iPad 横屏*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape){
    .header-block-logo .hidden-xs{
        display:none;
    }
    .header-block-logo .visible-xs-inline{
        display:block !important;
    }
    footer .isIpad:nth-child(1){width:40% !important;}
    footer .isIpad:nth-child(2){width:59% !important;}
    footer .ipadSpecil{width:42% !important;}
    footer .ipadSpecil{padding-right:18px !important;}
    footer .footer-main-nav ul li{margin-right:7%;}
    footer .ipadSpecil span {
    line-height: 20px;}
}
/*iPad 竖屏*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait){
    .header-block-logo .hidden-xs{
        display:none;
    }
    .header-block-logo .visible-xs-inline{
        display:block !important;
    }

    .footer-social .social-group ul li:nth-child(1){
        display:none;
    }
    footer .isIpad{width:50% !important;}
    .footer-social .social-group{float:left !important; margin-top: 22px;}
    footer .footer-social .followUs{margin-right:10%;}
    footer .ipadSpecil{width: 100% !important;float:left !important;text-align:left !important;}
    .isIpad .ipadSpecil{width:100% !important;}

    .footer-row-2 .col-sm-9{
        width:67%;
    }
    .footer-row-2 .col-sm-3 {
        width: 26%;
    }
    .footer-main-nav ul li{
        margin-right:5%;
    }
}
@media only screen and (max-width : 768px){
    footer .policyPrivate{width:100% !important;}
    footer .euraAndmember{width:80% !important;text-align:center !important;}
}
@media only screen and (max-width : 414px){
    .ipadSpecil{
        text-align: left !important;
        width: 100% !important;
    }
    .footer-social .social-group{float:left !important;}
    .footer-social .label{display:none !important;}
    footer .subscription{float:left !important;}
    .footer-copy .gs{text-align:center;width:100%;}
    footer .euraAndmember{width:100%;text-align:left !important;}
    footer img.eura, footer img.member{display:inline-block !important;width:45%;}
}
@media screen and (max-width: 375px){
    footer .subscription{
        float:left !important;
    }
    .name{
        padding: 0 10px !important;
    }
    .footer-copy .gs {
        display: block !important;
        margin-left: 0 !important;
        text-align: center !important;
    }
    .footer-row-1 .inline {
        display: none !important;
    }
    .laste .nav-tabs {
        padding-left: 0px !important;
    }
    .laste .guwei {
        position: relative;
        left: 10 !important;
        top: 0px !important;
    }
    .advantages .swiper-container .txt span{
        display: none;
    }

    .news3list img{
      width:100% !important;
      height:auto !important;
    }
    .banner img.show-iphone{display:block !important;}
    .logo,.messages {
        float: none !important;
    }
    .housebaner img.show-iphone{display:block !important;}

}
@media screen and (max-width: 320px){
    .house-list .title .Proper{
        font-size:12px !important;
    }
}
/*************footer end**********************/

/*******sidebar start*******/
.sidebar-block {
    padding: 20px;
    border: 1px solid #EFEFEF;
    margin-bottom: 20px;
}
.sidebar-block .leaf span{
    float: right;
}
.img-links{
    padding: 0;
    border: none;
    margin-top:0px;
}
.sidebar-block h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 0;

}

.help-links ul li, .compound-more ul li {
    display: block;
    font-size: 0.875em;
}
.compoundside .compound ul li, .help-links ul li {
    padding: 8px 0;
}
.help-links ul li a:hover{
    color: #0F80D9;
}
.sidebar-block + .sidebar-block {
    margin-bottom: 20px;
}
.sidebar .compoundside h2 {
    font-size: 1.125em;
    padding-bottom: 20px;
    margin-bottom: 0px;
    border-bottom: 1px solid #EFEFEF;
}
.compoundside-container{

}
.compound h4 {
    font-family: 'Futura-Heavy',Arial,'microsoft yahei','微软雅黑','SimHei','中易黑体',sans-serif;
    padding-top: 20px;
    margin-bottom: 0;
    padding-bottom: 20px;
    cursor: pointer;
}
.compound h4 i {
    float: right;
    display: block;
    cursor: pointer;
}

.compound-more li a:hover{
    color: #0F80D9;
}
.compoundside .compound + .compound {
    border-top: 1px solid #EFEFEF;
}
// 添加板块样式sidebar
// .newAd h2{
//    padding-bottom: 10px;
//     border-bottom: 1px solid #ddd;
// }
.sidebar .property {
    width: 100%;
    position: relative;
    margin-bottom: 60px;
}
.sidebar .lastProperty{
    margin-bottom: 40px;
}
.sidebar .property img {
    width: 100%;
    display:block;
}
.sidebar .property-info {
    width: 100%;
}

.sidebar .property-head {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    color: #efefef;
    text-transform: uppercase;
    font-size: 1em;
}
.sidebar .property-price {
    float: left;
    line-height: 16px;
    padding: 8px 10px 4px;
    margin-top: 12px;
    background: #0F80D9;
    font-weight: 600;
}
.sidebar a.wishlist {
    float: right;
}
.sidebar .property-title {
    background: url(../images/black30.png);
    font-size: 0.8em;
    padding: 10px;
}
.sidebar .property-title .property-name {
    float: left;
}
.sidebar .property-title .property-area {
    float: right;
}
.sidebar .property-spec {
    background: #eee;
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    display: inline;
    text-align:center;
    font-size:14px;
    color:#646464;
}
.sidebar .property-spec span {
    display: inline-block;
    line-height: 40px;
    text-align: center;
    color: #aaa;
}
.rProperties{
    margin-top: 20px;
    border:1px solid #efefef;
    padding-bottom: 0;
    margin-bottom: 60px;
}
.sidebar .mostRencent div.property:last-child{
    margin-bottom:0;
}
.rProperties h2{
    margin: 20px;
    padding-bottom: 10px;
    border-bottom:1px solid #efefef;
}
.sidebarBlock{
    padding: 20px;
    border: 1px solid #EFEFEF;
    margin-top: 20px;
}
.sidebarBlock h2 {
    padding-bottom: 10px;
    border-bottom:1px solid #efefef;
}
/*******sidebar end*******/


/************send a request start************/
/* General styles for the modal */

/*
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the
perspective effects (not including the modals and the overlay).
*/
.md-perspective,
.md-perspective body {
    height: 100%;
    overflow: hidden;
}

.md-perspective body  {
    background: #fff;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    perspective: 600px;
}

.container {
    min-height: 100%;
}

.md-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 452px;
    min-width: 320px;
    height: auto;
    z-index: 9999999;
    visibility: hidden;
    // -webkit-transform: translateX(-50%) translateY(-50%);
    // -moz-transform: translateX(-50%) translateY(-50%);
    // -ms-transform: translateX(-50%) translateY(-50%);
    // transform: translateX(-50%) translateY(-50%);

}

.md-show {
    visibility: visible;
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 9999995;
    opacity: 0;
    background: rgba(1,1,1,0.6);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
}
.loading-back{
    visibility: visible;
    opacity: 1;
}

.md-show ~ .md-overlay {
    opacity: 1;
    visibility: visible;
}
.captcha img{
    cursor:pointer;
}
/* Content styles */
.md-content {
    color: #5b5b5b;
    background: #fff;
    position: relative;
    border-radius: 0px;
    margin: 0 auto;
    padding: 35px;
}
.md-content .md-close-btn {
    position: absolute;
    top: 10px;
    right: 5px;
    z-index: 999999;
}
.md-content .md-close-btn a{
    color: #909090;
    cursor: pointer;
}
.md-content .md-close-btn a:hover{
    color: #212121;
}
.md-content .md-close {
    font-size: 13px;
}

.md-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 0;
    color: #797979;
}

// .md-content > div {
//  padding: 15px 40px 30px;
//  margin: 0;
//  font-weight: 300;
//  font-size: 14px;
// }

// .md-content > div p {
//  margin: 0;
//  padding: 10px 0;
// }

// .md-content > div ul {
//  margin: 0;
//  padding: 0 0 30px 20px;
// }

// .md-content > div ul li {
//  padding: 5px 0;
// }


/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.md-show.md-effect-1 .md-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.lightbox-place .close {
    position: absolute;
    top: 0px;
    right: 0;
    background-image: url(../images/icon-close-g.png);
}
.lightbox-place .lightbox-inner {
    padding-bottom: 15px;
    border-top: 4px solid #0F80D9;
    overflow-x: hidden;
    overflow-y: auto;
}
.marker, .form-required {
    color: #f00;
}
form .description {
    margin-top: 20px;
}
/************send a request end************/


/********分页*********/
.tcdPageCode{
    padding: 30px 0px;
    width: 74%;
    text-align: center;
}
.tcdPageCode span{
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 5px 20px;
    margin: 0 8px;
    border-radius: 10px;
    vertical-align: middle;
    display:none;
}
.tcdPageCode span.disabled{
    color: #bfbfbf;
    background: #f2f2f2;
    border: 1px solid #bfbfbf;
    padding: 0px 20px;
}
.tcdPageCode span.current{
    color: #000;
    border: none;
}
.tcdPageCode a {
    display: inline-block;

    padding: 5px 20px;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 8px;
    border-radius: 10px;
    vertical-align: middle;
    font-size: 14px;
    display:none;
}
#pageCode .disabled, #pageCode .nextPage, #pageCode .prevPage{
    display: inline-block;
}
/********分页  end*********/
.model{
    position: fixed;
    top:35%;
    left: 35%;
    background: rgba(0,0,0,.5);
    padding: 30px;
    border-radius: 10px;
    margin-left: -15%;
    width: 60%;
    color: #fff;
    display: none;
    z-index: 999;
}

.newproject{
    display: none;
}
//新添加学校详情页

// .gutter-right div.firstLink{
//   margin-top: 0;
// }
@media only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: portrait){
    .container{
        min-width:100%;
    }
    .column-wrapper {
        margin: 0 0px;
    }
    .l-content .row {
        margin: 0 0px;
    }
    .navigation{
        display:none;
    }
    .side-block-menu{
        display:none;
    }
}
/*段落缩进*/
.paragraphs-outer p{
	text-indent: 2em;
}
/******footer submit*****/
.error{
    border: 2px solid #f00 !important;
}
.alertMessage{
    position: absolute;
    background: rgba(0,0,0,.8);
    padding: 10px;
    text-align: left;
    color: #fff;
    z-index: 10;
    bottom: 53px;
    right: 0px;
    line-height: 20px;
    border-radius: 10px;
    display: none;
}
.alertMessage span{
    display: block;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #000;
    position: absolute;
    bottom: -15px;
    left: 50%;
    opacity: .8;
}
/*底部滚动条*/
.footer-swiper .pop-link>div{
	width:60%;
}
.footer-swiper .swiper-container{
	height:250px;
}
/*是否已收藏*/
.collectMsg{
    position: absolute;
    right: 45px;
    top: 0px;
    display: block;
    background: rgba(0,0,0,.5);
    padding: 12px;
    color: #fff;
    white-space: nowrap;
    border-radius: 8px;
}