123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- @img: './images';
- .guidePopup {
- z-index: 5000 !important;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- transform: none;
- width: 100vw;
- height: 100vh;
- max-width: 100vw;
- margin: 0;
- overflow: hidden;
- }
- .tipsContainer {
- position: relative;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- }
- .backBtn {
- position: absolute;
- right: 20Px;
- top: 20Px;
- font-size: 14px;
- line-height: 24Px;
- padding: 0 14Px;
- border-radius: 17px;
- border: 1px solid #ffffff;
- color: #fff;
- text-align: center;
- z-index: 2001;
- cursor: pointer;
- &:active {
- opacity: 0.8;
- }
- }
- .backBtn.right {
- width: 60px;
- line-height: 24px;
- padding: 0 14px;
- right: 14px;
- top: 21px;
- left: auto;
- }
- .content {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .box {
- position: fixed;
- box-shadow: rgba(33, 33, 33, 0.7) 0px 0px 0px 5000px;
- // transition: all 0.25s;
- // transform: scale(1.2);
- border-radius: 8px;
- z-index: 100;
- position: relative;
- border: 3Px solid #55C9F7;
- }
- .item {
- position: absolute;
- z-index: 10;
- .img {
- position: relative;
- width: 100%;
- }
- .iconHead {
- position: absolute;
- left: 45px;
- width: 18px;
- height: 52px;
- &.head2 {
- left: 0.2rem;
- top: 0.9rem;
- }
- }
- .btns {
- position: absolute;
- display: flex;
- padding: 0 12px;
- .btn {
- background: url('./images/numbrBtn.png');
- background-size: 144px 49px;
- width: 144px;
- height: 49px;
- line-height: 49px;
- font-size: 18px;
- padding: 0;
- cursor: pointer;
- text-align: center;
- color: #fff;
- &:hover {
- opacity: .8;
- }
- }
- .endBtn {
- width: 124px;
- height: 49px;
- margin-right: 20px;
- background: url('./images/endBtn.png');
- background-size: 124px 49px;
- line-height: 49px;
- font-size: 18px;
- padding: 0;
- cursor: pointer;
- text-align: center;
- color: #fff;
- &:hover {
- opacity: .8;
- }
- }
- .nextBtn {
- width: 124px;
- height: 49px;
- background: url('./images/nextBtn.png') no-repeat;
- background-size: 124px 49px;
- line-height: 49px;
- font-size: 18px;
- padding: 0;
- cursor: pointer;
- text-align: center;
- color: #fff;
- &:hover {
- opacity: .8;
- }
- }
- }
- }
- @keyframes myscale {
- 0% {
- transform: scale(0.9);
- }
- 50% {
- transform: scale(1);
- }
- 100% {
- transform: scale(0.9);
- }
- }
- :global {
- .n-modal-mask-guide {
- z-index: 2000;
- background-color: transparent !important;
- }
- }
|