contact.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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>Contact - Art Color</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. }
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. box-sizing: border-box;
  20. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  21. }
  22. body {
  23. background-color: var(--background-color);
  24. color: var(--text-color);
  25. line-height: 1.6;
  26. }
  27. .container {
  28. max-width: 1200px;
  29. margin: 0 auto;
  30. padding: 0 20px;
  31. }
  32. header {
  33. background-color: var(--primary-color);
  34. color: white;
  35. padding: 30px 0;
  36. text-align: center;
  37. position: relative;
  38. }
  39. .header-logo {
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. gap: 10px;
  44. font-size: 1.8rem;
  45. font-weight: 700;
  46. letter-spacing: 1px;
  47. }
  48. .logo-icon {
  49. width: 40px;
  50. height: 40px;
  51. }
  52. main {
  53. padding: 40px 0;
  54. }
  55. section {
  56. margin-bottom: 50px;
  57. background-color: white;
  58. border-radius: 10px;
  59. padding: 30px;
  60. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  61. }
  62. h1 {
  63. color: var(--primary-color);
  64. font-size: 2.2rem;
  65. margin-bottom: 20px;
  66. text-align: center;
  67. }
  68. h2 {
  69. color: var(--secondary-color);
  70. margin: 25px 0 15px;
  71. font-size: 1.8rem;
  72. }
  73. h3 {
  74. color: var(--primary-color);
  75. margin: 20px 0 10px;
  76. font-size: 1.4rem;
  77. }
  78. p {
  79. margin-bottom: 15px;
  80. }
  81. .btn {
  82. display: inline-block;
  83. background-color: var(--secondary-color);
  84. color: white;
  85. padding: 10px 20px;
  86. border-radius: 25px;
  87. text-decoration: none;
  88. font-size: 1rem;
  89. transition: all 0.3s ease;
  90. }
  91. .btn:hover {
  92. background-color: var(--primary-color);
  93. }
  94. /* 联系表单样式 */
  95. .contact-grid {
  96. display: grid;
  97. grid-template-columns: 1fr;
  98. gap: 40px;
  99. margin-top: 30px;
  100. }
  101. @media (min-width: 768px) {
  102. .contact-grid {
  103. grid-template-columns: 1fr 1fr;
  104. }
  105. }
  106. .contact-form {
  107. background-color: var(--background-color);
  108. border-radius: 10px;
  109. padding: 30px;
  110. }
  111. .form-group {
  112. margin-bottom: 20px;
  113. }
  114. .form-group label {
  115. display: block;
  116. margin-bottom: 8px;
  117. font-weight: 500;
  118. }
  119. .form-group input,
  120. .form-group textarea {
  121. width: 100%;
  122. padding: 10px;
  123. border: 1px solid #ddd;
  124. border-radius: 5px;
  125. font-size: 1rem;
  126. transition: border-color 0.3s ease;
  127. }
  128. .form-group input:focus,
  129. .form-group textarea:focus {
  130. outline: none;
  131. border-color: var(--secondary-color);
  132. }
  133. .form-group textarea {
  134. min-height: 150px;
  135. resize: vertical;
  136. }
  137. .contact-info {
  138. background-color: var(--background-color);
  139. border-radius: 10px;
  140. padding: 30px;
  141. }
  142. .info-item {
  143. display: flex;
  144. align-items: center;
  145. margin-bottom: 20px;
  146. }
  147. .info-icon {
  148. width: 40px;
  149. height: 40px;
  150. background-color: var(--primary-color);
  151. color: white;
  152. border-radius: 50%;
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. margin-right: 15px;
  157. }
  158. .info-text h4 {
  159. color: var(--primary-color);
  160. margin-bottom: 5px;
  161. }
  162. .info-text p {
  163. margin-bottom: 0;
  164. }
  165. /* 地图样式 */
  166. .map-container {
  167. height: 400px;
  168. border-radius: 10px;
  169. overflow: hidden;
  170. margin-top: 40px;
  171. background-color: #f0f0f0;
  172. }
  173. /* 页脚样式 */
  174. footer {
  175. background-color: var(--text-color);
  176. color: white;
  177. padding: 50px 0;
  178. margin-top: 80px;
  179. }
  180. .footer-content {
  181. max-width: 1200px;
  182. margin: 0 auto;
  183. display: flex;
  184. flex-direction: column;
  185. align-items: center;
  186. text-align: center;
  187. }
  188. .footer-logo {
  189. display: flex;
  190. justify-content: center;
  191. align-items: center;
  192. gap: 10px;
  193. font-size: 1.8rem;
  194. font-weight: 700;
  195. margin-bottom: 30px;
  196. }
  197. .footer-logo a {
  198. color: white;
  199. text-decoration: none;
  200. transition: color 0.3s ease;
  201. }
  202. .footer-logo a:hover {
  203. color: var(--primary-color);
  204. }
  205. .footer-links {
  206. margin-bottom: 30px;
  207. }
  208. .footer-links ul {
  209. list-style: none;
  210. display: flex;
  211. gap: 20px;
  212. }
  213. .footer-links ul li {
  214. margin: 0 10px;
  215. }
  216. .footer-links ul li a {
  217. color: white;
  218. text-decoration: none;
  219. font-size: 1rem;
  220. transition: color 0.3s ease;
  221. }
  222. .footer-links ul li a:hover {
  223. color: var(--primary-color);
  224. }
  225. .footer-contact {
  226. margin-bottom: 30px;
  227. font-size: 0.9rem;
  228. line-height: 1.8;
  229. }
  230. .footer-contact a {
  231. color: var(--secondary-color);
  232. text-decoration: none;
  233. transition: color 0.3s ease;
  234. }
  235. .footer-contact a:hover {
  236. color: var(--primary-color);
  237. }
  238. .footer-copyright {
  239. font-size: 0.8rem;
  240. color: rgba(255, 255, 255, 0.7);
  241. }
  242. @media (max-width: 768px) {
  243. h1 {
  244. font-size: 1.8rem;
  245. }
  246. h2 {
  247. font-size: 1.5rem;
  248. }
  249. section {
  250. padding: 20px;
  251. }
  252. .footer-links ul {
  253. flex-direction: column;
  254. gap: 10px;
  255. }
  256. }
  257. </style>
  258. </head>
  259. <body>
  260. <header>
  261. <div class="container">
  262. <div class="header-logo">
  263. <svg class="logo-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  264. <circle cx="50" cy="50" r="45" fill="#ff6b6b" />
  265. <circle cx="30" cy="30" r="10" fill="#4ecdc4" />
  266. <circle cx="70" cy="30" r="10" fill="#ffd166" />
  267. <circle cx="30" cy="70" r="10" fill="#ffd166" />
  268. <circle cx="70" cy="70" r="10" fill="#4ecdc4" />
  269. <rect x="45" y="45" width="10" height="10" fill="white" />
  270. </svg>
  271. <span>Art Color</span>
  272. </div>
  273. <p>Free Printable Coloring Pages and Digital Art</p>
  274. </div>
  275. </header>
  276. <main class="container">
  277. <section>
  278. <h1>Contact Us</h1>
  279. <p>We'd love to hear from you! Whether you have questions, feedback, or just want to say hello, feel free to
  280. reach out to our team using the form below or through our contact information.</p>
  281. <div class="contact-grid">
  282. <div class="contact-form">
  283. <h2>Send Us a Message</h2>
  284. <form>
  285. <div class="form-group">
  286. <label for="name">Your Name</label>
  287. <input type="text" id="name" name="name" required>
  288. </div>
  289. <div class="form-group">
  290. <label for="email">Your Email</label>
  291. <input type="email" id="email" name="email" required>
  292. </div>
  293. <div class="form-group">
  294. <label for="subject">Subject</label>
  295. <input type="text" id="subject" name="subject" required>
  296. </div>
  297. <div class="form-group">
  298. <label for="message">Message</label>
  299. <textarea id="message" name="message" required></textarea>
  300. </div>
  301. <button type="submit" class="btn">Send Message</button>
  302. </form>
  303. </div>
  304. <div class="contact-info">
  305. <h2>Contact Information</h2>
  306. <div class="info-item">
  307. <div class="info-icon">
  308. <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
  309. viewBox="0 0 16 16">
  310. <path d="M1.5 8.5A.5.5 0 0 1 2 8h12a.5.5 0 0 1 0 1H2a.5.5 0 0 1-.5-.5z" />
  311. <path
  312. d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
  313. <path fill-rule="evenodd"
  314. d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-8a.5.5 0 0 0-1 0v8a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 0-1 0v8z" />
  315. </svg>
  316. </div>
  317. <div class="info-text">
  318. <h4>Email</h4>
  319. <p><a href="mailto:art_number_coloring@jccy-tech.com">art_number_coloring@jccy-tech.com</a>
  320. </p>
  321. </div>
  322. </div>
  323. <div class="info-item">
  324. <div class="info-icon">
  325. <!-- 更换了地址图标 -->
  326. <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
  327. viewBox="0 0 16 16">
  328. <path
  329. d="M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z" />
  330. </svg>
  331. </div>
  332. <div class="info-text">
  333. <h4>Address</h4>
  334. <p>17th Floor, Shining Building, No. 35 Xueyuan Road, Haidian District, Beijing, China</p>
  335. </div>
  336. </div>
  337. <div class="info-item">
  338. <div class="info-icon">
  339. <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
  340. viewBox="0 0 16 16">
  341. <path
  342. d="M12.792 3.953a.5.5 0 0 0-.59.04l-3.5 2.5a.5.5 0 0 0-.162.633l1 2.5a.5.5 0 0 0 .764.35l3.5-2.5a.5.5 0 0 0 .04-.59l-1-2.5zm-3.5 1.617L11 5.633l-1 2.5-2.5-1.5zm-5.5 2.171L3 9.071l1 2.5a.5.5 0 0 0 .764.35l3.5-2.5a.5.5 0 0 0 .04-.59l-1-2.5a.5.5 0 0 0-.59-.04l-3.5 2.5zm3.5 1.617L7 9.633l-1 2.5-2.5-1.5z" />
  343. <path d="M8 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" />
  344. <path
  345. d="M8 1a2 2 0 0 0-2 2v2H3.5a.5.5 0 0 0 0 1H6v1.5a.5.5 0 0 0 1 0V6h2.5a.5.5 0 0 0 0-1H8V3a2 2 0 0 0-2-2zm6 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0z" />
  346. </svg>
  347. </div>
  348. <div class="info-text">
  349. <h4>Business Hours</h4>
  350. <p>Monday - Friday: 9:00 AM - 6:00 PM</p>
  351. <p>Saturday: 10:00 AM - 4:00 PM</p>
  352. <p>Sunday: Closed</p>
  353. </div>
  354. </div>
  355. </div>
  356. </div>
  357. <!-- 地图占位区域 -->
  358. <div class="map-container">
  359. <div
  360. style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background-color: #f0f0f0;">
  361. <p>Map will be displayed here</p>
  362. </div>
  363. </div>
  364. </section>
  365. </main>
  366. <footer>
  367. <div class="container">
  368. <div class="footer-content">
  369. <div class="footer-logo">
  370. <svg class="logo-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  371. <circle cx="50" cy="50" r="45" fill="#ff6b6b" />
  372. <circle cx="30" cy="30" r="10" fill="#4ecdc4" />
  373. <circle cx="70" cy="30" r="10" fill="#ffd166" />
  374. <circle cx="30" cy="70" r="10" fill="#ffd166" />
  375. <circle cx="70" cy="70" r="10" fill="#4ecdc4" />
  376. <rect x="45" y="45" width="10" height="10" fill="white" />
  377. </svg>
  378. <a href="/">Art Color</a>
  379. </div>
  380. <div class="footer-links">
  381. <ul>
  382. <li><a href="/about">About Us</a></li>
  383. <li><a href="/contact">Contact</a></li>
  384. <li><a href="/privacy">Privacy</a></li>
  385. <li><a href="/app">APP</a></li>
  386. </ul>
  387. </div>
  388. <div class="footer-contact">
  389. <p>Email: <a href="mailto:art_number_coloring@jccy-tech.com">art_number_coloring@jccy-tech.com</a>
  390. </p>
  391. <p>Address: 17th Floor, Shining Building, No. 35 Xueyuan Road, Haidian District, Beijing, China</p>
  392. </div>
  393. <div class="footer-copyright">
  394. <p>Copyright © 2025 Art Color All Rights Reserved.</p>
  395. </div>
  396. </div>
  397. </div>
  398. </footer>
  399. </body>
  400. </html>