﻿/* pages/consult/consult.wxss */
.container{
  padding: 0;
  background-color: #eee;
  /* margin-top: 30px; */
}
.msg{
  overflow: hidden;
  width: 100%;
}
.msg .head{
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin: 10px;
  vertical-align: top;
}
.msg .msg-detail{
  display: inline-block;
  margin: 10px 5px;
  max-width: 65%;
  font-size: 14px;
}
.msg .msg-detail .name{
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}
.msg.right .msg-detail .name{
  text-align: right;
}
.msg .msg-detail .msg-content{
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
}
.msg.left .msg-detail .msg-content{
  background-color: #fff;
  border: 1px solid #ddd;
  color: #666;
}
.msg.right .msg-detail .msg-content{
  background-color: rgb(0, 153, 255);
  border: 1px solid rgb(0, 153, 255);
  color: #fff;
  text-align: left;
  word-wrap: break-word;
}
.msg .read-status{
  display: inline-block;
  vertical-align: bottom;
  margin: 0 5px;
  font-size: 12px;
  color: rgb(0, 153, 255);
  margin-bottom: 10px;
}
.msg .read-status.read{
  color: #666;
}
.msg.left,
.msg.left .head,
.msg.left .msg-detail{
  float: left;
}
.msg.right{
  float: right;
  text-align: right;
}
.order{
  width: 90%;
  margin: 10px auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
}
.order-tit{
  border-bottom: 1px solid #ddd;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #999;
  padding: 0 15px;
  width: 90%;
  overflow: hidden;
  overflow-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  
}
.order-tit text{
  margin: 0 5px;
}
.order-con{
  overflow: hidden;
  padding: 15px;
}
.order-con image{
  float: left;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 5px;
}
.order-con .order-right{
  float: left;
  width: 78%;
}
.order-con .order-right text{
  display: block;
  font-size: 14px;
  width: 100%;
  overflow: hidden;
  overflow-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.order-right .order-id{
  color: #666;
}
.order-right .num{
  color: #999;
}
.time{
  text-align: center;
}
.time text{
  background-color: #ccc;
  color: #fff;
  font-size: 12px;
  padding: 2px 15px;
  border-radius: 3px;
}
.float{
  position: fixed;
  width: 100%;
  /* height: 29px; */
  z-index: 66;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
}
.weui-input{
   width: 100%; 
  /* height: 26px; */
  margin-left: 5px;
margin-bottom: 2px;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  border:1px solid #ddd;
}
.imgbtn{
  height: 25px;
  width: 30px;
  margin-left: 5px;
}


.commentsInputLayout {
  width: 100%;
  /* height: 100px; */
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 20;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  /* 使之可以滚动 *//* overflow-y: scroll; *//* 增加该属性，可以增加弹性，是滑动更加顺畅 */
  -webkit-overflow-scrolling: touch;
  }
  
  /** border-top必须设置，如不设置在部分机型上会出现定位不准问题*/
  .commentsInput {
  width: auto;
  height: 100px;
  line-height: 100px;
  position: relative;
  flex: 1;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 32px;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  border-top: solid #f4f4f4 0.01px;
  background-color: #f4f4f4;
  z-index: 21;
  }
  
  /** border-top必须设置，如不设置在部分机型上会出现定位不准问题*/
  .commentsBtn {
  height: 100px;
  line-height: 100px;
  position: relative;
  font-size: 32px;
  color: #fff;
  border-top: solid #2b3e61 0.01px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #2b3e61;
  z-index: 21;
  }
  
.order-item{
  width: 90%;
  margin: 10px auto;
  border-radius: 5px;
  background-color: #fff;
}
.order-status{
  border-bottom: 1px solid #ddd;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.order-status.orange{
  color: rgb(233, 116, 57);
}
.order-status.blue{
  color: rgb(98, 171, 241);
}
.order-goods{
  border-bottom: 1px solid #ddd;
  padding: 15px;
  overflow: hidden;
}
.order-goods .goods-img{
  float: left;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 3px;
}
.order-goods .goods-right{
  float: left;
  width: 70%;
  height: 50px;
}
.goods-right .name{
  display: block;
  height: 40px;
  line-height: 20px;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.goods-right .num{
  display: block;
  height: 20px;
  line-height: 30px;
  color: #999;
  font-size: 12px;
}
.order-info{
  padding: 15px;
  font-size: 13px;
  color: #666;
}
.order-info text{
  display: block;
  line-height: 25px;
  width: 100%;
  overflow: hidden;
  overflow-wrap: normal;
  text-overflow: ellipsis;
}
.order-info .btn{
  text-align: right;
  overflow: hidden;
  margin-top: 15px;
}
.order-info .btn button{
  display: inline-block;
  width: 100px;
  /* height: 25px; */
  /* line-height: 25px; */
  border: 1px solid;
  border-radius: 1;
  font-size: 12px;
  margin: 0 5px;
  color: #999;
  background-color: #fff;
}

.back {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  top: 0;
  left: 0;
 }
 
 .floatContent {
  padding: 20px 0;
  width: 80%;
  background: #fff;
  margin: 40% auto;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  height: 332px;
 }
 
 .floatText text {
  color: #000;
  font-size: 40px;
  display: block;
  text-align: center;
  line-height: 90px;
  border-radius: 30px;
  margin-right: 10px;
 }

 .btnn
 {
  text-align: center;
  overflow: hidden;
  margin-top: 15px;
 }

 .btnn button
 {
  display: inline-block;
  width: 100px;
  /* height: 25px; */
  /* line-height: 25px; */
  border: 1px solid;
  border-radius: 1;
  font-size: 14px;
  margin: 0 5px;
  color: #999;
  background-color: #fff;
 }
