photo.module.less 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .phone {
  2. padding: 0 13px 32px;
  3. }
  4. .addPhone {
  5. margin-top: 12px;
  6. color: var(--van-primary-text);
  7. border-color: #fff;
  8. border-radius: 10px;
  9. font-size: 16px;
  10. }
  11. .phoneContainer {
  12. display: flex;
  13. justify-content: space-between;
  14. flex-wrap: wrap;
  15. .item {
  16. position: relative;
  17. padding-top: 12px;
  18. .more {
  19. display: inline-block;
  20. position: absolute;
  21. top: 18px;
  22. right: 6px;
  23. background: url('../images/icon_more.png') center center no-repeat;
  24. background-size: contain;
  25. width: 24px;
  26. height: 24px;
  27. z-index: 9;
  28. }
  29. .img {
  30. width: 170px;
  31. height: 170px;
  32. border-radius: 10px;
  33. overflow: hidden;
  34. }
  35. .default {
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. background: #eaeaea;
  40. .defaultImg {
  41. width: 45px;
  42. }
  43. }
  44. .name {
  45. padding: 6px 0 4px;
  46. font-size: 16px;
  47. font-weight: 500;
  48. color: #333333;
  49. max-width: 168px;
  50. }
  51. .num {
  52. font-size: 12px;
  53. color: #777777;
  54. line-height: 17px;
  55. }
  56. }
  57. }
  58. .dialogTitle {
  59. i {
  60. display: inline-block;
  61. width: 4px;
  62. height: 14px;
  63. background: #ff8057;
  64. border-radius: 2px;
  65. margin-right: 6px;
  66. }
  67. text-align: left;
  68. font-size: 18px;
  69. font-weight: 500;
  70. color: #333333;
  71. line-height: 25px;
  72. padding: 20px 0 20px 25px;
  73. }
  74. .phoneName {
  75. background: #f2f2f2;
  76. border-radius: 10px;
  77. margin: 0 15px 30px;
  78. width: auto;
  79. }