zyShop.wxss 1014 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. Page{
  2. background-color: #FFF;
  3. }
  4. .zyShopContent{
  5. display: flex;
  6. justify-content: space-between;
  7. padding-bottom: 60rpx;
  8. }
  9. .className{
  10. width: 25%;
  11. }
  12. .className view{
  13. padding: 40rpx 30rpx;
  14. text-align: center;
  15. background-color: #f8f8f8;
  16. }
  17. .active{
  18. background: rgba(206,205,210) !important;
  19. }
  20. .goods{
  21. width: 75%;
  22. padding: 20rpx;
  23. }
  24. .goodsInfo{
  25. display: flex;
  26. justify-content: flex-start;
  27. padding-bottom: 40rpx;
  28. }
  29. .goodsInfo image{
  30. width: 200rpx;
  31. height: 200rpx;
  32. }
  33. .goodsInfo .content{
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: space-between;
  37. padding-left: 20rpx;
  38. }
  39. .goodsInfo .content >text{
  40. display: block;
  41. }
  42. .goodsInfo .content >text text{
  43. color: #e23838;
  44. }
  45. .goodsInfo .content > view{
  46. border: 3rpx solid #e23838;
  47. color: #e23838;
  48. align-self: baseline;
  49. padding: 3rpx 8rpx;
  50. }
  51. .but{
  52. position: fixed;
  53. bottom: 0;
  54. left: 0;
  55. width: 100%;
  56. }
  57. .but view{
  58. background: var(--color);
  59. color: #FFF;
  60. text-align: center;
  61. padding: 30rpx;
  62. margin: 0 auto;
  63. }