﻿@charset "utf-8";

:root {
  --themeColor: #0060df;
  --themeLinearColor: linear-gradient(270deg, #00aaff, #0060df);
  --themeBorderColor: #00aaff;
  --swiper-navigation-color: #0060df;
}

html {
  width: 100%;
  overflow-x: hidden;
}

html,
body,
header,
section,
aside,
footer,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
blockquote {
  margin: 0px;
  padding: 0px;
}

html,
body {
  width: 100%;
  font-family: "Microsoft YaHei", Arial, "Helvetica Neue", Helvetica,
    "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei",
    sans-serif;
  color: #252525;
}

body.over {
  overflow: hidden;
}

a {
  display: block;
  text-decoration: none;
}

img {
  display: block;
  border: none;
}

ul,
ol,
li {
  list-style: none;
}

input,
button,
textarea,
select {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  outline: 0px;
  border: 0px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Microsoft YaHei", Arial, "Helvetica Neue", Helvetica,
    "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei",
    sans-serif;
}

input,
textarea,
select {
  border: 1px solid #bfbfbf;
}

button:disabled,
input:disabled,
select:disabled {
  background-color: #999999 !important;
  border-color: #999999 !important;
  cursor: not-allowed !important;
  color: #ffffff !important;
}

/* 设置滚动条样式 */
::-webkit-scrollbar {
  width: 10px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #bbbbbb;
}

.lt {
  float: left;
}

.rt {
  float: right;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.oneLineEllipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.webkitBox {
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}

.plusTag {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 0 4px;
  box-sizing: border-box;
  margin-left: 12px;
  font-size: 12px;
  border-radius: 2px;
  color: #ffffff;
  background: #3a3a3a;
}

.container {
  width: 1026px;
  margin: 0 auto;
}

.formGroup {
  position: relative;
  height: 60px;
  font-size: 0px;
}

.formInput,
.formSelect {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  outline: 0px;
}

.formSelect {
  background: url(img/select-caret.png) right 10px center no-repeat;
}

.formTip {
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  color: red;
  display: none;
}

.mobileInput {
  width: calc(100% - 90px);
  border-right: 0px;
}

.getValicode {
  width: 90px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  background-color: var(--themeColor);
  color: #fff;
  cursor: pointer;
}

/* 公用弹框 */
.dialog {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.dialogBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.dialogBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
}

.closeDialog {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0px;
  right: 0px;
  background: url(/css/img/close.svg) center center no-repeat;
  cursor: pointer;
}

/* **** 共同模拟行业下拉选择框 **** */
.industryValBtn,
.industryInput {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  outline: 0px;
  text-align: left;
  border: 1px solid #cccccc;
}

.industryValBtn {
  position: relative;
  height: 100%;
  padding: 0px;
  border: 0px;
  cursor: pointer;
}

.industryValBtn::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  border: 7px transparent solid;
  border-top-color: #ccc;
  z-index: 10;
}

.industryValBtn[data-value="0"] {
  color: #777777;
}

.industryBox {
  box-sizing: border-box;
  position: absolute;
  top: 40px;
  left: 0px;
  width: 100%;
  height: 400px;
  /* padding-left: 10px; */
  border: 1px solid #cccccc;
  border-top: 0px;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  z-index: 900;
  display: none;
}

.industryList {
  margin: 0;
}

.industryCategory {
  position: relative;
  height: 30px;
  margin: 0px;
  padding-left: 25px;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
}

.industryCategory::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  border: 5px solid;
  border-color: transparent transparent transparent #333333;
}

.industryCategory.active::after {
  top: 13px;
  transform: rotate(90deg);
}

.subList {
  display: none;
}

.subList .industryItem {
  padding-left: 40px;
}

.industryCategory.active + .subList {
  display: block;
}

.industryItem {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
}

.industryTag {
  display: block;
}

/* **** 公共导航 **** */
.navWrap {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 110px;
  z-index: 1000;
}

.nav {
  width: 100%;
  height: 110px;
  background-color: #fff;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.08);
}

.navBar {
  height: 40px;
  background-color: #0c2238;
}

.navBar .container {
  width: 1026px;
}

.navBarMenuList {
  margin-left: auto;
}

.navBarMenuItem {
  position: relative;
}

.navBarMenuItem:not(:last-child) {
  margin-right: 32px;
}

.navBarMenuItem.divideLine::after {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 24px;
  background-color: #666666;
}

.navBarMenuItem.divideLine {
  margin-right: 0;
}

.navBarMenuLink {
  font-size: 14px;
  color: #cccccc;
  line-height: 40px;
}

.navBarContactLink {
  display: inline-block;
  color: #cccccc;
}

.navBarMenuLink:hover,
.navBarContactLink:hover {
  color: #ffffff;
}

.navIcon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: cover;
}

.newsCount {
  display: block;
  position: absolute;
  top: 4px;
  right: -24px;
  padding: 0 6px;
  box-sizing: border-box;
  line-height: 16px;
  color: #ffffff;
  background-color: #c30d23;
  border-radius: 8px;
  font-size: 12px;
  z-index: 2;
}

.profile {
  position: relative;
  font-size: 0px;
  cursor: pointer;
}

.profileDivide,
.goTdLink {
  display: inline-block;
  vertical-align: middle;
}

.profile:hover .loginStatusBtnText {
  color: #ffffff;
}

.profileAvatar .cls-1 {
  fill: #ccc;
}

.profileAvatar .cls-2 {
  fill: #fff;
}

.profile.isLogin circle {
  fill: #ffffff;
}

