index.less 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. .box {
  2. // position: relative;
  3. .swiper {
  4. height: 500rpx;
  5. }
  6. .detail {
  7. position: absolute;
  8. background: white;
  9. width: 100%;
  10. // top: 400rpx;
  11. border-radius: 30rpx 30rpx 0 0;
  12. padding: 20rpx;
  13. .name {
  14. margin: 20rpx 0;
  15. .title {
  16. font-size: 55rpx;
  17. font-weight: bold;
  18. font-family: "华文琥珀";
  19. }
  20. .desc {
  21. margin: 20rpx;
  22. font-size: 25rpx;
  23. // white-space: nowrap;
  24. // text-overflow: ellipsis;
  25. // overflow: hidden;
  26. }
  27. }
  28. .comments {
  29. .ul {
  30. .li {
  31. padding: 10rpx 0;
  32. border-bottom: whitesmoke 1rpx solid;
  33. .user {
  34. display: flex;
  35. .name {
  36. font-size: 28rpx;
  37. margin-left: 10rpx;
  38. font-weight: bold;
  39. }
  40. }
  41. .content {
  42. margin-top: 10rpx;
  43. margin-left: 50rpx;
  44. .text {
  45. font-size: 26rpx;
  46. }
  47. .icon {
  48. display: flex;
  49. align-items: center;
  50. margin: 10rpx 0;
  51. .love {
  52. margin-right: 35rpx;
  53. van-icon {
  54. font-size: 35rpx;
  55. margin-right: 5rpx;
  56. }
  57. text {
  58. font-size: 25rpx;
  59. }
  60. }
  61. .reply {
  62. font-size: 38rpx;
  63. }
  64. }
  65. .replyComment {
  66. background: whitesmoke;
  67. padding: 20rpx;
  68. border-radius: 10rpx;
  69. font-size: 28rpx;
  70. .reItem {
  71. padding: 25rpx 0 5rpx 0;
  72. border-bottom: rgb(235, 235, 235) solid 1rpx;
  73. .reName {
  74. color: #4F9AF7;
  75. }
  76. .reText {
  77. margin: 0 10rpx;
  78. }
  79. .reIcon {
  80. width: 100%;
  81. display: flex;
  82. align-items: center;
  83. justify-content: flex-end;
  84. >view {
  85. margin-right: 30rpx;
  86. }
  87. }
  88. }
  89. .more {
  90. padding-top: 10rpx;
  91. }
  92. }
  93. }
  94. }
  95. }
  96. }
  97. .inp {
  98. width: 100vw;
  99. border-top: 1rpx solid #e4d2fa;
  100. position: fixed;
  101. bottom: 0rpx;
  102. right: 0;
  103. }
  104. .date {
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. margin: 20rpx;
  109. .toDay {
  110. font-size: 55rpx;
  111. font-weight: bold;
  112. color: #4F9AF7;
  113. font-family: "华文琥珀";
  114. .month {
  115. font-size: 35rpx;
  116. }
  117. }
  118. .tip {
  119. font-size: 45rpx;
  120. font-weight: bold;
  121. font-family: "华文琥珀";
  122. }
  123. }
  124. .item {
  125. display: flex;
  126. align-items: center;
  127. padding: 30rpx 0 20rpx 0rpx;
  128. margin: 0 30rpx;
  129. border-bottom: 1rpx solid rgb(224, 224, 224);
  130. .title {
  131. font-size: 30rpx;
  132. margin-right: 20rpx;
  133. align-items: center;
  134. font-weight: bold;
  135. van-icon {
  136. font-size: 30rpx;
  137. }
  138. }
  139. .common {
  140. font-size: 28rpx;
  141. van-icon {
  142. margin-right: 10rpx;
  143. }
  144. .arLog {
  145. display: flex;
  146. align-items: center;
  147. padding: 10rpx 0;
  148. color: #4F9AF7;
  149. font-weight: bold;
  150. }
  151. }
  152. }
  153. .btn {
  154. margin: 30rpx 0;
  155. background: #4F9AF7;
  156. font-size: 35rpx;
  157. }
  158. .meItem {
  159. background: #4F9AF7;
  160. padding: 20rpx;
  161. margin: 20rpx;
  162. color: white;
  163. border-radius: 20rpx;
  164. display: flex;
  165. align-items: center;
  166. justify-content: space-around;
  167. .h3 {
  168. font-size: 29rpx;
  169. width: 60rpx;
  170. }
  171. .avatar {
  172. image {
  173. margin: 0 20rpx;
  174. width: 100rpx;
  175. height: 100rpx;
  176. border-radius: 100rpx;
  177. }
  178. }
  179. .name {
  180. margin: 0 5rpx;
  181. font-size: 25rpx;
  182. width: 150rpx;
  183. display: -webkit-box;
  184. -webkit-box-orient: vertical;
  185. -webkit-line-clamp: 2;
  186. overflow: hidden;
  187. text-overflow: ellipsis;
  188. }
  189. .rang{
  190. font-size: 30rpx;
  191. }
  192. }
  193. }
  194. }
  195. .popup {
  196. height: 70vh;
  197. overflow-y: auto;
  198. .topTitle {
  199. position: fixed;
  200. // top: 300rpx;
  201. left: 0rpx;
  202. z-index: 9;
  203. }
  204. .topBox {
  205. border-radius: 40rpx 40rpx 0 0;
  206. background: white;
  207. width: 100vw;
  208. padding: 20rpx;
  209. border-bottom: 1rpx solid rgb(206, 206, 206);
  210. text-align: center;
  211. font-weight: bold;
  212. }
  213. .registerStartDate {
  214. padding: 20rpx;
  215. display: flex;
  216. align-items: center;
  217. .title {
  218. width: 220rpx;
  219. font-size: 28rpx;
  220. text {
  221. color: red;
  222. }
  223. }
  224. .date {
  225. font-size: 28rpx;
  226. font-weight: bold;
  227. }
  228. }
  229. .registerStartTime {
  230. // height:;
  231. padding: 20rpx;
  232. .title {
  233. width: 220rpx;
  234. font-size: 28rpx;
  235. text {
  236. color: red;
  237. }
  238. }
  239. .box {
  240. display: flex;
  241. margin: 20rpx;
  242. align-items: center;
  243. justify-content: space-between;
  244. padding: 20rpx;
  245. box-shadow: 1rpx 1rpx 10rpx rgb(204, 204, 204);
  246. border-radius: 20rpx;
  247. .time {
  248. .from {
  249. margin: 10rpx 0;
  250. font-size: 35rpx;
  251. van-icon {
  252. font-size: 35rpx;
  253. }
  254. font-weight: bold;
  255. }
  256. .to {
  257. font-size: 28rpx;
  258. van-icon {
  259. font-size: 35rpx;
  260. }
  261. }
  262. }
  263. .btn {
  264. font-size: 30rpx;
  265. background: #4F9AF7;
  266. padding: 10rpx 20rpx;
  267. border-radius: 100rpx;
  268. color: white;
  269. }
  270. }
  271. }
  272. .btn_btm {
  273. width: 100vw;
  274. background: white;
  275. position: fixed;
  276. bottom: 0rpx;
  277. z-index: 9;
  278. button {
  279. color: white;
  280. font-size: 30rpx;
  281. }
  282. }
  283. .revise {
  284. float: right;
  285. background: #4F9AF7;
  286. margin: 20rpx;
  287. }
  288. }
  289. .audit {
  290. font-size: 25rpx;
  291. color: #4F9AF7;
  292. background: #e4d2fa;
  293. width: 95rpx;
  294. padding: 5rpx 10rpx;
  295. margin-left: 10rpx;
  296. }
  297. .company {
  298. margin: 20rpx;
  299. .name {
  300. font-size: 26rpx;
  301. margin: 20rpx 40rpx;
  302. padding: 20rpx;
  303. border-bottom: 1rpx solid rgb(243, 243, 243);
  304. }
  305. }
  306. van-cell {
  307. van-radio-group {
  308. van-radio {
  309. margin: 20rpx 0;
  310. }
  311. }
  312. }
  313. .rankbox {
  314. width: 686rpx;
  315. background-color: white;
  316. min-height: 618rpx;
  317. margin-top: 30rpx;
  318. display: flex;
  319. align-items: center;
  320. flex-direction: column;
  321. border-radius: 15rpx;
  322. margin-bottom: 40rpx;
  323. .ran-top {
  324. width: 100%;
  325. height: 120rpx;
  326. padding-right: 16rpx;
  327. padding-left: 16rpx;
  328. display: flex;
  329. align-items: center;
  330. border-bottom: 2rpx solid #E0E0E0;
  331. .top-til {
  332. height: 34rpx;
  333. font-size: 30rpx;
  334. padding-left: 14rpx;
  335. border-left: solid 8rpx #58A5FE;
  336. display: flex;
  337. align-items: center;
  338. justify-content: center;
  339. }
  340. .top-box {
  341. display: flex;
  342. margin-left: auto;
  343. font-size: 20rpx;
  344. justify-content: center;
  345. align-items: center;
  346. image {
  347. width: 20rpx;
  348. height: 18rpx;
  349. margin-left: 4rpx;
  350. }
  351. }
  352. }
  353. .cardbox {
  354. width: 100%;
  355. height: 120rpx;
  356. padding-right: 16rpx;
  357. display: flex;
  358. align-items: center;
  359. border-bottom: 2rpx solid #E0E0E0;
  360. .paiming {
  361. width: 37rpx;
  362. height: 37rpx;
  363. font-size: 24rpx;
  364. display: flex;
  365. justify-content: center;
  366. align-items: center;
  367. }
  368. .image1 {
  369. width: 37rpx;
  370. height: 37rpx;
  371. margin-left: 6rpx;
  372. background-image: url(https://file-cloud.fmode.cn/qpFbRRSZrO/20241226/n5b6q2120548337.png);
  373. background-position: center;
  374. background-size: cover;
  375. background-repeat: no-repeat;
  376. color: white;
  377. display: flex;
  378. justify-content: center;
  379. align-items: center;
  380. font-size: 24rpx;
  381. }
  382. .image2 {
  383. width: 37rpx;
  384. height: 37rpx;
  385. margin-left: 6rpx;
  386. background-image: url(https://file-cloud.fmode.cn/qpFbRRSZrO/20241226/d61fa4120559975.png);
  387. background-position: center;
  388. background-size: cover;
  389. background-repeat: no-repeat;
  390. color: white;
  391. display: flex;
  392. justify-content: center;
  393. align-items: center;
  394. font-size: 24rpx;
  395. }
  396. .image3 {
  397. width: 37rpx;
  398. height: 37rpx;
  399. margin-left: 6rpx;
  400. background-image: url(https://file-cloud.fmode.cn/qpFbRRSZrO/20241226/2c1osg120613150.png);
  401. background-position: center;
  402. background-size: cover;
  403. background-repeat: no-repeat;
  404. color: white;
  405. display: flex;
  406. justify-content: center;
  407. align-items: center;
  408. font-size: 24rpx;
  409. }
  410. .avarter {
  411. width: 82rpx;
  412. height: 82rpx;
  413. border-radius: 50%;
  414. margin-left: 10rpx;
  415. }
  416. .name {
  417. font-size: 24rpx;
  418. margin-left: 20rpx;
  419. .name2 {
  420. font-size: 18rpx;
  421. }
  422. }
  423. .num {
  424. font-size: 32rpx;
  425. color: #00B108;
  426. margin-left: auto;
  427. }
  428. .good {
  429. margin-left: 20rpx;
  430. font-size: 22rpx;
  431. display: flex;
  432. flex-direction: column;
  433. align-items: center;
  434. justify-content: center;
  435. .good-num {
  436. font-size: 22rpx;
  437. }
  438. image {
  439. width: 34rpx;
  440. height: 34rpx;
  441. }
  442. }
  443. }
  444. }
  445. .model {
  446. width: 80vw;
  447. height: 400rpx;
  448. .content {
  449. width: 100%;
  450. padding: 40rpx;
  451. background-size: cover;
  452. .close {
  453. height: 50rpx;
  454. width: 100%;
  455. display: flex;
  456. .h2 {
  457. margin: auto;
  458. text-align: center;
  459. font-size: 40rpx;
  460. font-weight: bold;
  461. }
  462. van-icon {
  463. color: rgb(128, 125, 125);
  464. float: right;
  465. }
  466. }
  467. .text{
  468. margin-top: 50rpx;
  469. font-size:30rpx;
  470. }
  471. .btnBox{
  472. margin-top: 50rpx;
  473. display: flex;
  474. .btn{
  475. font-size: 35rpx;
  476. width: 40%;
  477. background: #4F9AF7;
  478. margin: auto;
  479. color:white;
  480. padding: 20rpx;
  481. text-align: center;
  482. border-radius: 100rpx;
  483. }
  484. }
  485. }
  486. }