@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';
	}
 * ```
 */
.agn-con .sale-list-item label {
    *zoom: 1;
}

.agn-con .sale-list-item label:after {
    display: block;
    clear: both;
    height: 0;
    content: ' ';
}

/**
 * @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;
 * }
 * ```
 */
@font-face {
    font-family: "ico";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/ico.eot");
    src: url("../fonts/ico.eot?#iefix") format("embedded-opentype"), url("../fonts/ico.woff") format("woff");
}

[class^="font-ico-"],
[class*=" font-ico-"] {
    font-family: "ico";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: inherit;
    float: none;
    margin: 0;
    vertical-align: -0.25em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

.font-ico-22:before {
    content: "\EA01";
}

.font-ico-28:before {
    content: "\EA02";
}

.font-ico-arwl:before {
    content: "\EA03";
}

.font-ico-arwr:before {
    content: "\EA04";
}

.font-ico-plus:before {
    content: "\EA05";
}

.font-ico-plus0:before {
    content: "\EA06";
}

.fmtype {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.fmtype a {
    font-size: 14px;
    line-height: 30px;
    position: relative;
    float: left;
    height: 30px;
    margin-right: 15px;
    padding: 0 15px;
    color: #333;
    border: 1px solid #ddd;
}

.fmtype a:hover, .fmtype a.on {
    line-height: 28px;
    height: 28px;
    padding: 0 14px;
    text-decoration: none;
    color: #f60;
    border: 2px solid #f60;
}

.fmtype a:hover i, .fmtype a.on i {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 15px;
    height: 15px;
    background: url("../images/tit_ico.png") no-repeat right bottom;
}

.form-fy {
    border: 1px solid #ddd;
    padding: 30px 0;
}

.form-fy .item .label {
    line-height: 46px;
    height: 46px;
    background-color: #eee;
    font-size: 22px;
    padding-left: 15px;
    margin-bottom: 20px !important;
    display: block;
    text-align: left;
    width: auto;
    color: #444;
}

.form-fy .item .field {
    display: block;
    width: auto;
}

.form-fy .item.submit {
    text-align: center;
}

.form-fy .item.submit .btn {
    display: inline-block;
    height: 46px;
    line-height: 44px;
    font-weight: bold;
    font-size: 16px;
    width: auto;
    padding: 0 40px;
}

.form-fy .item.submit .label {
    display: none;
}

.form-fy .form-row {
    position: relative;
    display: table;
    width: 100%;
    margin-bottom: 24px;
}

.form-fy .form-cell-label {
    display: table-cell;
    width: 150px;
    text-align: right;
    vertical-align: middle;
}

.form-fy .form-cell {
    display: table-cell;
    padding-left: 30px;
    vertical-align: middle;
}

.form-fy .form-cell input[type="text"],
.form-fy .form-cell input[type="number"],
.form-fy .form-cell input[type="password"] {
    display: inline-block;
    width: 300px;
}

.form-fy .form-cell textarea {
    width: 300px;
}

.form-fy .form-cell select {
    display: inline-block;
    margin-right: 5px;
    width: auto;
}

.form-fy .form-cell .form-row {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
}

.form-fy .form-cell .form-cell-label {
    display: none;
}

.form-fy .form-cell .form-cell {
    display: inline;
    padding-left: 0;
    margin-right: 5px;
}

.form-fy .form-cell .form-cell select {
    width: auto;
}

.form-fy .code-wrap-outer {
    width: 302px;
}

.form-fy .code-wrap-outer .code-item-input input {
    width: 100%;
}

.form-fy .tip {
    font-size: 12px;
    padding-top: 5px;
    color: #aaa;
}

.form-fy .dw {
    display: inline-block;
    font-size: 12px;
    padding-top: 5px;
    margin-left: 10px;
    color: #aaa;
}

.form-fy label.error {
    white-space: nowrap;
}

.wk-pop {
    border: 2px solid #2a3342;
    border-bottom: 3px solid #2a3342;
    border-radius: 6px;
    background: #fff;
    box-shadow: 2px 2px 5px #2a3342;
}

.wk-pop-header {
    padding: 5px;
    border-bottom: 1px solid #2a3342;
    background: #2a3342;
}

.wk-pop-header .wk-pop-close {
    font-family: tahoma;
    line-height: 20px;
    position: relative;
    display: inline-block;
    float: right;
    width: 15px;
    padding: 0;
    color: #fff;
}

.wk-pop-header .wk-pop-body {
    position: relative;
    overflow-y: auto;
    height: 87%;
}

.wk-pop-header .wk-pop-title {
    font-size: 12px;
    color: #fff;
}

.wk-pop-body {
    position: relative;
    overflow-y: auto;
    height: 87%;
}

.agn-con .sale-list-item {
    border: 1px solid #ddd;
    margin-top: -1px;
    position: relative;
    z-index: 1;
}

.agn-con .sale-list-item label {
    display: block;
    padding: 20px 0 16px 0;
}

.agn-con .sale-list-item p {
    color: #666;
}

.agn-con .sale-list-item h3 {
    font-size: 16px;
    line-height: 40px;
    display: inline-block;
    color: #333;
    font-weight: 700;
}

.agn-con .sale-list-item:first-child {
    border-top: 1px solid #ddd;
}

.agn-con .sale-list-item.active {
    border-color: #f60;
    z-index: 2;
}

.agn-con .sale-list-item.active:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 0 24px 24px 24px;
    border-left-color: #ff6600;
}

.agn-con .sale-item-l {
    margin-left: 20px;
}

.agn-con .sale-item-l img {
    float: left;
    margin-top: 10px;
    padding: 2px;
}

.agn-con .sale-item-text {
    margin-left: 150px;
}

.agn-con .sale-item-text h3 {
    display: inline-block;
    line-height: 40px;
    color: #333;
    font-size: 16px;
}

.agn-con .sale-item-text .name {
    font-weight: 700;
    font-size: 16px;
}

.agn-con .sale-item-text .shou {
    margin-left: 26px;
    background: #f06d07;
}

.agn-con .sale-item-text .zu {
    margin-left: 30px;
    background: #2d99d6;
}

.agn-con .sale-item-text .shou, .agn-con .sale-item-text .zu {
    font-size: 13px;
    line-height: 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #fff;
    border-radius: 2px;
}

.agn-con .sale-item-text span {
    font-size: 14px;
}

.agn-con .sale-item-text .btn {
    float: right;
    margin: 30px;
}

.agn-con .sale-item-text p {
    line-height: 28px;
}

.agn-con .sale-item-r {
    float: left;
    padding-top: 73px;
    margin: 0 20px;
}

.agn-con .btn-jjr-submit {
    height: 46px;
    line-height: 44px;
    font-size: 16px;
    display: block;
    width: 200px;
    text-align: center;
    margin: 15px auto;
}

.agn-con .btn-jjr-submit:before {
    margin-right: 10px;
    vertical-align: -2px;
}

.chosen-container .chosen-results li.highlighted {
    background-color: #f60;
    border-radius: 2px;
    background-image: linear-gradient(#f60 20%, #f60 90%);
}

/*# sourceMappingURL=http://localhost:8888/css/relform.css.map */
