invite-activity.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989
  1. /* 邀请活动入口页专属样式 */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. -webkit-tap-highlight-color: transparent;
  7. -webkit-touch-callout: none;
  8. -webkit-user-select: none;
  9. user-select: none;
  10. }
  11. html,
  12. body {
  13. background: var(--bex-page-bg-welfare, #0e0e0e);
  14. color: var(--bex-text-primary, #ffffff);
  15. min-height: 100vh;
  16. }
  17. body {
  18. font-family:
  19. "PingFang SC",
  20. -apple-system,
  21. BlinkMacSystemFont,
  22. "Segoe UI",
  23. Roboto,
  24. "Helvetica Neue",
  25. Arial,
  26. sans-serif;
  27. font-size: 14px;
  28. line-height: 1.4;
  29. }
  30. .container {
  31. position: relative;
  32. width: 100%;
  33. min-height: 100vh;
  34. overflow-x: hidden;
  35. padding-bottom: env(safe-area-inset-bottom);
  36. }
  37. .main-view {
  38. position: relative;
  39. z-index: 1;
  40. padding: 12px 16px 90px;
  41. max-width: 410px;
  42. margin: 0 auto;
  43. }
  44. /* ===== 遮罩 ===== */
  45. .loading-overlay,
  46. .error-overlay,
  47. .modal-overlay {
  48. position: fixed;
  49. inset: 0;
  50. z-index: 1000;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. }
  55. .loading-overlay,
  56. .error-overlay {
  57. background: var(--bex-page-bg-welfare, #0e0e0e);
  58. flex-direction: column;
  59. gap: 16px;
  60. }
  61. .loading-spinner {
  62. width: 40px;
  63. height: 40px;
  64. border: 3px solid var(--bex-border, #2c2c2c);
  65. border-top-color: var(--bex-brand, #fd6f23);
  66. border-radius: 50%;
  67. animation: spin 1s linear infinite;
  68. }
  69. @keyframes spin {
  70. to {
  71. transform: rotate(360deg);
  72. }
  73. }
  74. .loading-text,
  75. .error-text {
  76. color: var(--bex-text-secondary, #888888);
  77. font-size: 14px;
  78. }
  79. .error-content {
  80. display: flex;
  81. flex-direction: column;
  82. align-items: center;
  83. gap: 24px;
  84. padding: 32px;
  85. text-align: center;
  86. }
  87. .error-actions {
  88. display: flex;
  89. gap: 12px;
  90. }
  91. .error-retry {
  92. padding: 12px 32px;
  93. background: #ffffff;
  94. border: none;
  95. border-radius: 8px;
  96. color: #121212;
  97. font-size: 14px;
  98. font-weight: 500;
  99. cursor: pointer;
  100. }
  101. .modal-overlay {
  102. background: rgba(0, 0, 0, 0.8);
  103. align-items: flex-end;
  104. padding: 0;
  105. }
  106. .modal-overlay.centered {
  107. align-items: center;
  108. padding: 24px;
  109. }
  110. /* ===== 底部面板 / 弹窗 ===== */
  111. .modal-panel {
  112. width: 100%;
  113. max-height: 80vh;
  114. background: var(--bex-page-bg-welfare, #0e0e0e);
  115. border-radius: 16px 16px 0 0;
  116. display: flex;
  117. flex-direction: column;
  118. overflow: hidden;
  119. animation: slideUp 0.25s ease-out;
  120. }
  121. .panel-drag-handle {
  122. width: 32px;
  123. height: 4px;
  124. background: #2f2f2f;
  125. border-radius: 40px;
  126. margin: 8px auto 0;
  127. flex-shrink: 0;
  128. }
  129. @keyframes slideUp {
  130. from {
  131. transform: translateY(100%);
  132. }
  133. to {
  134. transform: translateY(0);
  135. }
  136. }
  137. @keyframes fadeIn {
  138. from {
  139. opacity: 0;
  140. transform: scale(0.96);
  141. }
  142. to {
  143. opacity: 1;
  144. transform: scale(1);
  145. }
  146. }
  147. /* ===== Hero 卡片 ===== */
  148. .hero-card {
  149. position: relative;
  150. width: 100%;
  151. border-radius: 8px;
  152. padding: 1px;
  153. margin-bottom: 40px;
  154. }
  155. .hero-card-inner {
  156. position: relative;
  157. width: 100%;
  158. border-radius: 7px;
  159. background: rgba(255, 255, 255, 0.02);
  160. border: 2px solid #fd7723;
  161. padding: 24px 16px 0;
  162. padding-bottom: 20px;
  163. }
  164. .hero-bg {
  165. position: absolute;
  166. right: 0;
  167. top: 0;
  168. width: 292px;
  169. height: 194px;
  170. opacity: 1;
  171. border-radius: 0 0 50% 50%;
  172. pointer-events: none;
  173. background: url("/images/unblock-bg-round1.png") no-repeat center center;
  174. background-size: cover;
  175. }
  176. .hero-title {
  177. position: relative;
  178. z-index: 1;
  179. font-size: 15px;
  180. font-weight: 500;
  181. color: var(--bex-text-primary, #ffffff);
  182. text-align: center;
  183. margin-bottom: 4px;
  184. line-height: 21px;
  185. }
  186. .hero-subtitle {
  187. position: relative;
  188. z-index: 1;
  189. font-size: 28px;
  190. font-weight: 600;
  191. color: #fd8523;
  192. text-align: center;
  193. margin-bottom: 16px;
  194. line-height: 39px;
  195. }
  196. .hero-rights {
  197. position: relative;
  198. z-index: 1;
  199. display: flex;
  200. align-items: center;
  201. justify-content: center;
  202. gap: 8px;
  203. margin-bottom: 18px;
  204. }
  205. .hero-rights-line {
  206. width: 88px;
  207. height: 2px;
  208. border-radius: 1px;
  209. background: linear-gradient(
  210. 90deg,
  211. rgba(253, 111, 35, 1),
  212. rgba(253, 111, 35, 0.144)
  213. );
  214. }
  215. .hero-rights-line.left {
  216. transform: scaleX(-1);
  217. }
  218. .hero-rights-text {
  219. font-size: 15px;
  220. font-weight: 500;
  221. line-height: 22px;
  222. color: #fd8523;
  223. }
  224. .hero-stats {
  225. position: relative;
  226. z-index: 1;
  227. display: flex;
  228. justify-content: space-around;
  229. padding: 0 40px;
  230. margin-bottom: 18px;
  231. }
  232. .hero-stat {
  233. display: flex;
  234. flex-direction: column;
  235. align-items: center;
  236. gap: 2px;
  237. }
  238. .hero-stat-value {
  239. font-family:
  240. "HarmonyOS Sans",
  241. "DIN Alternate",
  242. "SF Pro Display",
  243. -apple-system,
  244. BlinkMacSystemFont,
  245. sans-serif;
  246. font-size: 26px;
  247. font-weight: 500;
  248. color: #fd8523;
  249. line-height: 22px;
  250. }
  251. .hero-stat-unit {
  252. font-size: 12px;
  253. font-weight: 500;
  254. color: #fd8523;
  255. margin-left: 2px;
  256. line-height: 17px;
  257. }
  258. .hero-stat-label {
  259. font-size: 11px;
  260. color: var(--bex-text-secondary, #888888);
  261. line-height: 15px;
  262. }
  263. .hero-activate-btn {
  264. position: absolute;
  265. z-index: 10;
  266. bottom: -6px;
  267. left: 50%;
  268. transform: translateX(-50%);
  269. width: 90%;
  270. height: 42px;
  271. border: none;
  272. border-radius: 8px;
  273. background: linear-gradient(
  274. 90deg,
  275. rgba(253, 111, 35, 1) 0%,
  276. rgba(253, 148, 35, 1) 100%
  277. );
  278. color: #ffffff;
  279. font-size: 14px;
  280. font-weight: 500;
  281. cursor: pointer;
  282. display: flex;
  283. align-items: center;
  284. justify-content: center;
  285. margin-top: 4px;
  286. margin-bottom: -16px;
  287. }
  288. .hero-activate-btn:disabled {
  289. background: linear-gradient(
  290. 90deg,
  291. rgb(212, 212, 212) 0%,
  292. rgb(204, 204, 204) 100%
  293. );
  294. color: #000;
  295. cursor: default;
  296. }
  297. /* ===== 收益估算区 ===== */
  298. .commission-section {
  299. position: relative;
  300. width: 100%;
  301. height: 80px;
  302. margin-bottom: 16px;
  303. display: flex;
  304. align-items: center;
  305. background-image: url(/images/group-470833-bg.png);
  306. background-position: center center;
  307. background-repeat: no-repeat;
  308. background-size: 100% 80px;
  309. }
  310. .commission-section .info {
  311. font-size: 10px;
  312. }
  313. .commission-tag-label {
  314. font-size: 10px;
  315. position: absolute;
  316. font-style: normal;
  317. left: 0;
  318. top: 6px;
  319. background: #393939;
  320. width: 108px;
  321. height: 21px;
  322. border-radius: 8px 0 8px 0;
  323. text-align: center;
  324. line-height: 21px;
  325. color: #121212;
  326. overflow: hidden;
  327. text-overflow: ellipsis;
  328. white-space: nowrap;
  329. }
  330. .commission-right .commission-tag-label {
  331. right: 0;
  332. left: auto;
  333. top: 0;
  334. border-radius: 0 8px 0 8px;
  335. background: linear-gradient(90deg, #fd6f23 0%, #fd9423 100%);
  336. }
  337. .commission-left,
  338. .commission-right {
  339. display: flex;
  340. flex-direction: column;
  341. justify-content: space-around;
  342. padding-top: 28px;
  343. padding-bottom: 10px;
  344. align-items: center;
  345. }
  346. .commission-left .info {
  347. color: #888;
  348. }
  349. .commission-left .meny {
  350. font-size: 12px;
  351. font-weight: 500;
  352. color: #fff;
  353. }
  354. .commission-left {
  355. position: relative;
  356. left: 0;
  357. top: 0;
  358. width: 40%;
  359. height: 100%;
  360. }
  361. .commission-right .info {
  362. color: #fd8523;
  363. }
  364. .commission-right .meny {
  365. font-size: 18px;
  366. font-weight: 500;
  367. color: #fd8523;
  368. }
  369. .commission-right {
  370. position: relative;
  371. right: 0;
  372. top: 0;
  373. width: 60%;
  374. height: 100%;
  375. }
  376. /* ===== 好友交易量滑块 ===== */
  377. .volume-section {
  378. width: 100%;
  379. margin-bottom: 30px;
  380. }
  381. .volume-header {
  382. display: flex;
  383. align-items: center;
  384. justify-content: space-between;
  385. margin-bottom: 12px;
  386. }
  387. .volume-title {
  388. font-size: 11px;
  389. width: 70px;
  390. color: var(--bex-text-secondary, #888888);
  391. margin-right: 8px;
  392. }
  393. .volume-tx {
  394. font-size: 11px;
  395. }
  396. .volume-slider-wrap {
  397. display: flex;
  398. align-items: center;
  399. width: 100%;
  400. height: 24px;
  401. }
  402. .volume-box {
  403. position: relative;
  404. flex: 1;
  405. margin: 0 16px;
  406. height: 24px;
  407. cursor: pointer;
  408. display: flex;
  409. align-items: center;
  410. }
  411. .volume-track {
  412. width: 100%;
  413. height: 4px;
  414. border-radius: 2px;
  415. background: #2b2b2b;
  416. position: relative;
  417. overflow: hidden;
  418. }
  419. .volume-progress {
  420. position: absolute;
  421. top: 0;
  422. left: 0;
  423. height: 4px;
  424. border-radius: 2px;
  425. background: linear-gradient(
  426. 90deg,
  427. rgba(253, 111, 35, 1) 0%,
  428. rgba(253, 159, 35, 1) 100%
  429. );
  430. width: 0;
  431. }
  432. .volume-thumb-box {
  433. position: absolute;
  434. top: 50%;
  435. left: 0;
  436. width: 24px;
  437. height: 14px;
  438. margin-top: -7px;
  439. margin-left: -12px;
  440. z-index: 2;
  441. border-radius: 4px;
  442. cursor: pointer;
  443. }
  444. .volume-thumb-box::before {
  445. content: "";
  446. position: absolute;
  447. inset: -2px;
  448. border-radius: 6px;
  449. background: rgba(253, 111, 35, 0.45);
  450. filter: blur(4px);
  451. z-index: -1;
  452. }
  453. .volume-thumb {
  454. display: block;
  455. width: 100%;
  456. height: 100%;
  457. border-radius: 4px;
  458. background: linear-gradient(180deg, rgba(253, 111, 35, 0.5) 0%, #967563 100%);
  459. border: 1px solid #e7e7e7;
  460. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  461. }
  462. .volume-current {
  463. position: absolute;
  464. top: 22px;
  465. left: 0;
  466. font-size: 11px;
  467. font-weight: 500;
  468. color: #fd6f23;
  469. transform: translateX(-50%);
  470. white-space: nowrap;
  471. }
  472. /* ===== 邀请活动列表 ===== */
  473. .activity-list-section {
  474. width: 100%;
  475. margin-bottom: 16px;
  476. }
  477. .activity-list-title {
  478. font-size: 19px;
  479. font-weight: 600;
  480. color: var(--bex-text-primary, #ffffff);
  481. margin-bottom: 18px;
  482. }
  483. .activity-card {
  484. position: relative;
  485. width: 100%;
  486. border-radius: 8px;
  487. margin-bottom: 16px;
  488. overflow: hidden;
  489. min-height: 179px;
  490. display: flex;
  491. flex-direction: column;
  492. justify-content: space-between;
  493. border-radius: 8px;
  494. background: rgba(255, 255, 255, 0.03);
  495. }
  496. .activity-card-bg {
  497. position: absolute;
  498. left: 0;
  499. top: 0;
  500. width: 141px;
  501. height: 153px;
  502. background: url(/images/unblock-bg-left-round.png) no-repeat left center;
  503. background-size: contain;
  504. border-radius: 0 0 100% 0;
  505. pointer-events: none;
  506. }
  507. .activity-card-image {
  508. position: absolute;
  509. right: 24px;
  510. top: 28px;
  511. width: 76px;
  512. height: 82px;
  513. border-radius: 8px;
  514. background-image: url(/images/unblock-right.png);
  515. background-size: cover;
  516. background-position: center center;
  517. background-repeat: no-repeat;
  518. pointer-events: none;
  519. overflow: hidden;
  520. }
  521. .activity-card-title {
  522. position: relative;
  523. z-index: 1;
  524. font-size: 17px;
  525. font-weight: 600;
  526. color: var(--bex-text-primary, #ffffff);
  527. line-height: 24px;
  528. max-width: 174px;
  529. flex: 1;
  530. display: flex;
  531. align-items: center;
  532. margin: 0 24px;
  533. }
  534. .activity-card-footer {
  535. position: relative;
  536. z-index: 1;
  537. display: flex;
  538. align-items: center;
  539. justify-content: space-between;
  540. height: 44px;
  541. padding: 0 24px;
  542. background: #ffffff08;
  543. /* background-color: #FFFFFF08; */
  544. /* margin-top: auto; */
  545. }
  546. .activity-countdown {
  547. display: flex;
  548. align-items: center;
  549. gap: 4px;
  550. }
  551. .activity-countdown-label,
  552. .activity-countdown-unit {
  553. font-size: 10px;
  554. font-weight: 600;
  555. color: var(--bex-text-secondary, #888888);
  556. line-height: 14px;
  557. }
  558. .activity-countdown-days,
  559. .activity-countdown-time {
  560. font-family:
  561. "HarmonyOS Sans",
  562. "DIN Alternate",
  563. "SF Pro Display",
  564. -apple-system,
  565. BlinkMacSystemFont,
  566. sans-serif;
  567. font-size: 16px;
  568. font-weight: 700;
  569. color: var(--bex-text-primary, #ffffff);
  570. line-height: 1;
  571. }
  572. .activity-btn {
  573. height: 24px;
  574. padding: 0 12px;
  575. border: none;
  576. border-radius: 6px;
  577. background: var(--bex-text-primary, #ffffff);
  578. color: #121212;
  579. font-size: 11px;
  580. font-weight: 500;
  581. cursor: pointer;
  582. display: flex;
  583. align-items: center;
  584. line-height: 1;
  585. gap: 4px;
  586. }
  587. .activity-btn:disabled {
  588. opacity: 0.5;
  589. cursor: not-allowed;
  590. }
  591. .activity-empty {
  592. padding: 48px 16px;
  593. text-align: center;
  594. color: var(--bex-text-secondary, #888888);
  595. font-size: 12px;
  596. }
  597. /* ===== 底部邀请链接区 ===== */
  598. .invite-link-section {
  599. display: flex;
  600. align-items: center;
  601. gap: 10px;
  602. border-top: 1px solid #171717;
  603. position: fixed;
  604. bottom: -2px;
  605. width: 100%;
  606. left: 0;
  607. z-index: 100;
  608. padding: 4px 16px 26px;
  609. background: #0e0e0e;
  610. height: 80px;
  611. transform: translateY(100%);
  612. transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  613. }
  614. .invite-link-section.visible {
  615. transform: translateY(0);
  616. }
  617. .invite-link-card {
  618. flex: 1;
  619. display: flex;
  620. align-items: center;
  621. justify-content: space-between;
  622. background: #161616;
  623. border-radius: 8px;
  624. padding: 10px 12px;
  625. }
  626. .invite-link-info {
  627. flex: 1;
  628. min-width: 0;
  629. display: flex;
  630. align-items: center;
  631. }
  632. .invite-link-label {
  633. font-size: 14px;
  634. font-weight: 500;
  635. color: var(--bex-text-primary, #ffffff);
  636. min-width: 80px;
  637. }
  638. .invite-link-url {
  639. max-width: 158px;
  640. font-size: 12px;
  641. color: var(--bex-text-secondary, #888888);
  642. overflow: hidden;
  643. text-overflow: ellipsis;
  644. white-space: nowrap;
  645. }
  646. .invite-link-actions {
  647. display: flex;
  648. align-items: center;
  649. gap: 12px;
  650. flex-shrink: 0;
  651. }
  652. .invite-link-copy-btn,
  653. .invite-link-share-btn {
  654. /* width: 42px; */
  655. /* height: 42px; */
  656. cursor: pointer;
  657. display: flex;
  658. align-items: center;
  659. justify-content: center;
  660. padding: 0;
  661. }
  662. .invite-link-share-btn {
  663. background: #161616;
  664. border-radius: 8px;
  665. padding: 12px;
  666. }
  667. .invite-link-copy-btn svg,
  668. .invite-link-share-btn svg {
  669. width: 18px;
  670. height: 18px;
  671. }
  672. /* ===== 激活弹窗 ===== */
  673. .activate-modal {
  674. width: 100%;
  675. max-width: 300px;
  676. background: #0f0f0f;
  677. border: 1px solid #191919;
  678. border-radius: 8px;
  679. padding: 20px 16px 16px;
  680. animation: fadeIn 0.2s ease-out;
  681. }
  682. .activate-modal-title {
  683. font-size: 14px;
  684. font-weight: 600;
  685. color: var(--bex-text-primary, #ffffff);
  686. margin-bottom: 20px;
  687. }
  688. .activate-modal-row {
  689. display: flex;
  690. align-items: center;
  691. justify-content: space-between;
  692. margin-bottom: 20px;
  693. cursor: pointer;
  694. }
  695. .activate-modal-row-text {
  696. font-size: 14px;
  697. font-weight: 500;
  698. color: var(--bex-text-primary, #ffffff);
  699. }
  700. .activate-modal-row-action {
  701. display: flex;
  702. align-items: center;
  703. gap: 4px;
  704. font-size: 14px;
  705. font-weight: 500;
  706. color: var(--bex-brand, #fd6f23);
  707. }
  708. .activate-modal-btn {
  709. width: 100%;
  710. height: 42px;
  711. border: none;
  712. border-radius: 8px;
  713. background: linear-gradient(
  714. 90deg,
  715. rgba(253, 111, 35, 1) 0%,
  716. rgba(253, 148, 35, 1) 100%
  717. );
  718. color: #ffffff;
  719. font-size: 14px;
  720. font-weight: 500;
  721. cursor: pointer;
  722. margin-bottom: 12px;
  723. }
  724. .activate-modal-note {
  725. font-size: 9px;
  726. line-height: 1.5;
  727. color: var(--bex-text-secondary, #888888);
  728. }
  729. /* ===== Toast ===== */
  730. .toast {
  731. position: fixed;
  732. left: 50%;
  733. bottom: 80px;
  734. transform: translateX(-50%);
  735. background: rgba(0, 0, 0, 0.85);
  736. color: #ffffff;
  737. padding: 10px 20px;
  738. border-radius: 20px;
  739. font-size: 14px;
  740. z-index: 2000;
  741. opacity: 0;
  742. transition: opacity 0.3s;
  743. pointer-events: none;
  744. }
  745. .toast.show {
  746. opacity: 1;
  747. }
  748. /* ===== 浅色主题 ===== */
  749. html.theme-light .container {
  750. background: #ffffff;
  751. }
  752. html.theme-light .commission-section {
  753. background-image: url(/images/group-470833-bg-light.png);
  754. }
  755. html.theme-light .hero-card-inner {
  756. background: rgba(255, 255, 255, 0.6);
  757. }
  758. html.theme-light .hero-bg {
  759. opacity: 0.8;
  760. }
  761. html.theme-light .activity-card-footer {
  762. background-color: transparent;
  763. border-top: #e8e8e8 1px solid;
  764. }
  765. html.theme-light .hero-title {
  766. color: #121212;
  767. }
  768. html.theme-light .hero-subtitle {
  769. color: #fd8523;
  770. }
  771. html.theme-light .hero-rights-text {
  772. color: #fd8523;
  773. }
  774. html.theme-light .hero-stat-value,
  775. html.theme-light .hero-stat-unit {
  776. color: #fd8523;
  777. }
  778. html.theme-light .hero-activate-btn {
  779. color: #ffffff;
  780. }
  781. html.theme-light .hero-stat-label,
  782. html.theme-light .volume-title,
  783. html.theme-light .volume-minmax,
  784. html.theme-light .commission-label {
  785. color: #888888;
  786. }
  787. html.theme-light .commission-status-card.inactive {
  788. background: #f3f3f3;
  789. }
  790. html.theme-light .commission-status-card.inactive .commission-status-tag {
  791. background: #e8e8e8;
  792. color: #121212;
  793. }
  794. html.theme-light .commission-status-card.active {
  795. background: linear-gradient(
  796. 180deg,
  797. rgba(255, 245, 235, 1) 0%,
  798. rgba(255, 235, 220, 1) 100%
  799. );
  800. }
  801. html.theme-light .commission-left .meny {
  802. color: #121212;
  803. }
  804. html.theme-light .volume-track {
  805. background: #e7e7e7;
  806. }
  807. html.theme-light .commission-left .commission-tag-label {
  808. background: #e4cfbe;
  809. }
  810. html.theme-light .commission-right .meny,
  811. html.theme-light .commission-right .info {
  812. color: #93471e;
  813. }
  814. html.theme-light .commission-right .commission-tag-label {
  815. background: linear-gradient(90deg, #ff965f 0%, #ffb36c 100%);
  816. }
  817. html.theme-light .commission-watermark span {
  818. color: rgba(18, 18, 18, 0.03);
  819. }
  820. html.theme-light .activity-card {
  821. background: #ffffff08;
  822. border: 1px solid #e8e8e8;
  823. }
  824. html.theme-light .activity-list-title,
  825. html.theme-light .activity-card-title,
  826. html.theme-light .activity-countdown-days,
  827. html.theme-light .activity-countdown-time {
  828. color: #121212;
  829. }
  830. html.theme-light .activity-btn {
  831. background: #121212;
  832. color: #ffffff;
  833. }
  834. html.theme-light .invite-link-section {
  835. border-top-color: #efefef;
  836. background: #ffffff;
  837. }
  838. html.theme-light .invite-link-card,
  839. html.theme-light .invite-link-share-btn {
  840. background: #f3f3f3;
  841. }
  842. html.theme-light .invite-link-label {
  843. color: #121212;
  844. }
  845. html.theme-light .invite-link-url {
  846. color: #888888;
  847. }
  848. html.theme-light .activate-modal {
  849. background: #ffffff;
  850. border-color: #e8e8e8;
  851. }
  852. html.theme-light .activate-modal-title,
  853. html.theme-light .activate-modal-row-text {
  854. color: #121212;
  855. }
  856. html.theme-light .error-retry {
  857. background: #121212;
  858. color: #ffffff;
  859. }
  860. html.theme-light .loading-overlay,
  861. html.theme-light .error-overlay {
  862. background: #ffffff;
  863. }
  864. html.theme-light .modal-panel {
  865. background: #ffffff;
  866. }
  867. html.theme-light .activate-modal-btn {
  868. color: #121212;
  869. }
  870. html.theme-light .panel-drag-handle {
  871. background: #e6e6e6;
  872. }