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

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.layout, .content {
  *zoom: 1;
}

.layout:after, .content: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 透明层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;
* }
* ```
*/
/*!
* @name <%= name %>
* @author <%= author %>
* @date <%= date %>
*/
/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.layout, .content {
  *zoom: 1;
}

.layout:after, .content: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 透明层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;
* }
* ```
*/
.img-photoIndex-icon-coment-hover, .chief .item-ft .btns .discuz-btn:hover i, .img-photoIndex-icon-coment, .chief .item-ft .btns .discuz-btn i, .img-photoIndex-icon-share-hover, .chief .item-ft .btns .share-btn:hover .bds_more, .img-photoIndex-icon-share, .chief .item-ft .btns .share-btn .bds_more, .img-photoIndex-icon1, .focus-slider .prev, .img-photoIndex-icon2, .focus-slider .next, .img-photoIndex-icon3, .link-box dl.yc-nav dd .more-link i, .img-photoIndex-icon4, .link-box dl.yc-nav dd .on.more-link i, .img-photoIndex-icon5, .xxl-hd .change-btn i, .img-photoIndex-icon6, .xxl-hd .change-btn:hover i {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  vertical-align: middle;
  line-height: 300px;
  overflow: hidden;
  background-image: url(../images/photoIndex.png);
}

.img-photoIndex-icon-coment-hover, .chief .item-ft .btns .discuz-btn:hover i {
  width: 18px;
  height: 16px;
  background-position: -68px 0;
}

.img-photoIndex-icon-coment, .chief .item-ft .btns .discuz-btn i {
  width: 18px;
  height: 16px;
  background-position: -68px -26px;
}

.img-photoIndex-icon-share-hover, .chief .item-ft .btns .share-btn:hover .bds_more {
  width: 18px;
  height: 16px;
  background-position: 0 -52px;
}

.img-photoIndex-icon-share, .chief .item-ft .btns .share-btn .bds_more {
  width: 18px;
  height: 16px;
  background-position: -28px -52px;
}

.img-photoIndex-icon1, .focus-slider .prev {
  width: 24px;
  height: 42px;
  background-position: 0 0;
}

.img-photoIndex-icon2, .focus-slider .next {
  width: 24px;
  height: 42px;
  background-position: -34px 0;
}

.img-photoIndex-icon3, .link-box dl.yc-nav dd .more-link i {
  width: 7px;
  height: 5px;
  background-position: -96px -26px;
}

.img-photoIndex-icon4, .link-box dl.yc-nav dd .on.more-link i {
  width: 7px;
  height: 5px;
  background-position: -96px -41px;
}

.img-photoIndex-icon5, .xxl-hd .change-btn i {
  width: 16px;
  height: 16px;
  background-position: -56px -52px;
}

.img-photoIndex-icon6, .xxl-hd .change-btn:hover i {
  width: 16px;
  height: 16px;
  background-position: -96px 0;
}

.img-share-QQ16, .chief .item-ft .btns .share-btn .shares .share-button#share2Qq a i, .img-share-QQwb16, .chief .item-ft .btns .share-btn .shares .share-button#share2Wb a i, .img-share-QQzone16, .chief .item-ft .btns .share-btn .shares .share-button#share2Qzone a i, .img-share-arrow-up, .chief .item-ft .btns .share-btn .shares .arrow, .img-share-coment-hover, .title .toolbar li.comment .g-btn-a:hover i, .img-share-coment, .title .toolbar li.comment .g-btn-a i, .img-share-qq18-hover, .title .toolbar li.share-list .menu-bd li.share2qq .g-btn-b:hover i, .img-share-qq18, .title .toolbar li.share-list .menu-bd li.share2qq i, .img-share-qqwb18-hover, .title .toolbar li.share-list .menu-bd li.share2weibo .g-btn-b:hover i, .img-share-qqwb18, .title .toolbar li.share-list .menu-bd li.share2weibo i, .img-share-qqzone18-hover, .title .toolbar li.share-list .menu-bd li.share2qzone .g-btn-b:hover i, .img-share-qqzone18, .title .toolbar li.share-list .menu-bd li.share2qzone i, .img-share-share-btn-hover, .title .toolbar li.share-list .g-btn-a:hover i, .title .toolbar li.share-list.open .g-btn-a i, .img-share-share-btn, .title .toolbar li.share-list .g-btn-a i, .img-share-slide-btn-hover, .title .toolbar li.slide .g-btn-a i, .img-share-slide-btn, .title .toolbar li.slide .g-btn-a:hover i, .img-share-wb16, .chief .item-ft .btns .share-btn .shares .share-button#share2Sina a i, .img-share-wb18-hover, .img-share-wb18, .title .toolbar li.share-list .menu-bd li.share2sina i, .title .toolbar li.share-list .menu-bd li.share2sina .g-btn-b:hover i, .img-share-wx18-hover, .title .toolbar li.share-list .menu-bd li.share2wx .g-btn-b:hover i, .img-share-wx18, .title .toolbar li.share-list .menu-bd li.share2wx i {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  vertical-align: middle;
  line-height: 300px;
  overflow: hidden;
  background-image: url(../images/share.png);
}

.img-share-QQ16, .chief .item-ft .btns .share-btn .shares .share-button#share2Qq a i {
  width: 16px;
  height: 16px;
  background-position: -112px -78px;
}

.img-share-QQwb16, .chief .item-ft .btns .share-btn .shares .share-button#share2Wb a i {
  width: 16px;
  height: 16px;
  background-position: -112px -52px;
}

.img-share-QQzone16, .chief .item-ft .btns .share-btn .shares .share-button#share2Qzone a i {
  width: 16px;
  height: 16px;
  background-position: -112px -26px;
}

.img-share-arrow-up, .chief .item-ft .btns .share-btn .shares .arrow {
  width: 10px;
  height: 7px;
  background-position: 0 -112px;
}

.img-share-coment-hover, .title .toolbar li.comment .g-btn-a:hover i {
  width: 18px;
  height: 18px;
  background-position: -84px -28px;
}

