/* MinionPro 字体定义 */
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-It.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-BoldIt.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-Medium.otf') format('opentype');
  font-weight: 500;
  /* Medium通常对应500 */
  font-style: normal;
}
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-MediumIt.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-Semibold.otf') format('opentype');
  font-weight: 600;
  /* Semibold通常对应600 */
  font-style: normal;
}
@font-face {
  font-family: 'MinionPro';
  src: url('../font/MinionPro-SemiboldIt.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}
/* 紧缩(Condensed)变体 - 需要单独定义 */
@font-face {
  font-family: 'MinionProCondensed';
  src: url('../font/MinionPro-BoldCn.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'MinionProCondensed';
  src: url('../font/MinionPro-BoldCnt.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}
/* 定义 CSS 变量 */
:root {
  --background-color: #ffffff;
  /* S header */
  --header-bg: #fdfdfd;
  --header-nav-text-color: #b82842;
  --header-mode-color: #f7b80e;
  /* E header */
  /* S module */
  --module-bg1: #ffffff;
  --module-bg2: #E3E5E5;
  --module-bg3: #b82842;
  --module-tit-text-color: #b82842;
  --module-tit-input-box-border-color: #B82842;
  --module-tit-input-box-text-color: #b82842;
  --module-tit-select-box-text-color: #666;
  --module-con-text-color1: #000;
  --module-con-text-color2: #b82842;
  --module-con-text-color3: #fff;
  --module-con-text-color4: #fff;
  /* E module */
  /* S button */
  --border-btn-color: #fff;
  --border-btn-color-red: #b82842;
  --border-btn-color-red-solid: #b82842;
  --border-btn-color-red-solid-text-color: #fff;
  --links-btn-text-color: #b82842;
  /* E button */
  /* S tabs */
  --tabs-list-bg: #fff;
  --tabs-list-text-color: #1a1a1a;
  --tabs-list-text-color-active: #b82842;
  --tabs-list-line-active: #b82842;
  --tabs-panel-bg: #f6f7f9;
  /* E tabs */
  /* S pagination */
  --pagination-icons-box-bg: #eeeeee;
  --pagination-icons-box-color: #707070;
  --pagination-text-color: #1a1a1a;
  /* E pagination */
}
/* 暗黑主题变量 */
body.dark-theme {
  --background-color: #121212;
  /* S header */
  --header-bg: #1f1f1f;
  --header-nav-text-color: #ffffff;
  --header-mode-color: #003049;
  /* E header */
  /* S module */
  --module-bg1: #0c0c0c;
  --module-bg2: #2b2c2f;
  --module-bg3: #fff;
  --module-tit-text-color: #fff;
  --module-tit-input-box-border-color: #fff;
  --module-tit-input-box-text-color: #fff;
  --module-tit-select-box-text-color: #fff;
  --module-con-text-color1: #fff;
  --module-con-text-color2: #fff;
  --module-con-text-color3: #fff;
  --module-con-text-color4: #000;
  /* E module */
  /* S button */
  --border-btn-color: #fff;
  --border-btn-color-red: #fff;
  --border-btn-color-red-solid: #b82842;
  --border-btn-color-red-solid-text-color: #fff;
  --links-btn-text-color: #fff;
  /* E button */
  /* S tabs */
  --tabs-list-bg: #0c0c0c;
  --tabs-list-text-color: #fff;
  --tabs-list-text-color-active: #b82842;
  --tabs-list-line-active: #b82842;
  --tabs-panel-bg: #2b2c2f;
  /* E tabs */
  /* S pagination */
  --pagination-icons-box-bg: #0c0c0c;
  --pagination-icons-box-color: #fff;
  --pagination-text-color: #fff;
  /* E pagination */
}
* {
  margin: 0;
  outline: none;
  border: none;
  padding: 0;
  list-style: none;
  background-color: transparent;
  text-decoration: none;
  letter-spacing: 0;
  font-family: MinionPro;
  box-sizing: border-box;
}
html {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1;
}
h1 {
  font-size: 48px;
}
@media screen and (max-width: 1400px) {
  h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 36px;
  }
}
h2 {
  font-size: 36px;
}
@media screen and (max-width: 1400px) {
  h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 28px;
  }
}
h3 {
  font-size: 32px;
}
@media screen and (max-width: 1400px) {
  h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 26px;
  }
}
h4 {
  font-size: 30px;
}
@media screen and (max-width: 1400px) {
  h4 {
    font-size: 26px;
  }
}
@media screen and (max-width: 992px) {
  h4 {
    font-size: 24px;
  }
}
h5 {
  font-size: 28px;
}
@media screen and (max-width: 1400px) {
  h5 {
    font-size: 24px;
  }
}
@media screen and (max-width: 992px) {
  h5 {
    font-size: 22px;
  }
}
h6 {
  font-size: 24px;
}
@media screen and (max-width: 1400px) {
  h6 {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  h6 {
    font-size: 20px;
  }
}
p {
  font-size: 18px;
}
@media screen and (max-width: 992px) {
  p {
    font-size: 16px;
  }
}
.pic,
.logo,
.video {
  font-size: 0;
  line-height: 0;
}
.pic .ele,
.logo .ele,
.video .ele {
  width: 100%;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1328px;
  }
}
