addComment.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. page {
  2. padding: 20rpx;
  3. box-sizing: border-box;
  4. text-align: center;
  5. }
  6. .page {
  7. width: 100%;
  8. background-color: #fff;
  9. border-radius: 14rpx;
  10. box-sizing: border-box;
  11. padding: 20rpx;
  12. }
  13. .textarea {
  14. width: 100%;
  15. height: 180rpx;
  16. padding: 16rpx;
  17. box-sizing: border-box;
  18. font-size: 26rpx;
  19. color: #585657;
  20. text-align: left;
  21. border: 1px solid #cbcbcb;
  22. border-radius: 10rpx;
  23. margin-top: 20rpx;
  24. }
  25. .place {
  26. font-size: 26rpx;
  27. color: #a6a6a6;
  28. }
  29. .sub {
  30. font-size: 30rpx;
  31. line-height: 90rpx;
  32. }
  33. .images {
  34. display: flex;
  35. flex-wrap: wrap;
  36. justify-content: flex-start;
  37. padding-top: 30rpx;
  38. }
  39. .images .add-box {
  40. position: relative;
  41. }
  42. /* .images .add-box::before{content:'';width:73rpx;height:4rpx;background-color:#b2b0b1;position:absolute;left:50%;top:68rpx;margin-left:-36rpx;}
  43. .images .add-box::after{content:'';width:4rpx;height:74rpx;background-color:#b2b0b1;position:absolute;left:50%;top:34rpx;margin-left:-2rpx;} */
  44. .images-col {
  45. width: 140rpx;
  46. height: 140rpx;
  47. margin: 12rpx;
  48. }
  49. .images-col .image {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. .imgbox {
  54. position: relative;
  55. }
  56. .delBox {
  57. width: 40rpx;
  58. height: 40rpx;
  59. position: absolute;
  60. right: -15rpx;
  61. top: -15rpx;
  62. z-index: 1;
  63. }
  64. .del {
  65. width: 32rpx;
  66. height: 32rpx;
  67. border: 1px solid #fff;
  68. background-color: #ee3a43;
  69. border-radius: 50%;
  70. position: relative;
  71. }
  72. .del::after {
  73. content: '';
  74. width: 20rpx;
  75. height: 4rpx;
  76. background-color: #fff;
  77. border-radius: 1px;
  78. transform: rotate(45deg);
  79. position: absolute;
  80. left: 6rpx;
  81. top: 14rpx;
  82. }
  83. .del::before {
  84. content: '';
  85. width: 20rpx;
  86. height: 4rpx;
  87. background-color: #fff;
  88. border-radius: 1px;
  89. transform: rotate(-45deg);
  90. position: absolute;
  91. left: 6rpx;
  92. top: 14rpx;
  93. }
  94. .tip {
  95. font-size: 28rpx;
  96. text-align: left;
  97. margin: 10rpx 0;
  98. }
  99. .btn {
  100. background-color: #F5F5F4;
  101. display: flex;
  102. align-items: center;
  103. justify-content: center;
  104. position: fixed;
  105. bottom: 0;
  106. left: 0;
  107. width: 100%;
  108. z-index: 1000;
  109. }
  110. .sub {
  111. font-size: 30rpx;
  112. line-height: 90rpx;
  113. width: 80%;
  114. margin: 20rpx 0;
  115. border-radius: 20rpx;
  116. }