You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.3 KiB

  1. .moduleset {
  2. .dialog-title {
  3. font-size: 22px;
  4. font-weight: bold;
  5. color: #7D7D7D;
  6. height: 68px;
  7. p {
  8. line-height: 68px;
  9. margin-left: 28px;
  10. }
  11. }
  12. .toolBox {
  13. display: flex;
  14. flex-direction: column;
  15. padding: 0 40px;
  16. /deep/ .el-input--small .el-input__inner {
  17. height: 40px;
  18. }
  19. .selectItem {
  20. display: flex;
  21. flex-direction: row;
  22. height: 70px;
  23. .active {
  24. color: #409EFF;
  25. }
  26. .item {
  27. display: flex;
  28. flex-direction: row;
  29. margin-right: 120px;
  30. cursor: pointer;
  31. margin: 25px 50px 0 20px;
  32. img {
  33. width: 45px;
  34. height: 45px;
  35. }
  36. span {
  37. margin-left: 8px;
  38. font-size: 16px;
  39. }
  40. }
  41. }
  42. }
  43. .nav {
  44. height: 400px;
  45. overflow: auto;
  46. display:flex;
  47. flex-wrap:wrap;
  48. padding: 0 20px;
  49. margin-left: 20px;
  50. padding-bottom: 40px;
  51. .nav_item {
  52. display: flex;
  53. height: 210px;
  54. flex-direction: column;
  55. width: calc((100% / 4) - 20px);
  56. margin-right: 20px;
  57. // width: 170px;
  58. border: 2px solid #EDF0F9;
  59. box-shadow: 0px 3px 4px 0px rgba(186, 184, 184, 0.1);
  60. border-radius: 8px;
  61. align-items: center;
  62. position: relative;
  63. cursor: pointer;
  64. margin-top: 10px;
  65. img {
  66. width: 94px;
  67. height: 94px;
  68. margin: 18px 18px 10px 18px;
  69. }
  70. span {
  71. font-size: 16px;
  72. color: #7D7D7D;
  73. line-height: 26px;
  74. margin-bottom: 4px;
  75. }
  76. .buyAfter {
  77. color: #409EFF;
  78. }
  79. .desc{
  80. margin-top: 12px;
  81. }
  82. }
  83. .itemActive {
  84. border: 2px solid #90B1F4;
  85. box-shadow: 0px 3px 4px 0px rgba(186, 184, 184, 0.1);
  86. }
  87. }
  88. }