/* ============================================================
   云速递物流官网 - 默认模板自定义样式
   配合Tailwind CSS使用
   ============================================================ */

/* 平滑滚动 */
html { scroll-behavior: smooth; }

/* 锚点跳转偏移：补偿sticky导航栏高度（约80px），避免内容被导航栏遮挡 */
section[id], div[id] { scroll-margin-top: 90px; }

/* 基础字体 */
body { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; }

/* 输入框去除默认样式 */
input:focus { outline: none; }

/* 渐变背景文字效果 */
.text-gradient {
    background: linear-gradient(135deg, #0A2F5A 0%, #00A3E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 卡片悬停效果 */
.hover-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-card:hover { transform: translateY(-8px); box-shadow: 0 20px 35px -10px rgba(10, 47, 90, 0.2); }

/* 移动端菜单过渡 */
#mobile-menu { transition: max-height 0.3s ease; }

/* LOGO图片自适应：最宽320px，高度自适应auto，不裁剪不变形 */
.site-logo-img { max-width: 320px; height: auto; border-radius: 8px; }