.profile.isLogin .loginStatusBtnText {
  color: #ffffff;
}

.profileAvatar {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
}

.loginStatusBtnText {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #cccccc;
}
.profileBox{
  position: absolute;
  display: none;
  top: 10px;
  left: 0;
  width: 140px;
  padding: 20px 0 0;
  z-index: 999;
}
.profileInfos {
  width: 100%;
  padding: 0px 20px;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

.profileInfos::before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-bottom-color: #ffffff;
  top: 0px;
  left: 28px;
}

.profile.isLogin:hover .profileBox {
  display: block;
}

.goProfiles {
  width: 100%;
  font-size: 14px;
  color: #000000;
  line-height: 40px;
  text-align: center;
}

.goProfiles:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.goProfiles:hover {
  color: var(--themeColor);
}

.profileIcon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

.navEvents {
  position: absolute;
  top: 39px;
  left: -50px;
  border-top: 1px solid #333333;
  background-color: #fff;
  z-index: 1000;
  display: none;
}

.navBarMenuItem:hover .navEvents {
  display: block;
}

.navEventsBox {
  position: relative;
  padding: 14px 20px;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #eee;
}

.navEventsBox::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 68px;
  width: 10px;
  height: 10px;
  border-left: 1px #eee solid;
  border-top: 1px #eee solid;
  background-color: #fff;
  transform: rotate(45deg);
}

.navEventLink {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #252525;
}

.navEventLink:hover {
  color: #c30d23;
}

.navEventSummary {
  display: block;
  font-size: 12px;
}

.navEventSummaryDivide {
  display: inline-block;
  vertical-align: middle;
  height: 10px;
  margin: 0 5px;
  font-size: 12px;
  font-style: normal;
  line-height: 10px;
  overflow: hidden;
}

.navAllEventLink {
  margin-top: 10px;
  line-height: 20px;
  color: var(--themeColor);
}

.navBarContactBox {
  display: none;
  position: absolute;
  top: 20px;
  right: 0px;
  width: 150px;
  padding-top: 20px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.navBarContactSubLink {
  box-sizing: border-box;
  padding-left: 20px;
  font-size: 12px;
  text-align: left;
  color: #252525;
}

.navBarContactSubLink:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}

.navBarContactSubLink:hover {
  color: var(--themeColor);
}

.navBarMenuItem:hover .navBarContactBox {
  display: block;
}

.menu {
  position: relative;
  width: 100%;
  height: 70px;
}

.menu .container {
  justify-content: flex-start;
}

.menuLogoImg {
  width: auto;
  height: 42px;
}

.menuList {
  margin-left: 28px;
}

.menuItem {
  margin-right: 22px;
  padding-right: 24px;
  box-sizing: border-box;
}

.menuItemLink {
  position: relative;
  font-size: 16px;
  color: #252525;
  cursor: pointer;
}

.menuItemLink.active,
.menuItem:hover .menuItemLink {
  border-bottom-color: var(--themeColor);
  color: var(--themeColor);
}

.menuItemLink.hasSubMenu::after {
  content: "";
  position: absolute;
  right: -20px;
  width: 16px;
  height: 16px;
  /* margin-left: 4px; */
  background: url(img/menuItem_icon.svg) center center no-repeat;
  background-size: cover;
}

.menuItemLink::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background-color: transparent;
}

.menuItemLink.hasSubMenu::before {
  transform: translateX(-50%);
}

.menuItemLink.active::before,
.menuItem:hover .menuItemLink::before {
  background-color: var(--themeColor);
}

.menuItem:hover .menuItemLink.hasSubMenu::after {
  background: url(img/menuItem_icon_active.svg) center center no-repeat;
  background-size: cover;
}

.subMenu {
  position: absolute;
  display: none;
  left: 0px;
  top: 44px;
  width: 100%;
  padding-top: 20px;
  box-sizing: border-box;
  z-index: 99;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.08);
}

.menuItem:hover .subMenu {
  display: block;
}

.subMenuBox {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  background-color: #fff;
}

.subMenuLink {
  margin: 0 16px 8px 0;
  font-size: 14px;
  color: #252525;
}

.subMenuLink:hover,
.subMenuLink.active {
  color: var(--themeColor);
}

.menuOperateBox {
  margin-left: auto;
}

.navBtnLink {
  padding-left: 24px;
  box-sizing: border-box;
  font-size: 16px;
  color: #666666;
}

.navBtnLink:not(:last-child) {
  margin-right: 20px;
}

.navBtnLink:hover {
  color: var(--themeColor);
}

.navBtnLink.explosiveIcon {
  background: url(img/explosiveIcon.png) left center no-repeat;
  background-size: 16px;
}

.navBtnLink.searchIcon {
  background: url(img/goSearch.svg) left center no-repeat;
  background-size: 16px;
}

/* 二级菜单新样式 */
.subMenuRow {
  align-items: baseline;
  width: 1026px;
  margin: 0 auto;
}

.subMenuRow:not(:last-child) {
  margin-bottom: 12px;
}

.subMenuRow.start {
  justify-content: flex-start;
}

.subMenuRow.center {
  justify-content: center;
}

.subMenuRow.end {
  justify-content: flex-end;
}

.subMenuLabel {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 16px;
  font-size: 14px;
  color: #666666;
}

.subMenuLabel::after {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 0 0 16px;
  background-color: #666666;
}

.subMenuList {
  flex: auto;
  justify-content: flex-start !important;
  flex-wrap: wrap;
}

.subMenuList .subMenuLink {
  margin: 0 16px 0 0;
}

