list.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* pages/list/list.wxss */
  2. @import "../../template/template.wxss";
  3. page{
  4. background: #f1f1f1;
  5. }
  6. .container {
  7. background: #f1f1f1;
  8. width: 100%;
  9. box-sizing: border-box;
  10. padding-top: 20rpx;
  11. }
  12. .nothing{
  13. height: 100vh;
  14. color: #999;
  15. line-height: 70vh;
  16. }
  17. .public {
  18. width: 100%;
  19. padding: 0 20rpx 20rpx;
  20. box-sizing: border-box;
  21. }
  22. .top {
  23. width: 100%;
  24. background: #fff;
  25. box-sizing: border-box;
  26. }
  27. .top view {
  28. float: left;
  29. }
  30. .img image {
  31. width: 250rpx;
  32. height: 250rpx;
  33. display: block;
  34. }
  35. .count {
  36. width: 60%;
  37. font-size: 30rpx;
  38. margin-left: 10rpx;
  39. line-height: 35rpx;
  40. margin-top: 20rpx;
  41. }
  42. .count view {
  43. width: 100%;
  44. }
  45. .title {
  46. height: 115rpx;
  47. }
  48. .bf {
  49. font-size: 40rpx;
  50. }
  51. .price :nth-child(1), .price text:nth-child(1) {
  52. float: left;
  53. color: red;
  54. }
  55. .prices {
  56. font-size: 28rpx;
  57. }
  58. .price :nth-child(2) {
  59. float: right;
  60. }
  61. .prices {
  62. margin-top: 30rpx;
  63. font-size: 32rpx;
  64. }
  65. .prices text {
  66. float: right;
  67. }
  68. .offer {
  69. font-size: 25rpx;
  70. }
  71. .top::after {
  72. clear: both;
  73. content: "";
  74. display: block;
  75. }
  76. .fontgray {
  77. color: #999;
  78. }
  79. .fontred {
  80. color: red;
  81. }
  82. .fontgreen {
  83. color: #1aad19;
  84. }