/*
	Author: http://codecanyon.net/user/sike?ref=sike
*/

body{
	font-family: "Lucida Grande", "Lucida Sans Unicode", helvetica, verdana, arial, sans-serif;
	min-width: 640px;
	font-size: 13px;
	background: #fff;
}
.wrapper{
	width: 100%;
	margin: 0 auto;
	height: 800px;
	/*overflow: hidden;*/
	/*background: green;*/
}
.grid, .list{
    float: right;
}

.button-container{
    width: 100%;
    float: left;
    clear: both;
    background: #fff;
    padding: 0 12px;
}
.button-container a{
	display: inline-block;
	text-decoration: none;
	float: left;
	font-size: 12px;
	width: 60px;
	color: #333;
	/*background: #CCC;*/
	padding: 8px 4px 8px 26px;
	text-align: center;
	margin-bottom: 12px;
	margin-right: 12px;
}
.grid a{
	background: url(grid.png) 0px 8px no-repeat;
}
.grid a.active{
	color: #333;
	background: #FFF url(grid.png) 0px 8px no-repeat;
	outline: none;
	border: none;
}
.list a{
	background: url(list.png) 0px 8px no-repeat;
}
.list a.active{
	color: #333;
	background: #FFF url(list.png) 0px 8px no-repeat;
	outline: none;
	border: none;
}

.button-container a:visited{
	color: #333;
}
.button-container a.active{
	/*color: #FFF;*/
	/*background: #B22222;*/
}
.thumb-container{
/*	float: left;
	width: 230px;
	height: auto;
	background: #FFF;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
    margin-bottom: 10px;*/
    border: 1px solid #DEDEDE;
    width: 318px;
    height: 325px;
    /* background: orange; */
    margin: 0 21px 21px 0;
    _margin: 0 20px 21px 0;
    float: left;
    _display: inline;
	background:white;
}
.grid-img{
	width:384px;
/*	padding-left: 5px;
	padding-top: 5px;*/
	padding-bottom: 5px;
	border: none;
}
.long-desc .grid-img{
	float: left;
}
.short-desc{
	display: inline-block;
	margin-top: 2px;
	/*padding: 4px 0;*/
	margin-left: 12px;
}
.long-desc{
/*	display: none;
	margin-top: 12px;
	float: left;
	width: 680px;
	margin-left: 260px;
	margin-top: -120px;*/
	    display: none;
    margin-top: 12px;
    /* float: left; */
    width: 680px;
    margin-left: 423px;
    margin-top: -152px;
}
.desc-title{
	/*font-weight: bold;*/
	display: inline-block;
	font-size: 16px;
	margin-bottom: 6px;
}
.desc-text{
	font-size: 12px;
	/*font-style: italic;*/
}

.animated {
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% { -webkit-transform: scale(1); }
	50% { -webkit-transform: scale(1.1); }
    100% { -webkit-transform: scale(1); }
}
@-moz-keyframes pulse {
    0% { -moz-transform: scale(1); }
	50% { -moz-transform: scale(1.1); }
    100% { -moz-transform: scale(1); }
}
@-o-keyframes pulse {
    0% { -o-transform: scale(1); }
	50% { -o-transform: scale(1.1); }
    100% { -o-transform: scale(1); }
}
@keyframes pulse {
    0% { transform: scale(1); }
	50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
	-webkit-animation-name: pulse;
	-moz-animation-name: pulse;
	-o-animation-name: pulse;
	animation-name: pulse;
}


