index.css 2.4 KB

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