upload.wxss 919 B

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