select.scss 1.5 KB

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