company-setting.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /**底部的样式*/
  2. .bottom-class {
  3. position: fixed;
  4. bottom: 20rpx;
  5. width: 100%;
  6. align-items: center;
  7. justify-content: center;
  8. border-top: 2rpx solid #efefef;
  9. z-index: 2;
  10. display: flex;
  11. }
  12. /**底部保存按钮的样式*/
  13. .save-button-class {
  14. width: 640rpx;
  15. background: #3E69F6 !important;
  16. border-radius: 15rpx !important;
  17. color: #fff !important;
  18. font-size: 16px !important;
  19. font-weight: 500 !important;
  20. }
  21. .task-progress {
  22. margin-left: 30rpx;
  23. width: calc(100% - 60rpx);
  24. background: #FFFFFF;
  25. box-shadow: 0px 10px 20px rgba(225, 229, 238, 0.6);
  26. border-radius: 15rpx;
  27. margin-top: 30rpx;
  28. margin-bottom: -15rpx;
  29. }
  30. .task-progress-header {
  31. display: flex;
  32. background: linear-gradient(91.65deg, #D9E6FF 3.83%, #F5F9FF 55.06%);
  33. padding: 24rpx;
  34. border-radius: 15rpx 15rpx 0px 0px;
  35. align-items: center;
  36. justify-content: space-between;
  37. }
  38. .task-progress-header-name {
  39. font-style: normal;
  40. font-weight: 500;
  41. font-size: 16px;
  42. color: #002340;
  43. font-family: 'PingFang SC';
  44. }
  45. .helper-view {
  46. margin-left: 34rpx;
  47. width: calc(100% - 68rpx - 48rpx);
  48. background: #FFFFFF;
  49. box-shadow: 0px 10px 20px rgba(225, 229, 238, 0.6);
  50. border-radius: 15rpx;
  51. padding: 24rpx;
  52. margin-top: 10rpx;
  53. }
  54. .helper-view-header {
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. }
  59. .helper-view-header-name {
  60. font-size: 18px;
  61. }
  62. .help-view-content {
  63. font-style: normal;
  64. font-weight: 400;
  65. font-size: 13px;
  66. color: #95A8CB;
  67. font-family: 'PingFang SC';
  68. }
  69. .help-view-content-item-text {
  70. margin-top: 30rpx;
  71. }
  72. .help-view-content-item-text-end {
  73. display: flex;
  74. justify-content: left;
  75. align-items: center;
  76. }