12345678910111213141516171819 |
- /* 开发者 */
- .header{
- position: fixed;
- width: 100%;
- display: flex;
- align-items: center;
- line-height: 90rpx;
- font-size: 32rpx;
- }
- .header .block{
- padding: 0rpx 15rpx;
- flex: none;
- }
- .header .body{
- flex: 1;
- box-sizing: border-box;
- height: 90rpx;
- padding-right: 15rpx;
- }
|