/* 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;
  }
}
.customTheme {
  color: var(--TextPrimary);
  width: 100%;
  word-break: break-word;
}
.customTheme h1,
.customTheme h1 span {
  font-size: 36px;
  font-weight: 600;
  line-height: 135%;
  padding-top: 0;
  padding-bottom: 16px;
}
.customTheme h2,
.customTheme h2 span {
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  padding-top: 20px;
  padding-bottom: 12px;
}
.customTheme h3,
.customTheme h3 span {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  padding-top: 16px;
  padding-bottom: 16px;
}
.customTheme h4,
.customTheme h4 span {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  padding-top: 0px;
  padding-bottom: 16px;
}
.customTheme p,
.customTheme p span,
.customTheme ol,
.customTheme ul,
.customTheme li {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  padding-top: 0px;
  padding-bottom: 16px;
}
.customTheme ul {
  padding-left: 24px;
}
.customTheme ul li {
  list-style: disc;
}
.customTheme ol {
  padding-left: 24px;
}
.customTheme ol li {
  list-style: decimal;
}
.customTheme li::marker {
  color: var(--Theme);
  font-weight: 600;
}
.customTheme a {
  color: var(--Link);
  cursor: pointer;
}
.customTheme table {
  width: 100% !important;
  border-collapse: collapse;
}
.customTheme table tbody th,
.customTheme table tbody td {
  border: 4px solid var(--BgPage);
  padding: 12px 14px;
  text-align: left;
  max-width: 200px;
}
.customTheme table tbody th {
  background-color: var(--TableTh1);
}
.customTheme table tbody th:nth-child(1) {
  background-color: var(--TableTh1);
}
.customTheme table tbody th:nth-child(2) {
  background-color: var(--TableTh2);
}
.customTheme table tbody th:nth-child(3) {
  background-color: var(--TableTh3);
}
.customTheme table tbody th:nth-child(4) {
  background-color: var(--TableTh4);
}
.customTheme table tbody th:nth-child(5) {
  background-color: var(--TableTh5);
}
.customTheme table tbody th:nth-child(6) {
  background-color: var(--TableTh6);
}
.customTheme table tbody tr:nth-child(even) {
  background-color: var(--TableTd1);
  /* 偶数行背景色 */
}
.customTheme table tbody tr:nth-child(odd) {
  background-color: var(--TableTd2);
  /* 奇数行背景色 */
}
.anthorInfo {
  display: none;
  align-items: center;
  color: var(--TextTertiary);
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
}
.anthorInfo .point {
  margin: 0 6px;
}
.tableContentsMobile {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
  z-index: 5;
  padding: 6px 16px;
  margin: 10px 0;
  background-color: var(--BgPage);
  border-radius: 6px;
  box-shadow: 0px 4px 12px 0px rgba(50, 51, 60, 0.1);
}
.tableContentsMobile .contentsTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.tableContentsMobile .contentsTitle .title {
  color: var(--TextPrimary);
  font-size: 18px;
  font-weight: 600;
  line-height: 135%;
}
.tableContentsMobile .contentsTitle svg {
  width: 32px;
  height: 32px;
}
.tableContentsMobile .contentsTitle .topArrow {
  display: none;
}
.tableContentsMobile .contentsList {
  margin-top: 12px;
  max-height: 390px;
  overflow-y: scroll;
}
.tableContentsMobile .contentsList .contentsItem {
  margin-bottom: 12px;
}
.tableContentsMobile .contentsList .contentsItem .contentsLink {
  display: flex;
  align-items: flex-start;
  color: var(--TextPrimary);
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
}
.tableContentsMobile .contentsList .contentsItem .contentsLink svg {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  margin-right: 8px;
}
.tableContentsMobile .contentsList .contentsItem .contentsLink:hover {
  color: var(--Hover);
}
.tableContentsMobile .contentsList .contentsItem.active .contentsLink {
  color: var(--Theme);
}
@media only screen and (max-width: 767px) {
  .customTheme h1,
  .customTheme h1 span {
    font-size: 24px;
  }
  .customTheme h2,
  .customTheme h2 span {
    font-size: 22px;
  }
  .customTheme h3,
  .customTheme h3 span {
    font-size: 20px;
  }
  .customTheme p,
  .customTheme p span,
  .customTheme ol,
  .customTheme ul,
  .customTheme li {
    font-size: 16px;
  }
  .anthorInfo {
    display: flex;
  }
  .tableContentsMobile {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .anthorInfo {
    display: flex;
  }
  .tableContentsMobile {
    display: block;
  }
}
.wrap .moduleTitle .title {
  font-size: 24px;
}
.popularList {
  width: 324px;
}
.popularList .popularItem {
  margin-top: 20px;
}
.popularList .popularItem .itemLink {
  display: flex;
  align-items: center;
}
.popularList .popularItem .itemLink .itemImage {
  flex-shrink: 0;
  width: 96px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.popularList .popularItem .itemLink .itemImage .itemImg {
  height: 100%;
  width: auto;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
}
.popularList .popularItem .itemLink .itemInfo {
  width: 100%;
}
.popularList .popularItem .itemLink .itemInfo .itemTitle {
  color: var(--TextPrimary);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: normal;
  -webkit-line-clamp: 5;
}
.popularList .popularItem .itemLink .itemInfo .itemRead {
  display: flex;
  align-items: center;
  color: var(--TextTertiary);
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
  margin-top: 6px;
}
.popularList .popularItem .itemLink .itemInfo .itemRead .clock {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.popularList .popularItem:hover .itemLink .itemImage {
  opacity: 0.8;
}
.popularList .popularItem:hover .itemLink .itemInfo .itemTitle {
  color: var(--Hover);
}
.relatedWrap {
  background: #F5F5F5;
}
.relatedWrap .relatedContent {
  max-width: 1400px;
  padding: 60px 20px;
  margin: auto;
}
.relatedList {
  display: grid;
  grid-gap: 30px 30px;
  grid-template-columns: repeat(3, calc((100% - 60px) / 3));
  margin-top: 24px;
}
.relatedList .relatedItem .relatedItemLink .itemImage {
  width: 100%;
}
.relatedList .relatedItem .relatedItemLink .itemImage .itemImg {
  width: 100%;
  height: auto;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}
.relatedList .relatedItem .relatedItemLink .itemInfo {
  margin: 16px 0;
}
.relatedList .relatedItem .relatedItemLink .itemInfo .itemCate {
  color: var(--Secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 4px;
}
.relatedList .relatedItem .relatedItemLink .itemInfo .itemTitle {
  color: var(--TextPrimary);
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: normal;
  -webkit-line-clamp: 3;
}
.relatedList .relatedItem .relatedItemLink .itemInfo .itemRead {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: var(--TextTertiary);
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
}
.relatedList .relatedItem .relatedItemLink .itemInfo .itemRead svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.relatedList .relatedItem:hover .itemImage {
  opacity: 0.8;
}
.relatedList .relatedItem:hover .itemInfo .itemTitle {
  color: var(--Hover);
}
@media screen and (max-width: 768px) {
  .relatedWrap .relatedContent {
    padding: 32px 20px;
  }
  .relatedList {
    grid-gap: 20px 20px;
    grid-template-columns: repeat(1, calc(100% / 1));
  }
  .relatedList .relatedItem .relatedItemLink .itemInfo .itemTitle {
    font-size: 18px;
  }
}
.wrap .contWrap {
  display: flex;
  margin: 40px auto;
}
.wrap .contWrap .contLeft {
  flex-shrink: 0;
  width: 220px;
  margin-right: 50px;
}
.wrap .contWrap .contLeft .tableContents {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  z-index: 5;
  padding: 20px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 12px 0px rgba(50, 51, 60, 0.1);
}
.wrap .contWrap .contLeft .tableContents .title {
  color: var(--TextPrimary);
  font-size: 16px;
  font-weight: 600;
  line-height: 135%;
}
.wrap .contWrap .contLeft .tableContents .contentsList {
  max-height: 80vh;
  overflow-y: scroll;
}
.wrap .contWrap .contLeft .tableContents .contentsList .contentsItem {
  padding-top: 12px;
}
.wrap .contWrap .contLeft .tableContents .contentsList .contentsItem .contentsLink {
  display: flex;
  align-items: flex-start;
  color: var(--TextPrimary);
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
}
.wrap .contWrap .contLeft .tableContents .contentsList .contentsItem .contentsLink svg {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  margin-right: 8px;
}
.wrap .contWrap .contLeft .tableContents .contentsList .contentsItem .contentsLink:hover {
  color: var(--Hover);
}
.wrap .contWrap .contLeft .tableContents .contentsList .contentsItem.active .contentsLink {
  color: var(--Theme);
}
.wrap .contWrap .contMidden .guide {
  display: flex;
  align-items: center;
}
.wrap .contWrap .contMidden .guide .guideLink {
  display: flex;
  color: var(--Theme);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  flex-shrink: 0;
  cursor: pointer;
}
.wrap .contWrap .contMidden .guide .guideLink svg {
  width: 18px;
  height: 18px;
}
.wrap .contWrap .contMidden .guide .guideLink:hover {
  text-decoration: underline;
}
.wrap .contWrap .contMidden .guide .guideIcon {
  color: var(--TextTertiary);
  font-weight: 400;
  line-height: 14px;
  margin: 0 6px;
}
.wrap .contWrap .contMidden .guide .guideText {
  color: var(--TextTertiary);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: normal;
}
.wrap .contWrap .contMidden .articleTitle {
  color: var(--TextPrimary);
  font-size: 32px;
  font-weight: 600;
  line-height: 135%;
  margin: 16px 0;
}
.wrap .contWrap .contMidden .authorInfo {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: var(--TextTertiary);
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
}
.wrap .contWrap .contMidden .authorInfo .point {
  margin: 0 6px;
}
.wrap .contWrap .contMidden .desc {
  color: var(--TextPrimary);
  font-size: 18px;
  font-weight: 400;
  line-height: 165%;
}
.wrap .contWrap .contMidden .articleImg img {
  width: 100%;
  height: auto;
  margin: 10px 0;
}
.wrap .contWrap .langingWrap {
  max-width: 960px;
  margin: auto;
}
.wrap .contWrap .contRight {
  flex-shrink: 0;
  margin-left: 50px;
}
@media only screen and (max-width: 767px) {
  .wrap .contWrap {
    margin: 16px auto 40px auto;
  }
  .wrap .contWrap .contLeft {
    display: none;
  }
  .wrap .contWrap .contMidden .guide {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
  }
  .wrap .contWrap .contMidden .guide .guideLink svg {
    width: 16px;
    height: 16px;
  }
  .wrap .contWrap .contMidden .articleTitle {
    font-size: 22px;
    margin: 10px 0;
  }
  .wrap .contWrap .contMidden .desc {
    font-size: 16px;
  }
  .wrap .contWrap .contRight {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .wrap .contWrap .contLeft {
    display: none;
  }
}
