12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import styled from 'styled-components'
- export const VerifyWrapper = styled.div`
- .verifybox {
- position: relative;
- box-sizing: border-box;
- border-radius: 16px;
- border: 1px solid #e4e7eb;
- background-color: #fff;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- .verifybox-top {
- padding: 0 15px;
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 18px;
- color: #1f2329;
- box-sizing: border-box;
- }
- .verifybox-bottom {
- padding: 10px;
- box-sizing: border-box;
- }
- .verifybox-close {
- position: absolute;
- top: 13px;
- right: 9px;
- width: 24px;
- height: 24px;
- text-align: center;
- cursor: pointer;
- }
- &.mask {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1001;
- width: 100%;
- height: 100vh;
- background: rgba(0, 0, 0, 0.3);
- /* display: none; */
- transition: all 0.5s;
- }
- `
|