/*
 * @author: chenxiaoyong@ehaier.com
 * @date: 2014-08-08
 * @site: http://m.ehaier.com
 */

.ciw-btn{
	margin:40px;
	padding:0;
}
.ciw-btn li{
	list-style-type:none;
	line-height: 50px;
	border-bottom:1px dotted #999;		
}
.ciw-btn li a{
	text-decoration: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	font-size: 20px;
	color: #fff;
}


.category-head {
	margin:10px 0px 10px 10px;
	height: 30px;
	line-height: 30px;
	color: #1a1a1a;
	font-size: 20px;
	font-family:sans-serif;
}
.category-head .category-icon {
	width: 8px;
	height: 16px;
	display: inline-block;
	overflow: hidden;
	margin-top: 10px;
	position: absolute;
}
.category-head .category-icon span {
	width: 100%;
	height: 2px;
	margin-bottom: 2px;
	background-color: #005aaa;
	display: block;
	overflow: hidden;
}
.category-head .category-title {
	padding-left: 10px;
	font-weight: bold;
}
.category-head .category-title a {
	color: #b2b2b2;
	font-size: 20px;
	font-weight: normal;
	text-decoration: none;
	font-family: icon;
}
.category-head .category-title .countdown {
	padding: 6px 0 0 3px;
}

.category1,.category2,.category3 {margin-bottom: 15px;}
.category1 ul,.category2 ul,.category3 ul{
	padding: 0;
	margin: 0;
	list-style: none;	
}
.category1 img,.category2 img,.category3 img{
	max-width: 100%;
	max-height: 320px;
	vertical-align: middle;
}
.category1 .swiper-container,.category2 .swiper-container,.category3 .swiper-container{ 
	/*width: 320px;
	height: 125px;*/
	
	width: 320px;
	height: 350px;  /*=320+30，其30为标题高度*/
	
	overflow: hidden;
}
@media only screen and (min-width: 360px) { 
	.category1 .swiper-container,.category2 .swiper-container,.category3 .swiper-container { width: 360px; height: 390px; }
	.category1 img,.category2 img,.category3 img{	max-height: 360px; }
} 
@media only screen and (min-width: 480px) { 
	.category1 .swiper-container,.category2 .swiper-container,.category3 .swiper-container{ width: 480px; height: 510px; }
	.category1 img,.category2 img,.category3 img{	max-height: 480px; }
} 
@media only screen and (min-width: 640px) { 
	.category1 .swiper-container,.category2 .swiper-container,.category3 .swiper-container { width: 640px; height: 670px; }
	.category1 img,.category2 img,.category3 img{	max-height: 640px; }
} 
@media only screen and (min-width: 680px) { 
	.category1 .swiper-container,.category2 .swiper-container,.category3 .swiper-container { width: 680px; height: 710px; }
	.category1 img,.category2 img,.category3 img{	max-height: 680px; }
} 
@media only screen and (min-width: 720px) { 
	.category1 .swiper-container,.category2 .swiper-container,.category3 .swiper-container { width: 720px; height: 750px; }
	.category1 img,.category2 img,.category3 img{	max-height: 720px; }
} 

.category1 .pagination,.category2 .pagination,.category3 .pagination {
    width: 100%;
    text-align: center;
}
.category1 .swiper-pagination-switch,.category2 .swiper-pagination-switch,.category3 .swiper-pagination-switch{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #999;
  box-shadow: 0px 1px 2px #555 inset;
  margin: 0 5px; 
  cursor: pointer;
}
.category1 .swiper-active-switch,.category2 .swiper-active-switch,.category3 .swiper-active-switch {
  background: #fff;
  border:1px solid #00f;
  box-shadow:none;
}
.category1 .ciw-btn,.category2 .ciw-btn,.category3 .ciw-btn{
	margin: 25px 5px 0 0;
}


/*
 * Swiper - Mobile Touch Slider CSS
 * http://www.idangero.us/sliders/swiper
 *
 * Vladimir Kharlampidi, The iDangero.us
 * http://www.idangero.us/
 * 
 * Copyright 2012-2013, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us
 *
 * Licensed under GPL & MIT
 *
*/

/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
}
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
	text-align:center;
	
}
.swiper-slide a{
	font-size: 16px;
	color: #1a1a1a;
	font-family:serif;
}
.swiper-slide h4{
	margin:0;
	height:30px;
	font-family:serif;
	font-size: 18px;
	line-height: 30px;
	font-weight:normal;
    *zoom: 1;	
	text-overflow: ellipsis;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	white-space: nowrap;
}


/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
	/* Specify Swiper's Size: */

	/*width:200px;
	height: 100px;*/
}
.swiper-slide {
	/* Specify Slides's Size: */
	
	/*width: 100%;
	height: 100%;*/
}
.swiper-slide-active {
	/* Specific active slide styling: */
	
}
.swiper-slide-visible {
	/* Specific visible slide styling: */	

}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
	/* Stylize pagination button: */	

}
.swiper-active-switch {
	/* Specific active button style: */	
	
}
.swiper-visible-switch {
	/* Specific visible button style: */	
	
}

.cplist{
    margin:10px 10px 10px 10px;
}
.cplist-body{
	width: 100%;
}
.cplist-body .protitle{
	height:30px;
	line-height: 30px;
	color:#00f;
	background-color: #bbf;
}
.cplist-body img {
	vertical-align: middle;
	max-width:100%;
}

.cplist-body ul{
	margin:0;
	padding:0;	
}

.cplist-body ul li{
	margin-bottom: 15px;
	float:none;
	list-style-type:none;
	text-align:center;
}
.cplist-body ul li:nth-child(even){
	background-color: #f9f9f9;
}
.cplist-body ul li a{
	font-size: 18px;
	color: #1a1a1a;
}
.cplist-body ul li h4{
	margin:0;
	height:30px;
	line-height: 30px;
	/*background-color: #e6e6e6;*/
	font-weight:normal;
    *zoom: 1;	
	text-overflow: ellipsis;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	white-space: nowrap;
}


.tc {
	margin:10px 10px 10px 10px;
}
.tc .tc-icon {
	width: 8px;
	height: 16px;
	display: inline-block;
	overflow: hidden;
}
.tc .tc-icon span {
	width: 100%;
	height: 2px;
	margin-bottom: 2px;
	background-color: #005aaa;
	display: block;
	overflow: hidden;
}
.tc .tc-head {
	height: 30px;
	line-height: 30px;
	color: #1a1a1a;
	font-size: 20px;
}

.tc .tc-head .tc-icon {
	margin-top: 10px;
	position: absolute;
}

.tc .tc-head .tc-title {
	padding-left: 10px;
	font-weight: bold;
}
.tc .tc-head .tc-title em {
	color: #b2b2b2;
	font-size: 14px;
	font-style:normal;
	font-family: icon;
}
.tc .tc-head .tc-title .countdown {
	padding: 6px 0 0 3px;
}
.tc .tc-body a{
	text-decoration:none;
	color:#1a1a1a;
}
.tc .tc-body img{
	max-width:100%;
}