1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .popBox {
- position: relative;
- width: 305px;
- background: rgba(255,255,255,0.31);
- border-radius: 12px;
- border: 1px solid rgba(255,252,252,0.53);
- z-index: 9;
- .boxBg {
- position: absolute;
- width: 648px;
- height: 274px;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- z-index: -1;
- }
- .boxTitle {
- position: absolute;
- left: 50%;
- top: -6px;
- transform: translateX(-50%);
- width: 151px;
- height: 32px;
- }
- .boxContent {
- margin: 9px;
- background: linear-gradient( 224deg, #ECF5FF 0%, #D5E8FF 100%);
- border-radius: 12px;
- display: inline-block;
- >p {
- margin: 36px 20px 12px;
- color: #334A64;
- font-size: 15px;
- line-height: 26px;
- font-weight: 400;
- text-align: center;
- }
- .boxBtn {
- margin-bottom: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- >img {
- width: 116px;
- height: 35px;
- cursor: pointer;
- &:first-child {
- margin-right: 12px;
- }
- }
- }
- }
- }
|