index.less 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* nova-caipu/pages/new-app/index.wxss */
  2. .all{
  3. width: 100vw;
  4. height: 100vh;
  5. background-color: #f7f7f7;
  6. overflow-y: scroll;
  7. position: relative;
  8. .picturebox{
  9. width: 100%;
  10. height: 480rpx;
  11. position: relative;
  12. .img{
  13. width: 100%;
  14. height: 480rpx;
  15. image{
  16. width: 100%;
  17. height: 100%;
  18. }
  19. }
  20. .numberbox{
  21. position: absolute;
  22. bottom: 40rpx;
  23. right: 20rpx;
  24. border-radius: 45%;
  25. z-index: 10;
  26. color: white;
  27. width: 70rpx;
  28. height: 45rpx;
  29. font-size: 24rpx;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. background-color: rgba(12, 12, 12, 0.5);
  34. }
  35. }
  36. .Legendary-Information{
  37. width: 100%;
  38. height: 70%;
  39. background-color: white;
  40. border-top-left-radius: 20px; /* 左上角圆角 */
  41. border-top-right-radius: 20px; /* 右上角圆角 */
  42. position: absolute;
  43. top: 455rpx;
  44. padding-top: 20rpx;
  45. padding-left: 25rpx;
  46. padding-right: 20rpx;
  47. z-index: 10;
  48. .text{
  49. width: 100%;
  50. height: 100rpx;
  51. display: flex;
  52. margin-top: 10rpx;
  53. .namebox{
  54. width: 75%;
  55. height: 100rpx;
  56. .name{
  57. font-size: 35rpx;
  58. font-weight: 500;
  59. }
  60. .adress{
  61. font-size: 30rpx;
  62. white-space: nowrap; /* 不换行 */
  63. overflow: hidden; /* 隐藏超出部分 */
  64. text-overflow: ellipsis; /* 超出部分显示省略号 */
  65. }
  66. }
  67. .markerbox{
  68. width: 25%;
  69. height: 100%;
  70. display: flex;
  71. justify-content: center;
  72. align-items: center;
  73. }
  74. }
  75. .datebox{
  76. width: 100%;
  77. height: 90rpx;
  78. background-color: #f7f7f7;
  79. }
  80. .cardbox{
  81. .card{
  82. width: 100%;
  83. height: 620rpx;
  84. background-color: white;
  85. margin-top: 15rpx;
  86. .img{
  87. width: 100%;
  88. height: 480rpx;
  89. }
  90. .name{
  91. font-size: 30rpx;
  92. }
  93. .intruduce{
  94. font-size: 28rpx;
  95. }
  96. .buttombox{
  97. width: 100%;
  98. height: 60rpx;
  99. color: red;
  100. display: flex;
  101. align-items: center;
  102. .salary{
  103. width: 50%;
  104. height: 100%;
  105. display: flex;
  106. .symbol{
  107. height: 100%;
  108. font-size: 28rpx;
  109. display: flex;
  110. align-items: flex-end;
  111. }
  112. .number{
  113. height: 100%;
  114. display: flex;
  115. align-items: flex-end;
  116. font-size: 35rpx;
  117. }
  118. }
  119. .buttom{
  120. width: 130rpx;
  121. height: 50rpx;
  122. font-size: 30rpx;
  123. color: white;
  124. background-color: red;
  125. border-radius: 48rpx;
  126. display: flex;
  127. justify-content: center;
  128. align-items: center;
  129. margin-left: auto;
  130. }
  131. }
  132. }
  133. }
  134. }
  135. }