style.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .upload-screen{
  2. top: 0;
  3. left: 0;
  4. right: 0;
  5. bottom: 0;
  6. }
  7. .upload-item,.select-image {
  8. border-radius: 8upx;
  9. overflow: hidden;
  10. }
  11. .wrap{
  12. flex-wrap: wrap;
  13. }
  14. .select-image{
  15. //background-color: #f5f5f5;
  16. background-color: #fff;
  17. border: 1upx dotted #BFBFBF;
  18. }
  19. .flex{
  20. display: flex;
  21. flex-direction: column;
  22. }
  23. .row{
  24. flex-direction: row;
  25. }
  26. .jCenter,.center{
  27. justify-content: center;
  28. }
  29. .aCenter,.center{
  30. align-items: center;
  31. }
  32. .select-title{
  33. color: #BFBFBF;
  34. line-height: 30upx;
  35. font-size: 24upx;
  36. }
  37. .upload-image{
  38. width: 100%;
  39. height: 100%;
  40. }
  41. .relative{
  42. position: relative;
  43. }
  44. .img-screen{
  45. position: absolute;
  46. top: 0;
  47. bottom: 0;
  48. left: 0;
  49. right: 0;
  50. background-color: rgba(0,0,0,0.5);
  51. }
  52. .img-screen-text{
  53. color: #fff;
  54. font-size: 28upx;
  55. }
  56. .select-number{
  57. font-size: 20upx;
  58. color: #BFBFBF;
  59. }
  60. .select-upload{
  61. width: 60upx;
  62. height: 48upx;
  63. margin-bottom: 12upx;
  64. }
  65. .img-close{
  66. position: absolute;
  67. right: 0;
  68. bottom: 0;
  69. width: 56upx;
  70. height: 56upx;
  71. background-color: rgba(51, 51, 51, 0.55);
  72. border-radius: 8upx 0 8upx 0;
  73. }
  74. .img-close-icon{
  75. width: 36upx;
  76. height: 36upx;
  77. }
  78. .upload-view{
  79. width: 100%;
  80. height: 100%;
  81. }
  82. .iconfont-upload-icon{
  83. font-size: 60upx;
  84. color: #DCDAE1;
  85. margin-bottom: 6upx;
  86. }