style.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .plate{
  2. display: flex;
  3. flex: 1;
  4. overflow: hidden;
  5. > div {
  6. width: 100%;
  7. height: 100%;
  8. }
  9. ul {
  10. width: 100%;
  11. &.lock {
  12. li {
  13. pointer-events: none;
  14. opacity: 0.5;
  15. }
  16. li.position {
  17. pointer-events: auto;
  18. opacity: 1;
  19. }
  20. }
  21. }
  22. li {
  23. padding: 15px 10px;
  24. > div {
  25. margin-bottom: 15px;
  26. &:last-child {
  27. margin-bottom: 0;
  28. }
  29. &.title {
  30. margin-bottom: 10px;
  31. }
  32. label {
  33. color: #ababab;
  34. font-size: 12px;
  35. }
  36. }
  37. &:last-child {
  38. border: none;
  39. &::after {
  40. display: none;
  41. }
  42. }
  43. .link-button {
  44. display: flex;
  45. justify-content: space-between;
  46. button {
  47. width: 45%;
  48. }
  49. }
  50. .switch-con{
  51. display: flex;
  52. align-items: center;
  53. justify-content: space-between;
  54. >span{
  55. font-size: 12px;
  56. }
  57. }
  58. }
  59. }