| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Contact - Art Color</title>
- <style>
- :root {
- --primary-color: #ff6b6b;
- --secondary-color: #4ecdc4;
- --accent-color: #ffd166;
- --background-color: #f9f9f9;
- --text-color: #333;
- --light-text: #666;
- }
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- }
- body {
- background-color: var(--background-color);
- color: var(--text-color);
- line-height: 1.6;
- }
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0 20px;
- }
- header {
- background-color: var(--primary-color);
- color: white;
- padding: 30px 0;
- text-align: center;
- position: relative;
- }
- .header-logo {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- font-size: 1.8rem;
- font-weight: 700;
- letter-spacing: 1px;
- }
- .logo-icon {
- width: 40px;
- height: 40px;
- }
- main {
- padding: 40px 0;
- }
- section {
- margin-bottom: 50px;
- background-color: white;
- border-radius: 10px;
- padding: 30px;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
- }
- h1 {
- color: var(--primary-color);
- font-size: 2.2rem;
- margin-bottom: 20px;
- text-align: center;
- }
- h2 {
- color: var(--secondary-color);
- margin: 25px 0 15px;
- font-size: 1.8rem;
- }
- h3 {
- color: var(--primary-color);
- margin: 20px 0 10px;
- font-size: 1.4rem;
- }
- p {
- margin-bottom: 15px;
- }
- .btn {
- display: inline-block;
- background-color: var(--secondary-color);
- color: white;
- padding: 10px 20px;
- border-radius: 25px;
- text-decoration: none;
- font-size: 1rem;
- transition: all 0.3s ease;
- }
- .btn:hover {
- background-color: var(--primary-color);
- }
- /* 联系表单样式 */
- .contact-grid {
- display: grid;
- grid-template-columns: 1fr;
- gap: 40px;
- margin-top: 30px;
- }
- @media (min-width: 768px) {
- .contact-grid {
- grid-template-columns: 1fr 1fr;
- }
- }
- .contact-form {
- background-color: var(--background-color);
- border-radius: 10px;
- padding: 30px;
- }
- .form-group {
- margin-bottom: 20px;
- }
- .form-group label {
- display: block;
- margin-bottom: 8px;
- font-weight: 500;
- }
- .form-group input,
- .form-group textarea {
- width: 100%;
- padding: 10px;
- border: 1px solid #ddd;
- border-radius: 5px;
- font-size: 1rem;
- transition: border-color 0.3s ease;
- }
- .form-group input:focus,
- .form-group textarea:focus {
- outline: none;
- border-color: var(--secondary-color);
- }
- .form-group textarea {
- min-height: 150px;
- resize: vertical;
- }
- .contact-info {
- background-color: var(--background-color);
- border-radius: 10px;
- padding: 30px;
- }
- .info-item {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- }
- .info-icon {
- width: 40px;
- height: 40px;
- background-color: var(--primary-color);
- color: white;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 15px;
- }
- .info-text h4 {
- color: var(--primary-color);
- margin-bottom: 5px;
- }
- .info-text p {
- margin-bottom: 0;
- }
- /* 地图样式 */
- .map-container {
- height: 400px;
- border-radius: 10px;
- overflow: hidden;
- margin-top: 40px;
- background-color: #f0f0f0;
- }
- /* 页脚样式 */
- footer {
- background-color: var(--text-color);
- color: white;
- padding: 50px 0;
- margin-top: 80px;
- }
- .footer-content {
- max-width: 1200px;
- margin: 0 auto;
- display: flex;
- flex-direction: column;
- align-items: center;
- text-align: center;
- }
- .footer-logo {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- font-size: 1.8rem;
- font-weight: 700;
- margin-bottom: 30px;
- }
- .footer-logo a {
- color: white;
- text-decoration: none;
- transition: color 0.3s ease;
- }
- .footer-logo a:hover {
- color: var(--primary-color);
- }
- .footer-links {
- margin-bottom: 30px;
- }
- .footer-links ul {
- list-style: none;
- display: flex;
- gap: 20px;
- }
- .footer-links ul li {
- margin: 0 10px;
- }
- .footer-links ul li a {
- color: white;
- text-decoration: none;
- font-size: 1rem;
- transition: color 0.3s ease;
- }
- .footer-links ul li a:hover {
- color: var(--primary-color);
- }
- .footer-contact {
- margin-bottom: 30px;
- font-size: 0.9rem;
- line-height: 1.8;
- }
- .footer-contact a {
- color: var(--secondary-color);
- text-decoration: none;
- transition: color 0.3s ease;
- }
- .footer-contact a:hover {
- color: var(--primary-color);
- }
- .footer-copyright {
- font-size: 0.8rem;
- color: rgba(255, 255, 255, 0.7);
- }
- @media (max-width: 768px) {
- h1 {
- font-size: 1.8rem;
- }
- h2 {
- font-size: 1.5rem;
- }
- section {
- padding: 20px;
- }
- .footer-links ul {
- flex-direction: column;
- gap: 10px;
- }
- }
- </style>
- </head>
- <body>
- <header>
- <div class="container">
- <div class="header-logo">
- <svg class="logo-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
- <circle cx="50" cy="50" r="45" fill="#ff6b6b" />
- <circle cx="30" cy="30" r="10" fill="#4ecdc4" />
- <circle cx="70" cy="30" r="10" fill="#ffd166" />
- <circle cx="30" cy="70" r="10" fill="#ffd166" />
- <circle cx="70" cy="70" r="10" fill="#4ecdc4" />
- <rect x="45" y="45" width="10" height="10" fill="white" />
- </svg>
- <span>Art Color</span>
- </div>
- <p>Free Printable Coloring Pages and Digital Art</p>
- </div>
- </header>
- <main class="container">
- <section>
- <h1>Contact Us</h1>
- <p>We'd love to hear from you! Whether you have questions, feedback, or just want to say hello, feel free to
- reach out to our team using the form below or through our contact information.</p>
- <div class="contact-grid">
- <div class="contact-form">
- <h2>Send Us a Message</h2>
- <form>
- <div class="form-group">
- <label for="name">Your Name</label>
- <input type="text" id="name" name="name" required>
- </div>
- <div class="form-group">
- <label for="email">Your Email</label>
- <input type="email" id="email" name="email" required>
- </div>
- <div class="form-group">
- <label for="subject">Subject</label>
- <input type="text" id="subject" name="subject" required>
- </div>
- <div class="form-group">
- <label for="message">Message</label>
- <textarea id="message" name="message" required></textarea>
- </div>
- <button type="submit" class="btn">Send Message</button>
- </form>
- </div>
- <div class="contact-info">
- <h2>Contact Information</h2>
- <div class="info-item">
- <div class="info-icon">
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
- viewBox="0 0 16 16">
- <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" />
- <path
- 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" />
- <path fill-rule="evenodd"
- 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" />
- </svg>
- </div>
- <div class="info-text">
- <h4>Email</h4>
- <p><a href="mailto:art_number_coloring@jccy-tech.com">art_number_coloring@jccy-tech.com</a>
- </p>
- </div>
- </div>
- <div class="info-item">
- <div class="info-icon">
- <!-- 更换了地址图标 -->
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
- viewBox="0 0 16 16">
- <path
- 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" />
- </svg>
- </div>
- <div class="info-text">
- <h4>Address</h4>
- <p>17th Floor, Shining Building, No. 35 Xueyuan Road, Haidian District, Beijing, China</p>
- </div>
- </div>
- <div class="info-item">
- <div class="info-icon">
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
- viewBox="0 0 16 16">
- <path
- 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" />
- <path d="M8 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" />
- <path
- 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" />
- </svg>
- </div>
- <div class="info-text">
- <h4>Business Hours</h4>
- <p>Monday - Friday: 9:00 AM - 6:00 PM</p>
- <p>Saturday: 10:00 AM - 4:00 PM</p>
- <p>Sunday: Closed</p>
- </div>
- </div>
- </div>
- </div>
- <!-- 地图占位区域 -->
- <div class="map-container">
- <div
- style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background-color: #f0f0f0;">
- <p>Map will be displayed here</p>
- </div>
- </div>
- </section>
- </main>
- <footer>
- <div class="container">
- <div class="footer-content">
- <div class="footer-logo">
- <svg class="logo-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
- <circle cx="50" cy="50" r="45" fill="#ff6b6b" />
- <circle cx="30" cy="30" r="10" fill="#4ecdc4" />
- <circle cx="70" cy="30" r="10" fill="#ffd166" />
- <circle cx="30" cy="70" r="10" fill="#ffd166" />
- <circle cx="70" cy="70" r="10" fill="#4ecdc4" />
- <rect x="45" y="45" width="10" height="10" fill="white" />
- </svg>
- <a href="/">Art Color</a>
- </div>
- <div class="footer-links">
- <ul>
- <li><a href="/about">About Us</a></li>
- <li><a href="/contact">Contact</a></li>
- <li><a href="/privacy">Privacy</a></li>
- <li><a href="/app">APP</a></li>
- </ul>
- </div>
- <div class="footer-contact">
- <p>Email: <a href="mailto:art_number_coloring@jccy-tech.com">art_number_coloring@jccy-tech.com</a>
- </p>
- <p>Address: 17th Floor, Shining Building, No. 35 Xueyuan Road, Haidian District, Beijing, China</p>
- </div>
- <div class="footer-copyright">
- <p>Copyright © 2025 Art Color All Rights Reserved.</p>
- </div>
- </div>
- </div>
- </footer>
- </body>
- </html>
|