.img-share-coment, .title .toolbar li.comment .g-btn-a i {
  width: 18px;
  height: 18px;
  background-position: 0 -28px;
}

.img-share-qq18-hover, .title .toolbar li.share-list .menu-bd li.share2qq .g-btn-b:hover i {
  width: 18px;
  height: 18px;
  background-position: -56px 0;
}

.img-share-qq18, .title .toolbar li.share-list .menu-bd li.share2qq i {
  width: 18px;
  height: 18px;
  background-position: -56px -28px;
}

.img-share-qqwb18-hover, .title .toolbar li.share-list .menu-bd li.share2weibo .g-btn-b:hover i {
  width: 18px;
  height: 18px;
  background-position: -28px -56px;
}

.img-share-qqwb18, .title .toolbar li.share-list .menu-bd li.share2weibo i {
  width: 18px;
  height: 18px;
  background-position: -56px -56px;
}

.img-share-qqzone18-hover, .title .toolbar li.share-list .menu-bd li.share2qzone .g-btn-b:hover i {
  width: 18px;
  height: 18px;
  background-position: 0 0;
}

.img-share-qqzone18, .title .toolbar li.share-list .menu-bd li.share2qzone i {
  width: 18px;
  height: 18px;
  background-position: -84px -56px;
}

.img-share-share-btn-hover, .title .toolbar li.share-list .g-btn-a:hover i, .title .toolbar li.share-list.open .g-btn-a i {
  width: 18px;
  height: 18px;
  background-position: 0 -84px;
}

.img-share-share-btn, .title .toolbar li.share-list .g-btn-a i {
  width: 18px;
  height: 18px;
  background-position: -28px -84px;
}

.img-share-slide-btn-hover, .title .toolbar li.slide .g-btn-a i {
  width: 18px;
  height: 18px;
  background-position: -56px -84px;
}

.img-share-slide-btn, .title .toolbar li.slide .g-btn-a:hover i {
  width: 18px;
  height: 18px;
  background-position: -84px -84px;
}

.img-share-wb16, .chief .item-ft .btns .share-btn .shares .share-button#share2Sina a i {
  width: 16px;
  height: 16px;
  background-position: -112px 0;
}

.img-share-wb18-hover {
  width: 18px;
  height: 18px;
  background-position: -84px 0;
}

.img-share-wb18, .title .toolbar li.share-list .menu-bd li.share2sina i, .title .toolbar li.share-list .menu-bd li.share2sina .g-btn-b:hover i {
  width: 18px;
  height: 18px;
  background-position: 0 -56px;
}

.img-share-wx18-hover, .title .toolbar li.share-list .menu-bd li.share2wx .g-btn-b:hover i {
  width: 18px;
  height: 18px;
  background-position: -28px -28px;
}

.img-share-wx18, .title .toolbar li.share-list .menu-bd li.share2wx i {
  width: 18px;
  height: 18px;
  background-position: -28px 0;
}

.img-photolist-big-btn-cur, .photo-hd .pic-style li.cur a.big,
.photo-hd .pic-style li.cur a.big:hover, .img-photolist-big-btn, .photo-hd .pic-style li a.big, .photo-hd .pic-style li a.big:hover, .img-photolist-chakzt-hover, .lyp-list .big-list dd a.chakzt:hover i, .img-photolist-chakzt, .lyp-list .big-list dd a.chakzt i, .img-photolist-pl-hover, .lyp-list .big-list dd a.pl:hover i, .img-photolist-pl, .lyp-list .big-list dd a.pl i, .img-photolist-small-btn-cur, .photo-hd .pic-style li.cur a.small,
.photo-hd .pic-style li.cur a.small:hover, .img-photolist-small-btn, .photo-hd .pic-style li a.small, .photo-hd .pic-style li a.small:hover {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  vertical-align: middle;
  line-height: 300px;
  overflow: hidden;
  background-image: url(../images/photolist.png);
}

.img-photolist-big-btn-cur, .photo-hd .pic-style li.cur a.big,
.photo-hd .pic-style li.cur a.big:hover {
  width: 86px;
  height: 29px;
  background-position: 0 0;
}

.img-photolist-big-btn, .photo-hd .pic-style li a.big, .photo-hd .pic-style li a.big:hover {
  width: 86px;
  height: 29px;
  background-position: 0 -39px;
}

.img-photolist-chakzt-hover, .lyp-list .big-list dd a.chakzt:hover i {
  width: 22px;
  height: 13px;
  background-position: 0 -78px;
}

.img-photolist-chakzt, .lyp-list .big-list dd a.chakzt i {
  width: 22px;
  height: 13px;
  background-position: -32px -78px;
}

.img-photolist-pl-hover, .lyp-list .big-list dd a.pl:hover i {
  width: 18px;
  height: 15px;
  background-position: 0 -101px;
}

.img-photolist-pl, .lyp-list .big-list dd a.pl i {
  width: 18px;
  height: 15px;
  background-position: -28px -101px;
}

.img-photolist-small-btn-cur, .photo-hd .pic-style li.cur a.small,
.photo-hd .pic-style li.cur a.small:hover {
  width: 86px;
  height: 29px;
  background-position: -96px 0;
}

.img-photolist-small-btn, .photo-hd .pic-style li a.small, .photo-hd .pic-style li a.small:hover {
  width: 86px;
  height: 29px;
  background-position: -96px -39px;
}

.img-photodetail-big-next, .picshowtop #nextArrow_A, .img-photodetail-big-prev, .picshowtop #preArrow_A, .img-photodetail-btn-enter-hover, .img-photodetail-btn-enter, .img-photodetail-btn-replay-hover, .img-photodetail-btn-replay, .img-photodetail-end-comment-hover, .img-photodetail-end-comment, .img-photodetail-end-qzone-hover, .img-photodetail-end-qzone, .img-photodetail-end-wb-hover, .img-photodetail-end-wb, .img-photodetail-last-close-hover, .img-photodetail-last-close, .img-photodetail-slide-search-hover, .img-photodetail-slide-search, .img-photodetail-small-next-hover, .picshowlist_mid .picmidright:hover, .img-photodetail-small-next, .picshowlist_mid .picmidright, .img-photodetail-small-prev-hover, .picshowlist_mid .picmidleft:hover, .img-photodetail-small-prev, .picshowlist_mid .picmidleft, .img-photodetail-smask, .img-photodetail-toolbar-bg-hover, .title .toolbar li .g-btn-a:hover, .title .toolbar li.share-list.open .g-btn-a, .img-photodetail-toolbar-bg, .title .toolbar li .g-btn-a {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  vertical-align: middle;
  line-height: 300px;
  overflow: hidden;
  background-image: url(../images/photodetail.png);
}

