myOrderDetail.wxss 2.4 KB
/* pages/person/myOrderDetail/myOrderDetail.wxss */
@import '../myOrder/myOrder.wxss';
page{
  background: #FCF8F7;
}
.detail_box{
  padding: 0 32rpx;
  margin-bottom: 16rpx;
  background: #fff;
}
.detail_list{
  display: flex;
  align-items: center;
  height: 100rpx;
  padding-left: 10rpx;
  border-bottom: solid 1rpx #EBEBEB;
}
.detail_box .detail_list:last-child{
  border-bottom: none;
}
.detail_name{
  width: 145rpx;
  color: #000000;
  font-size: 28rpx;
}
.detail_text{
  width: 520rpx;
  color: #292525;
  font-size: 28rpx;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail_check{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100rpx;
}
.detail_char{
  color: #000000;
  font-size: 30rpx;
  font-weight: bold;
}
/* 改变checkbox样式 */
.detail_check checkbox .wx-checkbox-input{
  width: 40rpx;
  height: 40rpx;
  border-radius: 50%;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
  border: none;
  background: #FD8779;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
  color: #fff;
}
.detail_menu{
  width: 686rpx;
  margin: 0 auto 16rpx;
  padding: 32rpx;
  box-sizing: border-box;
  border-radius: 20rpx;
  background: #fff;
}
.detail_title{
  padding-bottom: 32rpx;
  color: #26363A;
  font-size: 30rpx;
}
.detail_info{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.info_img{
  width: 140rpx;
  height: 140rpx;
}
.detail_left{
  padding-left: 30rpx;
}
.info_txt{
  color: #1A1A1A;
  font-size: 26rpx;
}
.info_price{
  padding-top: 22rpx;
  color: #FD8779;
  font-size: 24rpx;
}
.info_price text{
  font-size: 32rpx;
}
.detail_tab{
  width: 686rpx;
  margin: 0 auto;
  padding: 30rpx;
  box-sizing: border-box;
  border-radius: 20rpx;
  background: #fff;
}
.tab_list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100rpx;
  padding: 0 10rpx;
  border-bottom: solid 1rpx #EBEBEB;
}
.tab_list text{
  color: #1A1A1A;
  font-size: 26rpx;
}
.detail_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 312rpx;
  height: 62rpx;
  margin: 36rpx auto;
  color: #000;
  font-size: 30rpx;
  border: solid 1rpx #999999;
  border-radius: 10rpx;
  background: #fff;
}
.pay{
  width:200rpx;
  height:60rpx;
  background:rgba(253,135,121,1);
  border-radius:60rpx;
  color:#fff;
  font-size: 28rpx;
  text-align: center;
  line-height: 60rpx;
  margin-right: 20rpx;
  margin: 20rpx auto 0;
}