select.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .insert-group {
  2. width: 100vw;
  3. height: 100rpx;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-between;
  7. padding: 0 30rpx;
  8. background: #FFFFFF;
  9. overflow: hidden;
  10. box-sizing: border-box;
  11. .title {
  12. display: flex;
  13. align-items: center;
  14. .iconfont {
  15. color: #52C41A;
  16. font-size: 44rpx;
  17. }
  18. .text {
  19. font-size: 28rpx;
  20. font-family: PingFang SC, PingFang SC;
  21. color: #333333;
  22. margin-left: 30rpx;
  23. }
  24. }
  25. }
  26. .label {
  27. font-size: 30rpx;
  28. font-weight: bold;
  29. color: #333333;
  30. padding: 24rpx 30rpx;
  31. }
  32. .group {
  33. display: flex;
  34. align-items: center;
  35. width: 750rpx;
  36. height: 120rpx;
  37. padding: 20rpx 30rpx;
  38. background: #FFFFFF;
  39. box-sizing: border-box;
  40. .icon-box {
  41. width: 80rpx;
  42. height: 80rpx;
  43. border-radius: 16rpx;
  44. text-align: center;
  45. line-height: 80rpx;
  46. flex-shrink: 0;
  47. margin-right: 20rpx;
  48. .iconfont {
  49. font-size: 38rpx;
  50. color: #fff;
  51. }
  52. }
  53. .text-box {
  54. width: 0;
  55. flex: 1;
  56. height: 80rpx;
  57. .title {
  58. line-height: 40rpx;
  59. font-size: 28rpx;
  60. color: #333333;
  61. }
  62. .count {
  63. line-height: 34rpx;
  64. font-size: 24rpx;
  65. color: #999999;
  66. margin-top: 6rpx;
  67. }
  68. }
  69. }