【前端】智能库房综合管理系统前端项目
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.

107 lines
1.7 KiB

3 years ago
3 years ago
  1. // 借阅管理
  2. .cell-lend{
  3. display: inline-block;
  4. height: 26px;
  5. line-height: 26px;
  6. border-radius: 13px;
  7. text-align: center;
  8. }
  9. .no-lend .cell-lend{
  10. color:#F65163;
  11. border: 1px solid #F65163;
  12. }
  13. .have-lend .cell-lend{
  14. color: #fff;
  15. background-color: #F65163;
  16. }
  17. .other-lend .cell-lend{
  18. color:#F65163;
  19. border: 1px solid #F65163;
  20. position: relative;
  21. &::after{
  22. content: '';
  23. display: block;
  24. height: 2px;
  25. width: 20px;
  26. background-color: #F65163;
  27. position: absolute;
  28. left: 50%;
  29. top: 50%;
  30. transform: translate(-50%,-50%);
  31. }
  32. }
  33. .clear{
  34. border-radius: 13px;
  35. width: 80px;
  36. height: 26px;
  37. line-height: 26px;
  38. display: inline-block;
  39. text-align: center;
  40. }
  41. .no-clear .clear{
  42. color: #FD8042;
  43. border: 1px solid #FD8042;
  44. }
  45. .have-clear .clear{
  46. color: #1AAE93;
  47. border: 1px solid #1AAE93;
  48. }
  49. .fail-clear .clear{
  50. color: #F65163;
  51. border: 1px solid #F65163;
  52. }
  53. //3D库房
  54. .iframe_box{
  55. width: 100%;
  56. height: calc(100vh - 285px);
  57. }
  58. .warehouse{
  59. display: flex;
  60. .warehouse-left{
  61. flex: 1;
  62. }
  63. .warehouse-right{
  64. width: 460px;
  65. }
  66. }
  67. ::v-deep .el-table .el-table__header .el-table__cell{
  68. padding: 0;
  69. height: 30px;
  70. .cell{
  71. font-size: 14px;
  72. }
  73. }
  74. ::v-deep .light-blue{
  75. background-color: #011E4F !important;
  76. }
  77. .title-arrow{
  78. position: relative;
  79. &::before{
  80. content:'';
  81. width: 36px;
  82. height: 12px;
  83. position: absolute;
  84. left: -70px;
  85. top: 50%;
  86. transform: translateY(-50%);
  87. }
  88. &::after{
  89. content:'';
  90. width: 36px;
  91. height: 12px;
  92. position: absolute;
  93. right: -70px;
  94. top: 50%;
  95. transform: translateY(-50%);
  96. }
  97. }
  98. .warehouse-svg{
  99. margin:0 10px 1px 0;
  100. }