.box {
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* header */
.header {
    width: 100%;
    height: 0.46rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #EF2B25;
    overflow: hidden;
}

.header h3 {
    width: 100%;
    height: auto;
    font-size: 0.16rem;
    color: #fff;
    text-align: center;
    line-height: 0.46rem;
    box-sizing: border-box;
}

.chat,
.chat img {
    float: right;
    display: block;
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 0.03rem;
}

/* 订单 */
.orderList {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    overflow: hidden;
}

.layui-tab-content {
    height: auto !important;
}

.layui-tab-title li {
    float: left;
    display: block;
    width: 17%;
    padding: 0;
    margin: 0 5%;
    min-width: unset;
}

.order_ul {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.order_ul li {
    float: left;
    width: 100%;
    height: auto;
    padding: 0.1rem;
    margin-bottom: 0.1rem;
    border-radius: 0.1rem;
    box-sizing: border-box;
    background-color: #fff;
    overflow: hidden;
}

.top {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.top span {
    font-size: 0.12rem;
    color: #666;
    line-height: 0.3rem;
}

.num {
    color: #333;
}

.top span em {
    font-size: 0.14rem;
    color: #EF2B25;
    font-style: normal;
}

.center {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.center a {
    display: block;
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
}

.center img {
    float: left;
    display: block;
    width: 0.9rem;
    height: 0.57rem;
    border: 0.01rem solid #ccc;
}

.title {
    float: left;
    width: 100%;
    height: auto;
    padding: 0 0.2rem;
    font-size: 0.14rem;
    color: #333;
    line-height: 0.2rem;
    box-sizing: border-box;
    overflow: hidden;
}

.money {
    float: right;
    display: block;
    width: auto;
    height: auto;
    text-align: right;
}

.money b {
    font-weight: normal;
}

.btns {
    width: 100%;
    height: auto;
    margin: 0.2rem auto 0;
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
}

.btns span {
    display: inline-block;
    width: auto;
    height: 0.3rem;
    padding: 0 0.2rem;
    margin-left: 0.1rem;
    font-size: 0.14rem;
    color: #EF2B25;
    line-height: 0.3rem;
    border-radius: 0.15rem;
    border: 0.01rem solid #EF2B25;
}

.none {
    width: 100%;
    height: 2rem;
    font-size: 0.14rem;
    color: #999;
    line-height: 2rem;
    text-align: center;
}

.layui-tab-title {
    width: 96%;
    /* left: 2%; */
    padding: 0 2%;
    display: flex;
    box-sizing: border-box;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
}

.layui-tab-bar {
    display: none;
}

.layui-tab-brief>.layui-tab-title .layui-this {
    color: #EF2B25;
}

.layui-tab-brief>.layui-tab-title .layui-this:after {
    border-bottom: 2px solid #EF2B25;
}
.panelbox{ 
    position: fixed;
    left: 50%;
    top: 50%; 
    width:81%;  
    transform: translate(-50%, -50%); 
    overflow: hidden; 
    z-index: 13; 
    display: none;
    background: #fff;
   
  }
  .panelbox >.panelinfobox{
    animation: myfirst 0.5s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    box-sizing: border-box;
    padding: 30rpx;
    background: #fff;
    border-radius: 20rpx;
    width: 100%;
  }
  @keyframes myfirst {
    0% {
      transform: scale(0.7);
    }
  
    100% {
      transform: scale(1);
    }
  }
  .panelinfobox >.title{
      width: 100%;
      height: 0.4rem;
      line-height: 0.4rem;
      text-align: center;
      font-size: 0.14rem;
      color: #fff;
      background: #3388ff;
  }
  .panelinfobox >.content{
      width: 100%;
      background: #fff;
      box-sizing: border-box;
      padding:0.5rem 0.3rem;
  }
  .panelinfobox >.content >div{
      height: 0.4rem;
      line-height: 0.4rem;
      font-size: 0.14rem;
  }
  .panelinfobox >.content >div >span:first-child{
      float: left;
  }
  .panelinfobox >.content >div >span:last-child{
    float: right;
}
.panelinfobox >.closebtn{
    width: 0.8rem;
    height: 0.3rem;
    line-height: 0.3rem;
    color: #fff;
    font-size: 0.14rem;
    text-align: center;
    background: #1E9FFF;
    margin: 0.3rem auto;

}