/* **** 公共页面内容容器 **** */
.contentBox {
  position: relative;
  width: 1024px;
  margin: 0 auto 60px;
}

.main {
  width: 660px;
}

.asideBox {
  width: 318px;
}

/* **** 公共文章列表 **** */
.articleListLabels {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 10px;
}

.articleListLabelLink {
  margin: 0 20px 10px 0;
  padding: 0 20px;
  font-size: 14px;
  line-height: 30px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  color: #666666;
}

.articleListLabelLink:hover,
.articleListLabelLink.active {
  border-color: var(--themeBorderColor);
  background: var(--themeLinearColor);
  color: #ffffff;
}

.articleCaption {
  margin-bottom: 10px;
  font-size: 20px;
}

.articleItem {
  box-sizing: border-box;
  position: relative;
  /* width: 676px; */
  width: 660px;
  margin-bottom: 32px;
  padding: 16px;
  left: -16px;
}

.articleItem::before {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 16px;
  width: 394px;
  height: 1px;
  background-color: #e5e5e5;
}

.articleItem.noBorder,
.articleItem:last-child {
  margin-bottom: 0px;
}

.articleItem.noBorder::before,
.articleItem:last-child::before {
  display: none;
}

.articleItem:hover {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.08);
}

.articleItemPic {
  position: relative;
  width: 211px;
  margin-right: 24px;
  overflow: hidden;
}

.articlePicImg {
  width: 100%;
  border-radius: 4px;
}

.articlePicImg:hover {
  opacity: 0.8;
}

.articleItemWrap {
  /* width: 409px; */
  width: 393px;
}

.articleItemWrap p a {
  color: var(--themeColor);
  display: inline-block;
}

.articleItemWrap p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}

.articleItemTitle {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: normal;
  line-height: 30px;
}

.articleItemTitleLink {
  color: #252525;
}

.articleItemTitleLink:hover {
  color: var(--themeColor);
}

.articleItemDesc {
  display: -webkit-box;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}

.articleItemDesc p {
  margin-bottom: 12px;
}

.articleItemDesc img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.articleItemSummary {
  font-size: 0px;
}

.articleItemTime,
.articleItemTags,
.articleItemTag,
.articleItemTagDivide {
  display: inline-block;
  vertical-align: middle;
}

.articleItemTime {
  margin-right: 25px;
  padding-left: 15px;
  font-size: 12px;
  background: url(img/time.svg) left center no-repeat;
  color: #aaaaaa;
}

.articleItemTag {
  border-radius: 2px;
  font-size: 12px;
  color: var(--themeColor);
}

.articleItemTagDivide {
  width: 1px;
  height: 12px;
  margin: 0 12px;
  background-color: #e5e5e5;
}

.articleItemRecommend {
  padding: 0 10px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 2px;
  background-color: #f5f5f5;
  color: #666666;
}

.barNews,
.impetus {
  margin: 40px 0;
}

.barNewsPic {
  width: 100%;
}

.barNews img,
.impetus img {
  max-width: 100%;
  height: auto;
}

.loadMoreBtnBox {
  margin: 30px 0 80px;
  font-size: 0px;
  text-align: center;
}

.loadMoreBtn {
  width: 228px;
  height: 45px;
  font-size: 14px;
  line-height: 45px;
  border: 1px solid var(--themeColor);
  border-radius: 4px;
  color: var(--themeColor);
  cursor: pointer;
}

.loadMoreBtn::before {
  content: "加载更多";
}

.loadMoreBtn:disabled::before {
  content: "加载中...";
}

.loadMoreBtn:hover {
  border-color: var(--themeBorderColor);
  background: var(--themeLinearColor);
  color: #fff;
}

/* **** 公共页面内容右侧各模块 **** */
.asidePanel {
  margin-bottom: 40px;
}

.asidePanel:empty {
  margin-bottom: 0px;
}

.A9,
.A1,
.A3,
.A4,
.A5,
.A6,
.B1,
.B2,
.B3,
.B4,
.B5,
.C1,
.C2,
.C3,
.C4,
.C5 {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.A9 img,
.A1 img,
.A3 img,
.A4 img,
.A5 img,
.A6 img,
.B1 img,
.B2 img,
.B3 img,
.B4 img,
.B5 img,
.C1 img,
.C2 img,
.C3 img,
.C4 img,
.C5 img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.asidePanel .btext {
  position: absolute;
  padding: 4px;
  right: 0;
  bottom: 0;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  z-index: 2;
}

.panelHead {
  margin-bottom: 20px;
}

.panelTitle {
  font-size: 20px;
  font-weight: normal;
}

.panelTitleLink {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  cursor: pointer;
}

.panelTitleLinkIcon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.panelTitleLink:hover {
  color: var(--themeColor);
}

.panelTitleLink:hover .panelTitleLinkIcon path {
  fill: var(--themeColor);
}

.panelBody {
  box-sizing: border-box;
}

.expressPanelBody {
  height: 390px;
  padding: 20px 0px;
  border-radius: 4px;
  background-color: #f5faff;
}

.expressPanelBodyWrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.expressScrollBox {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 2600px;
  padding: 0 20px;
  animation: move 50s 3s linear infinite;
}

@keyframes move {
  0% {
    transform: translateY(0);
  }

  100% {
    /* top: -1300px; 20个 每个item按65高计算 */
    transform: translateY(-1300px);
  }
}

.expressPanelBody:hover .expressScrollBox {
  animation-play-state: paused;
}

.expressList,
.recicleList {
  padding: 10px 0 0 15px;
  border-left: 1px dashed #e5e5e5;
}

.expressItem {
  position: relative;
  margin-bottom: 20px;
}

.expressItem:last-child {
  margin-bottom: 0px;
}

.expressItem::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: -22px;
  top: 4px;
  border-radius: 100%;
  border: 2px solid var(--themeColor);
  background-color: #fafafa;
}

