@charset "UTF-8";
/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
/**
 * @method 去掉虚线框 %outline 
 * @description 去掉虚线框
 * @example 调用
 * 
 * ```scss
 * div {
 *    @ extend %outline;
 * }
 * ```
 * 
 * ```css
	div {
		outline: thin dotted;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px;
	}
 * ```
 */
/**
 * @method 文字不换行后面加省略号 %text-overflow 
 * @description 文字不换行后面加省略号
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %text-overflow;
 * }
 * ```
 * 
 * ```css
	div {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
 * ```
 */
/**
 * @method 内容换行 %word-wrap 
 * @description 内容换行
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %word-wrap;
 * }
 * ```
 * 
 * ```css
	div {
	    word-wrap: break-word;
	    white-space: pre-wrap;
	    word-break: break-all;
	}
 * ```
 */
/**
 * @method 透明层opacity 
 * @description 透明层 内容也透明
 * @param {number} $opacity - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include opacity(.5);
 * }
 * ```
 * 
 * ```css
 * div {
	  opacity: .5;
	  filter: alpha(opacity=50);
 * }
 * ```
 */
/**
 * @method 背景透明层transparent 
 * @description 透明层只处理背景透明
 * @param {string} $color - 背景透明层的颜色
 * @param {number} $alpha - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include transparent(#000, .5);
 * }
 * ```
 * 
 * ```css
 * div {
 *    	background-color: transparent;
		background-color: (0,0,0,.5);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fffffff, endColorstr=#7fffffff,);
		zoom: 1;
 * }
 * ```
 */
/**
 * @method triangle 
 * @description 生成一个三角形图标
 * @param {string} $size - 三角的大小
 * @param {string} $color - 三角颜色
 * @param {string} $direction - 三角的方向 up, down, left, right
 * @example 调用
 * 
 * ```scss
 * i {
 *    @include triangle(5px, #bbb, up); 
 * }
 * ```
 * 
 * ```css
 * i {
 *    width: 0;
      height: 0;
      border-width: 5px;
      border-style: solid;
      border-color: transparent;
      border-bottom-color: #bbb;
 * }
 * ```
 */
/**
* @method 水平线hr nav-divider 
* @description 透明层 内容也透明
* @param {string} $color=#e5e5e5 - 线的颜色
* @param {string} $line-height-computed - 线的高度，空间
* @example 调用
* 
* ```scss
* div {
*    @include nav-divider(#e5e5e5, 24px);
* }
* ```
* 
* ```css
* div {
	  height: 1px;
	  margin: 11px 0;
	  overflow: hidden;
	  background-color: #e5e5e5;
* }
* ```
*/
.agency {
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
}

.agency .banner {
    height: 815px;
    background-repeat: no-repeat;
    background-image: url(../images/buynew/maixinfang_1.jpg);
    background-position: center top;
}

.agency .banner .banner-box {
    width: 940px;
    height: 160px;
    margin: 0 auto;
    padding-top: 520px;
    text-align: center;
}

.agency .banner .banner-box .titles h3 {
    float: left;
    margin-left: 20px;
    width: 450px;
    text-align: left;
    height: 56px;
    line-height: 56px;
    font-weight: bold;
}

.agency .banner .banner-box .titles h3 span {
    text-decoration: underline;
    color: #42b034;
}

.agency .banner .banner-box p {
    margin-top: 16px;
    color: #fff;
}

.agency .banner .banner-box .agenform .text1 {
    float: left;
    width: 450px;
    margin-left: 20px;
}

.agency .banner .banner-box .agenform .text1 input {
    height: 45px;
    color: #000;
    width: 450px;
    border: 0;
    font-size: 14px;
}

.agency .banner .banner-box .agenform .submit {
    width: 940px;
    margin: 0 auto;
    text-align: center;
}

.agency .banner .banner-box .agenform .submit .field {
    width: 100%;
    margin-top: 36px;
}

.agency .banner .banner-box .agenform .submit button {
    width: 350px;
    height: 55px;
    border-radius: 10px;
    background-color: #42b034;
    font-size: 30px;
    color: #FFFFFF;
    border: 0;
}

.agency .info-big {
    width: 100%;
    height: auto;
    color: #000000;
}

.agency .info-big .info-biaoti {
    width: 100%;
    height: auto;
    margin: 60px 0px;
    text-align: center;
}

.agency .info-big .info-biaoti .title {
    font-size: 52px;
    font-weight: bold;
    color: #42b034;
    line-height: 1;
}

.agency .info-big .info-biaoti .under-line {
    line-height: 0;
    font-size: 0;
}

.agency .info-big .info-txt {
    width: 1100px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 60px;
    text-align: center;
}

.agency .bottom-wrapper {
    width: 100%;
    height: 245px;
    background: url(../images/agency/bottom_bg.jpg);
}

.agency .bottom-wrapper .bottom-content {
    width: 1100px;
    height: 245px;
    text-align: center;
    margin: 0 auto;
}

.agency .bottom-wrapper .bottom-content .bottom-title {
    color: #FFF;
    padding-top: 5px;
}

.agency .bottom-wrapper .bottom-content .bottom-title h1 {
    margin: 18px 0;
}

.agency .bottom-wrapper .bottom-content .bottom-ul {
    width: 1200px;
    margin: 14px 0;
}

.agency .bottom-wrapper .bottom-content .bottom-li {
    display: inline-block;
    list-style: none;
    margin: 10px 25px 0px 0px;
}

.agency .bottom-wrapper .bottom-content .bottom-li .bottom-li-div {
    width: 100%;
    height: 60px;
    border: #FFF 2px solid;
    border-radius: 10px;
}

.agency .bottom-wrapper .bottom-content .bottom-li .bottom-li-div-box {
    font-size: 0;
    margin: 8px;
}

.agency .bottom-wrapper .bottom-content .bottom-li .bottom-li-div-box span {
    vertical-align: middle;
    font-size: 20px;
    color: #FFF;
    font-weight: bold;
    line-height: 44px;
    margin-left: 5px;
}

.agency .bottom-wrapper .bottom-content .bottom-li .bottom-li-div-box img {
    height: 44px;
}

.agency .sale-banner {
    background-image: url(../images/salehouse/maifang.jpg);
}

.agency .second-banner {
    background-image: url(../images/buysecond/second_banner.jpg);
}

.agency .second-info-txt ul {
    padding: 0;
    width: 1100px;
    margin-top: 30px;
}

.agency .second-info-txt li {
    width: 28%;
    height: auto;
    list-style: none;
    display: inline-block;
    margin-right: 50px;
}

.agency .second-info-txt li div {
    font-size: 30px;
    color: #42b034;
    text-align: center;
    margin-top: 5px;
}

.agency .second-info-txt li p {
    text-align: center;
    font-size: 16px;
    color: #4a4a4a;
    margin-top: 16px;
}

.agency .warrant-banner {
    background-image: url(../images/warrant/warrant.jpg);
}

.agency .assess-banner {
    background-image: url(../images/assess/pinggu.jpg);
}

.agency .fund-banner {
    background-image: url(../images/warrant/fund.jpg);
}

.agency .loan-banner {
    background-image: url(../images/warrant/loan.jpg);
}

/*# sourceMappingURL=http://localhost:8888/css/agency.css.map */
