index.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .container {
  2. font-size: 28rpx;
  3. color: rgb(90, 90, 90);
  4. }
  5. /* 选项卡 */
  6. .swiper-tab {
  7. width: 100%;
  8. text-align: center;
  9. height: 80rpx;
  10. background-color: #fff;
  11. border-bottom: 1px solid #eee;
  12. }
  13. .swiper-tab .swiper-tab-item {
  14. width: 160rpx;
  15. height: 100%;
  16. color: #777;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. box-sizing: border-box;
  21. border-bottom: 2px solid #ffffff00;
  22. }
  23. .swiper-tab .on {
  24. color: #ff495e;
  25. border-bottom: 2px solid #ff495e;
  26. }
  27. /* 设置scroll-view容器高度 */
  28. .widget-list, .yoshop-notcont {
  29. height: 100.1%;
  30. }
  31. /* 数据列表 */
  32. .widget-list {
  33. /* padding: 0 20rpx 40rpx 20rpx; */
  34. padding-bottom: 40rpx;
  35. box-sizing: border-box;
  36. }
  37. .widget-detail {
  38. box-sizing: border-box;
  39. border-bottom: 1rpx solid #e7e7e7;
  40. background: #fff;
  41. margin-bottom: 20rpx;
  42. }
  43. .widget-detail .row-block {
  44. padding: 0 20rpx;
  45. min-height: 70rpx;
  46. }
  47. .widget-detail .detail-goods {
  48. padding: 20rpx;
  49. background: #fbfbfb;
  50. }
  51. .widget-detail .detail-goods .goods-image {
  52. margin-right: 20rpx;
  53. }
  54. .widget-detail .detail-goods .goods-image image {
  55. display: block;
  56. width: 200rpx;
  57. height: 200rpx;
  58. }
  59. .widget-detail .detail-goods .goods-right {
  60. padding: 15rpx 0;
  61. }
  62. .widget-detail .detail-goods .goods-name {
  63. margin-bottom: 10rpx;
  64. }
  65. .widget-detail .detail-goods .goods-attr {
  66. min-height: 32rpx;
  67. }
  68. .widget-detail .detail-operate {
  69. border-top: 1px solid rgb(241, 241, 241);
  70. padding-top: 10rpx;
  71. padding-bottom: 10rpx;
  72. }
  73. .widget-detail .detail-operate .detail-btn {
  74. border-radius: 4px;
  75. border: 1rpx solid #ccc;
  76. padding: 8rpx 20rpx;
  77. font-size: 28rpx;
  78. color: #555;
  79. margin-left: 10rpx;
  80. }