.expressLink {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #252525;
}

.expressLink:hover {
  color: var(--themeColor);
}

.expressTime {
  font-size: 12px;
  color: #999999;
}

.asideAdImg {
  width: 100%;
  border-radius: 4px;
}

.readRankPanelBody {
  padding: 20px;
  border-radius: 4px;
  background-color: #f5faff;
}

.readRankList {
  padding: 0 0 0 30px;
}

.readRankItem {
  position: relative;
  margin-bottom: 20px;
}

.readRankItem:last-child {
  margin-bottom: 0px;
}

.readRankIndex {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  background-color: #cccccc;
  color: #fff;
}

.readRankIndex.rank-1 {
  background-color: #de3225;
}

.readRankIndex.rank-2 {
  background-color: #ee9d26;
}

.readRankIndex.rank-3 {
  background-color: #3f73e8;
}

.readRankLink {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 22px;
  color: #252525;
}

.readRankTime {
  font-size: 12px;
  color: #999999;
}

.viewpointsPanelItem:not(:last-child) {
  padding-bottom: 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.commentatorPic {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border: 1px solid #f1f1f1;
  border-radius: 100%;
  overflow: hidden;
}

.commentatorPicImg {
  width: 100%;
}

.commentArticle {
  width: calc(100% - 65px);
  /* width: 253px; */
}

.commentArticleLink {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
  color: #252525;
}

.commentatorJobTitle {
  font-size: 12px;
  color: #999999;
}

.joinReportersLink {
  width: 230px;
  height: 40px;
  margin: 28px auto 0;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
  border-radius: 4px;
}

.joinReportersLink:hover {
  border-color: var(--themeBorderColor);
  background: var(--themeLinearColor);
  color: #fff;
}

.hotCard {
  box-sizing: border-box;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 4px;
}

.cardBg {
  background: #f5faff url(img/cardBg.png) center center no-repeat;
}

.hotCardHead {
  position: relative;
  margin-bottom: 20px;
  font-size: 0px;
}

.hotTopicImgBox,
.hotTopicSummary {
  display: inline-block;
  vertical-align: middle;
}

.hotTopicImgBox {
  width: 50px;
  margin-right: 15px;
}

.hotTopicImg {
  width: 100%;
  border-radius: 100%;
  border: 1px solid #e5e5e5;
}

.hotTopicSummary {
  width: calc(100% - 65px);
}

.hotTopicTitle {
  margin-bottom: 10px;
  font-size: 16px;
  color: #252525;
}

.hotTopicDesc {
  font-size: 12px;
  color: #999999;
}

.hotTopicLink {
  position: absolute;
  width: 50px;
  height: 20px;
  top: 0px;
  right: 0px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  border: 1px solid #0060df;
  border-radius: 2px;
  color: #0060df;
}

.hotTopicLink:hover {
  background: var(--themeLinearColor);
  border-color: var(--themeBorderColor);
  color: #ffffff;
}

.hotCardBody {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.hotArticleImgBox {
  width: 100%;
  overflow: hidden;
}

.hotArticleImg {
  width: 100%;
  height: 190px;
  background-color: #e5e5e5;
}

.hotArticleInfo {
  box-sizing: border-box;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 10px 12px;
  /* background-color: rgba(0, 0, 0, 0.3); */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 13%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hotArticleTitle {
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}

/* 新增热门话题 */
.topicPanelItem {
  padding-left: 30px;
  box-sizing: border-box;
  background: url(img/topicIcon.png) left top 20px/20px no-repeat;
  cursor: pointer;
}

.topicPanelItem:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.topicPanelItemTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #252525;
}

.topicPanelItemInfos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topicPhotos {
  height: 32px;
}

.topicPhoto {
  width: 32px;
  height: 32px;
  margin-left: -16px;
  border: 2px solid #ffffff;
  border-radius: 100%;
}

.topicPhoto:first-child {
  margin-left: 0px;
}

.topicDatas {
  font-size: 12px;
  color: #cccccc;
}

.topicPaginations {
  position: static !important;
  text-align: center !important;
}

.topicPaginations .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  margin: 0px 4px;
  opacity: 0.47;
  background: #e5e5e5;
  border-radius: 2px;
}

.topicPaginations .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--themeColor);
}

.eventItem:not(:last-child) {
  margin-bottom: 20px;
}

.eventImgBox {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.evengImg {
  width: 100%;
  height: auto;
  background-color: #e5e5e5;
}

.corporatePanelBody {
  padding: 20px;
  background-color: #f5faff;
  border-radius: 4px;
}

.corporateList {
  padding-left: 24px;
}

.corporateItem {
  position: relative;
  margin-bottom: 25px;
}

.corporateItem:last-child {
  margin-bottom: 0px;
}

.corporateItem::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 7px;
  left: -24px;
  border-radius: 100%;
  background-color: #cccccc;
}

.corporateNewsLink {
  font-size: 14px;
  line-height: 22px;
  color: #252525;
}

.corporateNewsLink:hover {
  color: var(--themeColor);
}

/* 商旅会奖panel */
.shanglvAsideImgBanner {
  width: 100%;
}

/* **** 公共搜索浮层 **** */
.searchWin {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 900;
  display: none;
}

