123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /* pages/beerBox/beerBox.wxss */
- .box-list{
- margin: 32rpx 32rpx 0;
- width: 686rpx;
- height: 344rpx;
- background: #FFFFFF;
- box-shadow: 0px 16px 48px 0px rgba(55,79,109,0.06);
- border-radius: 16rpx;
- display: flex;
- flex-direction: column;
- }
- .box-head{
- position: relative;
- width: 686rpx;
- height: 208rpx;
- }
- .box-head>image:nth-child(1){
- position: absolute;
- width: 686rpx;
- height: 208rpx;
- background: #DAE798;
- border-radius: 16rpx 16rpx 0 0;
- z-index: 88;
- }
- .box-head>text:nth-child(2){
- position: absolute;
- bottom: 34rpx;
- left: 40rpx;
- width: auto;
- height: 48rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- z-index: 99;
- }
- .box-list>view:nth-child(2){
- height: 136rpx;
- width: 686rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .box-list>view:nth-child(2)>text:nth-child(2){
- width: 2rpx;
- height: 72rpx;
- background-color: rgba(0,0,0,0.16);
- }
- .box-time{
- display: flex;
- flex-direction: column;
- width: 342rpx;
- margin: 24rpx 24rpx 24rpx 40rpx;
- }
- .box-time>text:nth-child(1){
- width: auto;
- height: 36rpx;
- font-size: 26rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: rgba(0,0,0,0.4);
- line-height: 36rpx;
- margin-bottom: 8rpx;
- }
- .box-time>text:nth-child(2){
- width: auto;
- height: 44rpx;
- font-size: 30rpx;
- font-family: AlipayNumber-Regular, AlipayNumber;
- font-weight: 500;
- color: rgba(0,0,0,0.87);
- line-height: 44rpx;
- }
- .nonedata-style{
- width: 750rpx;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .nonedata-style>image:nth-child(1){
- width: 332rpx;
- height: 264rpx;
- }
- .nonedata-style>text:nth-child(2){
- width: auto;
- height: 48rpx;
- 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;
- }
|