about.html 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  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. <title>About - Yay! Coloring Pages</title>
  7. <style>
  8. :root {
  9. --primary-color: #ff6b6b;
  10. --secondary-color: #4ecdc4;
  11. --accent-color: #ffd166;
  12. --background-color: #f9f9f9;
  13. --text-color: #333;
  14. --light-text: #666;
  15. --art-color: #ff9f1c;
  16. /* 用于Art Color相关的高亮颜色 */
  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. header {
  35. background-color: var(--primary-color);
  36. color: white;
  37. padding: 30px 0;
  38. text-align: center;
  39. position: relative;
  40. }
  41. .header-logo {
  42. font-size: 1.8rem;
  43. font-weight: 700;
  44. letter-spacing: 1px;
  45. }
  46. main {
  47. padding: 40px 0;
  48. }
  49. section {
  50. margin-bottom: 50px;
  51. background-color: white;
  52. border-radius: 10px;
  53. padding: 30px;
  54. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  55. }
  56. h1 {
  57. color: var(--primary-color);
  58. font-size: 2.2rem;
  59. margin-bottom: 20px;
  60. text-align: center;
  61. }
  62. h2 {
  63. color: var(--secondary-color);
  64. margin: 25px 0 15px;
  65. font-size: 1.8rem;
  66. }
  67. h3 {
  68. color: var(--primary-color);
  69. margin: 20px 0 10px;
  70. font-size: 1.4rem;
  71. }
  72. p {
  73. margin-bottom: 15px;
  74. }
  75. .btn {
  76. display: inline-block;
  77. background-color: var(--secondary-color);
  78. color: white;
  79. padding: 10px 20px;
  80. border-radius: 25px;
  81. text-decoration: none;
  82. font-size: 1rem;
  83. transition: all 0.3s ease;
  84. }
  85. .btn:hover {
  86. background-color: var(--primary-color);
  87. }
  88. .about-grid {
  89. display: grid;
  90. grid-template-columns: 1fr 1fr;
  91. gap: 40px;
  92. margin-top: 30px;
  93. }
  94. .about-item {
  95. background-color: var(--background-color);
  96. border-radius: 10px;
  97. padding: 25px;
  98. transition: all 0.3s ease;
  99. }
  100. .about-item:hover {
  101. transform: translateY(-5px);
  102. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  103. }
  104. .brand-image {
  105. margin: 30px 0;
  106. border-radius: 10px;
  107. overflow: hidden;
  108. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  109. transition: transform 0.3s ease;
  110. }
  111. .brand-image:hover {
  112. transform: scale(1.02);
  113. }
  114. .brand-image img {
  115. width: 100%;
  116. height: auto;
  117. object-fit: cover;
  118. }
  119. .timeline {
  120. position: relative;
  121. margin: 50px 0;
  122. }
  123. .timeline::before {
  124. content: '';
  125. position: absolute;
  126. top: 0;
  127. bottom: 0;
  128. left: 50%;
  129. width: 2px;
  130. background-color: var(--secondary-color);
  131. transform: translateX(-50%);
  132. }
  133. .timeline-item {
  134. position: relative;
  135. margin-bottom: 40px;
  136. padding: 20px;
  137. width: 50%;
  138. }
  139. .timeline-item:nth-child(even) {
  140. left: 50%;
  141. padding-left: 40px;
  142. }
  143. .timeline-item:nth-child(odd) {
  144. padding-right: 40px;
  145. text-align: right;
  146. }
  147. .timeline-item::after {
  148. content: '';
  149. position: absolute;
  150. top: 20px;
  151. width: 20px;
  152. height: 20px;
  153. border-radius: 50%;
  154. background-color: var(--primary-color);
  155. z-index: 1;
  156. }
  157. .timeline-item:nth-child(even)::after {
  158. left: -10px;
  159. }
  160. .timeline-item:nth-child(odd)::after {
  161. right: -10px;
  162. }
  163. /* Art Color相关里程碑的特殊样式 */
  164. .timeline-item.art-related::after {
  165. background-color: var(--art-color);
  166. transform: scale(1.3);
  167. }
  168. .timeline-item.art-related .timeline-year {
  169. color: var(--art-color);
  170. }
  171. .timeline-year {
  172. font-size: 1.2rem;
  173. font-weight: 700;
  174. color: var(--primary-color);
  175. margin-bottom: 10px;
  176. }
  177. .timeline-metric {
  178. font-weight: 600;
  179. color: var(--secondary-color);
  180. }
  181. .timeline-item.art-related .timeline-metric {
  182. color: var(--art-color);
  183. }
  184. .games-grid {
  185. display: grid;
  186. grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  187. gap: 30px;
  188. margin-top: 30px;
  189. }
  190. .game-card {
  191. background-color: var(--background-color);
  192. border-radius: 10px;
  193. overflow: hidden;
  194. transition: all 0.3s ease;
  195. }
  196. .game-card:hover {
  197. transform: translateY(-5px);
  198. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  199. }
  200. .game-image {
  201. height: 180px;
  202. background-color: #f0f0f0;
  203. overflow: hidden;
  204. }
  205. .game-image img {
  206. width: 100%;
  207. height: 100%;
  208. object-fit: cover;
  209. transition: transform 0.5s ease;
  210. }
  211. .game-card:hover .game-image img {
  212. transform: scale(1.05);
  213. }
  214. .game-content {
  215. padding: 20px;
  216. }
  217. .game-title {
  218. font-weight: 600;
  219. margin-bottom: 5px;
  220. color: var(--text-color);
  221. }
  222. .game-desc {
  223. font-size: 0.9rem;
  224. color: var(--light-text);
  225. }
  226. .team-grid {
  227. display: grid;
  228. grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  229. gap: 30px;
  230. margin-top: 30px;
  231. }
  232. .team-member {
  233. text-align: center;
  234. }
  235. .team-avatar {
  236. width: 150px;
  237. height: 150px;
  238. border-radius: 50%;
  239. overflow: hidden;
  240. margin: 0 auto 15px;
  241. border: 3px solid var(--secondary-color);
  242. transition: all 0.3s ease;
  243. }
  244. .team-member:hover .team-avatar {
  245. border-color: var(--primary-color);
  246. }
  247. .team-avatar img {
  248. width: 100%;
  249. height: 100%;
  250. object-fit: cover;
  251. }
  252. .team-name {
  253. font-weight: 600;
  254. color: var(--text-color);
  255. }
  256. .team-role {
  257. font-size: 0.9rem;
  258. color: var(--light-text);
  259. }
  260. footer {
  261. background-color: var(--text-color);
  262. color: white;
  263. text-align: center;
  264. padding: 30px 0;
  265. margin-top: 50px;
  266. }
  267. .footer-content {
  268. max-width: 600px;
  269. margin: 0 auto;
  270. }
  271. @media (max-width: 768px) {
  272. h1 {
  273. font-size: 1.8rem;
  274. }
  275. h2 {
  276. font-size: 1.5rem;
  277. }
  278. section {
  279. padding: 20px;
  280. }
  281. .about-grid {
  282. grid-template-columns: 1fr;
  283. }
  284. .timeline::before {
  285. left: 20px;
  286. }
  287. .timeline-item {
  288. width: 100%;
  289. padding-left: 50px;
  290. padding-right: 0;
  291. text-align: left;
  292. }
  293. .timeline-item:nth-child(even) {
  294. left: 0;
  295. }
  296. .timeline-item:nth-child(odd)::after,
  297. .timeline-item:nth-child(even)::after {
  298. left: 10px;
  299. }
  300. }
  301. </style>
  302. </head>
  303. <body>
  304. <header>
  305. <div class="container">
  306. <div class="header-logo">Yay! Coloring Pages</div>
  307. <p>Free Printable Coloring Pages and Birthday Cards</p>
  308. </div>
  309. </header>
  310. <main class="container">
  311. <section>
  312. <h1>About Us</h1>
  313. <p>Welcome to Art Color, your go-to destination for high-quality, free printable coloring pages and digital
  314. coloring experiences. We're passionate about bringing creativity and joy to people of all ages through
  315. the art of coloring.</p>
  316. <!-- 新增品牌理念图片 -->
  317. <div class="brand-image">
  318. <img src="https://picsum.photos/1200/400?random=20" alt="People enjoying coloring together">
  319. </div>
  320. <div class="about-grid">
  321. <div class="about-item">
  322. <h3>Our Mission</h3>
  323. <p>At Art Color, our mission is to provide a diverse collection of coloring pages that inspire
  324. imagination, reduce stress, and promote relaxation. We believe that coloring is not just for
  325. kids—it's a therapeutic activity that can bring out the artist in everyone.</p>
  326. </div>
  327. <div class="about-item">
  328. <h3>Our Vision</h3>
  329. <p>We envision a world where everyone has access to creative outlets that promote mental well-being
  330. and artistic expression. Through our platform, we aim to connect people with beautiful, engaging
  331. coloring content that sparks joy and creativity.</p>
  332. </div>
  333. </div>
  334. </section>
  335. <section>
  336. <h2>About JCCY</h2>
  337. <p>JCCY is a company founded in 2015 that specializes in the development of casual entertainment games.
  338. Several of our games have been well received by users. Among them, "Coloring Book by Numbers" is one of
  339. the most popular coloring by number apps in the world and the most successful ad-driven app, gaining
  340. wide recognition.</p>
  341. <div class="timeline">
  342. <div class="timeline-item">
  343. <div class="timeline-year">2015</div>
  344. <p>JCCY is founded with a vision to create engaging casual games that bring joy to players
  345. worldwide.</p>
  346. </div>
  347. <div class="timeline-item">
  348. <div class="timeline-year">2016</div>
  349. <p>Releases its first mobile game, "Pixel Puzzle", which quickly gains a dedicated user base of over
  350. 500,000 downloads in the first month.</p>
  351. </div>
  352. <div class="timeline-item">
  353. <div class="timeline-year">2017</div>
  354. <p>Launches "Doodle Draw", a creative drawing app that introduces users to digital art, receiving
  355. critical acclaim from parenting and education platforms.</p>
  356. </div>
  357. <div class="timeline-item art-related">
  358. <div class="timeline-year">2018</div>
  359. <p>Develops and releases "Coloring Book by Numbers", which becomes a global sensation, <span
  360. class="timeline-metric">reaching 100 million downloads</span> within two years and winning
  361. <span class="timeline-metric">5 international awards</span> for Best Casual Game.</p>
  362. </div>
  363. <div class="timeline-item">
  364. <div class="timeline-year">2020</div>
  365. <p>Expands its portfolio with "Pattern Paradise", a mandala coloring app that receives critical
  366. acclaim and is featured in Apple's "App of the Day".</p>
  367. </div>
  368. <div class="timeline-item art-related">
  369. <div class="timeline-year">2022</div>
  370. <p>Launches the web version of "Art Color", bringing high-quality coloring content to a wider
  371. audience and <span class="timeline-metric">gaining 10 million monthly active users</span> in the
  372. first year.</p>
  373. </div>
  374. <div class="timeline-item art-related">
  375. <div class="timeline-year">2023</div>
  376. <p>Introduces premium features to "Coloring Book by Numbers", enhancing the user experience while
  377. maintaining free access, resulting in <span class="timeline-metric">a 300% increase in user
  378. engagement</span>.</p>
  379. </div>
  380. </div>
  381. </section>
  382. <section>
  383. <h2>Our Games & Apps</h2>
  384. <p>Over the years, JCCY has developed several successful games and apps that have captured the hearts of
  385. users worldwide. Here are some of our most popular creations:</p>
  386. <div class="games-grid">
  387. <div class="game-card">
  388. <div class="game-image">
  389. <img src="https://picsum.photos/600/400?random=30" alt="Coloring Book by Numbers">
  390. </div>
  391. <div class="game-content">
  392. <div class="game-title">Coloring Book by Numbers</div>
  393. <div class="game-desc">A popular coloring app that combines the fun of coloring with the
  394. challenge of numbers. Available on iOS and Android.</div>
  395. </div>
  396. </div>
  397. <div class="game-card">
  398. <div class="game-image">
  399. <img src="https://picsum.photos/600/400?random=31" alt="Pattern Paradise">
  400. </div>
  401. <div class="game-content">
  402. <div class="game-title">Pattern Paradise</div>
  403. <div class="game-desc">An immersive mandala and pattern coloring app that helps users create
  404. stunning artwork with ease.</div>
  405. </div>
  406. </div>
  407. <div class="game-card">
  408. <div class="game-image">
  409. <img src="https://picsum.photos/600/400?random=32" alt="Doodle Draw">
  410. </div>
  411. <div class="game-content">
  412. <div class="game-title">Doodle Draw</div>
  413. <div class="game-desc">A creative drawing app that lets users express their artistic side with a
  414. variety of tools and colors.</div>
  415. </div>
  416. </div>
  417. <div class="game-card">
  418. <div class="game-image">
  419. <img src="https://picsum.photos/600/400?random=33" alt="Pixel Puzzle">
  420. </div>
  421. <div class="game-content">
  422. <div class="game-title">Pixel Puzzle</div>
  423. <div class="game-desc">A unique puzzle game that combines pixel art with challenging puzzles for
  424. all ages.</div>
  425. </div>
  426. </div>
  427. </div>
  428. </section>
  429. <section>
  430. <h2>Our Team</h2>
  431. <p>Behind every great app and game is a talented team of designers, developers, and creatives. Meet the
  432. people who make JCCY and Art Color possible:</p>
  433. <div class="team-grid">
  434. <div class="team-member">
  435. <div class="team-avatar">
  436. <img src="https://picsum.photos/400/400?random=40" alt="CEO">
  437. </div>
  438. <div class="team-name">Sarah Johnson</div>
  439. <div class="team-role">CEO & Founder</div>
  440. </div>
  441. <div class="team-member">
  442. <div class="team-avatar">
  443. <img src="https://picsum.photos/400/400?random=41" alt="CTO">
  444. </div>
  445. <div class="team-name">David Chen</div>
  446. <div class="team-role">CTO</div>
  447. </div>
  448. <div class="team-member">
  449. <div class="team-avatar">
  450. <img src="https://picsum.photos/400/400?random=42" alt="Lead Designer">
  451. </div>
  452. <div class="team-name">Emily Rodriguez</div>
  453. <div class="team-role">Lead Designer</div>
  454. </div>
  455. <div class="team-member">
  456. <div class="team-avatar">
  457. <img src="https://picsum.photos/400/400?random=43" alt="Marketing Director">
  458. </div>
  459. <div class="team-name">Michael Brown</div>
  460. <div class="team-role">Marketing Director</div>
  461. </div>
  462. <div class="team-member">
  463. <div class="team-avatar">
  464. <img src="https://picsum.photos/400/400?random=44" alt="Art Director">
  465. </div>
  466. <div class="team-name">Sophia Kim</div>
  467. <div class="team-role">Art Director</div>
  468. </div>
  469. <div class="team-member">
  470. <div class="team-avatar">
  471. <img src="https://picsum.photos/400/400?random=45" alt="Product Manager">
  472. </div>
  473. <div class="team-name">James Wilson</div>
  474. <div class="team-role">Product Manager</div>
  475. </div>
  476. </div>
  477. </section>
  478. <section>
  479. <h2>Contact Us</h2>
  480. <p>We'd love to hear from you! Whether you have questions, feedback, or just want to say hello, feel free to
  481. reach out to our team.</p>
  482. <div class="btn-container" style="text-align: center; margin-top: 30px;">
  483. <a href="#" class="btn">Contact Support</a>
  484. </div>
  485. </section>
  486. </main>
  487. <footer>
  488. <div class="container footer-content">
  489. <p>Yay! Coloring Pages - Free Printable Coloring Pages and Birthday Cards</p>
  490. <p>Bringing creativity to your fingertips, one coloring page at a time.</p>
  491. </div>
  492. </footer>
  493. </body>
  494. </html>