index.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .content {
  2. background-color: #fff;
  3. padding-bottom: 80upx;
  4. .head{
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. background-color:#3384ff ;
  9. color: #fff;
  10. padding: 26upx;
  11. .head-lf{
  12. .name{
  13. width: 450upx;
  14. text-overflow: ellipsis;
  15. white-space: nowrap;
  16. overflow: hidden;
  17. }
  18. }
  19. .head-rt{
  20. display: flex;
  21. justify-content:flex-start;
  22. align-items: center;
  23. .zhcx-iconfont{
  24. font-size: 40upx;
  25. padding:0 8upx;
  26. }
  27. .message{
  28. position: relative;
  29. .dot{
  30. width: 16upx;
  31. height: 16upx;
  32. border-radius: 50%;
  33. background-color: red;
  34. position: absolute;
  35. right: 2upx;
  36. top: -5upx;
  37. color: #fff;
  38. line-height: 20;
  39. font-size: 8upx;
  40. text-align: center;
  41. }
  42. }
  43. .scanCode{
  44. margin-top: -4upx;
  45. padding:0 8upx;
  46. }
  47. }
  48. }
  49. .banner{
  50. height: 260upx;
  51. padding: 16upx 20upx;
  52. .swiper-item{
  53. height:260upx;
  54. background-color:#fff;
  55. border-radius: 10upx;
  56. overflow: hidden;
  57. .bannerImage{
  58. width: 710upx;
  59. height: 260upx;
  60. }
  61. }
  62. }
  63. .workbench{
  64. .title {
  65. font-size: 38upx;
  66. padding:0 26upx;
  67. font-weight: 600;
  68. .tl-1 {
  69. color: #3384ff;
  70. padding-right: 8upx;
  71. }
  72. }
  73. .list {
  74. width:718upx;
  75. display: flex;
  76. justify-content:flex-start;
  77. flex-wrap: wrap;
  78. padding: 0 16upx;
  79. .item {
  80. width: 25%;
  81. height: 150upx;
  82. display: flex;
  83. justify-content:center;
  84. align-items: center;
  85. flex-direction: column;
  86. box-sizing: border-box;
  87. padding: 16upx 10upx;
  88. &.col-3{
  89. width: 33.33%;
  90. }
  91. .icon {
  92. .zhcx-iconfont {
  93. font-size: 55upx;
  94. }
  95. }
  96. .text {
  97. width: 100%;
  98. font-size: 28upx;
  99. color: #333;
  100. text-overflow: ellipsis;
  101. white-space: nowrap;
  102. overflow: hidden;
  103. text-align: center;
  104. padding-top: 16upx;
  105. }
  106. }
  107. }
  108. }
  109. }