/* Init 样式 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body,
hr,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
p {
  padding: 0;
  margin: 0;
}
/* 文档基本样式 全局设置 */
p,
a,
dl,
dt,
dd,
ul,
ol,
li,
form,
table,
input,
textarea {
  font-family: var(--FontBody);
}
h1,
h2,
h3,
h4,
h5,
h6,
div,
span {
  font-family: var(--FontTitle);
}
/* 链接样式 */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* 列表样式重置 */
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  border-style: none;
  vertical-align: middle;
  object-fit: cover;
}
/*合并表格边框*/
table,
td,
tr,
th {
  border-collapse: collapse;
}
/* 表单元素样式重置 */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  outline: none;
}
/* 按钮样式 */
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
/* 表格样式 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 清除浮动 */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}
/* 文本溢出省略号 */
.loading {
  color: var(--TextSecondary);
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  margin-top: 20px;
}
.adTitle {
  font-size: 12px;
  line-height: 14px;
  margin: 3px 0 6px 0;
  color: var(--TextTertiary);
  text-align: start;
}
/* 设置广告高度 */
.adsHeight {
  width: 100%;
  height: 252px;
  margin-bottom: 10px;
}
@media (max-width: 355px) {
  .adsHeight {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 356px) {
  .adsHeight {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 748px) {
  .adsHeight {
    width: 100%;
    height: 280px;
  }
}
.wrap {
  min-height: 90vh;
}
.wrap .moduleTitle {
  border-bottom: 4px solid #F4F4F4;
}
.wrap .moduleTitle .title {
  width: fit-content;
  color: var(--TextPrimary);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  padding-bottom: 10px;
  box-shadow: 0 4px 0 var(--Theme);
}
.wrap .contWrap {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
/* 响应式布局 */
@media only screen and (max-width: 767px) {
  .wrap .moduleTitle .title {
    font-size: 24px;
  }
  .wrap .contWrap {
    padding: 0px 16px;
  }
}
.headWrap {
  width: 100%;
  height: 68px;
  background: var(--BgNav);
  border-bottom: 1px solid #FFEAEA;
}
.headWrap .navContainer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headWrap .navContainer .leftSection {
  height: 100%;
}
.headWrap .navContainer .leftSection .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0px 60px;
  background-color: #FFFFFF;
}
.headWrap .navContainer .leftSection .logo img {
  height: 40px;
  width: auto;
}
.headWrap .navContainer .menuIcon {
  display: none;
  padding: 0 16px;
  cursor: pointer;
}
.headWrap .navContainer .menuIcon .menuImg,
.headWrap .navContainer .menuIcon svg {
  width: 24px;
  height: 24px;
}
.headWrap .navContainer .rightSection {
  height: 100%;
  padding-right: 60px;
  display: flex;
  align-items: center;
}
.headWrap .navContainer .rightSection .navMenu {
  height: 100%;
  margin: 0 32px;
}
.headWrap .navContainer .rightSection .navMenu .menuList {
  height: 100%;
  display: flex;
  gap: 32px;
}
.headWrap .navContainer .rightSection .navMenu .menuList .menuItem {
  height: 100%;
  display: flex;
  align-items: center;
}
.headWrap .navContainer .rightSection .navMenu .menuList .menuItem .menuLink {
  font-family: var(--FontTitle);
  color: var(--TextNav);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
.headWrap .navContainer .rightSection .navMenu .menuList .menuItem .menuLink:hover {
  color: var(--Hover);
  border-bottom: 2px solid var(--Hover);
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu .moreBtn {
  width: 18.7px;
  height: 4px;
  margin: 0px 24px;
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu .dropdownMenu::-webkit-scrollbar {
  /* 隐藏滚动条 */
  display: none;
  /* Chrome Safari */
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu .dropdownMenu {
  display: none;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  max-height: 300px;
  overflow-y: scroll;
  /* 隐藏滚动条 */
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  position: absolute;
  top: 80%;
  right: 50%;
  z-index: 5;
  transform: translateX(50%);
  padding: 20px;
  background: #FFFFFF;
  border-radius: 5px;
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu .dropdownMenu .dropdownMenuLink {
  display: block;
  width: fit-content;
  font-family: var(--FontTitle);
  color: var(--TextSecondary);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  padding: 6px 0;
  margin-bottom: 10px;
  border-bottom: 2px solid transparent;
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu .dropdownMenu .dropdownMenuLink:hover {
  color: var(--Hover);
  border-bottom: 2px solid var(--Hover);
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu .dropdownMenu .dropdownMenuLink:last-child {
  margin-bottom: 0px;
}
.headWrap .navContainer .rightSection .navMenu .menuList .moreMenu:hover .dropdownMenu {
  display: flex;
}
.headWrap .navContainer .rightSection .searchBox {
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  width: 320px;
  height: 40px;
  padding: 12px 16px;
}
.headWrap .navContainer .rightSection .searchBox input {
  width: 100%;
  color: var(--TextNav);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  background: transparent;
  border: none;
}
.headWrap .navContainer .rightSection .searchBox input::placeholder {
  color: var(--TextNav);
}
.headWrap .navContainer .rightSection .searchBox .searchBtn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 12px;
  cursor: pointer;
}
.headWrap .navContainer .rightSection .searchBox .searchBtn .searchSvg {
  width: 24px;
  height: 24px;
}
/* 移动端菜单样式 */
.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: none;
}
.mobileMenu.active {
  display: block;
}
.mobileMenu .menuContent {
  position: relative;
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0px 0px 16px 16px;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
.mobileMenu .menuContent.show {
  transform: translateY(0);
}
.mobileMenu .menuContent .menuHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 16px;
}
.mobileMenu .menuContent .menuHeader .logo {
  height: 30px;
}
.mobileMenu .menuContent .menuHeader .logo img {
  height: 100%;
  width: auto;
}
.mobileMenu .menuContent .menuHeader .closeIcon {
  display: flex;
  cursor: pointer;
}
.mobileMenu .menuContent .menuHeader .closeIcon svg {
  width: 24px;
  height: 24px;
}
.mobileMenu .menuContent .mobileSearch {
  padding: 16px;
}
.mobileMenu .menuContent .mobileSearch .searchBox {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  border: 1px solid var(--Border);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0 16px;
}
.mobileMenu .menuContent .mobileSearch .searchBox input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--TextPrimary);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.mobileMenu .menuContent .mobileSearch .searchBox input::placeholder {
  color: var(--TextTertiary);
}
.mobileMenu .menuContent .mobileSearch .searchBox .searchBtn {
  display: flex;
  align-items: center;
  padding-left: 12px;
}
.mobileMenu .menuContent .mobileSearch .searchBox .searchBtn .searchIcon {
  width: 24px;
  height: 24px;
}
.mobileMenu .menuContent .mobileNav {
  height: auto;
  max-height: calc(60vh - 48px - 72px);
  padding: 0 16px 32px 16px;
  overflow-y: scroll;
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.mobileMenu .menuContent .mobileNav .categoryList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobileMenu .menuContent .mobileNav .categoryList .categoryItem .itemLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0px 16px;
  border-bottom: 1px solid var(--Border);
}
.mobileMenu .menuContent .mobileNav .categoryList .categoryItem .itemLink .itemTitle {
  font-family: var(--FontTitle);
  color: var(--TextPrimary);
  font-size: 16px;
  font-weight: 500;
}
.mobileMenu .menuContent .mobileNav .categoryList .categoryItem .itemLink .rightArrow {
  width: 14px;
  height: 24px;
}
.mobileMenu .menuContent .mobileNav .categoryList .categoryItem:hover .itemLink .itemTitle {
  color: var(--Hover);
}
.mobileMenu .menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.mobileMenu .menuOverlay.show {
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .headWrap {
    height: 48px;
  }
  .headWrap .navContainer .leftSection .logo {
    padding: 0px 16px;
  }
  .headWrap .navContainer .leftSection .logo img {
    height: 30px;
  }
  .headWrap .navContainer .menuIcon {
    display: flex;
  }
  .headWrap .navContainer .rightSection {
    display: none;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  .headWrap .navContainer .leftSection .logo {
    padding: 0px 30px;
  }
  .headWrap .navContainer .leftSection .logo img {
    height: 30px;
  }
  .headWrap .navContainer .rightSection {
    padding-right: 30px;
  }
  .headWrap .navContainer .rightSection .navMenu {
    margin: 0 16px;
  }
  .headWrap .navContainer .rightSection .navMenu .menuList {
    gap: 16px;
  }
  .headWrap .navContainer .rightSection .searchBox {
    width: auto;
  }
}
.footerWrap {
  background: var(--BgFooter);
}
.footerWrap .footer {
  max-width: 1400px;
  padding: 48px 20px;
  margin: 0 auto;
}
.footerWrap .footer .footeGuide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #9DA5B0;
}
.footerWrap .footer .footeGuide .footLogo {
  display: block;
}
.footerWrap .footer .footeGuide .footLogo .footLogoImg {
  height: 40px;
  width: auto;
}
.footerWrap .footer .footeGuide .tabbar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footerWrap .footer .footeGuide .tabbar a,
.footerWrap .footer .footeGuide .tabbar .line {
  color: var(--TextFooter);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.footerWrap .footer .disclaimerText {
  color: #CED2D7;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.footerWrap .backTop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100;
  bottom: 100px;
  right: -200%;
  transition: right 0.2s ease-out;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--Theme);
  box-shadow: 0px 4px 12px 0px rgba(46, 52, 54, 0.1);
}
.footerWrap .backTop .svgIcon {
  width: 25px;
  height: 25px;
}
.footerWrap .backTop:hover {
  background: var(--Hover);
}
.footerWrap .cookie-notice-container {
  background-color: rgba(255, 255, 255, 0.5);
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #6f6f6f;
  font-size: 16px;
  text-align: center;
  z-index: 999999;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.footerWrap .cookie-notice-container .container {
  max-width: 900px;
  z-index: 2;
  position: relative;
  text-align: center;
  padding: 10px;
  padding-right: 100px;
  margin: 0 auto;
}
.footerWrap .cookie-notice-container .container a,
.footerWrap .cookie-notice-container .container button,
.footerWrap .cookie-notice-container .container video {
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  text-decoration: none;
}
.footerWrap .cookie-notice-container .container .moreJump {
  color: #0186FF;
}
.footerWrap .cookie-notice-container .container button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-8px, -50%);
  display: block;
  padding: 0 25px;
  height: 30px;
  line-height: 30px;
  background: #0186FF;
  border: none;
  color: #fff;
  margin: 0 auto;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  cursor: pointer;
}
.footerWrap .cookie-notice-container:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  z-index: -1;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 1024px) {
  .footerWrap .footer .footeGuide {
    display: block;
  }
  .footerWrap .footer .footeGuide .footLogo {
    margin-bottom: 24px;
  }
  .footerWrap .footer .footeGuide .footLogo .footLogoImg {
    height: 30px;
  }
  .footerWrap .footer .footeGuide .tabbar {
    flex-wrap: wrap;
  }
  .footerWrap .backTop {
    bottom: 40px;
    width: 40px;
    height: 40px;
  }
  .footerWrap .backTop .svgIcon {
    width: 20px;
    height: 20px;
  }
  .footerWrap .cookie-notice-container {
    font-size: 14px;
  }
}
.footerHtml {
  min-height: 90vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  color: var(--TextPrimary);
  word-break: break-word;
}
.footerHtml h1,
.footerHtml h1 span {
  font-size: 36px;
  font-weight: 600;
  line-height: 135%;
  padding-top: 0;
  padding-bottom: 16px;
}
.footerHtml h2,
.footerHtml h2 span {
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  padding-top: 20px;
  padding-bottom: 12px;
}
.footerHtml h3,
.footerHtml h3 span {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  padding-top: 16px;
  padding-bottom: 16px;
}
.footerHtml h4,
.footerHtml h4 span {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  padding-top: 0px;
  padding-bottom: 16px;
}
.footerHtml p,
.footerHtml p span,
.footerHtml ol,
.footerHtml ul,
.footerHtml li {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  padding-top: 0px;
  padding-bottom: 16px;
}
.footerHtml ul {
  padding-left: 24px;
}
.footerHtml ul li {
  list-style: disc;
}
.footerHtml ol {
  padding-left: 24px;
}
.footerHtml ol li {
  list-style: decimal;
}
.footerHtml li::marker {
  color: var(--Theme);
  font-weight: 600;
}
.footerHtml a {
  color: var(--Link);
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .footerHtml h1,
  .footerHtml h1 span {
    font-size: 24px;
  }
  .footerHtml h2,
  .footerHtml h2 span {
    font-size: 22px;
  }
  .footerHtml h3,
  .footerHtml h3 span {
    font-size: 20px;
  }
  .footerHtml p,
  .footerHtml p span,
  .footerHtml ol,
  .footerHtml ul,
  .footerHtml li {
    font-size: 16px;
  }
}