.searchWinWrapper {
  position: relative;
  width: 780px;
  margin: 160px auto 0;
}

/* .searchBar {
    width: 780px;
    margin: 160px auto 0;
} */
.searchInput {
  width: 685px;
  border-right: 0px;
}

.searchBtn {
  width: 40px;
  height: 40px;
  background: url(img/searchBtnIcon.svg) center center no-repeat,
    var(--themeLinearColor);
  cursor: pointer;
}

.cancelSearch {
  margin-left: 15px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  background: none;
  color: #666666;
}

.searchHot {
  width: 725px;
  margin-top: 30px;
}

.searchHotKeyword {
  margin: 0 20px 20px 0;
  padding: 0 20px;
  font-size: 14px;
  line-height: 30px;
  background-color: #f5f5f5;
  color: #666666;
}

.searchHotKeyword:hover {
  background: var(--themeLinearColor);
  color: #fff;
}

/* 资讯详情、快讯详情内相关话题公共样式 */
.relatedTopic {
  box-sizing: border-box;
  width: 380px;
  margin-bottom: 20px;
  padding: 20px 15px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff1f2, #fffdfd);
  cursor: pointer;
}

.relatedTopicTitle {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #ff515d;
}

.relatedTopicDesc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 24px;
  color: #999999;
}

.relatedTopicDatas {
  justify-content: space-between;
}

.relatedTopicPhoto {
  width: 32px;
  height: 32px;
  margin-left: -12px;
  border: 1px solid #ffffff;
  border-radius: 100%;
}

.relatedTopicPhoto:first-child {
  margin-left: 0px;
}

.relatedTopicLookers {
  font-size: 12px;
  color: #252525;
}

.goRelatedTopicIcon {
  width: 12px;
  height: 12px;
}

/* 相关话题的弹窗 */
.hubMiniProTopicWin {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 2001;
  display: none;
}

.hubMiniProTopicWinBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.closeHubMiniProTopicWin {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.hubMiniProTopicWinCard {
  box-sizing: border-box;
  position: absolute;
  width: 420px;
  padding: 20px 20px 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background-color: #ffffff;
}

.hubMiniProTopicWinTitle {
  clear: both;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 24px;
  padding-top: 24px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hubMiniProTopicWinDesc {
  margin-bottom: 24px;
  font-size: 16px;
  text-align: center;
  color: #aaaaaa;
}

.hubMiniProTopicWinImg {
  width: 280px;
  height: 280px;
  margin: 0px auto 10px;
  padding: 0.16rem;
  border-radius: 100%;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* **** tools **** */
.tools {
  width: 56px;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  right: 40px;
  bottom: 60px;
  min-height: 396px;
  z-index: 800;
}

@media screen and (max-width: 1440px) {
  .tools {
    right: 28px;
  }
}

.toolsItem,
.subToolsItem {
  position: relative;
  flex-direction: column;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.toolsItem:not(:last-child) {
  margin-bottom: 12px;
}

.subToolsItem:not(:last-child) {
  margin-right: 8px;
}

.toolsItem:hover,
.toolsItem.active {
  background: linear-gradient(225deg, #00aaff, #0060df);
}

.toolsIcon {
  width: 20px;
  height: 20px;
  margin: 0 auto 4px;
  object-fit: cover;
}

.toolsName,
.subToolsName {
  font-size: 12px;
  color: #333333;
}

.toolsItem:hover .toolsName,
.toolsItem.active .toolsName,
.subToolsItem:hover .subToolsName,
.subToolsItem.active .subToolsName {
  color: #ffffff;
}

.miniIcon {
  background: url(img/tools/tools_miniIcon.svg) center no-repeat;
}

.toolsItem:hover .miniIcon,
.toolsItem.active .miniIcon {
  background: url(img/tools/tools_miniIcon_1.svg) center no-repeat;
}

.gzhIcon {
  background: url(img/tools/tools_gzhIcon.svg) center no-repeat;
}

.toolsItem:hover .gzhIcon,
.toolsItem.active .gzhIcon {
  background: url(img/tools/tools_gzhIcon_1.svg) center no-repeat;
}

.gzhIcon {
  background: url(img/tools/tools_gzhIcon.svg) center no-repeat;
}

.toolsItem:hover .gzhIcon,
.toolsItem.active .gzhIcon {
  background: url(img/tools/tools_gzhIcon_1.svg) center no-repeat;
}

.blIcon {
  background: url(img/tools/tools_blIcon.png) center no-repeat;
}

.toolsItem:hover .blIcon,
.toolsItem.active .blIcon {
  background: url(img/tools/tools_blIcon1.png) center no-repeat;
}

.dyIcon {
  background: url(img/tools/tools_dyIcon.svg) center no-repeat;
}

.toolsItem:hover .dyIcon,
.toolsItem.active .dyIcon {
  background: url(img/tools/tools_dyIcon_1.svg) center no-repeat;
}

.tgIcon {
  background: url(img/tools/tools_tgIcon.svg) center no-repeat;
}

.toolsItem:hover .tgIcon,
.toolsItem.active .tgIcon {
  background: url(img/tools/tools_tgIcon_1.svg) center no-repeat;
}

.kfIcon {
  background: url(img/tools/tools_kfIcon.svg) center no-repeat;
}

.toolsItem:hover .kfIcon,
.toolsItem.active .kfIcon {
  background: url(img/tools/tools_kfIcon_1.svg) center no-repeat;
}

.sphIcon {
  background: url(img/tools/tools_sphIcon.svg) center no-repeat;
}

.toolsItem:hover .sphIcon,
.toolsItem.active .sphIcon {
  background: url(img/tools/tools_sphIcon_1.svg) center no-repeat;
}

.topIcon {
  background: url(img/tools/tools_topIcon.svg) center no-repeat;
}

.toolsItem:hover .topIcon,
.toolsItem.active .topIcon {
  background: url(img/tools/tools_topIcon_1.svg) center no-repeat;
}

.shareIcon {
  background: url(img/tools/tools_shareIcon.svg) center no-repeat;
}

.toolsItem:hover .shareIcon,
.toolsItem.active .shareIcon {
  background: url(img/tools/tools_shareIcon_1.svg) center no-repeat;
}

.favoriteIcon {
  background: url(img/tools/favoriteIcon.svg) center no-repeat;
}

.toolsItem:hover .favoriteIcon,
.toolsItem.active .favoriteIcon {
  background: url(img/tools/favoriteIcon_1.svg) center no-repeat;
}

.commentIcon {
  background: url(img/tools/commentIcon.svg) center no-repeat;
}

.toolsItem:hover .commentIcon,
.toolsItem.active .commentIcon {
  background: url(img/tools/commentIcon_1.svg) center no-repeat;
}

.likeIcon {
  background: url(img/tools/likeIcon.svg) center no-repeat;
}

.toolsItem:hover .likeIcon,
.toolsItem.active .likeIcon {
  background: url(img/tools/likeIcon_1.svg) center no-repeat;
}

/* 分享二级 */
.wxShareIcon {
  background: url(img/tools/tools_gzhIcon.svg) center no-repeat;
}

.subToolsItem:hover .wxShareIcon,
.subToolsItem.active .wxShareIcon {
  background: url(img/tools/tools_gzhIcon_1.svg) center no-repeat;
}

.wbShareIcon {
  background: url(img/tools/tools_wbIcon.svg) center no-repeat;
}

.subToolsItem:hover .wbShareIcon,
.subToolsItem.active .wbShareIcon {
  background: url(img/tools/tools_wbIcon_1.svg) center no-repeat;
}

.qqShareIcon {
  background: url(img/tools/qqShareIcon.svg) center no-repeat;
}

.subToolsItem:hover .qqShareIcon,
.subToolsItem.active .qqShareIcon {
  background: url(img/tools/qqShareIcon_1.svg) center no-repeat;
}

.sphTools,
.toTopTools {
  display: none;
}

.badge {
  display: none;
  box-sizing: border-box;
  position: absolute;
  min-width: 18px;
  top: -6px;
  left: 42px;
  padding: 0 6px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  background-color: #dc1e38;
  border-radius: 10px;
  color: #fff;
}

.toolsContent {
  position: absolute;
  top: 50%;
  right: 45px;
  padding-right: 25px;
  transform: translate(0, -50%);
  display: none;
}

.shareTools .toolsContent {
  padding-right: 20px;
}

.toolsItem:hover .toolsContent,
.toolsItem.active .toolsContent {
  display: block;
}

.kfTools.active .toolsContent {
  display: none;
}

.toolsContentBox {
  position: relative;
  justify-content: flex-start;
  width: 180px;
  padding: 12px 12px;
  font-size: 0px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 10%),
    0px 10px 15px 0px rgb(0 0 0 / 10%);
}

.toolsContent:hover .toolsContentBox,
.toolsContent.active .toolsContentBox,
.subToolsItem:hover {
  background: var(--themeLinearColor);
}

.toolsContentBox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  border: 10px solid transparent;
  border-left-color: #ffffff;
  transform: translateY(-50%);
}

.toolsContent:hover .toolsContentBox::after,
.toolsContent.active .toolsContentBox::after {
  border-left-color: var(--themeBorderColor);
}

.toolsWechatImg {
  width: 80px;
  margin-right: 12px;
}

.toolsWechatDesc {
  width: calc(100% - 82px);
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}

.toolsContent:hover .toolsWechatDesc,
.toolsContent.active .toolsWechatDesc {
  color: #ffffff;
}

.toolsShipinhaoBox {
  width: 260px;
}

.knowBtn {
  display: block;
  width: 80px;
  height: 24px;
  margin-top: 12px;
  font-size: 12px;
  text-align: center;
  line-height: 24px;
  background-color: #ffffff;
  color: var(--themeColor);
  border-radius: 2px;
}

.toolsKefuBox {
  flex-direction: column;
  width: 90px;
}

.toolsKefuBox .toolsWechatDesc {
  width: 100%;
  text-align: center;
}

.toolsKefuBox .toolsWechatImg {
  margin: 8px auto 0;
}

/* 人工客服 */
.toolsKefuTipContent {
  display: none;
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translate(0, 50%);
  cursor: pointer;
}

.toolsKefuTipContent .toolsKefuTipBox {
  position: relative;
  width: 240px;
}

.toolsKefuTipText {
  width: 200px;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}

.toolsKefuTipTextOpt {
  color: var(--themeColor);
}

.closeToolsKefuTipBox {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 10;
  padding: 16px;
}

/* **** 分享微信浮层 **** */
.shareWechatWin {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1200;
  display: none;
}

.shareWechatWinBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.shareWechatWrap {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  padding: 30px 20px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.closeShareWechat {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0px;
  right: -40px;
  background: url(img/close.svg) #ffffff center no-repeat;
  cursor: pointer;
}

.shareWechatCaption {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  color: var(--themeColor);
}

.wechatQrcode {
  width: 140px;
  height: 140px;
  margin: 20px auto;
}

/* **** 关注微信，订阅邮件 **** */
.subscribtion {
  padding: 88px 0 68px;
  box-sizing: border-box;
  background: #eff6ff url(img/subscribtionBg.png) center center no-repeat;
  background-size: cover;
}

.subscribtion .container {
  align-items: flex-start;
  justify-content: space-between;
}

.followBox {
  width: 200px;
  margin-right: 32px;
}

.followTitle,
.subscribeTitle {
  justify-content: flex-start;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--themeColor);
}

.followIcon,
.subscribeIcon {
  width: 48px;
  margin-right: 20px;
}

.followDesc,
.subscribeDesc {
  font-size: 14px;
  line-height: 24px;
}

.followQrCodes {
  margin-top: 28px;
}

.followQrCode {
  width: 120px;
}

.followQrCode:not(:last-child) {
  margin-right: 24px;
}

.followQrCodeImg {
  width: 100%;
}

.followQrCodeDesc {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}

.subscribeBox {
  width: auto;
  padding-left: 50px;
  box-sizing: border-box;
  margin-left: 50px;
  border-left: 1px solid #e3eaf2;
}

.subscribeDesc {
  margin-bottom: 32px;
}

.formBox {
  justify-content: space-between;
  align-items: flex-start;
}

.subscribeForm .formGroup {
  height: 48px;
}

.subscribeInput {
  width: 190px;
  height: 28px;
  padding: 0px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid #999999;
  background-color: transparent;
}

.subscribeInput::placeholder {
  color: #cccccc;
}

.formControlLabel {
  justify-content: flex-start;
  font-size: 14px;
  cursor: pointer;
}

#subRecruit {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  margin-right: 8px;
}

.subscribeBtn,
.supplementBtn {
  width: 82px;
  height: 28px;
  font-size: 14px;
  color: var(--themeColor);
  line-height: 28px;
  text-align: center;
  border: 1px solid var(--themeColor);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.subscribeBtn:hover,
.supplementBtn:hover {
  background: var(--themeLinearColor);
  border-color: var(--themeBorderColor);
  color: #ffffff;
}

.subscribeName {
  width: 70px;
  padding: 0px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid #999999;
  background-color: transparent;
}

.supplementForm {
  display: none;
}

/* **** 公共底部 **** */
.footer {
  position: relative;
  padding: 48px 0 32px;
  background-color: #0c2238;
  z-index: 700;
}

.footer .container {
  justify-content: space-between;
  align-items: flex-start;
}

.footerMenuBox {
  justify-content: flex-start;
  align-items: flex-start;
}

.footerMenus {
  box-sizing: border-box;
  width: 144px;
  height: 210px;
  margin-right: 32px;
  padding: 8px 0 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.footerMenus:last-child {
  margin-right: 0;
}

.newsMenus {
  width: 188px;
}

.footerMenuTitle {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 20px -18px;
  padding-left: 16px;
  font-size: 18px;
  font-weight: normal;
  line-height: 20px;
  color: #fff;
  border-left: 3px solid #cccccc;
}

.footerMenuChunk {
  width: 100%;
}

.newsMenus .footerMenuChunk {
  width: 34px;
  margin-right: 50px;
}

.footerMenuLink {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
}

.footerMenuLink:hover,
.enTdNewsLink:hover {
  opacity: 1;
}

.enTdNewsLink {
  margin-top: 12px;
  clear: both;
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}

.footerAbout {
  flex-direction: column;
  align-items: flex-end;
}

.footerLogo {
  width: 127px;
}

.footerLogoImg:hover {
  opacity: 0.8;
}

.footerFollows {
  clear: both;
  padding: 110px 0 0;
}

.footerFollowItem {
  position: relative;
  margin-left: 16px;
  font-size: 0px;
  cursor: pointer;
}

.footerIconBg {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.footerIconBg:hover {
  background: linear-gradient(228deg, #00aaff 4%, #0060df 100%);
}

.scanCodeBox {
  position: absolute;
  bottom: 38px;
  left: -35px;
  display: none;
}

.footerFollowItem:hover .scanCodeBox {
  display: block;
}

.scanCodeBox:hover .scanCode {
  background: linear-gradient(0deg, #00aaff, #0060df);
}

.footerSubscribe {
  height: 60px;
  font-size: 0px;
}

.scanCode {
  position: relative;
  margin-bottom: 18px;
  padding: 4px;
  background-color: #fff;
  border-radius: 2px;
}

.scanCode::after {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50px;
  border-right: 1px #eee solid;
  border-bottom: 1px #eee solid;
  background: #fff;
  transform: rotate(45deg);
}

.scanCodeBox:hover .scanCode::after {
  border-color: #00aaff;
  background: #00aaff;
}

.codeItem {
  width: 100px;
}

.scanCodeImg {
  width: 100%;
}

.scanCodeCaption {
  margin-top: 4px;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.scanCodeBox:hover .scanCodeCaption {
  color: #ffffff;
}

.footerSubscribeInput {
  width: 170px;
  border: 0px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
}

.footerSubscribeBtn {
  height: 40px;
  margin-left: 0px;
  line-height: 40px;
  border: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: var(--themeColor);
  color: #fff;
}

.copyright,
.copyright a {
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}

.copyright a:hover {
  color: #ffffff;
}

.navBarContactBox::before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-bottom-color: #ffffff;
  top: 2px;
  left: 110px;
}

.navBarContactWrap {
  background: #fff;
}

.contactActive {
  position: relative;
}

/* 热门企业样式 */
.modulePanel {
  margin-bottom: 40px;
}

.moduleHeadPanel {
  margin-bottom: 20px;
}

.moduleTitle {
  font-size: 20px;
  font-weight: normal;
}

.moduleTitleLink {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.moduleTitleLinkIcon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.moduleTitleLink:hover {
  color: var(--themeColor);
}

.moduleTitleLink:hover .moduleTitleLinkIcon path {
  fill: var(--themeColor);
}

.commpanyItem {
  justify-content: space-between;
  width: 100%;
}

.commpanyItem:not(:last-child) {
  margin-bottom: 20px;
}

.companyLogo {
  width: 46px;
  height: 46px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  object-fit: cover;
}

.companyInfoBox {
  width: calc(100% - 64px);
}

.companyNameBox {
  justify-content: flex-start;
}

.companyName {
  font-size: 14px;
  color: #252525;
}

.companyDesc {
  margin-top: 12px;
  font-size: 12px;
  color: #999999;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: static;
  bottom: 0 !important;
  margin-top: 20px;
  font-size: 0;
}

/* 友情链接样式 */
.friendship {
  justify-content: flex-start;
  width: 1026px;
  margin: 44px auto 0;
  padding: 16px 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.friendshipLinks {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
}

.friendshipLinks:hover {
  opacity: 1;
}

.friendshipLinks:not(:last-child) {
  margin-right: 20px;
}

/* tdc顶部广告 */
.tdcImgBox {
  width: 100%;
}

.tdcImgBox .asidePanel {
  margin-bottom: 0;
}

.tdcImgBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 客服样式 */
.toolsKeFuBox {
  width: 88px;
  padding: 16px 12px;
  border-radius: 4px;
  box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 10%),
    0px 10px 15px 0px rgb(0 0 0 / 10%);
}

.toolsContent:hover .toolsKeFuBox {
  background-color: var(--themeColor);
}

.toolsContent:hover .popupcontactCaption {
  color: #ffffff;
}

.toolsContent:hover .toolsKeFuBox::after {
  border-left-color: var(--themeColor);
}

.popupcontactCaption {
  margin-bottom: 8px;
  font-size: 12px;
  text-align: center;
}

.codeItem .popupcontactCaption {
  margin-top: 8px;
}

.scanCodeBox .scanCode:hover,
.scanCode:hover::after {
  background-color: var(--themeColor);
  color: #fff;
}

.scanCode:hover::after {
  border-right-color: var(--themeColor);
  border-bottom-color: var(--themeColor);
}

.kfCodeImg {
  width: 100%;
}

/* 搜索历史记录模块 */
.shBox {
  display: none;
  width: 685px;
  max-height: 321px;
  border: 1px solid #ccc;
  padding: 10px 0;
  box-sizing: border-box;
  position: absolute;
  top: 40px;
  border-top: none;
  background: #fff;
  box-shadow: 0px 10px 15px rgb(0 0 0 / 8%);
  z-index: 10;
  border-radius: 0 0 4px 4px;
}

.shItemLink {
  font-size: 14px;
  color: #666666;
  line-height: 30px;
}

.shItem {
  padding: 0 10px;
  box-sizing: border-box;
}

.shItem:hover {
  background-color: #f5f5f5;
}

.shItem:hover .shItemLink {
  color: var(--themeColor);
}

.newMenuIcon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(calc(-50% - 10px));
  width: 30px;
  height: 14px;
  background: url(img/newMenuIcon.png) center center no-repeat;
  background-size: cover;
}

.mask_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.isVideoHeadline::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 20px;
  width: 48px;
  height: 28px;
  background: url(img/newVideoIcon.png) center center no-repeat;
  background-size: auto;
}

.mask_2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) url(img/newVideoIcon.png) center center
    no-repeat;
  background-size: auto;
}

.mask_1:hover,
.mask_2:hover {
  opacity: 0.8;
}

.viewpointsPanelItem:hover .commentatorPicImg,
.hotReportItem:hover .hotReportThumbnail,
.commpanyItem:hover .companyLogo {
  opacity: 0.8;
}

.viewpointsPanelItem:hover .commentArticleLink,
.hotReportItem:hover .hotReportTitle,
.commpanyItem:hover .companyName,
.topicPanelItemTitle:hover {
  color: var(--themeColor);
}

/* 下拉菜单框 */
.selectMenuBox {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: max-content;
  box-sizing: border-box;
  z-index: 10;
}

.selectMenuContent {
  padding: 12px 12px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.08);
  /* border: 1px solid #E5E5E5; */
  border-radius: 0 0 4px 4px;
}

.navMenuItem {
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
  color: #000000;
  line-height: 36px;
  border-radius: 2px;
}

.navMenuItem:hover {
  background: linear-gradient(225deg, #00aaff, #0060df);
}

.navMenuItem:hover {
  color: #ffffff;
}

.navBarMenuItem .selectMenuBox {
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}

.navBarMenuItem:hover .selectMenuBox {
  display: block;
}

/* 媒体矩阵 */
.mediaMatrixList {
  align-items: flex-start;
}

.bgColor0C2238 {
  padding: 20px 36px;
  background-color: #0c2238;
}

.mediaMatrixItem {
  width: 84px;
  flex-direction: column;
}

.mediaMatrixItem:not(:last-child) {
  margin-right: 40px;
}

.mediaMatrixImg {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.mediaMatrixName {
  margin-top: 12px;
  font-size: 12px;
  color: #cccccc;
}

.gutter4 {
  padding: 4px 4px;
}
