upLoadInfo.wxss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .container .up-tit {
  12. padding: 24rpx 30rpx;
  13. font-size: 28rpx;
  14. font-family: PingFang SC;
  15. font-weight: 500;
  16. color: #333333;
  17. }
  18. .container .add-img-box {
  19. width: 100%;
  20. -webkit-flex-wrap: wrap;
  21. flex-wrap: wrap;
  22. padding: 30rpx 30rpx 0 30rpx;
  23. background: #FFFFFF;
  24. border-bottom: 1px solid #F0F0F0;
  25. }
  26. .container .add-img-item {
  27. margin-bottom: 25rpx;
  28. width: 33.33%;
  29. position: relative;
  30. }
  31. .container .add-img-item .add-img {
  32. padding: 0rpx 10rpx;
  33. width: 100%;
  34. height: 214rpx;
  35. display: block;
  36. }
  37. .container .add-img-del {
  38. position: absolute;
  39. width: 40rpx;
  40. height: 40rpx;
  41. right: 10rpx;
  42. top: 0;
  43. border-radius: 20rpx;
  44. }
  45. .container .mark-box {
  46. display: -webkit-box;
  47. display: -webkit-flex;
  48. display: flex;
  49. -webkit-box-align: start;
  50. -webkit-align-items: flex-start;
  51. align-items: flex-start;
  52. background: #FFFFFF;
  53. padding: 40rpx 30rpx 0 30rpx;
  54. }
  55. .container .mark-box .mark-tit {
  56. margin-right: 40rpx;
  57. font-size: 28rpx;
  58. font-family: PingFang SC;
  59. font-weight: 500;
  60. color: #333333;
  61. -webkit-flex-shrink: 0;
  62. flex-shrink: 0;
  63. }
  64. .container .mark-box .mark-text {
  65. font-size: 26rpx;
  66. font-family: PingFang SC;
  67. font-weight: 500;
  68. color: #999999;
  69. }
  70. .container .up-btn {
  71. margin: auto;
  72. margin-top: 120rpx;
  73. width: 560rpx;
  74. height: 80rpx;
  75. background: #FF727E;
  76. border-radius: 40rpx;
  77. font-size: 30rpx;
  78. font-family: PingFang SC;
  79. font-weight: 500;
  80. color: #FFFFFF;
  81. display: -webkit-box;
  82. display: -webkit-flex;
  83. display: flex;
  84. -webkit-box-align: center;
  85. -webkit-align-items: center;
  86. align-items: center;
  87. -webkit-box-pack: center;
  88. -webkit-justify-content: center;
  89. justify-content: center;
  90. }