/* ========================================
   联系我们页面专属样式
   ======================================== */

/* 联系图标样式 */
.contact-icon {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

/* 联系表单容器 */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* 表单样式 */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* 文本居中样式 */
.text-center {
    text-align: center;
}

/* 服务高亮区块 */
.service-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-bottom: 40px;
}

.service-highlight h3 {
    color: #667eea;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-highlight h3 i {
    margin-right: 10px;
}

.service-highlight p {
    color: #666;
    line-height: 1.8;
}

/* 简单特性列表 */
.feature-list-simple {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-list-simple li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.feature-list-simple li::before {
    content: '\f058';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #667eea;
}
