workGuide.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* pages/indexPages/workGuide/workGuide.wxss */
  2. .background {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. z-index: -1;
  7. width: 100%;
  8. height: 100%;
  9. overflow: hidden;
  10. }
  11. .background>image {
  12. width: 100%;
  13. height: auto;
  14. }
  15. .tips {
  16. padding: 0 50rpx;
  17. width: 100%;
  18. height: 200rpx;
  19. font-family: "苹方R";
  20. font-size: 48rpx;
  21. color: #6392FF;
  22. display: flex;
  23. align-items: center;
  24. justify-content: flex-start;
  25. box-sizing: border-box;
  26. }
  27. .tip {
  28. padding: 0 26rpx;
  29. margin: 0 50rpx;
  30. width: calc(100% - 100rpx);
  31. height: 70rpx;
  32. line-height: 70rpx;
  33. font-family: "苹方R";
  34. font-size: 28rpx;
  35. color: #FFFFFF;
  36. overflow: hidden;
  37. text-overflow: ellipsis;
  38. white-space: nowrap;
  39. background: #306efd;
  40. border-radius: 16rpx;
  41. box-sizing: border-box;
  42. }
  43. .guide-container {
  44. padding: 26rpx 0;
  45. margin: 0 50rpx;
  46. width: calc(100% - 100rpx);
  47. height: calc(100vh - 450rpx);
  48. background: #ffffff;
  49. border-radius: 16rpx;
  50. box-sizing: border-box;
  51. }
  52. .lists {
  53. width: 100%;
  54. height: calc(100% - 170rpx);
  55. }
  56. .list {
  57. padding: 20rpx;
  58. margin: 0 26rpx 36rpx 26rpx;
  59. width: calc(100% - 52rpx);
  60. display: flex;
  61. align-items: center;
  62. justify-content: center;
  63. border-radius: 15rpx;
  64. background: linear-gradient(180deg, #dce4fd, #ebf0fe 51%, #e4ebff);
  65. box-sizing: border-box;
  66. }
  67. .list>.index {
  68. width: 15rpx;
  69. height: 15rpx;
  70. background: #306efd;
  71. border-radius: 50%;
  72. }
  73. .list>.content {
  74. margin: 0 20rpx;
  75. width: 0;
  76. flex: 1;
  77. }
  78. .list>.content>.title {
  79. font-family: "苹方M";
  80. font-size: 28rpx;
  81. color: #2C3579;
  82. }
  83. .list>.content>.introduce {
  84. padding-top: 10rpx;
  85. font-family: "苹方R";
  86. font-size: 26rpx;
  87. color: #2C3579;
  88. }
  89. .list>.look {
  90. width: 80rpx;
  91. height: 80rpx;
  92. background: linear-gradient(180deg, #87a4f9, #678dfa);
  93. border-radius: 50%;
  94. font-family: "苹方R";
  95. font-size: 24rpx;
  96. color: #FFFFFF;
  97. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.22);
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. }
  102. .list-tip {
  103. padding: 26rpx 26rpx 0 26rpx;
  104. width: 100%;
  105. height: 134rpx;
  106. box-sizing: border-box;
  107. }
  108. .list-tip>view {
  109. line-height: 36rpx;
  110. font-family: "苹方R";
  111. font-size: 24rpx;
  112. color: #FF0000;
  113. }
  114. .toHandle {
  115. margin: auto;
  116. margin-top: 40rpx;
  117. width: calc(100% - 100rpx);
  118. height: 80rpx;
  119. font-family: "苹方M";
  120. font-size: 36rpx;
  121. color: #FFFFFF;
  122. background: #FF9200;
  123. border-radius: 40rpx;
  124. display: flex;
  125. align-items: center;
  126. justify-content: center;
  127. }
  128. .active {
  129. opacity: 0.6;
  130. }