1234567891011121314151617181920212223 |
- /* 容器 */
- .container {
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 40px;
- padding-top: 40rpx;
- box-sizing: border-box;
- margin: 252rpx auto 0;
- }
- /* 顶部背景图片 */
- .backImg {
- position: fixed;
- width: 100vw;
- top: 0;
- left: 0;
- z-index: -999;
- }
- .backImg>image {
- width: 100%;
- }
|