123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /* pages/mineOrderBeer/mineOrderBeer.wxss */
- page{
- background-color: #F5F5F5;
- }
- .head-tab{
- width: 750rpx;
- height: 100rpx;
- background: #FFFFFF;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .head-tab>text{
- width: 160rpx;
- height: 48rpx;
- font-size: 34rpx;
- text-align: center;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- margin: 26rpx 40rpx;
- }
- .box-list{
- width: 702rpx;
- height: 292rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- margin: 24rpx 24rpx 0;
- display: flex;
- flex-direction: column;
- }
- .box-tilte{
- width: 622rpx;
- height: 48rpx;
- border-bottom: 1rpx solid rgba(0,0,0,0.08);
- margin: 36rpx 40rpx 0;
- padding-bottom: 28rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .box-tilte>text:nth-child(1){
- width: auto;
- height: 48rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- }
- .box-tilte>text:nth-child(2){
- width: auto;
- height: 48rpx;
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FF5700;
- line-height: 48rpx;
- }
- .box-con{
- width: 622rpx;
- height: 106rpx;
- display: flex;
- flex-direction: row;
- margin: 32rpx 40rpx 40rpx;
- }
- .box-con>image:nth-child(1){
- width: 106rpx;
- height: 106rpx;
- }
- .order-time{
- display: flex;
- flex-direction: column;
- width: 300rpx;
- }
- .order-time>text:nth-child(1){
- width: auto;
- height: 48rpx;
- font-size: 30rpx;
- font-family: AlipayNumber-Regular, AlipayNumber;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- text-align: left;
- margin: 0 auto 18rpx 24rpx;
- }
- .order-time>text:nth-child(2){
- width: auto;
- height: 44rpx;
- padding: 0 8rpx;
- line-height: 44rpx;
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.6);
- background: #F7F7F7;
- border-radius: 8rpx;
- margin: 0 auto 0 16rpx;
- }
- .box-pri{
- width: auto;
- height: 48rpx;
- font-size: 30rpx;
- font-family: AlipayNumber-Regular, AlipayNumber;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- margin: auto 0 0 auto;
- }
- .nonedata-style{
- width: 750rpx;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-top: 128rpx;
- }
- .nonedata-style>image:nth-child(1){
- width: 332rpx;
- height: 264rpx;
- }
- .nonedata-style>text:nth-child(2){
- width: auto;
- height: auto;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.4);
- line-height: 48rpx;
- margin-top: 32rpx;
- text-align: center;
- }
- .push-btn{
- width: 446rpx;
- height: 100rpx;
- background: rgba(0,0,0,0.87);
- border-radius: 50rpx;
- border: 1rpx solid #CCCCCC;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 600;
- color: #fff;
- line-height: 100rpx;
- text-align: center;
- margin-top: 112rpx;
- }
|