* {
	box-sizing: border-box;
}
html, body, dl, dt, dd, button {
	position: relative;
	margin: 0;
	padding: 0;
	background: #fafafa;
	font-family: "Microsoft YaHei", sans-serif, "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
}
img,p {
	margin: 0;
	padding: 0;
}
a, a:focus, a:hover, a:active, button, button:hover {
	outline: 0 !important;
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}


@media screen and (min-width:959px) {	
.bannerImg{display:none;}
.icbc-img-div{display:none;}
	}
	
@media screen and (max-width:958px) {
.bannerImg {
	display: block;
	width: 100%;
}
.icbc-img-div{margin:2% 3% 3%; padding:0.5em; border:1px solid #cecece; border-radius:15px;}
.icbc-img-div .img-l{width:48%; padding-right:2%; margin-right:2%; border-right:1px solid #cecece;}
.icbc-img-div .img-r{width:48%; }
}

/********************** 活动详情 垂直折叠 *******************/
.accordion-list {
	border: 1px solid #ddd;
}
/**   
.accordion dl:after, .accordion-list:after {
	content: "";
	display: block;
	height: 4px;
	width: 100%;
	background: #ff6600;
}

**/
.accordion dd, .accordion__panel {
	background-color: #ffffff;
	font-size: 1em;
	line-height: 1.5em;
}
.accordion p {
	padding: 0.5em 1em;
}
.accordion {
	position: relative;
	background-color: #eee;
}
.accordionTitle, .accordion__Heading {
	background-color: #ff6600;
	background-image:url(../imgs/waveline.jpg);
	background-position:bottom;
	background-repeat:no-repeat;
	background-size:100%;
	text-align: center;
	font-weight: 700;
	padding: 0.4em 0 0.6em;
	display: block;
	text-decoration: none;
	color: #fff;
	-webkit-transition: background-color 0.5s ease-in-out;
	transition: background-color 0.5s ease-in-out;
	/** border-bottom: 1px solid #ff6600; **/
}
.accordionTitle:before, .accordion__Heading:before {
	content: "+";
	float: right;
		padding-right:0.25em;
	font-size: 1.5em;
	line-height: 0.8em;
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.accordionTitle:hover, .accordion__Heading:hover {
	background-color: #d25401;
}
.accordionTitleActive, .accordionTitle.is-expanded {
	background-color: #d25401;
}
.accordionTitleActive:before, .accordionTitle.is-expanded:before {
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg);
}
.accordionItem {
	height: auto;
	overflow: hidden;
	max-height: 50em;
	-webkit-transition: max-height 1s;
	transition: max-height 1s;
}

@media screen and (min-width: 48em) {
.accordionItem {
	max-height: 15em;
	-webkit-transition: max-height 0.5s;
	transition: max-height 0.5s;
}
}
.accordionItem.is-collapsed {
	max-height: 0;
}
.no-js .accordionItem.is-collapsed {
	max-height: auto;
}
.animateIn {
	-webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
	animation: accordionIn 0.45s normal ease-in-out both 1;
}
.animateOut {
	-webkit-animation: accordionOut 0.45s alternate ease-in-out both 1;
	animation: accordionOut 0.45s alternate ease-in-out both 1;
}
 @-webkit-keyframes accordionIn {
 0% {
 opacity: 0;
 -webkit-transform: scale(0.9) rotateX(-60deg);
 transform: scale(0.9) rotateX(-60deg);
 -webkit-transform-origin: 50% 0;
 transform-origin: 50% 0;
}
 100% {
 opacity: 1;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}
 @keyframes accordionIn {
 0% {
 opacity: 0;
 -webkit-transform: scale(0.9) rotateX(-60deg);
 transform: scale(0.9) rotateX(-60deg);
 -webkit-transform-origin: 50% 0;
 transform-origin: 50% 0;
}
 100% {
 opacity: 1;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}
@-webkit-keyframes accordionOut {
 0% {
 opacity: 1;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(0.9) rotateX(-60deg);
 transform: scale(0.9) rotateX(-60deg);
}
}
@keyframes accordionOut {
 0% {
 opacity: 1;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(0.9) rotateX(-60deg);
 transform: scale(0.9) rotateX(-60deg);
}
}
/*********************** 一分钱抢购 ***********************/
.tabs {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	position: relative;
	background: white;
	width: 100%;
	border-radius: 0.25em;
	min-width: 240px;
}
.tabs input[name="tab-control"] {
	display: none;
}
.tabs ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-bottom: 0px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.tabs ul li {
	box-sizing: border-box;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	width: 25%;
	text-align: left;
}
.tabs ul li label {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: #929daf;
	padding: 5px auto;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	cursor: pointer;
	padding: 1em 0;
	border-bottom: 3px solid #ffffff;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	font-weight: bold;
}
.tabs ul li label br {
	display: none;
}
.tabs ul li label:hover, .tabs ul li label:focus, .tabs ul li label:active {
	outline: 0;
	color: #bec5cf;
}
.tabs .slider {
	position: relative;
 width: 50%%;
	-webkit-transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
	transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}
.tabs .slider .indicator {
	position: relative;
	width: 25%;
	max-width: 50%;
	margin: 0 auto;
	height: 4px;
	background: #ff6600;
	border-radius: 1px;
}
.tabs .content {
	margin-top: 0px;
}
.tabs .content section {
	display: none;
	-webkit-animation-name: content;
	animation-name: content;
	-webkit-animation-direction: normal;
	animation-direction: normal;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	line-height: 1.4;
}
.tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
	cursor: default;
	color: #ff6600;
	border-bottom: 3px solid #ff6600;
}
.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}
.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
	display: block;
}
.tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
	cursor: default;
	color: #ff6600;
	border-bottom: 3px solid #ff6600;
}
.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
	display: block;
}
.tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
	cursor: default;
	color: #ff6600;
	border-bottom: 3px solid #ff6600;
}
.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
	-webkit-transform: translateX(200%);
	transform: translateX(200%);
}
.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
	display: block;
}
 @-webkit-keyframes content {
 from {
 opacity: 0;
 -webkit-transform: translateY(5%);
 transform: translateY(5%);
}
 to {
 opacity: 1;
 -webkit-transform: translateY(0%);
 transform: translateY(0%);
}
}
@keyframes content {
 from {
 opacity: 0;
 -webkit-transform: translateY(5%);
 transform: translateY(5%);
}
 to {
 opacity: 1;
 -webkit-transform: translateY(0%);
 transform: translateY(0%);
}
}

