 * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; } body { background-color: #f9fafb; color: #1f2937; line-height: 1.7; padding: 20px; max-width: 100%; margin: 0 auto; } .container { background-color: white; border-radius: 16px; box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08); padding: 50px; margin-top: 30px; border: 1px solid #e5e7eb; } h1 { color: #111827; font-size: 2.8rem; margin-bottom: 15px; font-weight: 700; text-align: center; padding-bottom: 20px; border-bottom: 3px solid #3b82f6; } h2 { color: #1d4ed8; font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; font-weight: 600; padding-bottom: 10px; border-bottom: 2px solid #e5e7eb; } h3 { color: #374151; font-size: 1.3rem; margin-top: 25px; margin-bottom: 15px; font-weight: 600; } p { margin-bottom: 18px; font-size: 1.1rem; color: #4b5563; } .shipping-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin: 30px 0; } .method-card { background-color: white; border: 2px solid #e5e7eb; border-radius: 12px; padding: 30px; transition: all 0.3s ease; position: relative; overflow: hidden; } .method-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); border-color: #3b82f6; } .method-card.cainiao { border-top: 4px solid #f59e0b; } .method-card.express { border-top: 4px solid #10b981; } .method-icon { font-size: 2.5rem; margin-bottom: 15px; } .method-title { font-weight: bold; color: #1d4ed8; margin-bottom: 15px; font-size: 1.3rem; } .feature-list { list-style: none; margin: 20px 0; } .feature-list li { margin-bottom: 12px; padding-left: 25px; position: relative; color: #4b5563; } .feature-list li:before { content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: bold; } .delivery-time { background-color: #eff6ff; padding: 15px; border-radius: 8px; margin: 15px 0; border-left: 4px solid #3b82f6; } .delivery-time strong { color: #1e40af; } .tracking-section { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); border-radius: 12px; padding: 30px; margin: 30px 0; } .tracking-links { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; } .tracking-link { background-color: white; padding: 15px 25px; border-radius: 8px; text-decoration: none; color: #1d4ed8; font-weight: 500; border: 1px solid #dbeafe; transition: all 0.3s ease; display: flex; align-items: center; } .tracking-link:hover { background-color: #1d4ed8; color: white; transform: translateY(-2px); } .tracking-link:before { content: "🔗"; margin-right: 10px; font-size: 1.2rem; } .support-section { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 12px; padding: 30px; margin: 30px 0; border: 1px solid #fbbf24; } .contact-button { display: inline-block; background-color: #1e40af; color: white; padding: 15px 35px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1rem; margin-top: 20px; transition: all 0.3s ease; border: 2px solid #1e40af; } .contact-button:hover { background-color: transparent; color: #1e40af; } .footer { margin-top: 50px; padding-top: 25px; border-top: 1px solid #d1d5db; font-size: 0.9rem; color: #6b7280; text-align: center; } @media (max-width: 768px) { .container { padding: 25px; } h1 { font-size: 2.2rem; } h2 { font-size: 1.5rem; } .shipping-methods { grid-template-columns: 1fr; } .tracking-links { flex-direction: column; } } 