/*
Theme Name: Connectors
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: WordPress 主题，专为面向海外市场的企业网站设计，SEO 优先，转化率优先。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: connectors
Tags: business, corporate, seo, responsive, translation-ready

本主题遵循以下核心原则：
1. SEO 可抓取、可理解（Google 优先）
2. 转化率优先（表单 / CTA / 联系方式）
3. 性能与可维护性
4. 视觉效果（不得影响 SEO）
*/

/* 基础样式重置和移动端优先 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 响应式 */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}