@media (max-width: 1000px) {
.tabs ul li label {
	white-space: initial;
}
.tabs ul li label br {
	display: initial;
}
}

@media (max-width: 600px) {
.tabs ul li label {
	padding: 5px;
}
.tabs ul li label span {
	display: none;
}
.tabs .content {
	margin-top: 0px;
}
}
/*********************** 1分钱抢购 商家列表 选项卡 ***********************/
.flashsaleShop {
	text-align: left;
}
.flashsaleShop ul {
	display: block;
	width: 100%;
	border-bottom: none;
	padding: 0;
}
.flashsaleShop ul li {
	float: left;
	width: 50%;
	text-align: center;
	background: #ececec;
}
.flashsaleShop ul li:nth-child(odd) {
	padding: 0.25em 0.25em 0.25em 0.5em;
}
.flashsaleShop ul li:nth-child(even) {
	padding: 0.25em 0.5em 0.25em 0.25em;
}
.flashsaleShop ul li:first-child {
	padding: 0.5em 0.25em 0.25em 0.5em;
}
.flashsaleShop ul li:nth-child(2) {
	padding: 0.5em 0.5em 0.25em 0.25em;
}
.flashsaleShop ul li:last-child {
	padding: 0.25em 0.5em 0.5em 0.25em;
}
.flashsaleShop ul li:nth-last-child(2) {
	padding: 0.25em 0.25em 0.5em 0.5em;
}
.flashsaleShop ul li .shop-div {
	background: white;
	padding-bottom: 0.5em;
}
.flashsaleShop ul li .shop-div .shop-name {
	margin:0 auto;
	max-width:95%;
	color: #666666;
	font-size: 0.8em;
	line-height:1.8;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.flashsaleShop ul li .shop-div .buy-btn {
	margin-top:0.25em;
	padding:0.25em 0.5em;
	background: #f98b00;
	border: 0px;
	border-radius: 0.25em;
	font-weight:bold;
	color: white;
}
.flashsaleShop ul li .shop-div .img-div {
	position: relative;
}
.flashsaleShop ul li .shop-div .img-div .cover-black {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 96%;
	background: rgba(0,0,0,.5);
}
.flashsaleShop ul li .shop-div .img-div .cover-black .finished-img {
	margin-top: 20%;
}
/*********************** 美食特惠 商家logo列表 横向滑动 ***********************/
.shopList-title {
	width:100%;
	padding: 0.5em 0.5em 0;
	background: #ff6600;
	color: white;
	text-align: center;
	font-weight: bold;
}
.shopList-main {
	max-width: 100%;
	white-space: nowrap;
	overflow-x: scroll;
	box-sizing: border-box !important;
	word-wrap: break-word !important;
	background: #ff6600;
}

.shopList-main .recommendShop{margin:10px 0px 7px 10px; max-width: 50%; display: inline-block; box-sizing: border-box !important; word-wrap: break-word !important;}
