| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | @import "../../static/unread.wxss";.module-navigation {    display: flex;    height: 90rpx;    width: 750rpx;    background-color: #fff;    margin-top: 20rpx;    >view {        width: 180rpx;        line-height: 90rpx;        text-align: center;        font-size: 28rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #333333;    }}.footer {    position: fixed;    display: flex;    align-items: center;    justify-content: center;    width: 750rpx;    height: 130rpx;    background-color: #fff;    bottom: 0;    .submit {        width: 500rpx;        height: 90rpx !important;        background: #FA8C16;        border-radius: 45rpx;        font-size: 28rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #FFFFFF;    }    .delete-but {        width: 230rpx;        height: 90rpx;        margin-right: 40rpx;        font-size: 28rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #999999;        border: 2rpx solid #CCCCCC;    }    .delete-sub {        width: 400rpx;    }}
 |