manager.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .mangerType{
  2. @blue:#1890ff;
  3. @main-color: #3da0e3;
  4. h3{
  5. font-weight: 400;
  6. }
  7. .plg-flex{
  8. flex-direction:row;
  9. flex-wrap: wrap;
  10. justify-content:space-between;
  11. .layui-card{
  12. width: 32.66666%;
  13. flex:0 0 auto;
  14. &.bigmanger{
  15. width: 100%;
  16. }
  17. &:last-child{
  18. margin-bottom: 15/100rem;
  19. }
  20. }
  21. }
  22. .ref{
  23. position: absolute;
  24. right: 13/100rem;
  25. top: 12/100rem;
  26. }
  27. .layui-card{
  28. position: relative;
  29. padding:0;
  30. display: flex;
  31. flex-wrap: wrap;
  32. color: #333;
  33. .layui-card-header{
  34. background: #fff;
  35. width: 100%;
  36. text-align: center;
  37. color: #999;
  38. }
  39. .layui-card-body{
  40. width: 100%;
  41. h2{
  42. font-weight: normal;
  43. text-align: center;
  44. color: @blue;
  45. }
  46. }
  47. &.bigmanger{
  48. .layui-card-header{
  49. border-left: 5/100rem solid @main-color;
  50. text-align: left;
  51. padding: 10/100rem 15/100rem;
  52. height:64/100rem;
  53. color: #333
  54. }
  55. .layui-card-body{
  56. min-height: 0;
  57. padding: 0;
  58. }
  59. .pages-list{
  60. position: relative;
  61. // margin: 20/100rem 0;
  62. &>h3{
  63. color: #999;
  64. text-align: center;
  65. margin-bottom: 10/100rem;
  66. display: block;
  67. }
  68. &>p{
  69. color: @blue;
  70. text-align: center;
  71. font-size:30/100rem;
  72. line-height: 30/100rem;
  73. }
  74. &:not(:last-child):before{
  75. position: absolute;
  76. content: "";
  77. right: 0;
  78. top: 0;
  79. bottom: 0;
  80. width: 1px;
  81. background: #e5e5e5;
  82. }
  83. }
  84. }
  85. }
  86. .title{
  87. padding: 15/100rem
  88. }
  89. }