/* GWY3 Template - Base Resets Only
   Theme styles: gwy3-style.css
   Gold market/price styles: build.css
   This file provides ONLY base resets needed by the template. */

/* Global reset - needed for nav and other lists */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: #f5f7fa;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* topNav 使用 uk-container 默认 max-width（与原站一致） */

/* Logo + logo_sub side by side */
.logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Fix: build.css desktop has invalid flex-flow:1 for .websiteLogo, no explicit size */
.websiteLogo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}
