upload.wxss 901 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. }
  15. .item image{
  16. width: 160rpx;
  17. position: absolute;
  18. left: 20rpx;
  19. top: 0;
  20. bottom: 0;
  21. margin: auto;
  22. }
  23. .title{
  24. color: #333;
  25. }
  26. .item text{
  27. color: #E85546;
  28. font-size: 24rpx;
  29. }
  30. .tips{
  31. color: #358BFF;
  32. margin-top: 36rpx;
  33. }
  34. .post{
  35. width: 100%;
  36. height:96rpx;
  37. background:rgba(53,139,255,1);
  38. border-radius:4px;
  39. color: #fff;
  40. line-height: 96rpx;
  41. margin-top: 130rpx;
  42. text-align: center;
  43. }
  44. .model{
  45. position: fixed;
  46. z-index: 9;
  47. background: rgba(0,0,0,.5);
  48. width: 100%;
  49. height: 100vh;
  50. top: 0;
  51. left: 0;
  52. display: none;
  53. }
  54. .show{
  55. display: block;
  56. }
  57. .model image{
  58. width: 80%;
  59. position: absolute;
  60. top:0;
  61. left: 0;
  62. bottom: 0;
  63. right: 0;
  64. margin: auto;
  65. }