tab1.page.scss 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. ion-card-header {
  2. ion-card-title {
  3. font-size: 1.5em;
  4. font-weight: bold;
  5. }
  6. }
  7. ion-thumbnail {
  8. width: 80px;
  9. height: 80px;
  10. border-radius: 50%;
  11. }
  12. .fit {
  13. width: auto;
  14. }
  15. h2 {
  16. font-size: 1.2em;
  17. margin-bottom: 5px;
  18. }
  19. p {
  20. font-size: 0.9em;
  21. color: #777;
  22. margin-bottom: 3px;
  23. }
  24. .like-wrapper {
  25. --gap: 0.5em;
  26. --radius: 0.35em;
  27. display: flex;
  28. align-items: center; /* 垂直居中 */
  29. justify-content: center; /* 按钮靠右 */
  30. --dot-bg: #212121;
  31. --dot-color: #313131;
  32. --dot-size: 1px;
  33. --dot-space: 11px;
  34. background: linear-gradient(
  35. 90deg,
  36. var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
  37. transparent 1%
  38. )
  39. center / var(--dot-space) var(--dot-space),
  40. linear-gradient(
  41. var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
  42. transparent 1%
  43. )
  44. center / var(--dot-space) var(--dot-space),
  45. var(--dot-color);
  46. border: 0.1em solid #313131;
  47. padding: 0.5em;
  48. border-radius: var(--radius);
  49. box-shadow: 0 0 1em 0.5em rgba(0, 0, 0, 0.1);
  50. cursor: pointer;
  51. max-width: 25%; /* 按钮最大宽度为50% */
  52. margin-left: auto; /* 靠右对齐 */
  53. }
  54. .check[type="checkbox"] {
  55. display: none;
  56. }
  57. .container {
  58. display: flex;
  59. align-items: center;
  60. cursor: pointer;
  61. margin-top: -0.25em;
  62. margin-bottom: -0.25em;
  63. }
  64. .icon {
  65. width: 1.5em;
  66. height: 1.5em;
  67. margin-left: 0.5em;
  68. fill: white;
  69. transition: opacity 0.3s ease-in-out;
  70. }
  71. .icon.active {
  72. display: none;
  73. fill: #f52121;
  74. }
  75. .check[type="checkbox"]:checked + .container .icon.active {
  76. display: inline-block;
  77. animation: wiggle 0.5s ease-in-out;
  78. }
  79. .check[type="checkbox"]:checked + .container .icon.inactive {
  80. display: none;
  81. }
  82. .like-text {
  83. margin-left: 0.5em;
  84. padding: 0.5em;
  85. color: white;
  86. font-family: Arial, sans-serif;
  87. font-weight: bolder;
  88. }
  89. @keyframes wiggle {
  90. 0%,
  91. 100% {
  92. transform: rotate(0deg);
  93. }
  94. 25% {
  95. transform: rotate(-10deg);
  96. }
  97. 50% {
  98. transform: rotate(10deg);
  99. }
  100. 75% {
  101. transform: rotate(-10deg);
  102. }
  103. }
  104. .searchbar {
  105. font-size: 14px;
  106. font-family: arial, sans-serif;
  107. color: #202124;
  108. display: flex;
  109. z-index: 3;
  110. height: 44px;
  111. background: white;
  112. border: 1px solid #dfe1e5;
  113. box-shadow: none;
  114. border-radius: 24px;
  115. margin: 10px auto;
  116. width: auto;
  117. max-width: 90%;
  118. }
  119. .searchbar:hover {
  120. box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
  121. border-color: rgba(223,225,229,0);
  122. }
  123. .searchbar-wrapper {
  124. flex: 1;
  125. display: flex;
  126. padding: 5px 8px 0 14px;
  127. }
  128. .searchbar-left {
  129. font-size: 14px;
  130. font-family: arial, sans-serif;
  131. color: #202124;
  132. display: flex;
  133. align-items: center;
  134. padding-right: 13px;
  135. margin-top: -5px;
  136. }
  137. .search-icon-wrapper {
  138. margin: auto;
  139. }
  140. .search-icon {
  141. margin-top: 3px;
  142. color: #9aa0a6;
  143. height: 20px;
  144. line-height: 20px;
  145. width: 20px;
  146. }
  147. .searchbar-icon {
  148. display: inline-block;
  149. fill: currentColor;
  150. height: 24px;
  151. line-height: 24px;
  152. position: relative;
  153. width: 24px;
  154. }
  155. .searchbar-center {
  156. display: flex;
  157. flex: 1;
  158. flex-wrap: wrap;
  159. }
  160. .searchbar-input-spacer {
  161. color: transparent;
  162. flex: 100%;
  163. white-space: pre;
  164. height: 34px;
  165. font-size: 16px;
  166. }
  167. .searchbar-input {
  168. background-color: transparent;
  169. border: none;
  170. margin: 0;
  171. padding: 0;
  172. color: rgba(0, 0, 0, .87);
  173. word-wrap: break-word;
  174. outline: none;
  175. display: flex;
  176. flex: 100%;
  177. margin-top: -37px;
  178. height: 34px;
  179. font-size: 16px;
  180. max-width: 100%;
  181. width: 100%;
  182. }
  183. .searchbar-right {
  184. display: flex;
  185. flex: 0 0 auto;
  186. margin-top: -5px;
  187. align-items: stretch;
  188. flex-direction: row
  189. }
  190. .searchbar-clear-icon {
  191. margin-right: 12px
  192. }
  193. .voice-search {
  194. flex: 1 0 auto;
  195. display: flex;
  196. cursor: pointer;
  197. align-items: center;
  198. border: 0;
  199. background: transparent;
  200. outline: none;
  201. padding: 0 8px;
  202. width: 2.8em;
  203. }
  204. .card {
  205. //width: 190px;
  206. //height: 254px;
  207. border-radius: 20px;
  208. padding: 5px;
  209. box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  210. background-image: linear-gradient(144deg,#af40ff76, #5a42f37c 50%,#00dbeb7c);
  211. }
  212. .card__content {
  213. background: rgba(5, 6, 45, 0.125);
  214. border-radius: 17px;
  215. width: auto;
  216. height: auto;
  217. }
  218. .card-title {
  219. color: #333;
  220. font-size: 1.5em;
  221. font-weight: 600;
  222. line-height: 2rem;
  223. }
  224. .card1 {
  225. width: 190px;
  226. height: 254px;
  227. background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
  228. border-radius: 20px;
  229. transition: all .3s;
  230. }
  231. .card2 {
  232. width: 190px;
  233. height: 254px;
  234. background-color: #1a1a1a;
  235. //border-radius:;
  236. transition: all .2s;
  237. }
  238. .card2:hover {
  239. transform: scale(0.98);
  240. border-radius: 20px;
  241. }
  242. .card:hover {
  243. box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.30);
  244. }
  245. .price {
  246. font-size: 2em;
  247. font-weight: 600;
  248. line-height: 2rem;
  249. color: rgb(7, 7, 7)
  250. }
  251. .carousel-container {
  252. width: 100%;
  253. overflow: hidden;
  254. }
  255. .carousel {
  256. display: flex;
  257. overflow-x: auto;
  258. scroll-behavior: smooth;
  259. scrollbar-width: none; /* 隐藏滚动条 Firefox */
  260. -ms-overflow-style: none; /* 隐藏滚动条 IE/Edge */
  261. }
  262. .carousel::-webkit-scrollbar {
  263. display: none; /* 隐藏滚动条 Chrome/Safari */
  264. }
  265. .card0 {
  266. flex: 0 0 auto;
  267. width: 200px;
  268. height: 200px;
  269. margin-right: 10px;
  270. background-color: #ffffff;
  271. border-radius: 5px;
  272. //box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  273. }
  274. .card0 img {
  275. display: flex;
  276. justify-content: center;
  277. align-items: center;
  278. }
  279. .swiper {
  280. width: 100%;
  281. padding-top: 50px;
  282. padding-bottom: 50px;
  283. }
  284. .swiper-slide {
  285. background-position: center;
  286. background-size: cover;
  287. width: 300px;
  288. height: 300px;
  289. }
  290. .swiper-slide img {
  291. display: block;
  292. width: 100%;
  293. }
  294. ion-card {
  295. margin: 10px;
  296. }
  297. ion-card img {
  298. width: 100%;
  299. height: 200px;
  300. object-fit: cover;
  301. }
  302. .notification {
  303. display: flex;
  304. flex-direction: column;
  305. isolation: isolate;
  306. position: relative;
  307. width: 22rem;
  308. height: auto;
  309. background: #29292c;
  310. border-radius: 1rem;
  311. //overflow: hidden;
  312. font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  313. font-size: 16px;
  314. --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
  315. --color: #32a6ff
  316. }
  317. .notification img {
  318. width: auto;
  319. height: auto;
  320. border-radius: 1rem 1rem 1rem 1rem; /* 保持与.notification相同的圆角效果 */
  321. position: relative;
  322. z-index: 10;
  323. width: 85%;
  324. height: auto;
  325. // position: absolute; /* 绝对定位,使图片脱离文档流 */
  326. // top: 0; /* 从顶部开始定位 */
  327. left: 1.5rem; /* 从左侧开始定位 */
  328. margin-bottom: 1.5rem;
  329. }
  330. .notification:before {
  331. position: absolute;
  332. content: "";
  333. inset: 0.0625rem;
  334. border-radius: 0.9375rem;
  335. background: #18181b;
  336. z-index: 2
  337. }
  338. .notification:after {
  339. position: absolute;
  340. content: "";
  341. width: 0.25rem;
  342. inset: 0.65rem auto 0.65rem 0.5rem;
  343. border-radius: 0.125rem;
  344. background: var(--gradient);
  345. transition: transform 300ms ease;
  346. z-index: 4;
  347. }
  348. .notification:hover:after {
  349. transform: translateX(0.15rem)
  350. }
  351. .notititle {
  352. color: var(--color);
  353. padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  354. font-weight: 500;
  355. font-size: 1.1rem;
  356. transition: transform 300ms ease;
  357. z-index: 5;
  358. }
  359. .notification:hover .notititle {
  360. transform: translateX(0.15rem)
  361. }
  362. .notibody {
  363. color: #99999d;
  364. padding: 0 1.25rem;
  365. transition: transform 300ms ease;
  366. z-index: 5;
  367. }
  368. .notification:hover .notibody {
  369. transform: translateX(0.25rem)
  370. }
  371. .notiglow,
  372. .notiborderglow {
  373. position: absolute;
  374. width: 20rem;
  375. height: 20rem;
  376. transform: translate(-50%, -50%);
  377. background: radial-gradient(circle closest-side at center, white, transparent);
  378. opacity: 0;
  379. transition: opacity 300ms ease;
  380. }
  381. .notiglow {
  382. z-index: 3;
  383. }
  384. .notiborderglow {
  385. z-index: 1;
  386. }
  387. .notification:hover .notiglow {
  388. opacity: 0.1
  389. }
  390. .notification:hover .notiborderglow {
  391. opacity: 0.1
  392. }
  393. .note {
  394. color: var(--color);
  395. position: fixed;
  396. top: 80%;
  397. left: 50%;
  398. transform: translateX(-50%);
  399. text-align: center;
  400. font-size: 1.5rem;
  401. width: 75%;
  402. }
  403. .container {
  404. position: relative;
  405. margin-top: -100px;
  406. width: 360px;
  407. }
  408. .container > * {
  409. width: 340px;
  410. height: 120px;
  411. border: solid 1px #bebebe;
  412. background-color: #1f1f1f;
  413. position: absolute;
  414. border-radius: 10px;
  415. padding: 10px;
  416. color: #fff;
  417. box-shadow: 0px 8px 20px -10px #bbbbbb;
  418. text-shadow: 0px 0px 5px #fff;
  419. letter-spacing: 1px;
  420. background-image: radial-gradient(circle 160px at 50% 120%, #353535, #1f1f1f);
  421. }
  422. .card5 {
  423. width: 300px;
  424. margin: -20px 0px 0px 20px;
  425. }
  426. .card6 {
  427. width: 320px;
  428. margin: -10px 0px 0px 10px;
  429. }
  430. .card9 {
  431. position: relative;
  432. width: 300px;
  433. height: 200px;
  434. background-color: #f2f2f2;
  435. border-radius: 10px;
  436. display: flex;
  437. align-items: center;
  438. justify-content: center;
  439. overflow: hidden;
  440. perspective: 1000px;
  441. box-shadow: 0 0 0 5px #ffffff80;
  442. transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  443. }
  444. .card9 svg {
  445. width: 48px;
  446. fill: #333;
  447. transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  448. }
  449. .card9:hover {
  450. transform: scale(1.05);
  451. box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  452. }
  453. .card9__content {
  454. position: absolute;
  455. top: 0;
  456. left: 0;
  457. width: 100%;
  458. height: 100%;
  459. padding: 20px;
  460. box-sizing: border-box;
  461. background-color: #f2f2f2;
  462. transform: rotateX(-90deg);
  463. transform-origin: bottom;
  464. transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  465. }
  466. .card9:hover .card9__content {
  467. transform: rotateX(0deg);
  468. }
  469. .card9__title {
  470. margin: 0;
  471. font-size: 24px;
  472. color: #333;
  473. font-weight: 700;
  474. }
  475. .card9:hover svg {
  476. scale: 0;
  477. }
  478. .card9__description {
  479. margin: 10px 0 0;
  480. font-size: 14px;
  481. color: #777;
  482. line-height: 1.4;
  483. }