beerBox.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* pages/beerBox/beerBox.wxss */
  2. .box-list{
  3. margin: 32rpx 32rpx 0;
  4. width: 686rpx;
  5. height: 344rpx;
  6. background: #FFFFFF;
  7. box-shadow: 0px 16px 48px 0px rgba(55,79,109,0.06);
  8. border-radius: 16rpx;
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .box-head{
  13. position: relative;
  14. width: 686rpx;
  15. height: 208rpx;
  16. }
  17. .box-head>image:nth-child(1){
  18. position: absolute;
  19. width: 686rpx;
  20. height: 208rpx;
  21. background: #DAE798;
  22. border-radius: 16rpx 16rpx 0 0;
  23. z-index: 88;
  24. }
  25. .box-head>text:nth-child(2){
  26. position: absolute;
  27. bottom: 34rpx;
  28. left: 40rpx;
  29. width: auto;
  30. height: 48rpx;
  31. font-size: 34rpx;
  32. font-family: PingFangSC-Regular, PingFang SC;
  33. font-weight: 400;
  34. color: rgba(0,0,0,0.87);
  35. line-height: 48rpx;
  36. z-index: 99;
  37. }
  38. .box-list>view:nth-child(2){
  39. height: 136rpx;
  40. width: 686rpx;
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. }
  45. .box-list>view:nth-child(2)>text:nth-child(2){
  46. width: 2rpx;
  47. height: 72rpx;
  48. background-color: rgba(0,0,0,0.16);
  49. }
  50. .box-time{
  51. display: flex;
  52. flex-direction: column;
  53. width: 342rpx;
  54. margin: 24rpx 24rpx 24rpx 40rpx;
  55. }
  56. .box-time>text:nth-child(1){
  57. width: auto;
  58. height: 36rpx;
  59. font-size: 26rpx;
  60. font-family: PingFangSC-Medium, PingFang SC;
  61. font-weight: 500;
  62. color: rgba(0,0,0,0.4);
  63. line-height: 36rpx;
  64. margin-bottom: 8rpx;
  65. }
  66. .box-time>text:nth-child(2){
  67. width: auto;
  68. height: 44rpx;
  69. font-size: 30rpx;
  70. font-family: AlipayNumber-Regular, AlipayNumber;
  71. font-weight: 500;
  72. color: rgba(0,0,0,0.87);
  73. line-height: 44rpx;
  74. }
  75. .nonedata-style{
  76. width: 750rpx;
  77. height: 100vh;
  78. display: flex;
  79. flex-direction: column;
  80. justify-content: center;
  81. align-items: center;
  82. }
  83. .nonedata-style>image:nth-child(1){
  84. width: 332rpx;
  85. height: 264rpx;
  86. }
  87. .nonedata-style>text:nth-child(2){
  88. width: auto;
  89. height: 48rpx;
  90. font-size: 30rpx;
  91. font-family: PingFangSC-Regular, PingFang SC;
  92. font-weight: 400;
  93. color: rgba(0,0,0,0.4);
  94. line-height: 48rpx;
  95. margin-top: 32rpx;
  96. }