/*浮点页面*/
ul,
li {
  list-style: none;
}
.ui_page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #282f37;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  animation: ui_page_frames 0.4s;
  -webkit-animation: ui_page_frames 0.4s;
}
@keyframes ui_page_frames {
  from {
    top: 90%;
  }
  to {
    top: 0%;
  }
}
/*对话框*/
.ui_dialog_bgframe {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 119, 253, 0.2);
}
.ui_dialog {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0 0 0.3rem 0;
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
  animation: ui_dialog_frames 0.4s;
  -webkit-animation: ui_dialog_frames 0.4s;
}
@keyframes ui_dialog_frames {
  from {
    left: 90%;
  }
  to {
    left: 0%;
  }
}
.ui_dialog_top {
  padding: 0;
  margin: 0;
  text-align: center;
  border-radius: 2rem;
}
.ui_dialog_title {
  display: inline-block;
  height: 2.2rem;
  font-size: 1rem;
  padding-top: 0.5rem;
  color: #ee4316;
}
.ui_dialog_close {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  margin: 0 0.5rem 0 0;
  color: #393939;
}
.ui_dialog_body {
  padding: 0 0 1rem 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*选项对话框*/
.ui_select_dialog_bgframe {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 119, 253, 0.2);
}
.ui_select_dialog {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0rem 0.5rem 0.3rem 0.5rem;
  width: 100%;
}
.ui_select_dialog_titlebar {
  width: 100%;
  text-align: center;
  padding: 0.8rem 0 0.8rem 0;
  font-size: 0.7rem;
  background-color: #fff;
  border-bottom: 1px solid #dddddd;
  color: #ee4316;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.ui_select_dialog_body {
  width: 100%;
  padding: 1rem 0 0 0 0;
  background-color: #fff;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.ui_select_dialog_bottom {
  padding: 0;
  margin: 0;
}
.ui_select_dialog_bottom button {
  width: 100%;
  height: 2.7rem;
  bottom: 0;
  margin: 0.5rem 0 0 0;
  background-color: #fff;
  color: #ee4316;
  border-radius: 0.3rem;
}
/*信息框对话框*/
.ui_alert {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  background-color: rgba(0, 0, 0, 0.2);
}
.ui_alert > div {
  margin: auto auto;
  width: 80%;
  text-align: center;
}
.ui_alert_msg {
  display: block;
  width: 100%;
  padding: 2rem 0rem 2rem 0rem;
  border-radius: 8px 8px 0px 0px;
  background-color: #fff;
  font-size: 1rem;
  color: #000;
}
.ui_alert_ok {
  display: block;
  width: 100%;
  margin-top: 1px;
  padding: 0.7rem 0rem 0.7rem 0rem;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #fff;
  color: #ffc107;
}
.ui_alert_ok:active {
  color: #1e900d;
}
/*信息条对话框*/
.ui_alertBar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
}
.ui_alertBar > div {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.ui_alertBar label[data-type='alertMsg'] {
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  color: #ffffff;
}
/*询问对话框*/
.ui_confirm {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  background-color: rgba(43, 43, 43, 0.2);
}
.ui_confirm > div {
  margin: auto auto;
  width: 90%;
  text-align: center;
}
.ui_confirm_msg {
  display: block;
  width: 100%;
  padding: 2rem 0rem 2rem 0rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  color: #000;
}
.ui_confirm_button {
  display: block;
  width: 100%;
  margin-top: 1px;
}
.ui_confirm_ok,
.ui_confirm_cancel {
  display: inline-block;
  float: left;
  width: 50%;
  padding: 0.5rem 0rem 0.5rem 0rem;
  background-color: #fff;
  color: #ee5627;
}
.ui_confirm_ok {
  border-bottom-right-radius: 8px;
  border-left: 1px solid rgba(136, 136, 136, 0.5);
}
.ui_confirm_cancel {
  border-bottom-left-radius: 8px;
}
.ui_confirm_ok:active,
.ui_confirm_cancel:active {
  background-color: #ececec;
}
/*加载提示*/
.ui_loading {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
}
.ui_loading div {
  margin: auto auto;
  text-align: center;
  border-radius: 6px;
  background-color: #3a3a3a;
  border: 1px solid #404143;
  padding: 1rem 0.8rem 1rem 0.8rem;
  opacity: 0.8;
}
.ui_loading i {
  display: block;
  width: 100%;
  height: 2.5rem;
  background-image: url('/images/loading.gif');
  background-size: 2.5rem 2.5rem;
  background-repeat: no-repeat;
  background-position: center center;
}
.ui_loading label {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  font-size: 1rem;
  color: #ffffff;
}
.ui_loading1 {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  text-align: center;
  /*-webkit-box-pack:center;-webkit-box-align:center;display:-webkit-box;*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.ui_loading1 div {
  text-align: center;
  border-radius: 0.3rem;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.7rem 1rem;
}
.ui_loading1 i {
  display: inline-block;
  height: 2.6rem;
  width: 0.15rem;
  background: #fff;
  margin: 0 0.25rem;
}
.ui_loading1 i:nth-child(1) {
  animation: myloader1 0.5s linear 0.5s infinite;
}
.ui_loading1 i:nth-child(2) {
  animation: myloader1 0.5s linear 0.4s infinite;
}
.ui_loading1 i:nth-child(3) {
  animation: myloader1 0.5s linear 0.3s infinite;
}
.ui_loading1 i:nth-child(4) {
  animation: myloader1 0.5s linear 0.2s infinite;
}
.ui_loading1 i:nth-child(5) {
  animation: myloader1 0.5s linear 0.1s infinite;
}
.ui_loading1 i:nth-child(6) {
  animation: myloader1 0.5s linear 0s infinite;
}
@keyframes myloader1 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.5);
  }
  100% {
    transform: scaleY(1);
  }
}
/*操作结果提示相关*/
.ui_operate_result {
  padding-top: 2rem;
  width: 100%;
  text-align: center;
}
.ui_operate_result > i {
  display: block;
  width: 6rem;
  height: 6rem;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.ui_operate_result > label {
  display: block;
  font-size: 1rem;
  color: #bdbdbd;
  width: 100%;
  text-align: center;
  margin-top: 0.7rem;
}
/*.ui_operate_result button{border-radius:4px;background-color:#eba135;color:#fff;font-size:1rem;display:block;margin:2rem auto;width:80%;height:2.3rem}*/
.ui_operate_result_suc {
  background-image: url('/images/ico_success.png');
}
.ui_operate_result_fail {
  background-image: url('/images/ico_fail_1.png');
}
.ui_operate_result_process {
  background-image: url('/images/ico_process.png');
}
html,
body,
div,
label,
span,
input,
textarea,
select,
ul,
li,
table,
tr,
td,
button,
img,
i,
a {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  outline: 0;
  font: inherit;
  vertical-align: top;
  word-wrap: break-word;
}
html {
  font-size: 30px;
  width: 100%;
  -webkit-tap-highlight-color1: rgba(0, 0, 0, 0);
}
body {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  width: 100%;
  color: #fff;
  background-color: #1c2127;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 去掉点击出现蓝框 */
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
button {
  outline: 0;
  outline-style: none;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
  -webkit-apperance: none;
}
a {
  text-decoration: none;
  color: #fff;
}
a:active {
  color: #ffc107;
}
/*默认按钮*/
.buttons_row {
  width: 100%;
  padding: 1rem  1rem 0rem 1rem;
}
.button {
  background-color: #d29f06;
  color: #1c2127;
  font-size: 1.2rem;
  height: 2.8rem;
  border-radius: 0.2rem;
  line-height: 3rem;
  width: 100%;
  display: inline-block;
  text-align: center;
}
.button.gray {
  background: #ccc;
}
.button:active {
  background: #ffc107;
}
.button[disabled='disabled'] {
  background-color: #93b7fe;
  opacity: 0.5;
}
/*默认链接*/
.link,
.link:active,
.link:visited {
  color: #bdbdbd;
  text-decoration: none;
}
/*默认textarea*/
.textarea {
  display: block;
  font-size: 1rem;
  padding: 0.9rem 0rem 0rem 0.2rem;
  margin: 0;
  outline: 0;
  border: 0;
  background-color: #fff;
  border-radius: 0;
  -webkit-appearance: none;
}
/*页面标题*/
.bar_title {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 3rem;
  background: rgba(52, 61, 71, 0.9);
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 3rem;
}
.bar_title .go_back {
  position: absolute;
  left: 0rem;
  top: 0rem;
  color: #fff;
  display: block;
  width: 4rem;
  height: 100%;
  cursor: pointer;
}
.bar_title .go_back i {
  display: inline-block;
  float: left;
  margin-left: 1.2rem;
  background: url('/images/icon_goback.png') no-repeat;
  background-size: cover;
  width: 0.52rem;
  height: 1rem;
  margin-top: 1rem;
}
.bar_title .go_to {
  display: inline-block;
  position: absolute;
  right: 0rem;
  top: 0.4rem;
  color: #fff;
  width: 4rem;
  height: 100% ;
  text-align: center;
}
/*页面主内容*/
.page_main {
  background: url('/images/background.png') no-repeat;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.page_wrap {
  width: 100%;
  height: calc(94.25%);
  position: fixed;
  top: 0;
}
/*底部导航条*/
/* .bar_box {position:fixed; z-index:99; bottom:2.25rem; width:100%; height:3.5rem; background:#1c2127; } */
.bar_box {
  width: 100%;
  height: 3.5rem;
  background: #1c2127;
}
.bar_box ul {
  list-style: none;
  width: 100%;
}
.bar_box ul li {
  width: 25%;
  float: left;
  text-align: center;
  height: 3.5rem;
  position: relative;
}
.bar_box ul li a {
  color: #bdbdbd;
  display: inline-block;
  height: 100%;
  width: 100%;
  font-size: 0.7rem;
}
.bar_box ul li i {
  display: block;
  margin: 0 auto;
  background-size: cover;
  margin-top: 0.4rem;
}
.bar_box ul li label {
  display: inline-block;
  margin-top: 0.1rem;
}
.bar_1_a {
  background: url(/images/menu_a_1.png) no-repeat;
  width: 1.8rem;
  height: 1.8rem;
}
.bar_2_a {
  background: url(/images/menu_a_2.png) no-repeat;
  width: 1.6rem;
  height: 1.6rem;
}
.bar_4_a {
  background: url(/images/menu_a_4.png) no-repeat;
  width: 1.12rem;
  height: 1.6rem;
}
.bar_3_a {
  background: url(/images/menu_a_3.png) no-repeat;
  width: 1.6rem;
  height: 1.6rem;
}
.bar_1_a + label {
  color: #ffc107;
}
.bar_2_a + label {
  color: #ffc107;
}
.bar_3_a + label {
  color: #ffc107;
}
.bar_4_a + label {
  color: #ffc107;
}
.bar_1_b {
  background: url(/images/menu_b_1.png) no-repeat;
  width: 1.8rem;
  height: 1.8rem;
}
.bar_2_b {
  background: url(/images/menu_b_2.png) no-repeat;
  width: 1.6rem;
  height: 1.6rem;
}
.bar_4_b {
  background: url(/images/menu_b_4.png) no-repeat;
  width: 1.12rem;
  height: 1.6rem;
}
.bar_3_b {
  background: url(/images/menu_b_3.png) no-repeat;
  width: 1.6rem;
  height: 1.6rem;
}
.bar_box_a {
  position: fixed;
  z-index: 99;
  bottom: 0;
  width: 100%;
  height: 3.5rem;
  background: #1c2127;
  z-index: 10;
}
.bar_box_a ul {
  list-style: none;
  width: 100%;
}
.bar_box_a ul li {
  width: 33.3%;
  float: left;
  text-align: center;
  height: 3.5rem;
}
.bar_box_a ul li a {
  color: #bdbdbd;
  display: inline-block;
  height: 100%;
  width: 100%;
  font-size: 0.7rem;
}
.bar_box_a ul li i {
  display: block;
  margin: 0 auto;
  background-size: 100% 100%;
  margin-top: 0.4rem;
}
.bar_box_a ul li label {
  display: inline-block;
  margin-top: 0.2rem;
}
.bar_1_c {
  background: url(/images/menu_c_1.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.bar_2_c {
  background: url(/images/menu_c_2.png) no-repeat;
  width: 1.32rem;
  height: 1.85rem;
}
.bar_3_c {
  background: url(/images/menu_c_3.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.bar_4_c {
  background: url(/images/menu_c_4.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.bar_5_c {
  background: url(/images/menu_c_5.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.bar_1_c + label {
  color: #ffc107;
}
.bar_2_c + label {
  color: #ffc107;
}
.bar_3_c + label {
  color: #ffc107;
}
.bar_4_c + label {
  color: #ffc107;
}
.bar_5_c + label {
  color: #ffc107;
}
.bar_1_d {
  background: url(/images/menu_d_1.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.bar_2_d {
  background: url(/images/menu_d_2.png) no-repeat;
  width: 1.32rem;
  height: 1.85rem;
}
.bar_3_d {
  background: url(/images/menu_d_3.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.bar_4_d {
  background: url(/images/menu_d_4.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.bar_5_d {
  background: url(/images/menu_d_5.png) no-repeat;
  width: 1.85rem;
  height: 1.85rem;
}
.cart_count {
  display: none;
  text-align: center;
  min-width: 1.2rem;
  min-height: 1.2rem;
  border-radius: 50%;
  background-color: #f00;
  color: #fff;
  position: absolute;
  left: 52%;
  top: 0.1rem;
  line-height: 1.2rem;
}
.list_box {
  margin-top: 1rem;
}
.list_box .row {
  position: relative;
  padding: 0rem 0.8rem;
  margin-top: 0.6rem;
  background-color: #414c59;
  height: 2.5rem;
}
.list_box .row a {
  display: block;
  width: 100%;
  height: 100%;
}
.list_box .row div {
  height: 2.5rem;
}
.list_box .row div label {
  display: inline-block;
  line-height: 2.5rem;
  min-width: 4rem;
}
.list_box .row div span {
  color: #ffc62b;
  font-size: 1rem;
  margin-left: 0.5rem;
}
.list_box .row div input {
  background: none;
  height: 2.5rem;
  color: #ffc107;
  -webkit-appearance: none !important;
  padding-left: 1rem;
  padding: 0 0 0 1rem;
  margin: 0;
  width: 14rem;
}
.list_box .row div select {
  background: none;
  height: 2.5rem;
  color: #ffc107;
  -webkit-appearance: none !important;
  padding-left: 1rem;
  padding: 0 0 0 1rem;
  margin: 0;
  width: 14rem;
}
.list_box .row i {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  display: inline-block;
  height: 0.85rem;
  width: 0.5rem;
  background: url(/images/icon_arrow.png) no-repeat;
  background-size: cover;
}
/*二级标题*/
.title2 {
  color: #bdbdbd;
}
.page_box {
  padding: 0 0.6rem;
  margin-top: 4rem;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.templates_root {
  display: none;
}
/*页面底部连接*/
.bottomLink {
  position: absolute;
  width: 100%;
  bottom: 3rem;
  display: block;
  text-align: center;
}
/*表格*/
.m-top {
  margin-top: 3.8rem;
  margin-bottom: 1rem;
}
.table-data {
  width: 100%;
  border-collapse: collapse;
}
.table-data tr th {
  color: #ffd800;
}
.table-data tr td,
th {
  font-size: 0.75rem;
  padding: 0.2rem;
  font-weight: normal;
  background: #414c59;
  text-align: center;
  vertical-align: middle;
  height: 2.5rem;
  border-bottom: 1px solid #273135;
  border-right: 1px solid #273135;
}
.count-box {
  text-align: right;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-right: 1rem;
}
.count-box span {
  color: #ffc107;
}
/* 桌台 */
.order_table {
  background: rgba(65, 76, 89, 0.7);
  text-align: center;
  margin: 0 auto;
  height: 2.625rem;
  line-height: 2.625rem;
  font-size: 1rem;
  font-weight: normal;
  color: #ffc62b;
}
/* 2020/5 */
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  font-size: 0;
}
.clearfix {
  *zoom: 1;
}
.ell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breakAll {
  word-break: break-all;
}
.overflow {
  overflow: hidden;
}
.borderRadius {
  border-radius: 50%;
}
.nowrap {
  white-space: nowrap;
}
.blockC {
  margin-left: auto;
  margin-right: auto;
}
.lineThrough {
  text-decoration: line-through;
}
.underline {
  text-decoration: underline;
}
input,
a {
  outline: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
}
[v-cloak] {
  display: none;
}
/* 定位 */
.pa {
  position: absolute;
}
.pr {
  position: relative;
}
.pf {
  position: fixed;
}
/* block */
.db {
  display: block;
}
.dib {
  display: inline-block;
}
.dn {
  display: none;
}
/* text */
.textC {
  text-align: center;
}
.textL {
  text-align: left;
}
.textR {
  text-align: right;
}
/*background-color*/
.bgff {
  background-color: #fff;
}
.bgf0 {
  background-color: #f0f0f0;
}
.bgf4 {
  background-color: #f4f4f4;
}
/* border */
.border {
  border: 1px solid #ccc;
}
.borderN {
  border: none;
}
.borderT {
  border-top: 1px solid #ccc;
}
.borderB {
  border-bottom: 1px solid #ccc;
}
.dashed {
  border: 1px dashed #ccc;
}
.dashedT {
  border-top: 1px dashed #ccc;
}
.dashedB {
  border-bottom: 1px dashed #ccc;
}
/* 灰色背景层 */
.borderspace {
  border-bottom: 2.4% solid #f0f0f0;
}
.borderTS {
  border-top: 0.25rem solid #f4f4f4;
}
/* border-radius */
.bRadius {
  border-radius: 5px;
}
/*font-size*/
.font12 {
  font-size: 0.25rem;
}
.font18 {
  font-size: 0.45rem;
}
.font20 {
  font-size: 0.5rem;
}
.font22 {
  font-size: 0.55rem;
}
.font24 {
  font-size: 0.6rem;
}
.font26 {
  font-size: 0.65rem;
}
.font28 {
  font-size: 0.93rem;
}
.font30 {
  font-size: 1rem;
}
.font32 {
  font-size: 1.067rem;
}
.font34 {
  font-size: 1.13rem;
}
.font36 {
  font-size: 0.9rem;
}
.font40 {
  font-size: 1rem;
}
.font42 {
  font-size: 1.05rem;
}
.font48 {
  font-size: 1.2rem;
}
.font80 {
  font-size: 2rem;
}
.normal {
  font-weight: normal;
}
.bold {
  font-weight: bold;
}
/*line-height*/
.line12 {
  line-height: 1.2;
}
.line15 {
  line-height: 1.5;
}
/*padding*/
.pad12 {
  padding: 1.2%;
}
.pad24 {
  padding: 2.4%;
}
.pad40 {
  padding: 5.3%;
}
.padT40 {
  padding-top: 5.3%;
}
.padR40 {
  padding-right: 5.3%;
}
.padB40 {
  padding-bottom: 5.3%;
}
.padL40 {
  padding-left: 5.3%;
}
.padTB40 {
  padding-top: 5.3%;
  padding-bottom: 5.3%;
}
.padLR40 {
  padding-left: 5.3%;
  padding-right: 5.3%;
}
.padTB24 {
  padding-top: 2.4%;
  padding-bottom: 2.4%;
}
.padLR24 {
  padding-left: 2.4%;
  padding-right: 2.4%;
}
.padT24 {
  padding-top: 2.4%;
}
.padB24 {
  padding-bottom: 2.4%;
}
.pad375 {
  padding: 3.75%;
}
/*margin*/
.mar24 {
  margin: 2.4%;
}
.marTB24 {
  margin-top: 2.4%;
  margin-bottom: 2.4%;
}
.marT24 {
  margin-top: 2.4%;
}
.marB24 {
  margin-bottom: 2.4%;
}
.marL24 {
  margin-left: 2.4%;
}
.marR24 {
  margin-right: 2.4%;
}
.marT40 {
  margin-top: 5.3%;
}
.marB40 {
  margin-bottom: 5.3%;
}
.marL40 {
  margin-left: 5.3%;
}
.marR40 {
  margin-right: 5.3%;
}
.marLR40 {
  margin-left: 5.3%;
  margin-right: 5.3%;
}
.mar12 {
  margin: 1.2%;
}
.marT12 {
  margin-top: 1.2%;
}
.marB12 {
  margin-bottom: 1.2%;
}
/*color*/
.color33 {
  color: #333;
}
.colora3 {
  color: #a3a3a3;
}
.color1c {
  color: #1c1c20;
}
.colorB {
  color: #1a80e9;
}
.colorY {
  color: #ffc62b;
}
.colorR {
  color: #942e44;
}
.colorP {
  color: #ff2740;
}
.color60 {
  color: #606060;
}
.color66 {
  color: #666;
}
.color92 {
  color: #929292;
}
.colorff {
  color: #fff;
}
/*背景层*/
.pop_bg,
.popbg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
}
/*alert*/
.popBox {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 23;
  width: 80%;
  font-size: 1rem;
  text-align: center;
  color: #606060;
  background-color: transparent;
}
/*alert*/
.pop_box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 103;
  width: 80%;
  font-size: 1rem;
  text-align: center;
  color: #606060;
  background-color: #fff;
}
.pop_box .pop_text {
  padding: 5% 0;
  color: #000;
  font-size: 1rem;
  background-color: #bdbdbd;
}
.pop_box .pop_desc {
  display: block;
  margin-bottom: 5%;
  font-size: 1rem;
}
.pop_box .pop_button {
  display: flex;
  display: -webkit-flex;
  font-size: 1rem;
}
.pop_box .pop_button .pop_btn {
  flex: 1;
  -webkit-flex: 1;
  padding: 2.5% 0;
  color: #333;
  background-color: #d29f06;
  cursor: pointer;
}
.pop_box .pop_button .pop_btn:first-child {
  border-right: 1px solid #ccc;
  color: #333;
  background-color: #ccc;
}
.pop_box img {
  margin: auto;
  width: 50%;
}
.pop_box .close {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  background: url(../images/closeImg.png);
  background-size: cover;
  cursor: pointer;
}
.pop_box .fillList {
  background-color: #404A56;
}
.pop_box .fillList .fillItem {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: center;
  padding: 0.7rem 2.4%;
}
.pop_box .fillList .fillItem .itemName {
  width: 6rem;
}
.pop_box .fillList .fillItem .itemValue {
  flex: 1;
  -webkit-flex: 1;
  background: transparent;
  border: none;
  outline: none;
  line-height: normal;
}
.pop_box .fillList .fillItem input.itemValue {
  padding: 0;
}
.pop_box .pop_button.oneBtn .pop_btn {
  color: #fff;
  background-color: #f0f0f0;
  border-right: none;
}
.pop_box .fillInput {
  padding: 2%;
  margin-top: 5.3%;
  margin-bottom: 5.3%;
  width: 90%;
  height: 2.8rem;
  line-height: 2.8rem;
  background: rgba(28, 33, 39, 0.75);
  color: #fff;
  outline: none;
}
.pop_box .textArea {
  padding: 2%;
  margin-bottom: 3.75%;
  /*width: 100%;*/
  height: 5rem;
  border: 1px solid #ccc;
  outline: none;
  resize: none;
}
/* 输入提示 */
.fill_tip {
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 25;
  padding: 2.5%;
  line-height: 1.5;
  width: 80%;
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.goback_btn {
  height: 100%;
  position: absolute;
  left: .375rem;
  top: 0;
  width: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.right_btn {
  height: 100%;
  position: absolute;
  right: .375rem;
  top: 0;
  color: #ffc62b;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.new_search_box {
  border: 1px solid #fff;
  margin-bottom: 0.5rem;
  position: fixed;
  width: calc(100% - 6.6rem);
  z-index: 1;
}
.new_search_box > div {
  position: relative;
}
.new_search_box > div .closeBtn {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  margin-top: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/closeIcon.png) no-repeat;
  background-size: cover;
}
.new_search_box > div input {
  padding: 0 0.8rem;
  background-color: #000;
  text-align: left;
  height: 2.8rem;
  width: 100%;
  border-radius: 0.2rem;
  color: #fff;
}
.book_search_box {
  margin: 0.5rem auto;
  width: calc(100% - 1rem);
}
.book_search_box > div {
  position: relative;
}
.book_search_box > div .search {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  margin-top: -0.75rem;
  display: block;
  background: url(../images/ico_search.png) no-repeat;
  background-size: cover;
  height: 1.5rem;
  width: 1.3rem;
}
.book_search_box > div .closeBtn {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  margin-top: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/closeIcon.png) no-repeat;
  background-size: cover;
}
.book_search_box > div input {
  padding: 0 3rem 0 3rem;
  background-color: #414c59;
  text-align: left;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.2rem;
  color: #fff;
}
.book_search_box > div input::-webkit-input-placeholder {
  color: #fff;
}
/* 菜单 */
.order_table.order_table_fixed {
  position: fixed;
  width: 100%;
  z-index: 1;
  background-color: #414c59;
}
.fillBox {
  padding-top: 2.625rem;
  padding-bottom: 3.8rem;
  height: 100%;
  overflow-y: scroll;
  /* ::-webkit-scrollbar {
	        width: 0 !important;
	        height: 0 !important;
	    }
	
	    ::-webkit-scrollbar-track:vertical {
	    }
	
	    ::-webkit-scrollbar-thumb:vertical {
	        background-color: rgba(136, 141, 152, 0.5) !important;
	        border-radius: 0 !important;
	        background-clip: content-box !important;
	        border: 0 solid transparent !important;
	    }
	
	    ::-webkit-scrollbar-track:horizontal {
	    }
	
	    ::-webkit-scrollbar-thumb:horizontal {
	        background-color: rgba(136, 141, 152, 0.5) !important;
	        border-radius: 0 !important;
	        background-clip: content-box !important;
	        border: 0 solid transparent !important;
	    }
	
	    ::-webkit-resizer {
	        display: none !important;
	    } */
}
.fillBox .fillTip {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2.4%;
}
.fillBox .fillTip.arrow {
  position: relative;
}
.fillBox .fillTip.arrow:before {
  content: '';
  position: absolute;
  top: 48%;
  right: 2.4%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #ffc62b;
  border-right: 1px solid #ffc62b;
  transform: rotate(45deg) translateX(-50%);
  -webkit-transform: rotate(45deg) translateX(-50%);
}
.fillBox .fillList {
  background-color: #404A56;
}
.fillBox .fillList .fillItem {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2.4%;
  /* &+.fillItem:after{content: " "; position: absolute; left: 0; top: 0; right: 0; height: 1px; border-top: 1px solid #E5E5E5; color: #E5E5E5; -webkit-transform-origin: 0 0; transform-origin: 0 0; -webkit-transform: scaleY(0.5); transform: scaleY(0.5);left: 2.4%;} */
}
.fillBox .fillList .fillItem .itemName {
  color: #333;
}
.fillBox .fillList .fillItem .itemValue {
  flex: 1;
  -webkit-flex: 1;
  text-align: right;
  background: transparent;
  border: none;
  outline: none;
  line-height: normal;
}
.fillBox .fillList .fillItem input.itemValue {
  padding: 0;
}
.fillBox .fillList .fillItem .posIcon {
  position: relative;
  padding-left: 1.2rem;
}
.fillBox .fillList .fillItem .posIcon:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 1rem;
  height: 1rem;
  background: url(../images/posIcon.png) no-repeat;
  background-size: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.fillBox .fillList .fillItem .collageIcon {
  position: relative;
  padding-left: 1.2rem;
}
.fillBox .fillList .fillItem .collageIcon:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 1rem;
  height: 1rem;
  background: url(../images/icon/collageIcon.png) no-repeat;
  background-size: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.fillBox .fillList .fillItem .clear {
  display: none;
  background: url(../images/icon_clear.png) no-repeat;
  background-size: cover;
  width: 0.8rem;
  height: 0.8rem;
}
.fillBox .fillList .fillItem .clear.hasValue {
  display: block;
}
.fillBox .fillList .fillItem.arrow .itemValue {
  padding-right: 1rem;
  border: none;
  flex: 1;
  -webkit-flex: 1;
  text-align: right;
}
.fillBox .fillList .fillItem.arrow:before {
  content: '';
  position: absolute;
  top: 48%;
  right: 2.4%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #929292;
  border-right: 1px solid #929292;
  transform: rotate(45deg) translateX(-50%);
  -webkit-transform: rotate(45deg) translateX(-50%);
}
.fillBox .fillList .fillItem .areaValue {
  width: 100%;
  line-height: 1.5;
  resize: none;
  background: transparent;
  outline: none;
  border: 1px solid #ddd;
}
.fillBox .fillList .fillItem .areaValue.borderN {
  border: none;
}
.fillBox .fillList .fillItem .areaValue::-webkit-input-placeholder {
  color: #929292;
}
.fillBox .fillList .fillItem .itemSelect {
  position: relative;
  background-color: transparent;
  border: 1px solid #ddd;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 1rem;
  background: url("../images/icon/arrow.png") no-repeat scroll right center transparent;
  background-size: contain;
  line-height: normal;
  border-radius: 0.2rem;
}
.fillBox .fillList .fillItem .itemSelect.selected {
  color: #e5e5e5;
}
.fillBox .fillList .fillItem .itemSelect option {
  direction: ltr;
}
.fillBox .fillList .fillItem .check {
  position: absolute;
  right: 2.4%;
  top: 50%;
  display: block;
  margin-top: -0.51rem;
  width: 1.02rem;
  height: 1.02rem;
  background: url(../images/check.png) no-repeat;
  background-size: 2.04rem 1.02rem;
  background-position: -1.02rem 0;
}
.fillBox .fillList .fillItem .check.checkOn {
  background-position: 0 0;
}
.fillBox .fillList .fillItem .check_circle {
  position: relative;
  padding-left: 7.2%;
  font-size: 0.6rem;
}
.fillBox .fillList .fillItem .check_circle:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: '';
  display: block;
  margin-top: -0.51rem;
  width: 1.02rem;
  height: 1.02rem;
  background: url(../images/check_circle.png) no-repeat;
  background-size: 2.04rem 1.02rem;
}
.fillBox .fillList .fillItem .check_circle.checkOn:before {
  background-position: -1.02rem 0;
}
.fillBox .fillList .fillItem .replaceBtn {
  position: relative;
  display: block;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
  font-size: 0.8rem;
  text-align: center;
  text-decoration: none;
  background-color: #ffc62b;
  color: #333;
  line-height: 2;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  border-radius: 0.5rem;
}
.fillBox .fillList .fillItem .replaceBtn:active {
  background-color: #c8af6d;
}
.fillBox .fillList .fillItem.identifyCode .identifyBox {
  position: relative;
  font-size: 0;
}
.fillBox .fillList .fillItem.identifyCode .identifyBtn {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6rem;
  display: block;
  font-size: 0.8rem;
  background-color: #ffc62b;
  text-align: center;
  border-radius: 0.5rem;
  color: #333;
  line-height: 2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.fillBox .fillList .fillItem .block {
  position: relative;
  width: 23.875%;
  text-align: center;
  border: 1px solid;
  margin: 0.3rem 1.5% 0 0;
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 5rem;
  border-radius: 0.2rem;
  overflow: hidden;
  /* &.g{ color: rgb(187, 187, 187); border: 2px solid rgb(187, 187, 187);} */
  /* &.r{ color: rgb(255, 70, 70); border: 2px solid rgb(255, 70, 70);} */
}
.fillBox .fillList .fillItem .block.g {
  color: #333;
  background-color: #b5b5b6;
}
.fillBox .fillList .fillItem .block.y {
  color: #fec107;
  border: 2px solid #fec107;
}
.fillBox .fillList .fillItem .block.r {
  color: #333;
  background-color: #d49a9c;
}
.fillBox .fillList .fillItem .block.yb {
  color: #333;
  background-color: #fec107;
}
.fillBox .fillList .fillItem .block:nth-of-type(4n) {
  margin-right: 0;
}
.fillBox .fillList .fillItem .block > div:first-child {
  font-weight: bold;
}
.fillBox .fillList .fillItem .block .turn {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.fillBox .fillList .fillItem .block .turn:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-top: 1.5rem solid #ff4646;
  color: #fff;
  z-index: -1;
}
.fillBox .fillList .fillItem .block .merge {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.fillBox .fillList .fillItem .block .merge:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-top: 1.5rem solid #078007;
  color: #fff;
  z-index: -1;
}
.fillBox .fillList .fillItem .block .lock {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.fillBox .fillList .fillItem .block .lock:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #2b343b;
  color: #fff;
  z-index: -1;
}
.fillBox .fillList .fillItem .block .work {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.fillBox .fillList .fillItem .block .work:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #078007;
  color: #fff;
  z-index: -1;
}
.fillBox .fillList .fillItem .block .low {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.fillBox .fillList .fillItem .block .low:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #ff4646;
  color: #fff;
  z-index: -1;
}
.fillBox .regBtn {
  position: relative;
  display: block;
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  background-color: #ffc62b;
  color: #333;
  line-height: 2.55555556;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}
.fillBox .regBtn:active {
  background-color: #c8af6d;
}
.fillBox .customWrapper {
  border-radius: 0.5rem;
  background-color: #272A31;
  /* border: 2px dashed #ccc; */
  color: #ccc;
}
.fillBox .customWrapper .addWrapper {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
}
.fillBox .customWrapper .addWrapper span {
  margin-left: 0.3rem;
  display: inline-block;
  border: 1px solid #414c59;
  color: #fff;
  text-align: center;
  border-radius: 0.2rem;
  height: 2rem;
  width: 2rem;
  line-height: 2rem;
  font-size: 1.4rem;
}
.fillBox .customWrapper .addWrapper input {
  margin-left: 0.3rem;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 2rem;
  background-color: #1c2127;
  border: 1px solid #414c59;
  border-radius: 0.2rem;
  color: #fff;
  -webkit-appearance: none;
}
.slt_box.new_slt_box {
  display: block;
  background: #1c2127;
}
.new_slt_box .box2 .bottomBox {
  display: flex;
  display: -webkit-flex;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 19;
  width: 100%;
}
.new_slt_box .box2 .bottomBox .bottomBtn {
  flex: 1;
  -webkit-flex: 1;
  height: 3.8rem;
  line-height: 3.8rem;
  padding: 0 0.5rem;
  font-size: 1rem;
  text-align: center;
  color: #1c2127;
}
.new_slt_box .box2 .bottomBox .bottomBtn.abandon {
  background: #ccc;
}
.new_slt_box .box2 .bottomBox .bottomBtn.srue {
  background: #d29f06;
}
.new_taste_list_bar .desk_fee {
  color: #ffc62b;
  background-color: #1c2127;
}
.new_taste_list_bar .desk_fee .arrow {
  position: relative;
  line-height: 3rem;
  height: 3rem;
}
.new_taste_list_bar .desk_fee .arrow:before {
  content: '';
  position: absolute;
  top: 48%;
  right: 5.3%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #ffc62b;
  border-right: 1px solid #ffc62b;
  transform: rotate(45deg) translateX(-50%);
  -webkit-transform: rotate(45deg) translateX(-50%);
}
.new_taste_list_bar {
  padding-top: 2.625rem;
  padding-bottom: 3.8rem;
  height: 100%;
  overflow-y: scroll;
  display: none;
  /* position:fixed; top:0rem; */
  width: 100%;
  line-height: 3rem;
  background: transparent;
  z-index: 1000;
  font-size: 1rem;
}
.new_taste_list_bar ul {
  list-style-type: none;
}
.new_taste_list_bar ul li,
.new_taste_list_bar ul div {
  width: 100%;
  margin: 0;
  padding: 0 2% 0 2%;
  border: 0;
  float: left;
  display: inline-block;
  margin-bottom: 0px;
}
.new_taste_list_bar ul li.food_list {
  height: 3rem;
  line-height: 3rem;
  display: none;
  background-color: transparent;
  padding-left: 2.75rem;
  position: relative;
}
.new_taste_list_bar ul li.food_list label {
  color: #ffc62b;
}
.new_taste_list_bar ul li.food_list .colorY {
  color: #ffc62b;
}
.new_taste_list_bar ul li.food_list::before {
  content: "";
  width: .934rem;
  height: .934rem;
  border: #fff solid 2px;
  border-radius: 5px;
  position: absolute;
  left: .75rem;
  top: calc((100% - 1.2rem) / 2);
}
.new_taste_list_bar ul li.btn-info::after {
  content: "";
  background: url('../images/icon_pay_active.png') no-repeat;
  background-size: contain;
  width: 1.1rem;
  height: 1.1rem;
  position: absolute;
  left: 1rem;
  top: calc((100% - 1rem)/2);
}
.new_taste_list_bar ul li label {
  color: #fff;
  float: left;
}
.new_taste_list_bar ul li span {
  color: #fff;
  float: right;
}
.new_taste_list_bar ul div label {
  color: #fff;
  float: left;
}
.new_taste_list_bar ul div span {
  color: #fff;
  float: right;
}
.new_taste_list_bar ul li i {
  line-height: 3rem;
  margin-top: .8rem;
  top: .8rem;
}
.recommendMan {
  min-height: 8rem;
  background-color: #2A333A;
  color: #ccc;
}
.memberContacts {
  display: flex;
  display: -webkit-flex;
  /* position: absolute; top: 9.85rem; bottom: 0; */
  width: 100%;
  overflow: hidden;
}
.memberContacts .menuWrapper {
  flex: 0 0 6rem;
  -webkit-flex: 0 0 6rem;
  width: 6.4rem;
}
.memberContacts .menuWrapper li {
  padding: 0.7rem 0;
  text-align: center;
  color: #929292;
  background-color: #414c59;
  margin: 0 0.5rem 0.2rem;
}
.memberContacts .menuWrapper li span {
  display: block;
  color: #fff;
  padding: 0 0.2rem;
  line-height: 2;
}
.memberContacts .menuWrapper li.on {
  background-color: #2A2E37;
}
.memberContacts .menuWrapper li.on span {
  color: #ffc62b;
}
.memberContacts .memberWrapper {
  flex: 1;
  -webkit-flex: 1;
  background-color: transparent;
  overflow: hidden;
}
.memberContacts .memberWrapper .new_memberList ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.memberContacts .memberWrapper .new_memberList ul li {
  border: 1px solid #fff;
  width: 29%;
  margin: 0 0 5% 3%;
  text-align: center;
  border-radius: 0.4rem;
  box-sizing: border-box;
  line-height: 2.5;
}
.memberContacts .memberWrapper .new_memberList ul li:before {
  display: none;
}
.memberContacts .memberWrapper .new_memberList ul li.on {
  border: 1px solid #ffc62b;
  color: #ffc62b;
}
.memberContacts .memberWrapper .memberList .title {
  display: block;
  padding: 0.2rem 0 0.2rem 1rem;
  font-size: 0.6rem;
  color: #000;
  background-color: #e0e0e0;
}
.memberContacts .memberWrapper .memberList .memberItem {
  display: flex;
  display: -webkit-flex;
  padding: 0.5rem;
  border-bottom: 1px solid #ccc;
}
.memberContacts .memberWrapper .memberList .memberItem .photo {
  display: block;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
}
.memberContacts .memberWrapper .memberList .memberItem .content {
  margin-left: 0.5rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex: 1;
  -webkit-flex: 1;
}
.memberContacts .memberWrapper .memberList .memberItem .content .name {
  display: block;
  line-height: 1.5;
}
.memberContacts .memberWrapper .memberList .memberItem .content .stores {
  display: inline-block;
  padding: 0.1rem 0.2rem;
  color: #ff9908;
  font-size: 0.6rem;
  border: 1px solid #ff9908;
  border-radius: 0.2rem;
  align-self: flex-start;
}
.memberContacts .memberWrapper .memberList .memberItem .content .company {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  line-height: 1.5;
}
.memberContacts .memberWrapper .memberList .memberItem .content .company .addIcon {
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/icon/addIcon_cart.png) no-repeat;
  background-size: cover;
}
.memberContacts .memberWrapper .memberList .memberItem .content .keyWord {
  color: #2b59aa;
  font-weight: normal;
}
.memberContacts .memberWrapper .memberList .memberItem:last-child {
  border-bottom: none;
}
.memberContacts .memberWrapper .classifyList {
  margin-left: 0.5rem;
  padding-bottom: 0.5rem;
}
.memberContacts .memberWrapper .classifyList .classifyItem {
  float: left;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem 0.2rem 0;
  color: #929292;
  border: 1px solid #929292;
  border-radius: 0.5rem;
  line-height: 1.2;
}
.memberContacts .memberWrapper .classifyList:first-child {
  padding-top: 0.5rem;
}
.memberContacts .memberWrapper .subClassifyList {
  margin-left: 0.5rem;
}
.memberContacts .memberWrapper .subClassifyList .classifyItem {
  float: left;
  display: inline-block;
  padding: 0.2rem 0.2rem;
  margin: 0 0.2rem 0.2rem 0;
  color: #929292;
  line-height: 1.2;
}
.memberContacts .memberWrapper .subClassifyList .classifyItem.on {
  color: #000;
}
.tabs {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.tabs .tabItem {
  position: relative;
  flex: 1;
  -webkit-flex: 1;
  padding: 0.5rem 0.2rem;
  margin-right: 0.2rem;
  color: #fff;
  text-align: center;
  line-height: 2;
  background-color: #404A56;
  /* &+:before{ content: ''; position: absolute; top: 0.5rem; left: 0; width: 0; height: 1rem; border-left: 1px solid #909090;} */
  /* &:after{ content: ''; position: absolute; top: 30%; width: 0; height: 0; border-top: 6px solid #909090; border-left: 6px solid transparent; border-right: 6px solid transparent;} */
}
.tabs .tabItem.on {
  color: #ffc62b;
  background-color: transparent;
  /* &:after{ border-top: 6px solid @mainColor; border-left: 6px solid transparent; border-right: 6px solid transparent;} */
}
.tabs .tabItem:last-child {
  margin-right: 0;
}
/* 非footer底部按钮 */
.bottomBtnBox {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 19;
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  background-color: #404A56;
}
.bottomBtnBox .regBtn {
  flex: 1;
  -webkit-flex: 1;
  display: block;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #ccc;
  color: #333;
  line-height: 2;
  border-radius: 5px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}
.bottomBtnBox .regBtn:active {
  background-color: #c8af6d;
}
.bottomBtnBox .regBtn + .regBtn {
  margin-left: 1rem;
}
.openTableBg {
  z-index: 101;
  background: url(../images/background.png) no-repeat;
}
.openTableBox {
  z-index: 101;
}
.openTableBox .order_table {
  color: #fff;
}
.openTableBox .tableBox {
  padding-top: 2.625rem;
  padding-bottom: 1rem;
  height: 100%;
  overflow-y: scroll;
}
.openTableBox .fillList {
  background-color: #404A56;
}
.openTableBox .fillList .fillItem {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  /* &+.fillItem:after{content: " "; position: absolute; left: 0; top: 0; right: 0; height: 1px; border-top: 1px solid #E5E5E5; color: #E5E5E5; -webkit-transform-origin: 0 0; transform-origin: 0 0; -webkit-transform: scaleY(0.5); transform: scaleY(0.5);left: 2.4%;} */
}
.openTableBox .fillList .fillItem .itemName {
  color: #333;
}
.openTableBox .fillList .fillItem .itemValue {
  flex: 1;
  -webkit-flex: 1;
  text-align: right;
  background: transparent;
  border: none;
  outline: none;
  line-height: normal;
}
.openTableBox .fillList .fillItem input.itemValue {
  padding: 0;
}
.openTableBox .fillList .fillItem .posIcon {
  position: relative;
  padding-left: 1.2rem;
}
.openTableBox .fillList .fillItem .posIcon:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 1rem;
  height: 1rem;
  background: url(../images/posIcon.png) no-repeat;
  background-size: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.openTableBox .fillList .fillItem .collageIcon {
  position: relative;
  padding-left: 1.2rem;
}
.openTableBox .fillList .fillItem .collageIcon:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 1rem;
  height: 1rem;
  background: url(../images/icon/collageIcon.png) no-repeat;
  background-size: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.openTableBox .fillList .fillItem .clear {
  display: none;
  background: url(../images/icon_clear.png) no-repeat;
  background-size: cover;
  width: 0.8rem;
  height: 0.8rem;
}
.openTableBox .fillList .fillItem .clear.hasValue {
  display: block;
}
.openTableBox .fillList .fillItem.arrow .itemValue {
  padding-right: 1rem;
  border: none;
  flex: 1;
  -webkit-flex: 1;
  text-align: right;
}
.openTableBox .fillList .fillItem.arrow:before {
  content: '';
  position: absolute;
  top: 48%;
  right: 2.4%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #929292;
  border-right: 1px solid #929292;
  transform: rotate(45deg) translateX(-50%);
  -webkit-transform: rotate(45deg) translateX(-50%);
}
.openTableBox .fillList .fillItem .areaValue {
  width: 100%;
  line-height: 1.5;
  resize: none;
  background: transparent;
  outline: none;
  border: 1px solid #ddd;
}
.openTableBox .fillList .fillItem .areaValue.borderN {
  border: none;
}
.openTableBox .fillList .fillItem .areaValue::-webkit-input-placeholder {
  color: #929292;
}
.openTableBox .fillList .fillItem .itemSelect {
  position: relative;
  background-color: transparent;
  border: 1px solid #ddd;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 1rem;
  background: url("../images/icon/arrow.png") no-repeat scroll right center transparent;
  background-size: contain;
  line-height: normal;
  border-radius: 0.2rem;
}
.openTableBox .fillList .fillItem .itemSelect.selected {
  color: #e5e5e5;
}
.openTableBox .fillList .fillItem .itemSelect option {
  direction: ltr;
}
.openTableBox .fillList .fillItem .check {
  position: absolute;
  right: 2.4%;
  top: 50%;
  display: block;
  margin-top: -0.51rem;
  width: 1.02rem;
  height: 1.02rem;
  background: url(../images/check.png) no-repeat;
  background-size: 2.04rem 1.02rem;
  background-position: -1.02rem 0;
}
.openTableBox .fillList .fillItem .check.checkOn {
  background-position: 0 0;
}
.openTableBox .fillList .fillItem .check_circle {
  position: relative;
  padding-left: 7.2%;
  font-size: 0.6rem;
}
.openTableBox .fillList .fillItem .check_circle:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: '';
  display: block;
  margin-top: -0.51rem;
  width: 1.02rem;
  height: 1.02rem;
  background: url(../images/check_circle.png) no-repeat;
  background-size: 2.04rem 1.02rem;
}
.openTableBox .fillList .fillItem .check_circle.checkOn:before {
  background-position: -1.02rem 0;
}
.openTableBox .fillList .fillItem.identifyCode .identifyBox {
  position: relative;
  font-size: 0;
}
.openTableBox .fillList .fillItem.identifyCode .identifyBtn {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6rem;
  display: block;
  font-size: 0.8rem;
  background-color: #ffc62b;
  text-align: center;
  border-radius: 0.5rem;
  color: #333;
  line-height: 2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.openTableBox .fillList .fillItem .block {
  position: relative;
  width: 23.875%;
  text-align: center;
  border: 1px solid;
  margin: 0.3rem 1.5% 0 0;
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 5rem;
  border-radius: 0.2rem;
  overflow: hidden;
  /* &.g{ color: rgb(187, 187, 187); border: 2px solid rgb(187, 187, 187);} */
  /* &.r{ color: rgb(255, 70, 70); border: 2px solid rgb(255, 70, 70);} */
}
.openTableBox .fillList .fillItem .block.g {
  color: #333;
  background-color: #b5b5b6;
}
.openTableBox .fillList .fillItem .block.y {
  color: #fec107;
  border: 2px solid #fec107;
}
.openTableBox .fillList .fillItem .block.r {
  color: #333;
  background-color: #d49a9c;
}
.openTableBox .fillList .fillItem .block.yb {
  color: #333;
  background-color: #fec107;
}
.openTableBox .fillList .fillItem .block:nth-of-type(4n) {
  margin-right: 0;
}
.openTableBox .fillList .fillItem .block > div:first-child {
  font-weight: bold;
}
.openTableBox .fillList .fillItem .block .turn {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.openTableBox .fillList .fillItem .block .turn:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-top: 1.5rem solid #ff4646;
  color: #fff;
  z-index: -1;
}
.openTableBox .fillList .fillItem .block .merge {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.openTableBox .fillList .fillItem .block .merge:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-top: 1.5rem solid #078007;
  color: #fff;
  z-index: -1;
}
.openTableBox .fillList .fillItem .block .lock {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.openTableBox .fillList .fillItem .block .lock:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #2b343b;
  color: #fff;
  z-index: -1;
}
.openTableBox .fillList .fillItem .block .work {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.openTableBox .fillList .fillItem .block .work:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #078007;
  color: #fff;
  z-index: -1;
}
.openTableBox .fillList .fillItem .block .low {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 0;
  padding: 0.1rem;
}
.openTableBox .fillList .fillItem .block .low:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #ff4646;
  color: #fff;
  z-index: -1;
}
