@charset "UTF-8";
/*!
* @name panolist
* @author author
* @date 
*/
/**
 * @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;
* }
* ```
*/
@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";
}

@font-face {
    font-family: "service";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/service.eot");
    src: url("../fonts/service.eot?#iefix") format("embedded-opentype"), url("../fonts/service.woff") format("woff");
}

[class^="font-service-"],
[class*=" font-service-"] {
    font-family: "service";
    -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-service-1:before {
    content: "\EA01";
}

.font-service-2:before {
    content: "\EA02";
}

.font-service-3:before {
    content: "\EA03";
}

.font-service-arrow:before {
    content: "\EA04";
}

.font-service-ask:before {
    content: "\EA05";
}

.font-service-balance:before {
    content: "\EA06";
}

.font-service-find-psd:before {
    content: "\EA07";
}

.font-service-go-top:before {
    content: "\EA08";
}

.font-service-home:before {
    content: "\EA09";
}

.font-service-house:before {
    content: "\EA0A";
}

.font-service-login:before {
    content: "\EA0B";
}

.font-service-order:before {
    content: "\EA0C";
}

.font-service-real-name:before {
    content: "\EA0D";
}

.font-service-register:before {
    content: "\EA0E";
}

.font-service-search:before {
    content: "\EA0F";
}

@font-face {
    font-family: "index";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/index.eot");
    src: url("../fonts/index.eot?#iefix") format("embedded-opentype"), url("../fonts/index.svg#index") format("svg"), url("../fonts/index.woff") format("woff");
}

[class^="font-index-"],
[class*=" font-index-"] {
    font-family: "index";
    -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-index-1:before {
    content: "\EA01";
}

.font-index-2:before {
    content: "\EA02";
}

.font-index-3:before {
    content: "\EA03";
}

.font-index-4:before {
    content: "\EA04";
}

.font-index-5:before {
    content: "\EA05";
}

.font-index-6:before {
    content: "\EA06";
}

.font-index-warn:before {
    content: "\EA07";
}

.panolist {
    zoom: 1;
    margin-top: -10px;
    margin-left: -12px;
}

.panolist li {
    width: 289px;
    margin-top: 30px;
    margin-left: 12px;
    position: relative;
    float: left;
    border: 1px solid #ccc;
}

.panolist .item-tbody {
    height: 194px;
    overflow: hidden;
}

.panolist .item-tbody a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    display: block;
    width: 291px;
    height: 194px;
}

.panolist .item-header {
    width: 267px;
    padding: 10px 12px;
    float: left;
}

.panolist .item-header h3 {
    font-size: 14px;
    line-height: 22.5px;
}

.panolist .item-header .time {
    clear: both;
    font-size: 12px;
    color: #999;
    height: 22px;
    line-height: 22px;
    padding-top: 5px;
}

/*# sourceMappingURL=http://localhost:8888/css/panolist.css.map */