.img-photodetail-big-next, .picshowtop #nextArrow_A {
  width: 31px;
  height: 61px;
  background-position: -201px -188px;
}

.img-photodetail-big-prev, .picshowtop #preArrow_A {
  width: 31px;
  height: 61px;
  background-position: -160px -188px;
}

.img-photodetail-btn-enter-hover {
  width: 111px;
  height: 34px;
  background-position: 0 -144px;
}

.img-photodetail-btn-enter {
  width: 111px;
  height: 34px;
  background-position: -121px -144px;
}

.img-photodetail-btn-replay-hover {
  width: 112px;
  height: 35px;
  background-position: 0 -99px;
}

.img-photodetail-btn-replay {
  width: 112px;
  height: 35px;
  background-position: -122px -99px;
}

.img-photodetail-end-comment-hover {
  width: 16px;
  height: 16px;
  background-position: -268px -188px;
}

.img-photodetail-end-comment {
  width: 16px;
  height: 16px;
  background-position: -242px -188px;
}

.img-photodetail-end-qzone-hover {
  width: 19px;
  height: 18px;
  background-position: -284px -144px;
}

.img-photodetail-end-qzone {
  width: 19px;
  height: 18px;
  background-position: -286px -99px;
}

.img-photodetail-end-wb-hover {
  width: 15px;
  height: 17px;
  background-position: -242px -214px;
}

.img-photodetail-end-wb {
  width: 15px;
  height: 17px;
  background-position: -267px -214px;
}

.img-photodetail-last-close-hover {
  width: 14px;
  height: 14px;
  background-position: -160px -259px;
}

.img-photodetail-last-close {
  width: 14px;
  height: 14px;
  background-position: -292px -214px;
}

.img-photodetail-slide-search-hover {
  width: 32px;
  height: 32px;
  background-position: -244px -99px;
}

.img-photodetail-slide-search {
  width: 32px;
  height: 32px;
  background-position: -242px -144px;
}

.img-photodetail-small-next-hover, .picshowlist_mid .picmidright:hover {
  width: 30px;
  height: 107px;
  background-position: -120px -188px;
}

.img-photodetail-small-next, .picshowlist_mid .picmidright {
  width: 30px;
  height: 107px;
  background-position: -80px -188px;
}

.img-photodetail-small-prev-hover, .picshowlist_mid .picmidleft:hover {
  width: 30px;
  height: 107px;
  background-position: -40px -188px;
}

.img-photodetail-small-prev, .picshowlist_mid .picmidleft {
  width: 30px;
  height: 107px;
  background-position: 0 -188px;
}

.img-photodetail-smask {
  width: 130px;
  height: 89px;
  background-position: 0 0;
}

.img-photodetail-toolbar-bg-hover, .title .toolbar li .g-btn-a:hover, .title .toolbar li.share-list.open .g-btn-a {
  width: 166px;
  height: 32px;
  background-position: -140px 0;
}

.img-photodetail-toolbar-bg, .title .toolbar li .g-btn-a {
  width: 166px;
  height: 32px;
  background-position: -140px -42px;
}

/*!
 * @name ats.css
 * @author ahuing
 * @date 2016-1-15
 * @dec top toolbar popular search terms containing the search and
 */
/*
top-bar
*/
.top-bar {
  background: #f3f3f3;
  min-width: 1200px;
  padding: 15px 0 10px 0;
  margin-top: 20px\9;
}

.top-bar .search-bar {
  float: left;
}

.top-bar .list {
  margin-left: 68px;
}

.top-bar .list li {
  float: left;
  margin-right: 22px;
  font-size: 14px;
  margin-top: 9px;
  margin-top: 12px;
  display: inline;
  overflow: hidden;
}

.top-bar .list li a {
  height: 20px;
  line-height: 20px;
  text-decoration: none;
  color: #686465;
  overflow: hidden;
}

.top-bar .list li a:hover {
  color: #f00;
}

.top-bar .list li a i {
  font-size: 20px;
  float: left;
  margin-right: 4px;
  margin-top: 2px;
}

/*!
* @name <%= name %>
* @author <%= author %>
* @date <%= date %>
*/
/* 宽度调节
.piccontext {
}
//总宽度
.source {
}
//标题信息的宽度
.picshow {
}
//大图显示的宽度
#pic1 {
}
//图片最大的宽度
.picshowtxt {
}
//图片解说文字区域
.picshowlist_mid {
}
//小图区域宽度
.picmidmid {
}
//小图显示宽度
.picmidmid ul {
}
//小图显示宽度
.piclistshow {
}
//列表形式 */
.piccontext {
  margin: 0 auto;
}

.source {
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  font-family: "宋体";
}

.source_left {
  float: left;
  height: 20px;
  color: #666666;
}

.source_left a {
  color: #666666;
}

.source_left a:hover {
  color: #ff5d11;
  text-decoration: underline;
}

.source_left span {
  color: #ababab;
  padding-left: 15px;
  font-family: arial, helvetica, sans-serif;
}

.source_right {
  float: right;
  height: 20px;
  color: #666666;
}

.source_right a {
  color: #666666;
}

.source_right span {
  padding: 0px 10px;
}

.support {
  float: left;
  height: 20px;
  overflow: hidden;
}

.support img {
  padding: 0px 5px;
}

/* 大图展示 */
.picshow {
  overflow: hidden;
  margin: 20px auto 0;
}

.picshowtop {
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 auto;
}

#pic1 {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto !important;
}

#pic1 img {
  max-height: 100%;
  max-width: 100%;
}

.pic1-middle {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

#preArrow {
  left: 0px;
}

