/* ----reset---- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	font: inherit;
	vertical-align: baseline;
}
button, input {
    font-family: "Helvetica Neue", Helvetica, STHeiTi, "Microsoft Yahei", sans-serif,"微软雅黑";
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
    color: #333;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color:transparent;
    outline:none;
}
a:focus{
    outline:none;
}
a,button,input{
    -webkit-tap-highlight-color:rgba(255,0,0,0);
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
    width: 100%;
    vertical-align: top;
    -webkit-touch-callout: none;
    touch-callout: none;
    pointer-events: none;
}
em,span,div,li,ul,p,a {
    /*解决移动端点击会有一闪的状态*/
    -webkit-tap-highlight-color:rgba(255,0,0,0);
    -moz-tap-highlight-color:rgba(255,0,0,0);
    -ms-tap-highlight-color:rgba(255,0,0,0);
    -o-tap-highlight-color:rgba(255,0,0,0);
    tap-highlight-color:rgba(255,0,0,0);
}
input {
    font-family: sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

body{
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, STHeiTi, "Microsoft Yahei", sans-serif,"微软雅黑" ;
    -webkit-user-select: none;   /* 禁止选中文本（如无文本选中需求，此为必选项） */
    user-select: none;
    min-height: 100%;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}


/* 公共组件UI */
.hide {
    display: none !important;
}
.dis_block {
    display: block;
}
/* 浮动 */
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix {
    *zoom: 1;
}
.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}
.clearfix:after {
    clear: both;
}
/*单行文本溢出显示省略号*/
.text-over {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: keep-all;
}
/*2行文本溢出显示省略号*/
.text-over2 {
    text-align: center;
    text-overflow:ellipsis;
    overflow:hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* 点击查看更多 */
.getMoreData {
    display: block;
    height: .54rem;
    line-height: .54rem;
    text-align: center;
    color: #9d9d9d;
    font-size: .13rem;
    position: relative;
    background: url(/static/images/dish/more-down.png) no-repeat 36.5% 46.5%;
    text-indent: 8%;
    background-size: .14rem;
}