index.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* 组 */
  2. .group-box {
  3. width: 100vw;
  4. background-color: #fff;
  5. margin-top: 20rpx;
  6. padding-bottom: 15rpx;
  7. .title {
  8. height: 42rpx;
  9. font-size: 30rpx;
  10. font-family: PingFang SC-Bold, PingFang SC;
  11. font-weight: bold;
  12. color: #000000;
  13. padding: 30rpx;
  14. padding-bottom: 15rpx;
  15. }
  16. .group {
  17. display: flex;
  18. width: 100vw;
  19. padding: 15rpx 30rpx;
  20. box-sizing: border-box;
  21. >view {
  22. height: 84rpx;
  23. }
  24. .icon {
  25. width: 84rpx;
  26. border-radius: 16rpx;
  27. margin-right: 20rpx;
  28. }
  29. .text {
  30. flex: 1;
  31. .name {
  32. height: 40rpx;
  33. font-size: 28rpx;
  34. font-family: PingFang SC-Regular, PingFang SC;
  35. color: #333333;
  36. }
  37. .count {
  38. height: 34rpx;
  39. font-size: 24rpx;
  40. font-family: PingFang SC-Regular, PingFang SC;
  41. color: #999999;
  42. margin-top: 6rpx;
  43. }
  44. }
  45. }
  46. /* 滑动 */
  47. .slide {
  48. display: flex;
  49. height: 84rpx;
  50. width: 240rpx;
  51. margin-top: 15rpx;
  52. .but{
  53. border-radius: 0 !important;
  54. }
  55. }
  56. }