publish.wxss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* pages/publish/publish.wxss */
  2. page{
  3. background-color: #F7F7F7;
  4. }
  5. .nav-wrap {
  6. position: fixed;
  7. width: 100%;
  8. top: 0;
  9. background: #F7F7F7;
  10. color: #000;
  11. z-index: 9999999;
  12. }
  13. /* 标题要居中 */
  14. .nav-title {
  15. position: absolute;
  16. text-align: center;
  17. max-width: 400rpx;
  18. overflow: hidden;
  19. text-overflow: ellipsis;
  20. white-space: nowrap;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. margin: auto;
  26. font-size: 32rpx;
  27. color: #2c2b2b;
  28. }
  29. .nav-capsule {
  30. display: flex;
  31. align-items: center;
  32. margin-left: 30rpx;
  33. width: 140rpx;
  34. justify-content: space-between;
  35. height: 100%;
  36. }
  37. .navbar-v-line {
  38. width: 1px;
  39. height: 32rpx;
  40. background-color: #e5e5e5;
  41. }
  42. .pub-top{
  43. width: 100%;
  44. height: 180rpx;
  45. display: flex;
  46. flex-direction: column;
  47. justify-content: space-between;
  48. }
  49. .pub-top button{
  50. width: 622rpx;
  51. height: 74rpx;
  52. border-radius: 50rpx;
  53. }
  54. .pub-but-one{
  55. background-color: #FF874E;
  56. color: white;
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. font-size: 28rpx;
  61. box-shadow: 0 4rpx 18rpx 0 rgba(255,135,78,0.4);
  62. }
  63. .pub-but-two{
  64. background-color: #FFFFFF;
  65. color: #FF874E;
  66. border: 1px solid #FF874E;
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. font-size: 28rpx;
  71. box-shadow: 0 4rpx 18rpx 0 rgba(255,135,78,0.4);
  72. }
  73. .pub-line{
  74. width: 100%;
  75. height: 100rpx;
  76. display: flex;
  77. flex-direction: row;
  78. justify-content: center;
  79. align-items: center;
  80. font-size: 28rpx;
  81. color: #656565;
  82. }
  83. .pub-line view{
  84. width: 68rpx;
  85. margin-left: 20rpx;
  86. height: 2rpx;
  87. margin-right: 20rpx;
  88. background-color: #979797;
  89. }
  90. .pub-orders{
  91. width: 100%;
  92. display: flex;
  93. flex-direction: column;
  94. align-items: center;
  95. }