elevator.scss 1.6 KB

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