@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@400;600;700&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Noto Serif SC', 'SimSun', serif;
  --container: 1200px;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: #2c3e50;
  background: #f5f6fa;
  -webkit-text-size-adjust: none;
  min-width: 320px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: inherit; }
form { display: inline; }
ul,ol { list-style: none; }
img { max-width: 100%; vertical-align: middle; border: 0; }
button,input,select,textarea { font-size: 100%; vertical-align: middle; outline: none; font-family: inherit; }
textarea { resize: none; }
table { border-collapse: collapse; border-spacing: 0; }
header,footer,article,section,nav,menu,hgroup { display: block; }

.fl { float: left; }
.fr { float: right; }
.hide { display: none; }
.show { display: block; }
.red { color: #e74c3c; }
.ellipsis { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.break { word-break: break-all; word-wrap: break-word; }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

/* ===== Header ===== */
.top {
  width: 100%;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}

.top_mid {
  max-width: var(--container);
  width: 94%;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  float: none;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
}

.logo a {
  display: flex;
  align-items: center;
  height: 52px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #1a1a2e;
  white-space: nowrap;
}

.logo a:hover .logo-text { opacity: .85; }

body.page-index .logo-text {
  background: linear-gradient(135deg, #f0d78c, #c9a227, #a8860f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu {
  float: none;
  width: auto;
  height: auto;
}

.menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu ul li {
  float: none;
  width: auto;
  height: auto;
  text-align: center;
  font: 500 15px/1 var(--font-sans);
}

.menu ul li a {
  display: block;
  padding: 10px 18px;
  border-radius: 8px;
  color: #5a6a7a;
  position: relative;
  letter-spacing: .02em;
}

.menu ul li a:hover {
  color: var(--accent, #2563eb);
  background: rgba(0,0,0,.04);
}

.menu ul li a.on,
.menu ul li .on {
  color: #fff !important;
  background: var(--accent, #2563eb);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

/* ===== Page Banner (inner pages) ===== */
.bannerin {
  width: 100%;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bannerin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: brightness(.85);
}

.bannerin::after {
  content: attr(data-title);
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .12em;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.aboutbg { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.newsbg  { background: linear-gradient(135deg, #2d3436, #636e72); }
.productbg { background: linear-gradient(135deg, #2c3e50, #3498db); }
.businessbg { background: linear-gradient(135deg, #0c2461, #1e3799, #4a69bd); }
.jobbg   { background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8); }
.conbg   { background: linear-gradient(135deg, #2d6a4f, #40916c, #52b788); }
.rulesbg { background: linear-gradient(135deg, #2d3436, #636e72, #b2bec3); }

/* ===== Main Content Layout ===== */
.inmid {
  background: none;
  max-width: var(--container);
  width: 94%;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  display: flex;
  gap: 32px;
  padding-bottom: 60px;
}

.p40 { padding-top: 0; }

.inmid_left {
  width: 220px;
  flex-shrink: 0;
  float: none;
  overflow: visible;
}

.inmid_right {
  flex: 1;
  float: none;
  margin: 0;
  min-width: 0;
}

/* Sidebar Nav */
.lmenu {
  height: auto;
  width: 100%;
  font: 500 15px/1 var(--font-sans);
  margin-bottom: 6px;
}

.mb35 { margin-bottom: 6px; }
.mb85 { margin-top: 0; }

.lmenu a {
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  float: none;
  padding: 14px 20px;
  background: none;
  border-radius: 10px;
  color: #7f8c8d;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.lmenu a:hover,
.lmenu .on {
  background: rgba(0,0,0,.04);
  color: var(--accent, #2563eb);
  border-left-color: var(--accent, #2563eb);
  padding-left: 24px;
}

/* Content Card */
.inmid_right > .about_t,
.inmid_right > .job_cont,
.inmid_right > .about_cont:first-child {
  /* handled per page */
}

.content-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px 56px;
  border: 1px solid rgba(0,0,0,.04);
}

.about_t {
  font: 700 32px/1.3 var(--font-serif);
  color: #1a1a2e;
  border-bottom: none;
  height: auto;
  margin-bottom: 32px;
  padding-bottom: 20px;
  position: relative;
}

.about_t::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent, #2563eb);
  border-radius: 2px;
}

.details_t {
  font: 600 20px/1.4 var(--font-sans);
  color: #2c3e50;
  border-bottom: 1px solid #ecf0f1;
  height: auto;
  text-align: center;
  padding: 16px 0;
}

.about_cont {
  padding: 0;
  font: 400 16px/2 var(--font-sans);
  color: #4a5568;
}

.about_cont p { margin-bottom: 1em; }

/* ===== Index Page ===== */
.banner {
  background: none;
  height: auto;
  min-height: 520px;
  position: relative;
}

.index_cont {
  max-width: var(--container);
  width: 94%;
  margin: 0 auto;
  overflow: visible;
}

/* ===== Job Page ===== */
.job_cont_t { width: 100%; height: auto; margin: 0; }

.job_cont_zl {
  font: 400 15px/1.8 var(--font-sans);
  color: #4a5568;
  background: rgba(0,0,0,.02);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  border-left: 4px solid var(--accent, #6c5ce7);
}

.job_cont_list { margin-top: 24px; margin-bottom: 40px; overflow: visible; width: 100%; }

.job_cont_title {
  height: auto;
  width: 100%;
  color: #1a1a2e;
  font: 600 18px/1.4 var(--font-sans);
  border-bottom: 2px solid #ecf0f1;
  margin-top: 0;
  padding: 20px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job_cont_title a {
  width: auto;
  height: auto;
  float: none;
  text-align: center;
  line-height: 1;
  background: var(--accent, #6c5ce7);
  color: #fff;
  margin: 0;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
}

.job_cont_cont {
  padding: 20px 0 28px;
  color: #4a5568;
  font: 400 14px/2 var(--font-sans);
}

/* ===== Contact ===== */
.contact_tt { font: 600 18px/1.5 var(--font-sans); color: #1a1a2e; margin-bottom: 12px; }
.contact_con { color: #4a5568; font: 400 15px/2 var(--font-sans); }

.map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

#allmap { height: 100%; width: 100%; }

/* ===== Footer ===== */
.foot {
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 54px;
  padding-top: 20px;
  overflow: hidden;
}

.foot_in {
  max-width: var(--container);
  width: 94%;
  margin: 0 auto;
  font: 13px/2 var(--font-sans);
  color: #95a5a6;
}

.foot2 {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  padding: 48px 0 40px;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}

.foot2_in {
  max-width: var(--container);
  width: 94%;
  margin: 0 auto;
  font: 13px/2.2 var(--font-sans);
  color: rgba(255,255,255,.55);
  padding-bottom: 0;
}

.foot2_in a { color: rgba(255,255,255,.75); }
.foot2_in a:hover { color: var(--accent-light, #74b9ff); }
.foot2_in p { margin-bottom: 8px; }

.foot2_in p:first-child a {
  display: inline-block;
  padding: 0 12px;
  position: relative;
}

.foot2_in p:first-child a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -2px;
  color: rgba(255,255,255,.25);
}

/* ===== Pagination ===== */
.page { padding: 50px 0; }

DIV.meneame { padding: 3px; font-size: 80%; margin: 3px; color: #fff; text-align: center; }

DIV.meneame A {
  padding: 8px 14px;
  color: #666;
  margin-right: 3px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all var(--transition);
}

DIV.meneame A:hover,
DIV.meneame A:active {
  color: #fff;
  background: var(--accent, #2563eb);
  border-color: var(--accent, #2563eb);
}

DIV.meneame SPAN.current {
  padding: 8px 14px;
  font-weight: bold;
  color: #fff;
  margin-right: 3px;
  background: var(--accent, #2563eb);
  border: 1px solid var(--accent, #2563eb);
  border-radius: 6px;
}

DIV.meneame SPAN.disabled {
  padding: 8px 14px;
  color: #bbb;
  margin-right: 3px;
}

/* ===== Rules List ===== */
.rules-list { list-style: none; }

.rules-list li {
  margin-bottom: 12px;
}

.rules-list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(0,0,0,.02);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  color: #2c3e50;
  font-size: 15px;
  transition: all var(--transition);
}

.rules-list li a::before {
  content: attr(data-num);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #636e72);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.rules-list li a:hover {
  background: var(--accent, #636e72);
  color: #fff;
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.rules-list li a:hover::before {
  background: rgba(255,255,255,.2);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .inmid { flex-direction: column; margin-top: -40px; }
  .inmid_left {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .lmenu, .mb35 { width: auto; margin: 0; }
  .lmenu a { padding: 10px 16px; border-left: none; border-radius: 20px; font-size: 13px; }
  .lmenu a:hover, .lmenu .on { padding-left: 16px; }
  .content-card { padding: 28px 24px; }
  .bannerin { height: 200px; }
  .menu ul { gap: 0; }
  .menu ul li a { padding: 8px 10px; font-size: 13px; }
}

@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .logo-text { font-size: 20px; }
  .menu ul li a { padding: 6px 8px; font-size: 12px; }
  .about_t { font-size: 24px; }
}