#nextArrow {
  right: 0px;
}

.contextDiv {
  cursor: pointer;
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0px;
  z-index: 5;
  background: url("blank") repeat;
}

.contextDiv span {
  position: absolute;
  top: 50%;
  margin-top: -10%;
  width: 46px;
  height: 80px;
}

#preArrow_A {
  left: 0px;
  background: url("../images/images/left.png") 0px 0px no-repeat;
  display: none;
}

#nextArrow_A {
  right: 0px;
  background: url("../images/images/right.png") 0px 0px no-repeat;
  display: none;
}

.picshowtxt {
  width: 100%;
  min-height: 40px;
  _height: 40px;
  margin-top: 20px;
  max-width: 1200px;
}

.picshowtxt_left {
  float: left;
  width: 70px;
  height: 50px;
  line-height: 30px;
  font-family: georgia, "times new roman", times, serif;
}

.picshowtxt_left span {
  color: #e55656;
  font-size: 30px;
}

.picshowtxt_left i {
  color: #666666;
  font-size: 20px;
}

.picshowtxt_right {
  float: left;
  margin-left: 10px;
  display: inline;
  line-height: 23px;
  color: #666666;
  font-size: 14px;
  width: 880px;
  font-family: "宋体";
}

.picshowlist {
  margin-top: 20px;
  overflow: hidden;
}

.picshowlist_left {
  float: left;
  width: 120px;
  overflow: hidden;
  overflow: hidden;
}

.picleftimg {
  width: 120px;
  height: 80px;
  background: url("../images/images/photo.jpg") no-repeat;
  padding-top: 9px;
  padding-left: 5px;
  overflow: hidden;
}

.picleftimg img {
  width: 106px;
  height: 66px;
}

.piclefttxt {
  width: 120px;
  line-height: 20px;
  font-family: "宋体";
}

.piclefttxt a {
  color: #444444;
}

.piclefttxt a:hover {
  color: #ff5d11;
  text-decoration: underline;
}

/* 小图 */
.picshowlist_mid {
  float: left;
  display: inline;
  overflow: hidden;
  height: 76px;
}

.picmidleft {
  float: left;
  width: 24px;
  height: 76px;
  overflow: hidden;
}

.picmidleft a {
  display: block;
  width: 24px;
  height: 76px;
}

.picmidmid {
  float: left;
  overflow: hidden;
  height: 76px;
  position: relative;
}

.picmidmid ul {
  overflow: hidden;
  position: absolute;
  height: 76px;
  left: 0;
  top: 15px;
}

.picmidmid ul li {
  float: left;
  margin-left: 8px;
  display: inline;
  width: 116px;
  text-align: center;
  position: relative;
  height: 66px;
  padding: 5px 0;
}

.selectpic {
  background: #aaa;
}

.picmidmid ul li img {
  max-width: 106px;
  height: 66px;
}

.picmidright {
  float: left;
  width: 24px;
  height: 76px;
  overflow: hidden;
}

.picmidright a {
  display: block;
  width: 24px;
  height: 76px;
}

.picshowlist_right {
  float: left;
  width: 120px;
  float: right;
  overflow: hidden;
}

/* 弹出层 */
.bodymodal {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  z-index: 1100;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
}

.closebtn {
  color: #fff;
  width: 15px;
  height: 15px;
  display: block;
}

.replay {
  height: 24px;
  margin-top: 20px;
  overflow: hidden;
}

.replay h2 {
  float: left;
  font-size: 16px;
}

.replay p {
  float: left;
  margin-left: 15px;
  display: inline;
  line-height: 24px;
  padding-right: 25px;
  background: url("../images/images/replay.png") right no-repeat;
}

.replay p a {
  color: white;
  font-size: 14px;
}

.replay p a:hover {
  color: #e43;
  text-decoration: underline;
}

.pictwo {
  width: 270px;
  height: 88px;
  overflow: hidden;
  margin-top: 20px;
}

.pictwo ul li {
  width: 120px;
  height: 88px;
  float: left;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
}

.pictwo ul li img {
  width: 120px;
  height: 88px;
}

.imgdivtext {
  position: absolute;
  bottom: 0px;
  height: 25px;
  width: 120px;
  background: rgba(0, 0, 0, 0.6);
  line-height: 25px;
  text-align: center;
  left: 0px;
  z-index: 4;
  *background: #000;
  *filter: alpha(opacity=50);
}

