1234567891011121314151617181920212223 |
- .main {
- float: left;
- width: 100%;
- height: 100%;
- background-color: #f6f6f6;
- }
- .main .one {
- position: fixed;
- z-index: 9999;
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- background-color: #409eff;
- color: #ffffff;
- text-align: center;
- }
- .main .two {
- position: absolute;
- top: 80rpx;
- width: 100%;
- }
|