1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .popBox {
- position: fixed;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- background: rgba(0, 0, 0, 0.7);
- z-index: 3000;
- }
- .popBody {
- width: 286px;
- height: 238px;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- z-index: 200;
- .popBg {
- position: absolute;
- left: 0;
- top: 0;
- width: 286px;
- height: 238px;
- }
- .popClose {
- position: absolute;
- top: 49px;
- right: 3px;
- width: 24px;
- height: 24px;
- }
- .popTitle {
- position: absolute;
- top: 70px;
- left: 30px;
- width: 79.5px;
- height: 29.5px;
- }
- .list {
- width: 238px;
- margin-top: 120px;
- margin-left: 30px;
- position: relative;
- font-size: 14px;
- color: #333333;
- line-height: 22px;
- padding-bottom: 9px;
- }
- .btnGroup {
- position: relative;
- width: 238px;
- margin: 0 auto;
- padding: 0 4px;
- display: flex;
- justify-content: space-between;
- img {
- max-width: 111px;
- height: 39px;
- }
- }
- }
|