upload.wxss 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/upload/upload.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. .content{
  6. background: #fff;
  7. margin-top: 12px;
  8. padding: 10px 12px;
  9. }
  10. .item{
  11. padding:10px 200rpx;
  12. position: relative;
  13. padding-right: 0;
  14. height:96px;
  15. }
  16. .item image{
  17. width: 160rpx;
  18. height: 160rpx;
  19. position: absolute;
  20. left: 20rpx;
  21. top: 0;
  22. bottom: 0;
  23. margin: auto;
  24. }
  25. .title{
  26. color: #333;
  27. }
  28. .item text{
  29. color: #E85546;
  30. font-size: 24rpx;
  31. }
  32. .tips{
  33. color: #358BFF;
  34. margin-top: 36rpx;
  35. }
  36. .post{
  37. width: 100%;
  38. height:96rpx;
  39. background:rgba(53,139,255,1);
  40. border-radius:4px;
  41. color: #fff;
  42. line-height: 96rpx;
  43. margin-top: 130rpx;
  44. text-align: center;
  45. }
  46. .model{
  47. position: fixed;
  48. z-index: 9;
  49. background: rgba(0,0,0,.5);
  50. width: 100%;
  51. height: 100vh;
  52. top: 0;
  53. left: 0;
  54. display: none;
  55. }
  56. .show{
  57. display: block;
  58. }
  59. .model image{
  60. width: 80%;
  61. position: absolute;
  62. top:0;
  63. left: 0;
  64. bottom: 0;
  65. right: 0;
  66. margin: auto;
  67. }