.animate0{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 0s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 0s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 0s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate1{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: .2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: .2s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: .2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: .2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate2{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: .4s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: .4s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: .4s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: .4s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate3{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: .6s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: .6s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: .6s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: .6s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate4{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: .8s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: .8s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: .8s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: .8s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate5{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 1s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 1s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 1s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 1s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate6{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 1.2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 1.2s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 1.2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate7{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 1.4s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 1.4s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 1.4s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 1.4s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate8{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 1.6s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 1.6s;
	-moz-animation-timing-function: ease;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 1.6s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 1.6s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate9{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 1.8s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 1.8s;
	-moz-animation-timing-function: ease;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 1.8s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 1.8s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate10{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 2s;
	-moz-animation-timing-function: ease;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate11{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 2.2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 2.2s;
	-moz-animation-timing-function: ease;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 2.2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 2.2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.animate12{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 2.4s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 2.4s;
	-moz-animation-timing-function: ease;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 2.4s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 2.4s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate13{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 2.6s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 2.6s;
	-moz-animation-timing-function: ease;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 2.6s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 2.6s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

.animate14{
   	-webkit-animation-duration: .5s;
	-webkit-animation-delay: 2.8s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .5s;
	-moz-animation-delay: 2.8s;
	-moz-animation-timing-function: ease;
	-ms-animation-duration: .5s;
	-ms-animation-delay: 2.8s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .5s;
	animation-delay: 2.8s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
/*新增代码*/
.fadeInDown span a {
    color: #666;
}
.ui-icon-promotion-method {
    margin-top: -5px;
}
.promotion-method-dazhe {
    background-color: #ff862d;
}
.ui-icon-promotion-method {
    background-color: red;
    vertical-align: middle;
}
.ui-icon-order-promotion-method, .ui-icon-promotion-method {
    text-align: center;
    height: 15px;
    display: inline-block;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    line-height: 15px;
    padding: 2px 3px;
    border-radius: 3px;
}
i {
    font-style: normal;
}
.price {
    width: 356px;
    /* height: 0px; */
    /* background: yellow; */
    line-height: 1px;
    padding: 0 10px 15px 10px;
    overflow: hidden;
}
.price em {
    font-style: normal;
    color: #F0378D;
    font-size: 20px;
    font-weight: bold;
    float: left;
}
.price del {
    float: left;
    padding: 3px 0 0 10px;
    color: #999;
}
.price i {
    font-style: normal;
    float: right;
    color: #999;
}
.item-perty {
    line-height: 35px;
    padding: 2px 5px;
}
.item-spec {
    line-height: 35px;
    display: block;
}
.cgray9 {
    color: #999!important;
}
.fl {
    float: left!important;
}

.fr {
    float: right!important;
}
.ui-combo-wrap-mini {
    position: relative;
    height: 30px;
    background-color: #fafafa;
    border: 1px solid #c7ced1;
    color: #555;
    overflow: hidden;
}
.ui-combo-wrap, .ui-combo-wrap-mini, .ui-combo-wrap-page {
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
}
.target_box {
    line-height: 12px;
    min-width: 105px;
	height: 30px;
}

.target_box {
    border: 1px solid #999;
    background-color: #fff;
    border-radius: 3px;
}
.shadow {
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,.4);
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.4);
    box-shadow: 1px 1px 3px rgba(0,0,0,.4);
}


.fadeInDown .item-spec3 {
    margin-bottom: 10px;
}
.fadeInDown .item-spec {
    line-height: 34px;
    display: block;
}
.w75p {
    width: 75%;
}
.ml5 {
    margin-left: 5px!important;
}
/*.item-perty{margin-top: 10px;}*/
.pagination {
    margin: auto;
    text-align: center;
	    display: inherit;
}
.pagination ul {
	display: inline-block;
*display:inline;
	margin-bottom: 0;
	margin-left: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
*zoom:1;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	box-shadow: 0 1px 2px rgba(0,0,0,0.05)
}
.pagination ul>li {
	display: inline
}
.pagination ul>li>a, .pagination ul>li>span {
	float: left;
/*	padding: 4px 12px;*/
	line-height: 20px;
/*	text-decoration: none;*/
	/*background-color: #dfdfdf;*/
	/*border: 1px solid transparent;*/
	border-left-width: 0;
	
	
	color: #666;
    font-size: 1em;
    background: #FFF;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    text-decoration: none;
}
.pagination ul>li>a:hover, .pagination ul>li>a:focus, .pagination ul>.active>a, .pagination ul>.active>span {
	background-color: #6173f4;
}
.pagination ul>.active>a, .pagination ul>.active>span {
	color: #dfdfdf;
	cursor: default
}
.pagination ul>.disabled>span, .pagination ul>.disabled>a, .pagination ul>.disabled>a:hover, .pagination ul>.disabled>a:focus {
	color: #dfdfdf;
	cursor: default;
	background-color: transparent
}
.pagination ul>li:first-child>a, .pagination ul>li:first-child>span {
	border-left-width: 1px;
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-top-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topleft: 0
}
.pagination ul>li:last-child>a, .pagination ul>li:last-child>span {
	-webkit-border-top-right-radius: 0;
	border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0
}
.pagination-centered {
	text-align: center
}
.pagination-right {
	text-align: right
}
.pagination-large ul>li>a, .pagination-large ul>li>span {
	padding: 22px 30px;
	font-size: 17.5px
}
.pagination-large ul>li:first-child>a, .pagination-large ul>li:first-child>span {
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-top-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topleft: 0
}
.pagination-large ul>li:last-child>a, .pagination-large ul>li:last-child>span {
	-webkit-border-top-right-radius: 0;
	border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0
}
.pagination-mini ul>li:first-child>a, .pagination-small ul>li:first-child>a, .pagination-mini ul>li:first-child>span, .pagination-small ul>li:first-child>span {
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-top-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topleft: 0
}
.pagination-mini ul>li:last-child>a, .pagination-small ul>li:last-child>a, .pagination-mini ul>li:last-child>span, .pagination-small ul>li:last-child>span {
	-webkit-border-top-right-radius: 0;
	border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0
}
.pagination-small ul>li>a, .pagination-small ul>li>span {
	padding: 2px 10px;
	font-size: 11.9px
}
.pagination-mini ul>li>a, .pagination-mini ul>li>span {
	padding: 2px 6px;
	font-size: 10.5px
}
.pager {
	margin: 20px 0;
	text-align: center;
	list-style: none;
*zoom:1
}
.pager:before, .pager:after {
	display: table;
	line-height: 0;
	content: ""
}
.pager:after {
	clear: both
}
.pager li {
	display: inline
}
.pager li>a, .pager li>span {
	display: inline-block;
	padding: 5px 14px;
	background-color: #fff;
	border: 1px solid #ddd;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px
}
.pager li>a:hover, .pager li>a:focus {
	text-decoration: none;
	background-color: #f5f5f5
}
.pager .next>a, .pager .next>span {
	float: right
}
.pager .previous>a, .pager .previous>span {
	float: left
}
.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span {
	color: #dfdfdf;
	cursor: default;
	background-color: #fff
}