add.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* pages/room/add.wxss */
  2. .newfrom{
  3. background-color: #F6F6F6;
  4. width: 100%;
  5. height: 100vh;
  6. padding-top: 20rpx;
  7. font-size: 28rpx;
  8. font-family: PingFangSC-Regular, PingFang SC;
  9. font-weight: 400;
  10. color: #666666;
  11. line-height: 40rpx;
  12. }
  13. .require{
  14. margin-right:20rpx
  15. }
  16. .require:after{
  17. content:"*";
  18. color:red;
  19. }
  20. .value{
  21. font-size: 28rpx;
  22. font-family: PingFangSC-Regular, PingFang SC;
  23. font-weight: 400;
  24. line-height: 40rpx;
  25. }
  26. .tipsClass{
  27. color: #B2B2B2;
  28. }
  29. .room-name{
  30. display: flex;
  31. flex-direction: row;
  32. }
  33. .fb-btn{
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. width: calc(100% - 60rpx);
  38. height: 80rpx;
  39. line-height: 98rpx;
  40. background: #0075DC;
  41. border-radius:50rpx;
  42. position: fixed;
  43. bottom: 80rpx;
  44. left: 0;
  45. color: #fff;
  46. font-size: 28rpx;
  47. margin:0 30rpx;
  48. }
  49. .order-list-v {
  50. margin-bottom: 20rpx;
  51. background-color: #fff;
  52. border-radius: 12px;
  53. padding: 0 30rpx;
  54. }
  55. .order-list-v .navigator {
  56. padding: 32rpx 0 28rpx;
  57. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  58. display: flex;
  59. align-items: center;
  60. }
  61. .order-list-v .navigator:last-child {
  62. border-bottom: none;
  63. }
  64. .order-list-v button {
  65. display: flex;
  66. align-items: center;
  67. width: 100%;
  68. height: auto;
  69. text-align: initial;
  70. padding: 0;
  71. background: none;
  72. line-height: initial;
  73. }
  74. .order-list-v .navigator image:not(.go) {
  75. width: 40rpx;
  76. height: 40rpx;
  77. flex: 0 0 auto;
  78. }
  79. .order-list-v .navigator .go {
  80. flex: 0 0 auto;
  81. width: 11rpx;
  82. height: 20rpx;
  83. }
  84. .order-list-v .navigator view {
  85. margin-left: 14rpx;
  86. font-size: 30rpx;
  87. color: #131D34;
  88. flex: 1;
  89. }