index.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .nut-elevator {
  2. width: 100%;
  3. display: block;
  4. position: relative;
  5. &__list {
  6. overflow: auto;
  7. &__item {
  8. font-size: 12px;
  9. color: #333;
  10. &__code {
  11. position: relative;
  12. height: 35px;
  13. line-height: 35px;
  14. font-size: 14px;
  15. color: #1a1a1a;
  16. padding: 0 20px;
  17. font-weight: 500;
  18. &::after {
  19. content: ' ';
  20. width: 100%;
  21. height: 1px;
  22. position: absolute;
  23. left: 0;
  24. bottom: 0;
  25. background-color: #f5f5f5;
  26. }
  27. }
  28. &__name {
  29. display: flex;
  30. align-items: center;
  31. padding: 0 20px;
  32. height: 30px;
  33. line-height: 30px;
  34. }
  35. }
  36. }
  37. &__code--current {
  38. position: absolute;
  39. right: 60px;
  40. top: 50%;
  41. transform: translateY(-50%);
  42. width: 45px;
  43. height: 45px;
  44. line-height: 45px;
  45. border-radius: 50%;
  46. background: $white;
  47. box-shadow: 0 3px 3px 1px rgba(240, 240, 240, 1);
  48. text-align: center;
  49. }
  50. &__bars {
  51. position: absolute;
  52. right: 8px;
  53. top: 50%;
  54. transform: translateY(-50%);
  55. padding: 15px 0;
  56. background-color: #eeeff2;
  57. border-radius: 6px;
  58. text-align: center;
  59. z-index: 10;
  60. &__inner {
  61. &__item {
  62. display: block;
  63. padding: 3px;
  64. font-size: 10px;
  65. }
  66. }
  67. }
  68. }
  69. view {
  70. display: block;
  71. }