another-gallery.html 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="description"
  7. content="Explore our extensive gallery of coloring pages created by talented artists. Download and color beautiful designs for free!">
  8. <title>Gallery - Art Color</title>
  9. <style>
  10. :root {
  11. --primary-color: #ff6b6b;
  12. --secondary-color: #4ecdc4;
  13. --accent-color: #ffd166;
  14. --background-color: #f9f9f9;
  15. --text-color: #333;
  16. --light-text: #666;
  17. }
  18. * {
  19. margin: 0;
  20. padding: 0;
  21. box-sizing: border-box;
  22. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  23. }
  24. body {
  25. background-color: var(--background-color);
  26. color: var(--text-color);
  27. line-height: 1.6;
  28. }
  29. .container {
  30. max-width: 1200px;
  31. margin: 0 auto;
  32. padding: 0 20px;
  33. }
  34. /* 导航栏 */
  35. .navbar {
  36. background-color: white;
  37. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  38. padding: 15px 0;
  39. position: sticky;
  40. top: 0;
  41. z-index: 100;
  42. }
  43. .navbar-content {
  44. display: flex;
  45. justify-content: space-between;
  46. align-items: center;
  47. }
  48. .nav-logo {
  49. display: flex;
  50. align-items: center;
  51. }
  52. .nav-logo img {
  53. width: 40px;
  54. height: 40px;
  55. margin-right: 10px;
  56. }
  57. .nav-logo span {
  58. font-size: 1.2rem;
  59. font-weight: 700;
  60. color: var(--primary-color);
  61. }
  62. .nav-links {
  63. display: flex;
  64. gap: 30px;
  65. }
  66. .nav-links a {
  67. color: var(--text-color);
  68. text-decoration: none;
  69. font-weight: 500;
  70. transition: color 0.3s ease;
  71. }
  72. .nav-links a:hover,
  73. .nav-links a.active {
  74. color: var(--primary-color);
  75. }
  76. .nav-cta {
  77. display: flex;
  78. gap: 15px;
  79. }
  80. .btn {
  81. padding: 8px 16px;
  82. border-radius: 5px;
  83. text-decoration: none;
  84. font-weight: 500;
  85. transition: all 0.3s ease;
  86. }
  87. .btn-primary {
  88. background-color: var(--primary-color);
  89. color: white;
  90. }
  91. .btn-primary:hover {
  92. background-color: #ff5252;
  93. transform: translateY(-2px);
  94. }
  95. .btn-secondary {
  96. background-color: white;
  97. color: var(--primary-color);
  98. border: 1px solid var(--primary-color);
  99. }
  100. .btn-secondary:hover {
  101. background-color: #fff5f5;
  102. transform: translateY(-2px);
  103. }
  104. /* 画廊页面头部 */
  105. .gallery-header {
  106. background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  107. color: white;
  108. padding: 60px 0;
  109. text-align: center;
  110. margin-bottom: 40px;
  111. }
  112. .gallery-title {
  113. font-size: 2.5rem;
  114. font-weight: 700;
  115. margin-bottom: 10px;
  116. }
  117. .gallery-subtitle {
  118. font-size: 1.2rem;
  119. max-width: 800px;
  120. margin: 0 auto;
  121. }
  122. /* 分类筛选 */
  123. .gallery-filters {
  124. margin-bottom: 40px;
  125. text-align: center;
  126. }
  127. .filter-buttons {
  128. display: inline-flex;
  129. flex-wrap: wrap;
  130. justify-content: center;
  131. gap: 10px;
  132. margin-bottom: 20px;
  133. }
  134. .filter-btn {
  135. padding: 8px 20px;
  136. background-color: white;
  137. border-radius: 20px;
  138. border: 1px solid #eee;
  139. cursor: pointer;
  140. transition: all 0.3s ease;
  141. font-weight: 500;
  142. }
  143. .filter-btn:hover,
  144. .filter-btn.active {
  145. background-color: var(--primary-color);
  146. color: white;
  147. border-color: var(--primary-color);
  148. }
  149. .search-bar {
  150. max-width: 500px;
  151. margin: 0 auto;
  152. position: relative;
  153. }
  154. .search-bar input {
  155. width: 100%;
  156. padding: 12px 40px;
  157. border-radius: 30px;
  158. border: 1px solid #eee;
  159. outline: none;
  160. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  161. }
  162. .search-bar i {
  163. position: absolute;
  164. left: 15px;
  165. top: 50%;
  166. transform: translateY(-50%);
  167. color: var(--light-text);
  168. }
  169. /* 画廊网格 */
  170. .gallery-grid {
  171. display: grid;
  172. grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  173. gap: 30px;
  174. margin-bottom: 60px;
  175. }
  176. .gallery-item {
  177. background-color: white;
  178. border-radius: 15px;
  179. overflow: hidden;
  180. box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  181. transition: transform 0.3s ease;
  182. }
  183. .gallery-item:hover {
  184. transform: translateY(-5px);
  185. }
  186. .item-image {
  187. height: 350px;
  188. overflow: hidden;
  189. position: relative;
  190. }
  191. .item-image img {
  192. width: 100%;
  193. height: 100%;
  194. object-fit: cover;
  195. transition: transform 0.5s ease;
  196. }
  197. .gallery-item:hover .item-image img {
  198. transform: scale(1.05);
  199. }
  200. .item-overlay {
  201. position: absolute;
  202. bottom: 0;
  203. left: 0;
  204. width: 100%;
  205. background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  206. padding: 20px;
  207. opacity: 0;
  208. transition: opacity 0.3s ease;
  209. display: flex;
  210. justify-content: space-between;
  211. align-items: center;
  212. }
  213. .gallery-item:hover .item-overlay {
  214. opacity: 1;
  215. }
  216. .overlay-btn {
  217. background-color: white;
  218. color: var(--primary-color);
  219. padding: 8px 12px;
  220. border-radius: 5px;
  221. font-weight: 500;
  222. text-decoration: none;
  223. transition: background-color 0.3s ease;
  224. }
  225. .overlay-btn:hover {
  226. background-color: #f8f8f8;
  227. }
  228. .item-info {
  229. padding: 20px;
  230. }
  231. .item-title {
  232. font-size: 1.2rem;
  233. font-weight: 600;
  234. margin-bottom: 5px;
  235. }
  236. .item-meta {
  237. display: flex;
  238. justify-content: space-between;
  239. align-items: center;
  240. color: var(--light-text);
  241. font-size: 0.9rem;
  242. }
  243. .item-author {
  244. display: flex;
  245. align-items: center;
  246. }
  247. .author-avatar {
  248. width: 30px;
  249. height: 30px;
  250. border-radius: 50%;
  251. overflow: hidden;
  252. margin-right: 10px;
  253. }
  254. .author-avatar img {
  255. width: 100%;
  256. height: 100%;
  257. object-fit: cover;
  258. }
  259. /* 设计师展示区 */
  260. .designers-section {
  261. background-color: white;
  262. padding: 80px 0;
  263. }
  264. .designers-header {
  265. text-align: center;
  266. margin-bottom: 60px;
  267. }
  268. .designers-title {
  269. font-size: 2rem;
  270. color: var(--secondary-color);
  271. margin-bottom: 10px;
  272. }
  273. .designers-subtitle {
  274. max-width: 600px;
  275. margin: 0 auto;
  276. color: var(--light-text);
  277. }
  278. .designers-grid {
  279. display: grid;
  280. grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  281. gap: 40px;
  282. }
  283. .designer-card {
  284. text-align: center;
  285. transition: transform 0.3s ease;
  286. }
  287. .designer-card:hover {
  288. transform: translateY(-8px);
  289. }
  290. .designer-avatar {
  291. width: 140px;
  292. height: 140px;
  293. margin: 0 auto 20px;
  294. border-radius: 50%;
  295. overflow: hidden;
  296. box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  297. position: relative;
  298. }
  299. .designer-avatar img {
  300. width: 100%;
  301. height: 100%;
  302. object-fit: cover;
  303. transition: transform 0.5s ease;
  304. }
  305. .designer-card:hover .designer-avatar img {
  306. transform: scale(1.05);
  307. }
  308. .designer-avatar::after {
  309. content: '';
  310. position: absolute;
  311. bottom: 0;
  312. left: 0;
  313. width: 100%;
  314. height: 40%;
  315. background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  316. opacity: 0;
  317. transition: opacity 0.3s ease;
  318. }
  319. .designer-card:hover .designer-avatar::after {
  320. opacity: 1;
  321. }
  322. .designer-name {
  323. font-size: 1.3rem;
  324. font-weight: 600;
  325. color: var(--text-color);
  326. margin-bottom: 5px;
  327. }
  328. .designer-stats {
  329. display: flex;
  330. justify-content: center;
  331. gap: 20px;
  332. margin-bottom: 15px;
  333. }
  334. .stat-item {
  335. text-align: center;
  336. }
  337. .stat-number {
  338. font-size: 1.2rem;
  339. font-weight: 700;
  340. color: var(--primary-color);
  341. }
  342. .stat-label {
  343. font-size: 0.9rem;
  344. color: var(--light-text);
  345. }
  346. .designer-cta {
  347. display: inline-block;
  348. padding: 8px 20px;
  349. border: 1px solid var(--primary-color);
  350. color: var(--primary-color);
  351. border-radius: 20px;
  352. text-decoration: none;
  353. font-weight: 500;
  354. transition: all 0.3s ease;
  355. }
  356. .designer-cta:hover {
  357. background-color: var(--primary-color);
  358. color: white;
  359. }
  360. /* 分页 */
  361. .pagination {
  362. display: flex;
  363. justify-content: center;
  364. margin: 40px 0;
  365. }
  366. .pagination ul {
  367. list-style: none;
  368. display: flex;
  369. gap: 10px;
  370. }
  371. .pagination li {
  372. width: 40px;
  373. height: 40px;
  374. display: flex;
  375. justify-content: center;
  376. align-items: center;
  377. border-radius: 50%;
  378. cursor: pointer;
  379. transition: all 0.3s ease;
  380. }
  381. .pagination li:hover,
  382. .pagination li.active {
  383. background-color: var(--primary-color);
  384. color: white;
  385. }
  386. /* 页脚 */
  387. footer {
  388. background-color: var(--text-color);
  389. color: white;
  390. padding: 60px 0;
  391. }
  392. .footer-content {
  393. display: grid;
  394. grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  395. gap: 40px;
  396. }
  397. .footer-section h3 {
  398. font-size: 1.2rem;
  399. margin-bottom: 20px;
  400. }
  401. .footer-section p {
  402. color: rgba(255, 255, 255, 0.7);
  403. margin-bottom: 20px;
  404. }
  405. .footer-links {
  406. list-style: none;
  407. }
  408. .footer-links li {
  409. margin-bottom: 10px;
  410. }
  411. .footer-links a {
  412. color: rgba(255, 255, 255, 0.7);
  413. text-decoration: none;
  414. transition: color 0.3s ease;
  415. }
  416. .footer-links a:hover {
  417. color: white;
  418. }
  419. .social-links {
  420. display: flex;
  421. gap: 15px;
  422. }
  423. .social-links a {
  424. width: 40px;
  425. height: 40px;
  426. border-radius: 50%;
  427. background-color: rgba(255, 255, 255, 0.1);
  428. display: flex;
  429. justify-content: center;
  430. align-items: center;
  431. text-decoration: none;
  432. color: white;
  433. transition: all 0.3s ease;
  434. }
  435. .social-links a:hover {
  436. background-color: var(--primary-color);
  437. }
  438. .copyright {
  439. text-align: center;
  440. margin-top: 40px;
  441. padding-top: 20px;
  442. border-top: 1px solid rgba(255, 255, 255, 0.1);
  443. }
  444. /* 响应式 */
  445. @media (max-width: 768px) {
  446. .navbar-content {
  447. flex-direction: column;
  448. gap: 20px;
  449. }
  450. .nav-links {
  451. flex-wrap: wrap;
  452. justify-content: center;
  453. }
  454. .gallery-title {
  455. font-size: 2rem;
  456. }
  457. .gallery-subtitle {
  458. font-size: 1rem;
  459. }
  460. .filter-buttons {
  461. padding: 0 10px;
  462. }
  463. .designers-title {
  464. font-size: 1.8rem;
  465. }
  466. .designers-grid {
  467. grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  468. }
  469. .footer-content {
  470. text-align: center;
  471. }
  472. .social-links {
  473. justify-content: center;
  474. }
  475. }
  476. </style>
  477. </head>
  478. <body>
  479. <!-- 导航栏 -->
  480. <nav class="navbar">
  481. <div class="container navbar-content">
  482. <div class="nav-logo">
  483. <img src="https://picsum.photos/40/40?random=100" alt="Art Color Logo">
  484. <span>Art Color</span>
  485. </div>
  486. <div class="nav-links">
  487. <a href="#" class="active">Home</a>
  488. <a href="#">Gallery</a>
  489. <a href="#">Designers</a>
  490. <a href="#">About</a>
  491. <a href="#">Contact</a>
  492. </div>
  493. <div class="nav-cta">
  494. <a href="#" class="btn btn-secondary">Login</a>
  495. <a href="#" class="btn btn-primary">Sign Up</a>
  496. </div>
  497. </div>
  498. </nav>
  499. <!-- 画廊页面头部 -->
  500. <header class="gallery-header">
  501. <div class="container">
  502. <h1 class="gallery-title">Explore Our Gallery</h1>
  503. <p class="gallery-subtitle">Discover thousands of beautiful coloring pages created by talented artists from
  504. around the world.</p>
  505. </div>
  506. </header>
  507. <!-- 分类筛选 -->
  508. <section class="gallery-filters container">
  509. <div class="filter-buttons">
  510. <button class="filter-btn active">All</button>
  511. <button class="filter-btn">Animals</button>
  512. <button class="filter-btn">Nature</button>
  513. <button class="filter-btn">Mandala</button>
  514. <button class="filter-btn">Fantasy</button>
  515. <button class="filter-btn">Abstract</button>
  516. <button class="filter-btn">Floral</button>
  517. </div>
  518. <div class="search-bar">
  519. <i class="fa fa-search"></i>
  520. <input type="text" placeholder="Search for coloring pages...">
  521. </div>
  522. </section>
  523. <!-- 画廊网格 -->
  524. <section class="gallery-grid container">
  525. <!-- 画廊项目1 -->
  526. <div class="gallery-item">
  527. <div class="item-image">
  528. <img src="https://picsum.photos/600/800?random=1" alt="Coloring Page - Forest">
  529. <div class="item-overlay">
  530. <a href="#" class="overlay-btn">Download</a>
  531. <div class="item-likes">
  532. <i class="fa fa-heart"></i> 142
  533. </div>
  534. </div>
  535. </div>
  536. <div class="item-info">
  537. <h3 class="item-title">Enchanted Forest</h3>
  538. <div class="item-meta">
  539. <div class="item-author">
  540. <div class="author-avatar">
  541. <img src="https://picsum.photos/30/30?random=30" alt="Emily Wilson">
  542. </div>
  543. <span>Emily Wilson</span>
  544. </div>
  545. <span>3 days ago</span>
  546. </div>
  547. </div>
  548. </div>
  549. <!-- 画廊项目2 -->
  550. <div class="gallery-item">
  551. <div class="item-image">
  552. <img src="https://picsum.photos/600/800?random=2" alt="Coloring Page - Ocean">
  553. <div class="item-overlay">
  554. <a href="#" class="overlay-btn">Download</a>
  555. <div class="item-likes">
  556. <i class="fa fa-heart"></i> 98
  557. </div>
  558. </div>
  559. </div>
  560. <div class="item-info">
  561. <h3 class="item-title">Mystic Ocean</h3>
  562. <div class="item-meta">
  563. <div class="item-author">
  564. <div class="author-avatar">
  565. <img src="https://picsum.photos/30/30?random=31" alt="Michael Chen">
  566. </div>
  567. <span>Michael Chen</span>
  568. </div>
  569. <span>1 week ago</span>
  570. </div>
  571. </div>
  572. </div>
  573. <!-- 画廊项目3 -->
  574. <div class="gallery-item">
  575. <div class="item-image">
  576. <img src="https://picsum.photos/600/800?random=3" alt="Coloring Page - Mandala">
  577. <div class="item-overlay">
  578. <a href="#" class="overlay-btn">Download</a>
  579. <div class="item-likes">
  580. <i class="fa fa-heart"></i> 215
  581. </div>
  582. </div>
  583. </div>
  584. <div class="item-info">
  585. <h3 class="item-title">Cosmic Mandala</h3>
  586. <div class="item-meta">
  587. <div class="item-author">
  588. <div class="author-avatar">
  589. <img src="https://picsum.photos/30/30?random=32" alt="Sophia Rodriguez">
  590. </div>
  591. <span>Sophia Rodriguez</span>
  592. </div>
  593. <span>2 weeks ago</span>
  594. </div>
  595. </div>
  596. </div>
  597. <!-- 画廊项目4 -->
  598. <div class="gallery-item">
  599. <div class="item-image">
  600. <img src="https://picsum.photos/600/800?random=4" alt="Coloring Page - Animals">
  601. <div class="item-overlay">
  602. <a href="#" class="overlay-btn">Download</a>
  603. <div class="item-likes">
  604. <i class="fa fa-heart"></i> 176
  605. </div>
  606. </div>
  607. </div>
  608. <div class="item-info">
  609. <h3 class="item-title">Wild Safari</h3>
  610. <div class="item-meta">
  611. <div class="item-author">
  612. <div class="author-avatar">
  613. <img src="https://picsum.photos/30/30?random=33" alt="Daniel Kim">
  614. </div>
  615. <span>Daniel Kim</span>
  616. </div>
  617. <span>3 weeks ago</span>
  618. </div>
  619. </div>
  620. </div>
  621. <!-- 画廊项目5 -->
  622. <div class="gallery-item">
  623. <div class="item-image">
  624. <img src="https://picsum.photos/600/800?random=5" alt="Coloring Page - Fantasy">
  625. <div class="item-overlay">
  626. <a href="#" class="overlay-btn">Download</a>
  627. <div class="item-likes">
  628. <i class="fa fa-heart"></i> 132
  629. </div>
  630. </div>
  631. </div>
  632. <div class="item-info">
  633. <h3 class="item-title">Dragon's Lair</h3>
  634. <div class="item-meta">
  635. <div class="item-author">
  636. <div class="author-avatar">
  637. <img src="https://picsum.photos/30/30?random=34" alt="Olivia Garcia">
  638. </div>
  639. <span>Olivia Garcia</span>
  640. </div>
  641. <span>1 month ago</span>
  642. </div>
  643. </div>
  644. </div>
  645. <!-- 画廊项目6 -->
  646. <div class="gallery-item">
  647. <div class="item-image">
  648. <img src="https://picsum.photos/600/800?random=6" alt="Coloring Page - Flowers">
  649. <div class="item-overlay">
  650. <a href="#" class="overlay-btn">Download</a>
  651. <div class="item-likes">
  652. <i class="fa fa-heart"></i> 159
  653. </div>
  654. </div>
  655. </div>
  656. <div class="item-info">
  657. <h3 class="item-title">Floral Paradise</h3>
  658. <div class="item-meta">
  659. <div class="item-author">
  660. <div class="author-avatar">
  661. <img src="https://picsum.photos/30/30?random=35" alt="Ethan Brown">
  662. </div>
  663. <span>Ethan Brown</span>
  664. </div>
  665. <span>1 month ago</span>
  666. </div>
  667. </div>
  668. </div>
  669. </section>
  670. <!-- 分页 -->
  671. <div class="pagination container">
  672. <ul>
  673. <li><i class="fa fa-angle-left"></i></li>
  674. <li class="active">1</li>
  675. <li>2</li>
  676. <li>3</li>
  677. <li>4</li>
  678. <li>5</li>
  679. <li><i class="fa fa-angle-right"></i></li>
  680. </ul>
  681. </div>
  682. <!-- 设计师展示区 -->
  683. <section class="designers-section">
  684. <div class="container">
  685. <div class="designers-header">
  686. <h2 class="designers-title">Meet Our Talented Designers</h2>
  687. <p class="designers-subtitle">These creative artists are behind our beautiful collection of coloring
  688. pages. Each brings their unique style and vision.</p>
  689. </div>
  690. <div class="designers-grid">
  691. <!-- 设计师1 -->
  692. <div class="designer-card">
  693. <div class="designer-avatar">
  694. <img src="https://picsum.photos/200/200?random=30" alt="Emily Wilson">
  695. </div>
  696. <h3 class="designer-name">Emily Wilson</h3>
  697. <div class="designer-stats">
  698. <div class="stat-item">
  699. <div class="stat-number">142</div>
  700. <div class="stat-label">Artworks</div>
  701. </div>
  702. <div class="stat-item">
  703. <div class="stat-number">4.9</div>
  704. <div class="stat-label">Rating</div>
  705. </div>
  706. </div>
  707. <a href="#" class="designer-cta">View Profile</a>
  708. </div>
  709. <!-- 设计师2 -->
  710. <div class="designer-card">
  711. <div class="designer-avatar">
  712. <img src="https://picsum.photos/200/200?random=31" alt="Michael Chen">
  713. </div>
  714. <h3 class="designer-name">Michael Chen</h3>
  715. <div class="designer-stats">
  716. <div class="stat-item">
  717. <div class="stat-number">98</div>
  718. <div class="stat-label">Artworks</div>
  719. </div>
  720. <div class="stat-item">
  721. <div class="stat-number">4.7</div>
  722. <div class="stat-label">Rating</div>
  723. </div>
  724. </div>
  725. <a href="#" class="designer-cta">View Profile</a>
  726. </div>
  727. <!-- 设计师3 -->
  728. <div class="designer-card">
  729. <div class="designer-avatar">
  730. <img src="https://picsum.photos/200/200?random=32" alt="Sophia Rodriguez">
  731. </div>
  732. <h3 class="designer-name">Sophia Rodriguez</h3>
  733. <div class="designer-stats">
  734. <div class="stat-item">
  735. <div class="stat-number">115</div>
  736. <div class="stat-label">Artworks</div>
  737. </div>
  738. <div class="stat-item">
  739. <div class="stat-number">4.8</div>
  740. <div class="stat-label">Rating</div>
  741. </div>
  742. </div>
  743. <a href="#" class="designer-cta">View Profile</a>
  744. </div>
  745. <!-- 设计师4 -->
  746. <div class="designer-card">
  747. <div class="designer-avatar">
  748. <img src="https://picsum.photos/200/200?random=33" alt="Daniel Kim">
  749. </div>
  750. <h3 class="designer-name">Daniel Kim</h3>
  751. <div class="designer-stats">
  752. <div class="stat-item">
  753. <div class="stat-number">87</div>
  754. <div class="stat-label">Artworks</div>
  755. </div>
  756. <div class="stat-item">
  757. <div class="stat-number">4.6</div>
  758. <div class="stat-label">Rating</div>
  759. </div>
  760. </div>
  761. <a href="#" class="designer-cta">View Profile</a>
  762. </div>
  763. <!-- 设计师5 -->
  764. <div class="designer-card">
  765. <div class="designer-avatar">
  766. <img src="https://picsum.photos/200/200?random=34" alt="Olivia Garcia">
  767. </div>
  768. <h3 class="designer-name">Olivia Garcia</h3>
  769. <div class="designer-stats">
  770. <div class="stat-item">
  771. <div class="stat-number">123</div>
  772. <div class="stat-label">Artworks</div>
  773. </div>
  774. <div class="stat-item">
  775. <div class="stat-number">4.9</div>
  776. <div class="stat-label">Rating</div>
  777. </div>
  778. </div>
  779. <a href="#" class="designer-cta">View Profile</a>
  780. </div>
  781. <!-- 设计师6 -->
  782. <div class="designer-card">
  783. <div class="designer-avatar">
  784. <img src="https://picsum.photos/200/200?random=35" alt="Ethan Brown">
  785. </div>
  786. <h3 class="designer-name">Ethan Brown</h3>
  787. <div class="designer-stats">
  788. <div class="stat-item">
  789. <div class="stat-number">104</div>
  790. <div class="stat-label">Artworks</div>
  791. </div>
  792. <div class="stat-item">
  793. <div class="stat-number">4.7</div>
  794. <div class="stat-label">Rating</div>
  795. </div>
  796. </div>
  797. <a href="#" class="designer-cta">View Profile</a>
  798. </div>
  799. </div>
  800. </div>
  801. </section>
  802. <!-- 页脚 -->
  803. <footer>
  804. <div class="container footer-content">
  805. <div class="footer-section">
  806. <h3>About Art Color</h3>
  807. <p>Art Color is the best app for adults and kids who love to color. With thousands of beautiful designs
  808. and daily updates, there's always something new to color.</p>
  809. <div class="social-links">
  810. <a href="#" class="fa fa-facebook"></a>
  811. <a href="#" class="fa fa-twitter"></a>
  812. <a href="#" class="fa fa-instagram"></a>
  813. <a href="#" class="fa fa-pinterest"></a>
  814. </div>
  815. </div>
  816. <div class="footer-section">
  817. <h3>Quick Links</h3>
  818. <ul class="footer-links">
  819. <li><a href="#">Home</a></li>
  820. <li><a href="#">Gallery</a></li>
  821. <li><a href="#">Designers</a></li>
  822. <li><a href="#">About Us</a></li>
  823. <li><a href="#">Contact</a></li>
  824. </ul>
  825. </div>
  826. <div class="footer-section">
  827. <h3>Support</h3>
  828. <ul class="footer-links">
  829. <li><a href="#">FAQ</a></li>
  830. <li><a href="#">Privacy Policy</a></li>
  831. <li><a href="#">Terms of Service</a></li>
  832. <li><a href="#">Help Center</a></li>
  833. <li><a href="#">Feedback</a></li>
  834. </ul>
  835. </div>
  836. <div class="footer-section">
  837. <h3>Download App</h3>
  838. <p>Get our app on your mobile device for the best experience.</p>
  839. <div class="app-badge-container">
  840. <a href="#" class="app-badge">
  841. <img src="https://picsum.photos/140/50?random=5" alt="Download on the App Store"
  842. style="width:140px">
  843. </a>
  844. <a href="#" class="app-badge">
  845. <img src="https://picsum.photos/140/50?random=6" alt="Get it on Google Play"
  846. style="width:140px">
  847. </a>
  848. </div>
  849. </div>
  850. </div>
  851. <div class="copyright">
  852. <p>© 2025 Art Color. All rights reserved.</p>
  853. </div>
  854. </footer>
  855. <!-- 字体图标库 -->
  856. <script src="https://cdn.tailwindcss.com"></script>
  857. <link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet">
  858. </body>
  859. </html>