1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .BaseImg {
- width: 100%;
- height: 100%;
- position: absolute;
- z-index: 11;
- opacity: 1;
- transition: opacity 1s;
- background-color: rgba(0, 0, 0, 0.4);
- background-size: 100% 100%;
- :global {
- .BIcon {
- position: absolute;
- top: -60px;
- left: 50%;
- transform: translateX(-50%);
- width: 30px;
- z-index: 10;
- cursor: pointer;
- }
- .BIlogo {
- position: absolute;
- top: 0px;
- width: 650px;
- max-width: 90%;
- left: 50%;
- transform: translateX(-50%);
- }
- .BIbaseBtn {
- position: absolute;
- bottom: 40px;
- left: 50%;
- transform: translateX(-50%);
- cursor: pointer;
- width: 100px;
- height: 31px;
- z-index: 10;
- background-size: 100% 100%;
- background-image: url('../../assets/img/btn.png');
- color: #fffddc;
- transition: all 0.3s;
- .BIBtxt {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- &:hover {
- background-image: url('../../assets/img/btnAc.png');
- color: #b67150;
- }
- .BIBxian {
- position: absolute;
- bottom: -10px;
- left: 0;
- width: 100%;
- padding: 0 10px;
- height: 2px;
- & > div {
- width: 100%;
- height: 100%;
- background-color: rgba(231, 214, 142, 0.6);
- & > div {
- width: 0%;
- height: 100%;
- background-color: #fffddc;
- }
- }
- }
- }
- }
- }
- .BaseImgHide {
- opacity: 0;
- pointer-events: none;
- }
|