123456789101112131415161718192021222324252627 |
- /* colorui */
- .DrawerPage {
- position: fixed;
- width: 100vw;
- height: 100vh;
- box-sizing: border-box;
- padding-bottom: 100rpx;
- left: 0vw;
- background-color: #f1f1f1;
- transition: all 0.4s;
- }
- /* 开发者 */
- /* 用户信息板 */
- .header{
- height: 480rpx;
- background-repeat: no-repeat;
- background-size: 100% auto;
- background-position: bottom;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .header .user{
- text-align: center;
- }
|