123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /* pages/room/add.wxss */
- .newfrom{
- background-color: #F6F6F6;
- width: 100%;
- height: 100vh;
- padding-top: 20rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 40rpx;
- }
- .require{
- margin-right:20rpx
- }
- .require:after{
- content:"*";
- color:red;
- }
- .value{
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- line-height: 40rpx;
- }
- .tipsClass{
- color: #B2B2B2;
- }
- .fb-btn{
- display: flex;
- justify-content: center;
- align-items: center;
- width: calc(100% - 60rpx);
- height: 80rpx;
- line-height: 98rpx;
- background: #0075DC;
- border-radius:50rpx;
- position: fixed;
- bottom: 80rpx;
- left: 0;
- color: #fff;
- font-size: 28rpx;
- margin:0 30rpx;
- }
- .order-list-v {
- margin-bottom: 20rpx;
- background-color: #fff;
- border-radius: 12px;
- padding: 0 30rpx;
- }
- .order-list-v .navigator {
- padding: 32rpx 0 28rpx;
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- }
- .order-list-v .navigator:last-child {
- border-bottom: none;
- }
- .order-list-v button {
- display: flex;
- align-items: center;
- width: 100%;
- height: auto;
- text-align: initial;
- padding: 0;
- background: none;
- line-height: initial;
- }
- .order-list-v .navigator image:not(.go) {
- width: 40rpx;
- height: 40rpx;
- flex: 0 0 auto;
- }
- .order-list-v .navigator .go {
- flex: 0 0 auto;
- width: 11rpx;
- height: 20rpx;
- }
- .order-list-v .navigator view {
- margin-left: 14rpx;
- font-size: 30rpx;
- color: #131D34;
- flex: 1;
- }
|