experience.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* pages/my/experience/experience.wxss */
  2. page {
  3. width: 100%;
  4. height: 100%;
  5. background-color: #fff;
  6. }
  7. .experience-container {
  8. padding: 30rpx 60rpx 0;
  9. font-size: 30rpx;
  10. font-family: 'PingFang SC, PingFang SC-Regular';
  11. font-weight: 400;
  12. color: #1a1a1a;
  13. }
  14. .title {
  15. margin-bottom: 14rpx;
  16. }
  17. .textarea {
  18. width: 100%;
  19. height: 304rpx;
  20. padding: 13rpx 19rpx;
  21. margin-bottom: 25rpx;
  22. background: #ffffff;
  23. border: 1rpx solid #cdcdcd;
  24. border-radius: 5rpx;
  25. box-sizing: border-box;
  26. }
  27. .alert {
  28. margin-bottom: 12rpx;
  29. }
  30. .alert text {
  31. color: #808080;
  32. }
  33. .upload-box {
  34. display: flex;
  35. flex-wrap: wrap;
  36. margin-bottom: 20rpx;
  37. }
  38. .upload-box .img {
  39. width: 154rpx;
  40. height: 154rpx;
  41. margin-right: 20rpx;
  42. margin-bottom: 20rpx;
  43. border-radius: 10rpx;
  44. }
  45. .upload-box .upload {
  46. width: 154rpx;
  47. height: 154rpx;
  48. text-align: center;
  49. line-height: 154rpx;
  50. border-radius: 10rpx;
  51. margin-bottom: 20rpx;
  52. background: #f5f5f5;
  53. border: 1rpx solid #e5e5e5;
  54. font-size: 100rpx;
  55. color: #e5e5e5;
  56. }
  57. /* 未选中的背景样式 */
  58. checkbox .wx-checkbox-input {
  59. width: 35rpx;
  60. height: 35rpx;
  61. border-radius: 50%;
  62. }
  63. /* 选中后的背景样式 */
  64. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  65. border: 1rpx solid #FF0000;
  66. background: #FF0000;
  67. }
  68. /* 选中后的勾子样式 */
  69. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  70. width: 40rpx;
  71. height: 40rpx;
  72. line-height: 40rpx;
  73. border-radius: 50%;
  74. text-align: center;
  75. font-size: 32rpx;
  76. color: #FFF;
  77. background: transparent;
  78. transform: translate(-50%, -50%) scale(1);
  79. -webkit-transform: translate(-50%, -50%) scale(1);
  80. }
  81. .footer {
  82. position: fixed;
  83. left: 0;
  84. bottom: 0;
  85. width: 100%;
  86. padding: 40rpx;
  87. padding-bottom: calc(40rpx + constant(safe-area-inset-bottom));
  88. padding-bottom: calc(40rpx + env(safe-area-inset-bottom));
  89. box-sizing: border-box;
  90. background-color: #fff;
  91. }
  92. .btn {
  93. background: #ffdc2f;
  94. border-radius: 43rpx;
  95. }