租房小程序前端代码
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.

82 lines
1.1 KiB

3 months ago
  1. .se {
  2. &-pos {
  3. position: relative;
  4. &-fixed {
  5. position: fixed !important;
  6. }
  7. &-lt {
  8. position: absolute;
  9. left: 0;
  10. top: 0;
  11. }
  12. &-lc {
  13. position: absolute;
  14. left: 0;
  15. top: 50%;
  16. transform: translateY(-50%);
  17. }
  18. &-lb {
  19. position: absolute;
  20. left: 0;
  21. bottom: 0;
  22. }
  23. &-ct {
  24. position: absolute;
  25. left: 50%;
  26. top: 0;
  27. transform: translateX(-50%);
  28. }
  29. &-cc {
  30. position: absolute;
  31. left: 50%;
  32. top: 50%;
  33. transform: translate(-50%, -50%);
  34. }
  35. &-cb {
  36. position: absolute;
  37. left: 50%;
  38. bottom: 0;
  39. transform: translateX(-50%);
  40. }
  41. &-rt {
  42. position: absolute;
  43. right: 0;
  44. top: 0;
  45. }
  46. &-rc {
  47. position: absolute;
  48. right: 0;
  49. top: 50%;
  50. transform: translateY(-50%);
  51. }
  52. &-rb {
  53. position: absolute;
  54. right: 0;
  55. bottom: 0;
  56. }
  57. }
  58. &-zi {
  59. &-s {
  60. z-index: 9;
  61. }
  62. &-m {
  63. z-index: 999;
  64. }
  65. &-l {
  66. z-index: 99999;
  67. }
  68. }
  69. }