.imgdivtext a {
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.imgdivtext a:hover {
  color: #e43;
  text-decoration: underline;
}

.returnbtn {
  margin-top: 35px;
  margin-left: 50px;
}

.returnbtn a {
  width: 115px;
  height: 22px;
  border: 1px solid #ccc;
  padding: 5px 15px;
  line-height: 22px;
  text-align: center;
  color: white;
  font-size: 16px;
  display: block;
}

.returnbtn a:hover {
  color: #e43;
  border: 1px solid #e43;
}

.endtop {
  width: 600px;
  padding: 20px;
  background: #1c1c1c;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1200;
  color: white;
  display: none;
  margin-left: -300px;
  margin-top: -145px;
}

/*! lightgallery - v1.2.22 - 2016-07-20
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
@font-face {
  font-family: 'lg';
  src: url("../fontsgallery/lg.eot?n1z373");
  src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}

.lg-icon {
  font-family: 'lg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
}

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF;
}

.lg-actions .lg-next {
  right: 20px;
}

.lg-actions .lg-next:before {
  content: "\e095";
}

.lg-actions .lg-prev {
  left: 20px;
}

.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}

@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}

@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}

@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}

@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #FFF;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}

.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toogle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.group {
  *zoom: 1;
}

.group:before, .group:after {
  display: table;
  content: "";
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

/*# sourceMappingURL=lightgallery.css.map */
* {
  margin: 0;
  padding: 0;
}

a {
  color: #333;
}

a:hover {
  color: #c00;
  text-decoration: none;
}

img {
  -webkit-backface-visibility: hidden;
  transition: opacity 0.3s ease-out;
}

img:hover {
  opacity: 0.8;
}

.hd:after,
.bd:after {
  content: "";
  display: table;
  clear: both;
}

.photo-nav {
  margin-top: 7px;
}

.photo-nav ul li {
  display: inline-block;
}

.photo-nav a {
  border-radius: 3px;
  font-size: 16px;
  margin-left: 10px;
  padding: 5px 10px;
}

.photo-nav a.act, .photo-nav a:hover {
  background: #e43 none repeat scroll 0 0;
  color: #fff;
  text-decoration: none;
}

.link-box h1 {
  float: left;
  margin-top: 5px;
}

.link-box .hd {
  width: 1200px;
  margin: 0 auto;
}

.link-box dl {
  font-family: microsoft yahei;
  float: left;
  font-size: 16px;
}

.link-box dl.xw-nav dt {
  padding: 0 35px 0 15px;
  zoom: 1;
  color: #161616;
  cursor: pointer;
  margin-right: 15px;
  position: relative;
}

.link-box dl.xw-nav dt span {
  transition: .3s ease-in;
  top: 27px;
  right: 18px;
  height: 6px;
  width: 8px;
  overflow: hidden;
  position: absolute;
}

.link-box dl.xw-nav dt span i,
.link-box dl.xw-nav dt span b {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-color: rgba(255, 255, 255, 0);
  border-color: transparent\0;
  *border-color: transparent;
  _border-color: tomato;
  _filter: chroma(color=tomato);
  border-style: solid;
  overflow: hidden;
  *zoom: 1;
  border-width: 4px 4px 0;
  position: absolute;
}

.link-box dl.xw-nav dt span i {
  top: 1px;
  border-top-color: #3a3a3a;
}

.link-box dl.xw-nav dt span b {
  border-top-color: #fff;
}

.link-box dl.xw-nav dt:hover {
  background: #333;
  color: #fff;
}

.link-box dl.xw-nav dt:hover span {
  height: 5px;
  transform: rotate(180deg);
}

.link-box dl.xw-nav dt:hover span b {
  border-bottom-color: #333;
  border-top-color: #333;
  top: -1px;
  top: 1px\9;
  z-index: 20;
}

.link-box dl.xw-nav dt:hover span i {
  border-bottom-color: #fff;
  border-top-color: #fff;
  top: 0px;
}

.link-box dl.xw-nav dt .news-list {
  width: 1180px;
  top: 60px;
  left: -105px;
  z-index: 10;
  font-family: microsoft yahei;
  font-size: 14px;
  display: none;
  position: absolute;
}

.link-box dl.xw-nav dt .news-list li {
  float: left;
}

.link-box dl.xw-nav dt .news-list a {
  color: #9a9a9a;
  padding: 5px 10px;
  margin: 0 5px;
}

.link-box dl.xw-nav dt .news-list a:hover {
  background: #e60000;
  color: #fff;
}

.link-box dl.yc-nav dd {
  position: relative;
}

.link-box dl.yc-nav dd .on.more-link {
  border: 1px solid #eee;
  border-bottom: none;
  background-color: #fff;
}

.link-box dl.yc-nav dd .more-link {
  display: block;
  padding: 0 5px;
  cursor: pointer;
  z-index: 10;
  border: 1px solid #fff;
  position: relative;
}

.link-box dl.yc-nav dd .more-tips {
  border: 1px solid #eee;
  background: #fff;
  line-height: 40px;
  top: 20px;
  _top: 17px;
  left: 0;
  width: 100px;
  padding-top: 5px;
  overflow: hidden;
  display: none;
  z-index: 10;
  position: absolute;
}

.link-box dl.yc-nav dd .more-tips p {
  border-bottom: 1px dotted #ccc;
  margin: 0 5px;
  margin-top: -2px;
}

.link-box dl.yc-nav dd .more-tips p:last-child {
  border: none;
}

.link-box dd {
  margin-top: 19px;
  float: left;
}

.link-box dd a {
  padding: 0 8px;
}

.link-box dd.end {
  border-right: 1px solid #d3d3d3;
  padding-right: 12px;
}

.link-box dt {
  padding: 0 20px;
  line-height: 60px;
  color: #ababab;
  float: left;
  font-size: 18px;
}

.link-box .bd {
  position: relative;
  display: none;
}

.link-box .bd .shadow {
  width: 100%;
  min-width: 1200px;
  background: #282828;
  opacity: 0.95;
  filter: alpha(opacity=95);
  height: 62px;
  line-height: 62px;
  z-index: 8;
  position: absolute;
}

/* ½¹µãÍ¼ */
.focus {
  overflow: hidden;
  width: 1200px;
  height: 550px;
  position: relative;
  margin: 0 auto;
}

.focus .focus-view {
  width: 1200px;
  height: 550px;
}

.focus .focus-view ul {
  width: 1200px;
  height: 550px;
  position: relative;
}

.focus .focus-view ul li {
  width: 1200px;
  height: 550px;
}

.focus .focus-view ul li img {
  width: 1200px;
  height: 550px;
}

.focus .tit-jd {
  text-indent: 20px;
  font-weight: 100;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  height: 76px;
  left: 0;
  bottom: 0;
  color: #fff;
  font-family: microsoft yahei;
  cursor: pointer;
  line-height: 76px;
  position: absolute;
  font-size: 22px;
}

.focus-slider {
  z-index: 10;
  width: 658px;
  height: 60px;
  bottom: 10px;
  right: 15px;
  position: absolute;
}

.focus-slider .mask {
  overflow: hidden;
  margin-left: 10px;
  margin-right: 10px;
  width: 580px;
  height: 56px;
  float: left;
}

.focus-slider ul {
  width: 580px;
  height: 56px;
  margin-left: 0px;
  overflow: hidden;
}

.focus-slider li {
  overflow: hidden;
  width: 75px;
  height: 50px;
  border: 3px solid transparent;
  float: left;
}

.focus-slider li.act {
  border: 3px solid #FFF;
}

.focus-slider li a {
  width: 75px;
  height: 50px;
  display: block;
}

.focus-slider li a img {
  width: 75px;
  height: 50px;
}

.focus-slider .prev,
.focus-slider .next {
  margin: 6px 0 0;
  width: 29px;
  height: 42px;
  cursor: pointer;
  opacity: .5;
  filter: alpha(opacity=50);
  float: left;
}

.focus-slider .prev:hover,
.focus-slider .next:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* Ó°ÏñÁ¦ */
/* header */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.xxl-hd {
  height: 40px;
  line-height: 36px;
  position: relative;
}

.xxl-hd h2 {
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding: 0 4px;
  z-index: 10;
  border-bottom: 2px solid #e23838;
  left: 0;
  font-size: 18px;
  color: #222;
  height: 40px;
  position: absolute;
}

.xxl-hd .border {
  display: block;
  overflow: hidden;
  height: 0px;
  width: 1200px;
  border-top: 2px solid #d3d9df;
  border-bottom: 2px solid #fcfcfc;
  top: 40px;
  left: 0;
  position: absolute;
}

.xxl-hd .change-btn {
  right: 0px;
  text-indent: 23px;
  width: 75px;
  height: 23px;
  top: 8.5px;
  line-height: 23px;
  background: #f5f5f5;
  position: absolute;
}

.xxl-hd .change-btn:hover {
  background: #ec5353;
  color: #fff;
}

.xxl-hd .change-btn:hover i {
  animation: rotate 1s;
}

.xxl-hd .change-btn i {
  width: 16px;
  height: 16px;
  left: 4px;
  top: 4px;
  position: absolute;
}

.pic-list {
  width: 99999px;
}

.pic-list li {
  overflow: hidden;
  float: left;
  position: relative;
  margin: 16px 13px 0 0;
}

.pic-list li .pic-dl {
  overflow: hidden;
  zoom: 1;
  top: 0;
  left: 4px;
  width: 592.5px;
  height: 280px;
  position: absolute;
}

.pic-list li .pic-dl dd {
  overflow: hidden;
  width: 296.25px;
  float: left;
}

.pic-list li .pic-dl dd .pic-img img {
  width: 296.25px;
  height: 210px;
}

.pic-list li .pic-dl dd .pic-foot {
  overflow: hidden;
  zoom: 1;
  border: 1px solid #f6f6f6;
  padding: 0 10px;
}

.pic-list li .pic-dl dd .pic-foot .name {
  border-right: 1px solid #e5e5e5;
  margin-right: 10px;
  float: left;
}

.pic-list li .pic-dl dd .pic-foot .name b {
  display: block;
  text-indent: -9999px;
  background: url(http://mat1.gtimg.com/news/lmz/photo2016/yingxiangli_icon.png) no-repeat;
  margin: 15px 0 4px 0;
  height: 47px;
  width: 96px;
}

.pic-list li .pic-dl dd .pic-foot .pic-tit {
  font-family: microsoft yahei;
  font-size: 14px;
  height: 24px;
  overflow: hidden;
  margin-top: 11px;
}

.pic-list li .pic-dl dd .pic-foot .pic-text {
  padding-right: 10px;
  overflow: hidden;
  color: #929292;
  font-family: microsoft yahei;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  overflow: hidden;
}

.pic-list li .pic-dl.jingxuan .pic-foot .name b {
  background-position: -181px -170px;
}

.layout {
  width: 1200px;
}

.chief {
  width: 870px;
  float: left;
}

.chief .content .link-to {
  font-size: 20px;
}

.chief .content ul {
  width: 880px;
  margin-top: 16px;
}

.chief .content ul .pic {
  width: 200px;
  height: 160px;
  margin-right: 20px;
  float: left;
}

.chief .content ul .pic img {
  width: 200px;
  height: 160px;
}

.chief .item-ft {
  height: 29px;
  margin-top: 16px;
}

.chief .item-ft .info {
  color: #9e9e9e;
  float: left;
}

.chief .item-ft .info .from {
  margin-right: 24px;
  font-size: 14px;
}

.chief .item-ft .info .keywords {
  *vertical-align: -2px;
}

.chief .item-ft .info .keywords a {
  display: inline-block;
  padding: 3px 6px;
  color: #9e9e9e;
  background: #f5f5f5;
  margin-right: 12px;
}

.chief .item-ft .info .keywords a:hover {
  color: #e23838;
  background: #f9cece;
}

.chief .item-ft .btns {
  margin-top: 8px;
  float: right;
}

.chief .item-ft .btns .discuz-btn,
.chief .item-ft .btns .share-btn {
  cursor: pointer;
  float: right;
}

.chief .item-ft .btns .share-btn {
  width: 18px;
  height: 16px;
  position: relative;
}

.chief .item-ft .btns .share-btn .bds_more {
  margin: 0;
  padding: 0;
}

.chief .item-ft .btns .share-btn .shares {
  padding: 6px 0;
  width: 95px;
  border: 1px solid #f0f0f0;
  top: 24px;
  left: -12px;
  z-index: 10;
  background: #fff;
  position: absolute;
  display: none;
}

.chief .item-ft .btns .share-btn .shares .arrow {
  display: block;
  width: 10px;
  height: 7px;
  top: -7px;
  left: 14px;
  position: absolute;
}

.chief .item-ft .btns .share-btn .shares .share-button {
  height: 26px;
  overflow: hidden;
}

.chief .item-ft .btns .share-btn .shares .share-button a {
  display: block;
  font-size: 12px;
  padding-left: 10px;
}

.chief .item-ft .btns .share-btn .shares .share-button a i {
  margin-right: 8px;
}

.chief .item-ft .btns .discuz-btn {
  margin-left: 16px;
  padding: 0 5px 0 0;
  font-size: 14px;
  color: #d3d3d3;
  line-height: 10px;
  height: 16px;
}

.chief .item-ft .btns .discuz-btn:hover {
  color: #e23838;
}

.chief .more {
  border: 1px solid #f0f0f0;
  background: #fff;
  color: #aeaeae;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  border-top: none;
  text-align: center;
  display: block;
}

.chief .more:hover {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: #828282;
}

/* ÓÒ²à */
.extra {
  width: 300px;
  float: right;
}

.extra .emodule {
  overflow: hidden;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background: #fafafa;
}

.extra .emodule-hd {
  overflow: hidden;
  *zoom: 1;
}

.extra .emodule-hd .logo-more {
  zoom: 1;
  width: 140px;
  height: 61px;
  background: url(http://mat1.gtimg.com/news/lmz/photo2016/right_modules.png) no-repeat;
  cursor: pointer;
  float: left;
}

.extra .header-tab {
  border-top: 2px solid #c3c3c3;
  *zoom: 1;
}

.extra .header-tab span a {
  display: inline-block;
  margin-right: 1px;
  text-align: center;
  width: 102px;
  font-size: 16px;
  top: -2px;
  line-height: 59px;
  height: 59px;
  border-top: 2px solid #c3c3c3;
  cursor: pointer;
  float: left;
  position: relative;
}

.extra .header-tab span a.cur {
  border-top: 2px solid #e23838;
  color: #e23838;
}

.extra .module-more {
  margin-top: 16px;
  margin-right: 20px;
  color: #9e9e9e;
  font-size: 14px;
  float: right;
}

.extra .module-more:hover {
  color: #222;
}

.extra .content li a {
  overflow: hidden;
  color: #404040;
  font-size: 14px;
  line-height: 28px;
  cursor: pointer;
  height: 28px;
  display: block;
}

.extra .content li a:hover {
  color: #c00;
}

.extra .content li i {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  width: 4px;
  height: 4px;
  background: #e97272;
}

.extra .content li.first {
  margin-bottom: 10px;
  position: relative;
}

.extra .content li.first .content-img {
  height: 200px;
}

.extra .content li.first .content-img img {
  width: 300px;
  height: 200px;
}

.extra .content li.first .first-txt {
  text-indent: 10px;
  overflow: hidden;
  background: url(../images/opacitybg.png) repeat-x;
  bottom: 0;
  left: 0;
  color: #fff;
  line-height: 45px;
  width: 300px;
  height: 45px;
  position: absolute;
}

.lypic-box {
  width: 1200px;
  margin: 0 auto;
}

.photo-hd {
  overflow: hidden;
  zoom: 1;
  height: 40px;
}

.photo-hd h2 {
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
  float: left;
}

.photo-hd .pic-style {
  margin-top: 3px;
  float: left;
}

.photo-hd .pic-style li {
  overflow: hidden;
  width: 86px;
  float: left;
}

.photo-hd .pic-style li a {
  text-indent: 28px;
  width: 86px;
  height: 29px;
  font-family: microsoft yahei;
  font-size: 12px;
  line-height: 28px;
  float: left;
}

.photo-hd .pic-style li a.big, .photo-hd .pic-style li a.big:hover {
  color: #6e6e6e;
  line-height: 28px;
}

.photo-hd .pic-style li a.small, .photo-hd .pic-style li a.small:hover {
  color: #6e6e6e;
  line-height: 28px;
}

.photo-hd .pic-style li.cur a.big,
.photo-hd .pic-style li.cur a.big:hover {
  color: #fff;
  line-height: 28px;
}

.photo-hd .pic-style li.cur a.small,
.photo-hd .pic-style li.cur a.small:hover {
  color: #fff;
  line-height: 28px;
}

.lyp-list {
  margin-top: -20px;
}

.lyp-list li {
  overflow: hidden;
  zoom: 1;
  margin-top: 40px;
  box-shadow: #eee 0px 0px 3px;
}

.lyp-list .item-tbody {
  background: url(../images/ajax-loader.gif) no-repeat center center;
}

.lyp-list .item-tbody:hover {
  background: none;
}

.lyp-list .item-tbody img {
  width: 1200px;
  height: auto;
}

.lyp-list .item-header {
  padding: 25px;
  font-family: microsoft yahei;
}

.lyp-list .item-header h3 {
  font-size: 22px;
  float: left;
}

.lyp-list .item-header h3 em {
  font-size: 16px;
  color: #666;
  font-family: 'georgia';
  font-style: italic;
}

.lyp-list .item-header .time {
  clear: both;
  font-size: 12px;
  color: #999;
  height: 22px;
  line-height: 22px;
  padding-top: 5px;
}

.lyp-list .big-list {
  overflow: hidden;
  zoom: 1;
  float: right;
}

.lyp-list .big-list dd {
  float: left;
}

.lyp-list .big-list dd a {
  margin-left: 20px;
}

.lyp-list .big-list dd a i {
  margin-right: 8px;
}

.lyp-list.lyp-list-small {
  zoom: 1;
  margin-top: -10px;
  margin-left: -12px;
}

.lyp-list.lyp-list-small li {
  width: 291px;
  margin-top: 30px;
  margin-left: 12px;
  position: relative;
  float: left;
}

.lyp-list.lyp-list-small li .item-tbody {
  height: 194px;
  overflow: hidden;
}

.lyp-list.lyp-list-small li .item-tbody a {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  *display: block;
  *font-family: aiarl;
  width: 291px;
  height: 194px;
}

.lyp-list.lyp-list-small li .item-tbody a img {
  vertical-align: middle;
  width: 251px;
  border: 1px solid #ccc;
  max-height: 194px;
  height: auto !important;
  height: 194px;
}

.lyp-list.lyp-list-small li .item-header {
  width: 267px;
  padding: 10px 12px;
  float: left;
}

.lyp-list.lyp-list-small li .item-header h3 {
  font-size: 14px;
  height: 45px;
  line-height: 22.5px;
}

/* mod-page */
.mod-page {
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 30px 0 0;
  color: #333;
}

.mod-page a,
.mod-page span {
  padding: 6px 12px;
  border: 1px solid #e3e3e3;
  color: #333;
  font-size: 14px;
  margin: 0 3px;
  border-radius: 4px;
  font-family: microsoft yahei;
}

.mod-page .txt {
  color: #fff;
  font-weight: bold;
  background-color: #e70012;
  border-color: #e70012;
}

.mod-page .next {
  display: inline-block;
}

.mod-page .dot {
  background: none;
  border: none;
}

.mod-page a:hover {
  color: #fff;
  background-color: #e70012;
  border-color: #e70012;
}

.section {
  position: relative;
  _zoom: 1;
}

/* ×îÐ¡¿í¶È ±³¾°ÑÕÉ« */
.body {
  position: relative;
  z-index: 6;
  min-width: 1200px;
  margin: 0 auto;
}

/* main */
.main {
  background: #f9f9f9;
  color: #000;
  position: relative;
  min-width: 1200px;
}

.title {
  height: 70px;
  position: relative;
  width: 1200px;
  z-index: 4;
}

.title h1 {
  color: #000;
  font: 26px/70px "Microsoft YaHei", arial;
}

.title .toolbar {
  position: absolute;
  right: 30px;
  top: 19px;
}

.title .toolbar li {
  margin-top: 0;
  float: left;
  font-size: 12px;
  margin-left: 10px;
}

.title .toolbar li .g-btn-a {
  height: 32px;
  display: inline-block;
  padding: 0 8px;
  line-height: 32px;
  color: #000;
  width: auto;
  border-right: 1px solid #dfdfdf;
  border-radius: 4px;
  margin: 0;
}

.title .toolbar li .g-btn-a i {
  float: left;
  margin-top: 7px;
  margin-right: 10px;
}

.title .toolbar li .g-btn-a:hover {
  height: 32px;
  padding-left: 8px;
  width: auto;
  color: #fff;
  line-height: 32px;
  border-color: #4785bf;
}

.title .toolbar li.comment {
  margin-top: 0 !important;
}

.title .toolbar li.comment .g-btn-a .coment-num {
  font-style: normal;
  font-weight: bold;
  font-family: tahoma;
  color: #379be9;
  margin-right: 4px;
}

.title .toolbar li.comment .g-btn-a:hover .coment-num {
  color: #fff;
}

.title .toolbar li.share-list {
  position: relative;
}

.title .toolbar li.share-list .g-btn-a i {
  _width: 22px;
}

.title .toolbar li.share-list .g-btn-a:hover i {
  display: block;
}

.title .toolbar li.share-list.open .g-btn-a {
  height: 32px;
  padding-left: 8px;
  width: auto;
  color: #fff;
  line-height: 32px;
  border-color: #4785bf;
}

.title .toolbar li.share-list.open .g-btn-a i {
  display: block;
}

.title .toolbar li.share-list .menu-bd {
  display: none;
  left: 30px;
  top: 30px;
  position: absolute;
  z-index: 200;
  width: 94px;
  background: #46A7F2;
  border: 1px solid #4785BF;
  border-top: none;
  border-radius: 0 0 2px 2px;
}

.title .toolbar li.share-list .menu-bd li {
  height: 26px;
  width: 94px;
  line-height: 26px;
  margin-left: 0;
}

.title .toolbar li.share-list .menu-bd li .g-btn-b {
  display: block;
  color: #fff;
  padding-left: 10px;
}

.title .toolbar li.share-list .menu-bd li .g-btn-b:hover {
  background: #3591d8;
  display: block;
}

.title .toolbar li.share-list .menu-bd li .g-btn-b i {
  float: left;
  margin-top: 5px;
  margin-right: 5px;
}

.title .toolbar li.share-list .share-wx-box {
  display: none;
  width: 85px;
  height: 85px;
  padding: 4px;
  background: #fff;
  border: 1px #4785bf solid;
  position: absolute;
  bottom: -129px;
  left: -94px;
}

.title .toolbar li.share-list .share-wx-box img {
  width: 85px;
  height: 85px;
}

/* footer */
.footer {
  width: 100%;
}

.piccontext {
  min-width: 1200px;
  width: 100%;
}

.picshowtop #preArrow_A {
  left: 110px;
}

.picshowtop #nextArrow_A {
  right: 110px;
}

.picshowtxt_left span {
  color: #379be9;
}

.picmidmid {
  padding: 15px 0;
  width: 1138px;
}

.picmidmid .selectpic {
  border-radius: 5px;
  background: #379be9;
}

.picshowlist_mid {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: block;
  float: none;
  height: 105px;
  margin: 0 auto;
  width: 1200px;
}

.picshowlist_mid .picmidleft,
.picshowlist_mid .picmidright {
  cursor: pointer;
  margin-top: -1px;
}

.picshowlist_mid .picmidright {
  float: right;
}

.photo_left {
  width: 850px;
  float: left;
}

.photo_right {
  width: 310px;
  float: right;
}

.borgray {
  background: #fff;
  padding: 12px 2px;
}

.area2-3 {
  height: 42px;
  line-height: 42px;
  color: #333;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.area2-3 h3.rmlp {
  border-bottom: 1px solid #ee4433;
  position: absolute;
  top: -8px;
  left: 0;
  height: 50px;
  font-size: 20px;
  float: left;
}

.area2-3 p.gengduo {
  width: 32px;
  height: 15px;
  float: right;
  margin-top: 6px;
}

.tjtuw {
  margin-right: -50px;
}

.tjtuw li {
  float: left;
  width: 130px;
  overflow: hidden;
  display: inline;
  margin: 16px 25px 8px 0;
}

.tjtuw .ico {
  float: right;
  line-height: 20px;
  color: #666;
  margin-top: 2px;
  cursor: pointer;
}

.tjtuw .pri {
  color: #ee4433;
  font-size: 16px;
}

.tjtuw em {
  color: #666;
  font-size: 16px;
  overflow: hidden;
  height: 28px;
  display: block;
}

.tjtuw a:hover em {
  color: #ee4433;
}

.tjtuw p {
  font-size: 12px;
  color: #666;
}

.tjtuw li p {
  height: 18px;
  overflow: hidden;
  line-height: 18px;
}

.tjtuw li img {
  border: 1px solid #eee;
  background: #fff;
  display: block;
  padding: 2px;
  width: 124px;
  height: 90px;
}

.ztlist-item {
  width: 420px;
  margin: 0 15px 15px 0;
  overflow: hidden;
  float: left;
  height: 318px;
}

.ztlist-item h2 {
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
}

.ztlist-item p {
  color: #666;
  font-size: 13px;
  text-indent: 2em;
  line-height: 24px;
}

/*# sourceMappingURL=zt.css.map */
