guide.scss 966 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .cl-guide {
  2. position: relative;
  3. height: 100%;
  4. &__mask {
  5. background-color: rgba(0, 0, 0, 0.5);
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. height: 100%;
  10. width: 100%;
  11. z-index: 9;
  12. }
  13. &__display {
  14. opacity: 1;
  15. }
  16. &__content {
  17. display: inline-block;
  18. background-color: #fff;
  19. border-radius: 6rpx;
  20. margin: 20rpx;
  21. padding: 20rpx;
  22. color: #000;
  23. font-size: 28rpx;
  24. }
  25. &__op {
  26. margin: 0 20rpx;
  27. button {
  28. display: inline-block;
  29. font-size: 26rpx;
  30. font-weight: 500;
  31. margin-right: 20rpx;
  32. height: 60rpx;
  33. line-height: 60rpx;
  34. padding: 0 20rpx;
  35. border-radius: 6rpx;
  36. &:last-child {
  37. margin-right: 0;
  38. }
  39. }
  40. }
  41. &__image {
  42. margin: 20rpx;
  43. }
  44. &__tools {
  45. display: flex;
  46. flex-direction: column;
  47. align-items: flex-start;
  48. position: absolute;
  49. width: 100%;
  50. transition: all 0.3s;
  51. &.start {
  52. align-items: flex-start;
  53. }
  54. &.center {
  55. align-items: center;
  56. }
  57. &.end {
  58. align-items: flex-end;
  59. }
  60. }
  61. }