123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* pages/beerList/beerList.wxss */
- page{
- background: #F7F7F7;
- display: flex;
- flex-flow: row wrap;
- padding-bottom: 240rpx;
- }
- .beer-item{
- width: 346rpx;
- height: 526rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- display: flex;
- flex-direction: column;
- text-align: left;
- margin: 20rpx 0 0 20rpx;
- }
- .beer-item>image:nth-child(1){
- width: 346rpx;
- height: 346rpx;
- border-radius: 4px 4px 0px 0px;
- }
- .beer-item>text:nth-child(2){
- margin: 16rpx;
- width: 312rpx;
- height: 88rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.87);
- line-height: 44rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- }
- .beer-origin{
- height: 44rpx;
- display: flex;
- flex-direction: row;
- margin: 0 16rpx 16rpx;
- }
- .beer-origin>image:nth-child(1){
- width: 44rpx;
- height: 44rpx;
- border-radius: 50%;
- margin-right: 12rpx;
- }
- .beer-origin>text:nth-child(2){
- width: auto;
- max-width: 200rpx;
- height: 44rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 44rpx;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- .beer-origin>text:nth-child(3){
- width: auto;
- height: 44rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 44rpx;
- margin-left: auto;
- margin-right: 0;
- }
- .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;
- }
|