1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .ant-guide-tour-button {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: calc(100 * 0.5px + env(safe-area-inset-bottom));
- z-index: 10001;
- display: flex;
- justify-content: center;
- }
- .ant-guide-tour-button .ant-button:nth-of-type(1) {
- color: #ffffff;
- background-color: transparent;
- box-shadow: inset 0 0 0 1px #eeeeee;
- }
- .ant-guide-tour-button .ant-button:nth-of-type(2) {
- color: #333333;
- background-color: #ffffff;
- box-shadow: none;
- }
- .ant-guide-tour-button .ant-button {
- margin: 0 6px;
- width: 76px;
- }
- .ant-guide-tour-indicator {
- width: 100%;
- position: absolute;
- bottom: calc(calc(100 * 0.5px + env(safe-area-inset-bottom)) + 40 * 0.5px + 26px);
- left: 50%;
- transform: translateX(-50%);
- z-index: 10000;
- display: flex;
- justify-content: center;
- }
- .ant-guide-tour-indicator-dot {
- margin: 0 1.5px;
- background-color: #999999;
- width: 3px;
- height: 3px;
- border-radius: 1px;
- }
- .ant-guide-tour-indicator-dot-active {
- width: 13px;
- background-color: #ffffff;
- }
- .ant-guide-tour-clear {
- position: fixed;
- top: 40px;
- right: 20px;
- z-index: 10001;
- font-size: 28px;
- color: #999999;
- }
- .ant-guide-tour-item {
- z-index: 10000;
- position: fixed;
- top: 0;
- left: 0;
- }
- .ant-guide-tour-swiper {
- z-index: 10000;
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- }
|