VR.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .wrapper {
  2. width: 100%;
  3. padding-top: 20rpx;
  4. }
  5. .page-section {
  6. width: 100%;
  7. margin: 42rpx auto 48rpx;
  8. swiper {
  9. width: 100%;
  10. height: 590rpx;
  11. }
  12. .swiper-item-wrap {
  13. width: 590rpx !important;
  14. padding-left: 30rpx;
  15. }
  16. .swiper-item {
  17. position: relative;
  18. left: 0;
  19. top: 0;
  20. width: 590rpx;
  21. height: 100%;
  22. border-radius: 24rpx;
  23. overflow: hidden;
  24. }
  25. .swiper-item image {
  26. display: block;
  27. width: 100%;
  28. height: 100%;
  29. background: pink;
  30. }
  31. .info {
  32. position: absolute;
  33. left: 0;
  34. bottom: 0;
  35. z-index: 1;
  36. width: 100%;
  37. padding: 0 28rpx 20rpx;
  38. }
  39. .name {
  40. font-size: 36rpx;
  41. line-height: 44rpx;
  42. font-weight: 500;
  43. color: rgba(255, 255, 255, 1);
  44. word-break: break-all;
  45. word-wrap: break-word;
  46. }
  47. .address {
  48. width: 100%;
  49. font-size: 20rpx;
  50. line-height: 32rpx;
  51. color: rgba(229, 229, 229, 1);
  52. word-break: break-all;
  53. word-wrap: break-word;
  54. }
  55. }
  56. .page-title {
  57. position: relative;
  58. left: 0;
  59. top: 0;
  60. display: flex;
  61. align-items: center;
  62. width: 100%;
  63. padding-left: 46rpx;
  64. line-height: 40rpx;
  65. font-size: 36rpx;
  66. font-weight: 500;
  67. color: #1F1F39;
  68. &:before {
  69. content: '';
  70. position: absolute;
  71. left: 16rpx;
  72. top: 1rpx;
  73. width: 14rpx;
  74. height: 37rpx;
  75. border-radius: 40rpx;
  76. background: #91B379;
  77. }
  78. }
  79. .main {
  80. padding: 48rpx 0 278rpx;
  81. }
  82. .list {
  83. display: flex;
  84. width: 690rpx;
  85. min-height: 278rpx;
  86. padding: 20rpx 28rpx 34rpx;
  87. margin: 0 auto 20rpx;
  88. border-radius: 24rpx;
  89. background: rgba(255, 255, 255, 1);
  90. box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.1);
  91. overflow: hidden;
  92. .photo-wrap {
  93. width: 224rpx;
  94. height: 224rpx;
  95. border-radius: 16rpx;
  96. overflow: hidden;
  97. image {
  98. display: block;
  99. width: 100%;
  100. height: 100%;
  101. background: pink;
  102. }
  103. }
  104. .info {
  105. width: calc(100% - 224rpx);
  106. padding-left: 28rpx;
  107. padding-top: 18rpx;
  108. }
  109. .name {
  110. font-size: 32rpx;
  111. line-height: 46rpx;
  112. color: rgba(31, 51, 73, 1);
  113. }
  114. .address {
  115. margin-top: 8rpx;
  116. font-size: 24rpx;
  117. line-height: 34rpx;
  118. color: rgba(153, 153, 153, 1);
  119. }
  120. }