Contact Us – Wuyao Watches
/* 全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Arial’, sans-serif;
}
body {
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
.contact-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
/* 页面标题 */
.contact-header {
text-align: center;
margin-bottom: 50px;
}
.contact-header h1 {
font-size: 32px;
color: #222;
margin-bottom: 10px;
}
.contact-header p {
color: #666;
font-size: 16px;
}
/* 信任背书栏 */
.trust-bar {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
margin-bottom: 40px;
}
.trust-item {
display: flex;
align-items: center;
gap: 10px;
margin: 10px 0;
}
.trust-icon {
font-size: 24px;
color: #25D366;
}
.trust-text h4 {
font-size: 16px;
color: #222;
}
.trust-text p {
font-size: 13px;
color: #666;
}
/* 联系内容网格 */
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
/* 联系信息卡片 */
.contact-info-card {
background: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.contact-info-card h2 {
font-size: 22px;
color: #222;
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 2px solid #f0f0f0;
}
.contact-method {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 20px;
}
.method-icon {
font-size: 20px;
color: #25D366;
margin-top: 3px;
}
.method-content h3 {
font-size: 18px;
margin-bottom: 5px;
}
.method-content p {
color: #666;
margin-bottom: 8px;
}
.method-content a {
color: #25D366;
text-decoration: none;
font-weight: 500;
}
.method-content a:hover {
text-decoration: underline;
}
/* 咨询表单 */
.contact-form-card {
background: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 14px;
margin-bottom: 8px;
color: #333;
font-weight: 500;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
outline: none;
border-color: #25D366;
}
.submit-btn {
background: #25D366;
color: #fff;
border: none;
padding: 14px 30px;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
width: 100%;
transition: background 0.3s;
}
.submit-btn:hover {
background: #1ebf58;
}
/* 常见问题 */
.faq-section {
background: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-section h2 {
font-size: 22px;
color: #222;
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 2px solid #f0f0f0;
}
.faq-item {
margin-bottom: 15px;
border-bottom: 1px solid #f0f0f0;
padding-bottom: 15px;
}
.faq-question {
font-size: 16px;
font-weight: 500;
margin-bottom: 8px;
color: #222;
}
.faq-answer {
font-size: 14px;
color: #666;
}
/* 响应式适配 */
@media (max-width: 768px) {
.contact-header h1 {
font-size: 26px;
}
.trust-bar {
flex-direction: column;
align-items: flex-start;
}
.contact-info-card, .contact-form-card {
padding: 20px;
}
}