group-details.wxss 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. /* pages/group-details/group-details.wxss */
  2. /**基础风格样式**/
  3. @import '../../../towxml/style/main.wxss';
  4. /**如果页面有动态主题切换,则需要将使用到的样式全部引入**/
  5. /**主题配色(浅色样式)**/
  6. @import '../../../towxml/style/theme/light.wxss';
  7. /**主题配色(深色样式)**/
  8. @import '../../../towxml/style/theme/dark.wxss';
  9. .group-details {
  10. width: 100%;
  11. height: auto;
  12. background: #fff;
  13. }
  14. .loading {
  15. width: 750rpx;
  16. height: 1334rpx;
  17. position: relative;
  18. }
  19. .loading .loading-text {
  20. position: absolute;
  21. left: 0;
  22. right: 0;
  23. top: 0;
  24. bottom: 0;
  25. margin: auto;
  26. width: 150rpx;
  27. height: 88rpx;
  28. }
  29. .details-head {
  30. width: 100%;
  31. background: #fff;
  32. }
  33. .headImg {
  34. display: flex;
  35. flex-wrap: wrap;
  36. justify-content: center;
  37. padding: 40rpx 0;
  38. box-sizing: border-box;
  39. }
  40. .headImg-item {
  41. position: relative;
  42. width: 104rpx;
  43. height: 104rpx;
  44. border-radius: 50%;
  45. margin: 20rpx 22rpx;
  46. }
  47. .headImg-item image {
  48. width: 100%;
  49. height: 100%;
  50. border-radius: 50%;
  51. }
  52. .headImg-item .tuanzhangIcon {
  53. position: absolute;
  54. right: 13rpx;
  55. width: 78rpx;
  56. height: 30rpx;
  57. bottom: -10rpx;
  58. border-radius: 0;
  59. }
  60. scroll-view {
  61. /* height: 74%; */
  62. width: 100%;
  63. }
  64. .grade-details {
  65. background: #fff;
  66. display: flex;
  67. flex-direction: column;
  68. padding: 24rpx;
  69. }
  70. .grade-details image {
  71. width: 100%;
  72. height: 290rpx;
  73. border-radius: 20rpx;
  74. background: rgba(228, 255, 242, .8);
  75. }
  76. .catalog {
  77. display: flex;
  78. align-items: flex-end;
  79. width: 100%;
  80. height: 100rpx;
  81. background: #fff;
  82. position: relative;
  83. background: rgba(240, 241, 245, 1);
  84. padding: 0 40rpx;
  85. }
  86. .select{
  87. color: #61CA54
  88. }
  89. .switch text {
  90. flex: 1;
  91. height: 60rpx;
  92. text-align: center;
  93. font-size: 36rpx;
  94. /* margin: 0 90rpx; */
  95. box-sizing: border-box;
  96. position: relative;
  97. z-index: 1;
  98. width: 100%;
  99. display: block;
  100. line-height:66rpx;
  101. }
  102. .switch {
  103. width: 335rpx;
  104. height: 70rpx;
  105. position: relative;
  106. }
  107. .switch image {
  108. width: 100%;
  109. height: 100%;
  110. position: absolute;
  111. left: 0;
  112. top: 0;
  113. z-index: 0;
  114. }
  115. .catalog-list {
  116. width: 100%;
  117. padding: 0 18rpx 18rpx 18rpx ;
  118. margin-bottom: 120rpx;
  119. box-sizing: border-box;
  120. }
  121. .know {
  122. padding: 18rpx 18rpx 120rpx 18rpx;
  123. box-sizing: border-box;
  124. background: #fff;
  125. /* margin-top: 12rpx; */
  126. }
  127. .catalog-item {
  128. display: flex;
  129. justify-content: space-between;
  130. align-items: center;
  131. width: 100%;
  132. height: 88rpx;
  133. background: #fff;
  134. padding: 0 20rpx;
  135. box-sizing: border-box;
  136. margin-bottom: 12rpx;
  137. border-radius: 10rpx;
  138. }
  139. .catalog-item .left {
  140. color: #656565;
  141. font-size: 36rpx;
  142. }
  143. .catalog-item .right {
  144. color: #939393;
  145. font-size: 28rpx;
  146. }
  147. .catalog-item .right image {
  148. width: 16rpx;
  149. height: 28rpx;
  150. vertical-align: middle;
  151. margin-right: 6rpx;
  152. }
  153. .catalog-item .right text {
  154. vertical-align: middle;
  155. }
  156. .group-details-btn {
  157. position: fixed;
  158. bottom: 0;
  159. display: flex;
  160. align-items: center;
  161. width: 100%;
  162. height: 100rpx;
  163. /* background: #FF9209; */
  164. color: #fff;
  165. z-index: 99;
  166. }
  167. .group-details-btn .btn-image {
  168. position: absolute;
  169. width: 100%;
  170. height: 100%;
  171. left: 0;
  172. top: 0;
  173. z-index: 0;
  174. }
  175. .bottomx {
  176. bottom: 20rpx;
  177. }
  178. .left-btn,
  179. .right-btn,
  180. .only-one-btn {
  181. flex: 1;
  182. height: 100%;
  183. display: flex;
  184. justify-content: center;
  185. align-items: center;
  186. position: relative;
  187. }
  188. .left-btn {
  189. border-right: 2rpx solid #fff;
  190. }
  191. .group-popup {
  192. position: absolute;
  193. left: 0;
  194. top: 0;
  195. width: 100%;
  196. height: 100%;
  197. background: rgba(0, 0, 0, .5);
  198. z-index: 99;
  199. }
  200. .group-popup .group-content {
  201. position: absolute;
  202. left: 50%;
  203. top: 50%;
  204. transform: translate(-50%, -50%);
  205. width: 80%;
  206. background: #fff;
  207. border-radius: 20rpx;
  208. }
  209. .group-title {
  210. text-align: center;
  211. margin: 36rpx 0;
  212. }
  213. .group-list {
  214. display: flex;
  215. justify-content: space-between;
  216. flex-wrap: wrap;
  217. padding: 0 62rpx;
  218. }
  219. .group-list .group-item {
  220. position: relative;
  221. display: flex;
  222. margin-right: 0;
  223. justify-content: space-between;
  224. flex-direction: column;
  225. }
  226. .group-content-img {
  227. width: 214rpx;
  228. height: 290rpx;
  229. }
  230. .sure {
  231. position: relative;
  232. width: 392rpx;
  233. height: 80rpx;
  234. margin: 36rpx auto 26rpx auto;
  235. }
  236. .sure image {
  237. width: 100%;
  238. height: 100%;
  239. }
  240. .sure text {
  241. position: absolute;
  242. left: 164rpx;
  243. top: 18rpx;
  244. color: #fff;
  245. z-index: 2;
  246. }
  247. .select-img {
  248. position: absolute;
  249. bottom: 56rpx;
  250. right: 10rpx;
  251. width: 52rpx;
  252. height: 52rpx;
  253. z-index: 99;
  254. }
  255. .group-item .item-img {
  256. width: 214rpx;
  257. height: 278rpx;
  258. }
  259. .formBtn {
  260. margin: 0;
  261. padding: 0;
  262. background: rgba(255, 255, 255, 0);
  263. width: 100%;
  264. position: absolute;
  265. top: 0;
  266. height: 100%;
  267. left: 0;
  268. }
  269. .formBtn::after {
  270. border: none;
  271. }
  272. .data-loading {
  273. width: 100%;
  274. height: 200rpx;
  275. /* background: #FF4330; */
  276. }
  277. .data-loading .line1 {
  278. width: 300rpx;
  279. height: 30rpx;
  280. background: rgba(228, 255, 242, .8);
  281. margin-top: 20rpx;
  282. margin-left: 122rpx;
  283. border-radius: 10rpx;
  284. }
  285. .data-loading .line2 {
  286. width: 400rpx;
  287. height: 30rpx;
  288. background: rgba(228, 255, 242, .8);
  289. margin-top: 20rpx;
  290. margin-left: 200rpx;
  291. border-radius: 10rpx;
  292. }
  293. .data-loading .line3 {
  294. width: 460rpx;
  295. height: 30rpx;
  296. background: rgba(228, 255, 242, .8);
  297. margin-top: 20rpx;
  298. margin-left: 160rpx;
  299. border-radius: 10rpx;
  300. }
  301. .damn-dialog {
  302. width: 100%;
  303. height: 100%;
  304. position: absolute;
  305. left: 0;
  306. top: 0;
  307. z-index: 999;
  308. background: rgba(0, 0, 0, .5)
  309. }
  310. .damn-dialog .box {
  311. width: 600rpx;
  312. height: 200rpx;
  313. margin: 50% auto;
  314. background: #fff;
  315. border-radius: 30rpx;
  316. }
  317. .damn-dialog .box .title {
  318. text-align: center;
  319. color: #FF4330;
  320. font-size: 34rpx;
  321. }
  322. .damn-dialog .box .damn-dialog-1 {
  323. text-align: center;
  324. font-size: 32rpx;
  325. color: #000
  326. }
  327. /* 新复制粘贴的 */
  328. .green-placerholder {
  329. width: 100%;
  330. height: 132rpx;
  331. background: #12c962;
  332. position: absolute;
  333. top: 0;
  334. }
  335. .class-icon {
  336. width: 704rpx;
  337. height: 294rpx;
  338. border-radius: 20rpx;
  339. box-shadow: 0 0 15rpx 0rpx rgba(0, 0, 0, .4);
  340. margin: 0 auto;
  341. display: block;
  342. z-index: 1;
  343. position: relative;
  344. top: 15rpx;
  345. }
  346. .step {
  347. width: 100%;
  348. height: 250rpx;
  349. background: #fff;
  350. display: flex;
  351. flex-direction: column;
  352. justify-content: center;
  353. }
  354. .step image {
  355. height: 60rpx;
  356. width: 70%;
  357. margin: 0 auto;
  358. }
  359. .txt {
  360. display: flex;
  361. justify-content: space-around;
  362. color: #535353;
  363. font-size: 32rpx;
  364. padding: 0 46rpx;
  365. margin-top: 20rpx;
  366. }
  367. .details-head {
  368. width: 100%;
  369. /* height: 82%; */
  370. margin-top: 12rpx;
  371. background: #fff;
  372. min-height: 98%;
  373. }
  374. .headImg {
  375. display: flex;
  376. flex-wrap: wrap;
  377. justify-content: center;
  378. padding: 40rpx 0;
  379. box-sizing: border-box;
  380. }
  381. .headImg-item {
  382. position: relative;
  383. width: 140rpx;
  384. height: 140rpx;
  385. border-radius: 50%;
  386. margin: 20rpx 22rpx;
  387. box-sizing:border-box;
  388. }
  389. .headImg-item image {
  390. width: 100%;
  391. height: 100%;
  392. border-radius: 50%;
  393. }
  394. .headImg-item .organizerIcon {
  395. position: absolute;
  396. bottom: -15rpx;
  397. width: 70rpx;
  398. height: 32rpx;
  399. line-height: 32rpx;
  400. background: #f7b21d;
  401. border-radius: 16rpx;
  402. /* border: 2rpx solid rgba(255, 255, 255, 1); */
  403. font-size: 24rpx;
  404. /* font-family: PingFangSC-Medium; */
  405. /* font-weight: 500; */
  406. color: rgba(255, 255, 255, 1);
  407. left: 0;
  408. right: 0;
  409. margin: 0 auto;
  410. text-align: center;
  411. }
  412. .bg-boder {
  413. border: 2px solid #f7b21d;
  414. }
  415. .last-time-box {
  416. width: 100%;
  417. display: flex;
  418. flex-direction: column;
  419. align-items: center;
  420. margin-top:30rpx;
  421. }
  422. .last-time {
  423. display: flex;
  424. flex-direction: row;
  425. align-items: center;
  426. }
  427. .last-time-end {
  428. width: 88rpx;
  429. height: 38rpx;
  430. font-size: 30rpx;
  431. font-weight: 800;
  432. color: #f14025;
  433. margin: 0 15rpx;
  434. }
  435. .left-icon {
  436. width: 80rpx;
  437. height: 20rpx;
  438. }
  439. .right-icon {
  440. width: 80rpx;
  441. height: 20rpx;
  442. }
  443. .last-text {
  444. width: 100%;
  445. text-align: center;
  446. font-size: 30rpx;
  447. font-weight: 800;
  448. color: #f14025;
  449. margin-top: 8rpx;
  450. }
  451. .group-regular-text {
  452. font-size: 30rpx;
  453. font-weight: 800;
  454. color: rgba(12, 10, 10, 1);
  455. width: 100%;
  456. text-align: center;
  457. line-height: 45rpx;
  458. }
  459. .last-member{
  460. margin-top: 17rpx;
  461. }
  462. .invitation-btn {
  463. /* position: absolute;
  464. left: 50%;
  465. top: 55%; */
  466. /* transform: translate(-50%); */
  467. width: 434rpx;
  468. height: 80rpx;
  469. margin: 0 auto 20rpx;
  470. }
  471. .middle-btn{
  472. position: fixed;
  473. top: 300rpx;
  474. left: 0;
  475. right: 0;
  476. margin: 0 auto;
  477. }
  478. .invitation-btn image {
  479. position: absolute;
  480. left: 0;
  481. top: 0;
  482. width: 100%;
  483. height: 100%;
  484. }
  485. .invitation-btn text {
  486. /* position: absolute; */
  487. width: 100%;
  488. height: 100%;
  489. display: inline-block;
  490. text-align: center;
  491. line-height: 80rpx;
  492. z-index: 2;
  493. color: #fff;
  494. background: #FF653A;
  495. border-radius: 56rpx;
  496. font-size: 36rpx;
  497. font-weight: 800;
  498. }
  499. .red-text{
  500. color: #f13e25
  501. }
  502. .rule {
  503. position: fixed;
  504. right: 0;
  505. top: 82%;
  506. width: 84rpx;
  507. height: 88rpx;
  508. z-index: 2;
  509. }
  510. .rule image {
  511. position: absolute;
  512. left: 0;
  513. top: 0;
  514. width: 100%;
  515. height: 100%;
  516. }
  517. .rule text {
  518. position: absolute;
  519. left: 30rpx;
  520. top: 10rpx;
  521. font-size: 24rpx;
  522. color: #fff;
  523. z-index: 2;
  524. }
  525. .explain {
  526. color: #8E8B8C;
  527. width: 100%;
  528. box-sizing: border-box;
  529. text-align: center;
  530. font-size: 24rpx;
  531. line-height: 40rpx;
  532. position: absolute;
  533. bottom: 20rpx;
  534. }
  535. .explain-title{
  536. font-weight: 800;
  537. }
  538. .flower-inline{
  539. width: 33rpx;
  540. height: 38rpx;
  541. display: inline-block;
  542. }