index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. ::v-deep .u-textarea{
  2. background: #F4F4F4!important;
  3. border-radius: 8rpx;
  4. }
  5. ::v-deep .u-textarea__count{
  6. background: #F4F4F4!important;
  7. font-size: 28rpx!important;
  8. right: 24rpx!important;
  9. bottom:16rpx!important;
  10. padding: 0!important;
  11. }
  12. .content{
  13. padding: 64rpx 32rpx;
  14. .title{
  15. font-size: 32rpx;
  16. font-family: PingFang-SC-Bold, PingFang-SC;
  17. font-weight: bold;
  18. color: #080F18;
  19. margin-bottom: 36rpx;
  20. }
  21. .picTop{
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. .count{
  26. font-size: 28rpx;
  27. font-family: PingFang-SC-Medium, PingFang-SC;
  28. font-weight: 500;
  29. color:#999 ;
  30. }
  31. }
  32. .phone{
  33. border-bottom: 1rpx solid #999;
  34. padding-bottom: 26rpx;
  35. }
  36. .btn{
  37. height: 96rpx;
  38. background: #333333;
  39. border-radius: 4rpx;
  40. border: 2rpx solid #333333;
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. font-size: 32rpx;
  45. font-family: PingFang-SC-Medium, PingFang-SC;
  46. font-weight: 500;
  47. color: #FFFFFF;
  48. width: calc(100% - 64rpx);
  49. position: fixed;
  50. bottom: 72rpx;
  51. }
  52. }
  53. // 图片上传区域
  54. .chooscontainer {
  55. display: flex;
  56. flex-wrap: wrap;
  57. position: relative;
  58. // border-bottom: 1rpx solid #EDEDED;
  59. margin-bottom: 30rpx;
  60. .addpicall {
  61. width: 31%;
  62. margin-right: 6rpx;
  63. margin-left: 6rpx;
  64. margin-top: 15rpx;
  65. // margin-bottom: 20rpx;
  66. position: relative;
  67. z-index: 10;
  68. &:nth-child(3n) {
  69. margin-right: 0;
  70. }
  71. image {
  72. width: 100%;
  73. height: 100%;
  74. }
  75. .del_btn {
  76. font-size: 48rpx;
  77. position: absolute;
  78. top: 0rpx;
  79. right: 30rpx;
  80. width: 44rpx;
  81. height: 44rpx;
  82. line-height: 44rpx;
  83. background: rgba(0, 0, 0, .41);
  84. color: rgba(255, 255, 255, 1);
  85. display: flex;
  86. justify-content: center;
  87. border-radius:0 15rpx 0 15rpx;
  88. }
  89. }
  90. }
  91. .addpic {
  92. display: flex;
  93. justify-content: flex-start;
  94. align-items: center;
  95. width: 210rpx;
  96. height: 210rpx;
  97. .addPicBox{
  98. width: 184rpx;
  99. height:186rpx;
  100. border-radius: 24rpx;
  101. // border: 1rpx dashed #E6E6E6;
  102. display: flex;
  103. justify-content: center;
  104. align-items: center;
  105. background: #F7F8FA;
  106. image{
  107. width: 40rpx;
  108. height: 40rpx;
  109. }
  110. }
  111. text {
  112. display: block;
  113. padding: 0;
  114. font-size: 60rpx;
  115. }
  116. }