photo-detail.module.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .phoneDetail {
  2. // padding: 13px;
  3. --van-uploader-size: 92px !important;
  4. :global {
  5. .van-button {
  6. font-size: 18px;
  7. }
  8. }
  9. .addPhone {
  10. margin: 13px;
  11. width: calc(100% - 26px);
  12. color: var(--van-primary-text);
  13. border-color: #fff;
  14. border-radius: 10px;
  15. font-size: 16px;
  16. }
  17. .phoneContainer {
  18. display: flex;
  19. justify-content: space-between;
  20. flex-wrap: wrap;
  21. margin: 0 13px;
  22. .item {
  23. margin-top: 12px;
  24. position: relative;
  25. .img {
  26. width: 170px;
  27. height: 170px;
  28. border-radius: 10px;
  29. overflow: hidden;
  30. position: relative;
  31. }
  32. }
  33. .itemBorder .img::before {
  34. content: ' ';
  35. position: absolute;
  36. border-radius: 10px;
  37. border: 2px solid #64a9ff;
  38. z-index: 10;
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. bottom: 0;
  43. }
  44. --van-checkbox-border-color: transparent;
  45. position: relative;
  46. :global {
  47. .van-checkbox {
  48. position: absolute;
  49. top: 16px;
  50. right: 10px;
  51. z-index: 9;
  52. height: 25px;
  53. }
  54. .van-checkbox__icon--checked {
  55. .van-icon {
  56. border-color: #64a9ff;
  57. }
  58. }
  59. }
  60. .checkboxHide {
  61. opacity: 0;
  62. }
  63. .iconChecked {
  64. font-size: 18px;
  65. border: 1px solid transparent;
  66. :global {
  67. .van-icon__image {
  68. width: 100%;
  69. height: 100%;
  70. }
  71. }
  72. }
  73. }
  74. .dialogTitle {
  75. i {
  76. display: inline-block;
  77. width: 4px;
  78. height: 14px;
  79. background: #ff8057;
  80. border-radius: 2px;
  81. margin-right: 6px;
  82. }
  83. text-align: left;
  84. font-size: 18px;
  85. font-weight: 500;
  86. color: #333333;
  87. line-height: 25px;
  88. padding: 20px 0 20px 25px;
  89. }
  90. }
  91. .photos {
  92. padding: 0 16px 16px;
  93. }