add.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. padding: 0 30rpx;
  53. }
  54. .order-list-v .navigator {
  55. padding: 32rpx 0 28rpx;
  56. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  57. display: flex;
  58. align-items: center;
  59. }
  60. .order-list-v .navigator:last-child {
  61. border-bottom: none;
  62. }
  63. .order-list-v button {
  64. display: flex;
  65. align-items: center;
  66. width: 100%;
  67. height: auto;
  68. text-align: initial;
  69. padding: 0;
  70. background: none;
  71. line-height: initial;
  72. }
  73. .order-list-v .navigator image:not(.go) {
  74. width: 40rpx;
  75. height: 40rpx;
  76. flex: 0 0 auto;
  77. }
  78. .order-list-v .navigator .go {
  79. flex: 0 0 auto;
  80. width: 11rpx;
  81. height: 20rpx;
  82. }
  83. .order-list-v .navigator view {
  84. margin-left: 14rpx;
  85. font-size: 30rpx;
  86. color: #131D34;
  87. flex: 1;
  88. }