elevator.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .nut-elevator{
  2. position:relative;
  3. top:40px;
  4. width: 100%;
  5. }
  6. .nut-main{
  7. overflow: scroll;
  8. background:#FFF;
  9. &::-webkit-scrollbar{
  10. display:none;
  11. }
  12. }
  13. .nut-elevator-ul{
  14. width: 100%;
  15. padding:0px;
  16. margin:0px;
  17. }
  18. .nut-list-title{
  19. list-style-type:none;
  20. width:100%;
  21. //margin-bottom:20px;
  22. }
  23. .nut-list-h{
  24. font-weight: normal;
  25. height: 30px;
  26. line-height: 30px;
  27. padding-left: 20px;
  28. background: #f6f6f6;
  29. margin: 0px;
  30. font-size: 14px;
  31. color: #323233;
  32. }
  33. .nut-people-list{
  34. padding: 0px;
  35. padding-left: 20px;
  36. }
  37. .nut-list-name{
  38. font-size: 14px;
  39. color: #323233;
  40. list-style-type:none;
  41. height: 44px;
  42. line-height: 44px;
  43. position: relative;
  44. &:after{
  45. position: absolute;
  46. box-sizing: border-box;
  47. content: ' ';
  48. pointer-events: none;
  49. right: 0;
  50. bottom: 0;
  51. left: 16px;
  52. border-bottom: 1px solid #ebedf0;
  53. -webkit-transform: scaleY(0.5);
  54. transform: scaleY(0.5);
  55. }
  56. &:last-child{
  57. &:after{
  58. border-bottom: 0px;
  59. }
  60. }
  61. }
  62. .nut-elevator-nav{
  63. //background: #fff;
  64. text-align: center;
  65. //border:1px solid #ccc;
  66. width: 50px;
  67. font-size: 12px;
  68. position:fixed;
  69. top:50%;
  70. right: 0px;
  71. transform:translate(0, -50%);
  72. padding: 0px;
  73. z-index: 100;
  74. .nut-nav-list{
  75. list-style-type:none;
  76. height: 40px;
  77. line-height: 40px;
  78. }
  79. .nut-nav-curr{
  80. color:rgb(7, 193, 96);
  81. }
  82. }
  83. .nut-big-box{
  84. width: 26px;
  85. height: 26px;
  86. background: #000;
  87. opacity: 0.7;
  88. position: absolute;
  89. top: 50%;
  90. left: 50%;
  91. transform:translate(-50%, -50%);
  92. text-align: center;
  93. line-height: 26px;
  94. color:#fff;
  95. font-family: bold;
  96. }