index.module.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .BaseImg {
  2. width: 100%;
  3. height: 100%;
  4. position: absolute;
  5. z-index: 11;
  6. opacity: 1;
  7. transition: opacity 1s;
  8. background-color: rgba(0, 0, 0, 0.4);
  9. background-size: 100% 100%;
  10. :global {
  11. .BIcon {
  12. position: absolute;
  13. top: -60px;
  14. left: 50%;
  15. transform: translateX(-50%);
  16. width: 30px;
  17. z-index: 10;
  18. cursor: pointer;
  19. }
  20. .BIlogo {
  21. position: absolute;
  22. top: 0px;
  23. width: 650px;
  24. max-width: 90%;
  25. left: 50%;
  26. transform: translateX(-50%);
  27. }
  28. .BIbaseBtn {
  29. position: absolute;
  30. bottom: 40px;
  31. left: 50%;
  32. transform: translateX(-50%);
  33. cursor: pointer;
  34. width: 100px;
  35. height: 31px;
  36. z-index: 10;
  37. background-size: 100% 100%;
  38. background-image: url('../../assets/img/btn.png');
  39. color: #fffddc;
  40. transition: all 0.3s;
  41. .BIBtxt {
  42. position: absolute;
  43. top: 0;
  44. left: 0;
  45. width: 100%;
  46. height: 100%;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. }
  51. &:hover {
  52. background-image: url('../../assets/img/btnAc.png');
  53. color: #b67150;
  54. }
  55. .BIBxian {
  56. position: absolute;
  57. bottom: -10px;
  58. left: 0;
  59. width: 100%;
  60. padding: 0 10px;
  61. height: 2px;
  62. & > div {
  63. width: 100%;
  64. height: 100%;
  65. background-color: rgba(231, 214, 142, 0.6);
  66. & > div {
  67. width: 0%;
  68. height: 100%;
  69. background-color: #fffddc;
  70. }
  71. }
  72. }
  73. }
  74. }
  75. }
  76. .BaseImgHide {
  77. opacity: 0;
  78. pointer-events: none;
  79. }