worker-statistics.component.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. @import "../../../../src/theme.less";
  2. .save {
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. width: 100%;
  7. height: 100%;
  8. background: rgba(0, 0, 0, 0.4);
  9. z-index: 99;
  10. .modalBody {
  11. width: 1000px;
  12. background: #fff;
  13. border-radius: 5px;
  14. padding: 10px 20px;
  15. color: #333;
  16. .title {
  17. width: 100%;
  18. text-align: center;
  19. font-size: 18px;
  20. position: relative;
  21. i {
  22. position: absolute;
  23. right: 0;
  24. top: 0;
  25. font-size: 20px;
  26. color: #666;
  27. cursor: pointer;
  28. padding: 0 5px;
  29. }
  30. }
  31. .content {
  32. width: 100%;
  33. border: 1px solid #e5e9ed;
  34. border-radius: 5px;
  35. overflow: hidden;
  36. margin-top: 12px;
  37. .conItem {
  38. color: #333;
  39. .jiTit {
  40. height: 50px;
  41. line-height: 50px;
  42. border-bottom: 1px solid #e5e9ed;
  43. padding: 0 32px;
  44. }
  45. .defeat {
  46. font-size: 14px;
  47. color: #333;
  48. padding: 15px 32px;
  49. min-height: 125px;
  50. }
  51. &.noCon {
  52. background: #f9fafb;
  53. padding: 16px 32px 24px 32px;
  54. border-top: 1px solid #e5e9ed;
  55. .title {
  56. text-align: left;
  57. font-size: 14px;
  58. margin-bottom: 8px;
  59. }
  60. textarea {
  61. min-height: 210px;
  62. }
  63. }
  64. }
  65. }
  66. button {
  67. margin-top: 10px;
  68. margin-left: 10px;
  69. }
  70. }
  71. .txtL {
  72. text-align: left !important;
  73. }
  74. .txtR {
  75. text-align: right !important;
  76. }
  77. }