index.module.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .phoneDetail {
  2. height: calc(100vh - var(--header-height));
  3. overflow: hidden;
  4. overflow-y: auto;
  5. }
  6. .photoWrap {
  7. display: flex;
  8. flex-wrap: wrap;
  9. padding: 12px;
  10. box-sizing: border-box;
  11. justify-content: space-between;
  12. div {
  13. box-sizing: border-box;
  14. }
  15. }
  16. .photoItem {
  17. position: relative;
  18. width: 49%;
  19. margin-bottom: 12px;
  20. .gridImg {
  21. position: relative;
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. height: calc(100vw / 2);
  26. width: 100%;
  27. border-radius: 4px;
  28. overflow: hidden;
  29. position: relative;
  30. background-color: #eaeaea;
  31. background-repeat: no-repeat;
  32. background-position: center;
  33. background-image: url('../images/icon-photo-default.png');
  34. }
  35. .iconNew {
  36. position: absolute;
  37. top: 6px;
  38. right: 6px;
  39. background: url('../images/icon-new.png') no-repeat center center;
  40. background-size: 100%;
  41. display: inline-block;
  42. width: 44px;
  43. height: 17px;
  44. }
  45. .iconImage {
  46. display: flex;
  47. justify-content: center;
  48. }
  49. .gridName {
  50. font-size: 16px;
  51. color: #333;
  52. line-height: 22px;
  53. padding: 8px 0 4px 0;
  54. }
  55. .gridDes {
  56. color: #777;
  57. line-height: 17px;
  58. padding-left: 1px;
  59. font-size: 12px;
  60. }
  61. }
  62. .cellGroup {
  63. width: calc(100% - 26px);
  64. margin: 12px 13px 0;
  65. }
  66. .select {
  67. height: 45px;
  68. .icon {
  69. width: 17px;
  70. height: 17px;
  71. margin-right: 4px;
  72. flex-shrink: 0;
  73. }
  74. :global {
  75. .van-cell__title {
  76. overflow: hidden;
  77. white-space: nowrap;
  78. text-overflow: ellipsis;
  79. }
  80. .van-cell__right-icon {
  81. color: #333;
  82. transform: rotate(90deg);
  83. margin: 0 0 0 4px;
  84. }
  85. }
  86. }