@charset"utf-8";
:root {
    --themeColor: #006699;
    --swiper-navigation-color: #006699;
}
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;
    -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;
}
.container {
    width: 1024px;
    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(/css/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//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;
}
/* **** 公共导航 **** */
 .nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 110px;
    background-color: #fff;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}
.navBar {
    height: 40px;
    background-color: #333333;
}
.navBar > .container {
    width: 1200px;
}
.navBarMenuList {
    font-size: 14px;
    line-height: 40px;
}
.navBarMenuItem {
    position: relative;
}
.navBarMenuItem:not(:last-child) {
    margin-right: 30px;
}
.navBarMenuLink {
    color: #CCCCCC;
}
.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;
    /* margin-top: 40px; */
    padding: 15px 20px;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #eee;
}
.navEventsBox::before {
    content:"";
    position: absolute;
    top: -6px;
    left: 60px;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    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;
    /* width: 1px; */
    height: 10px;
    margin: 0 5px;
    font-size: 12px;
    font-style: normal;
    line-height: 10px;
    overflow: hidden;
    /* color: ; */
    /* background-color: #666666; */
}
.navAllEventLink {
    margin-top: 10px;
    line-height: 20px;
    color: #c30d23;
}
.navBarMenuLinkDivide {
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 14px;
    margin: 0 15px 0 0;
    background-color: #666666;
}
.navBarServiceMenuLink {
    display: inline-block;
}
.navBarContact {
    position: relative;
    font-size: 14px;
    line-height: 40px;
}
.navBarContactDivide {
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 14px;
    margin: 0 15px 0 15px;
    background-color: #666666;
}
.navBarContactLink {
    display: inline-block;
    color: #cccccc;
}
.navBarMenuLink:hover, .navBarContactLink:hover {
    /* color: var(--themeColor); */
    color: #ffffff;
}
.contactLinkWrap {
    display: inline-block;
}
.navBarMenuItem.navIcon {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
    box-sizing: border-box;
    margin-right: 0;
    margin-left: 15px;
}
.navBarContactLink {
    display: inline-block;
    color: #cccccc;
}
.newsCounts {
    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;
}
.navBarMenuItem.newMsgIcon {
    background: url(/css/img/messageIcon.png) left center no-repeat;
    background-size: 14px 14px;
}
.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;
}
.contactLinkWrap:hover .navBarContactBox {
    display: block;
}
.navBarContactSubLink {
    box-sizing: border-box;
    padding-left: 20px;
    font-size: 12px;
    text-align: left;
    border-bottom: 1px solid #F5F5F5;
    color: #252525;
}
.navBarContactSubLink:last-child {
    border-bottom: 0px;
}
.navBarContactSubLink:hover {
    color: var(--themeColor);
}
.profile {
    position: relative;
    font-size: 0px;
}
.loginStatusBtn, .profileDivide, .goTdLink {
    display: inline-block;
    vertical-align: middle;
}
.loginStatusBtn {
    font-size: 0px;
    line-height: 40px;
    background-color: transparent;
    cursor: pointer;
}
.loginStatusBtn:hover .loginStatusBtnText {
    /* color: var(--themeColor); */
    color: #ffffff;
}
.profileAvatar .cls-1 {
    fill: #ccc;
}
.profileAvatar .cls-2 {
    fill: #fff;
}
.profile.isLogin circle {
    fill: var(--themeColor);
}
.profile.isLogin .loginStatusBtnText {
    color: #cccccc;
}
.profile.isLogin:hover .loginStatusBtnText {
    color: #fff;
}
.profileAvatar {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 50%;
}
.loginStatusBtnText {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #CCCCCC;
}
.profileInfos {
    position: absolute;
    width: 125px;
    background-color: #fff;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}
.profile.isLogin:hover .profileInfos {
    display: block;
}
.loginOutBtn, .goProfiles {
    box-sizing: border-box;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    color: #000000;
}
.goProfiles:hover {
    color: var(--themeColor);
}
.profileInfos::before {
    content:"";
    position: absolute;
    border: 10px solid transparent;
    border-bottom-color: #ffffff;
    top: -17px;
    left: 30px;
}
.profileIcon {
    display: inline-block;
    vertical-align: middle;
}
.menu {
    position: relative;
    height: 70px;
}
.menuLogos {
    margin: 14px 60px 0 0;
}
.menuLogo {
    width: 94px;
}
.menuLogoImg {
    width: 100%;
}
.menuList {
    /* position: relative; */
    line-height: 70px;
}
.menuItem {
    /* position: relative; */
    margin-right: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}
.menuItemLink {
    position: relative;
    font-size: 16px;
    color: #252525;
    cursor: pointer;
}
.menuItemLink.active {
    border-bottom-color: var(--themeColor);
    color: var(--themeColor);
}
/* .hasSubMenu::after {
    content:"";
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    top: 30px;
    right: -16px;
    margin: 0 0 5px 8px;
    border-left: 2px solid #CCCCCC;
    border-bottom: 2px solid #CCCCCC;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    transform-origin: center;
} */
.menuItemLink.hasSubMenu::before{
    content:"";
    position: absolute;
    right: -20px;
    top:50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url(/css/img/menuItem_icon.svg) center center no-repeat;
    background-size: cover;
}
.menuItemLink::after {
    content:"";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 4px;
    background-color: transparent;
}
.menuItemLink.active::after, .menuItem:hover .menuItemLink::after {
    background-color: var(--themeColor);
}
.menuItem:hover .menuItemLink.hasSubMenu::before{
    background: url(/css/img/menuItem_icon_active.svg) center center no-repeat;
    background-size: cover;
}


.subMenu {
    position: absolute;
    left: 0px;
    top: 38px;
    overflow: hidden;
    width: 100%;
    height: 0;
    z-index: 99;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.08);
}
.subMenuBox{
    width: 100%;
    background-color: #fff;
}
.menuItem:hover .subMenu {
    padding-top: 32px;
    box-sizing: border-box;
    height: auto;
}
.subMenu  .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 750px;
    padding-top: 16px;
    box-sizing: border-box;
}
.subMenuLink {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: initial;
    color: #666666;
}
.subMenuLink:hover, .subMenuLink.active {
    color: var(--themeColor);
}
.subMenuLinkDivide {
    width: 1px;
    height: 10px;
    margin: 6px 16px;
    background-color: #E5E5E5;
}
.padLt {
    padding-left: 130px;
}
.openSearchWin {
    /* margin-top: 25px; */
    padding-left: 25px;
    font-size: 16px;
    line-height: 70px;
    color: #666666;
    background: url(/css/img/goSearch.svg) left center no-repeat;
    cursor: pointer;
}
/* **** 公共页面内容容器 **** */
 .contentBox {
    position: relative;
    width: 1024px;
    margin: 0 auto;
}
.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: 1px solid var(--themeColor);
    background-color: var(--themeColor);
    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;
}
.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%;
    /* min-height: 48px; */
    margin: 0 auto 20px;
    /* -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
    font-size: 14px;
    line-height: 24px;
    /* overflow: hidden;
    text-overflow: ellipsis; */
    color: #666666;
}
.articleItemDesc p{
    margin-bottom: 12px;
}
.articleItemDesc img {
    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(/css/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: 230px;
    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 {
    background-color: var(--themeColor);
    color: #fff;
}
/* **** 公共页面内容右侧各模块 **** */
 .asidePanel {
    margin-bottom: 52px;
}
.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, .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: #F8F8F8;
}
.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: 10px;
    height: 10px;
    left: -22px;
    top: 4px;
    border-radius: 100%;
    border: 1px solid var(--themeColor);
    background-color: #FAFAFA;
}
.expressLink {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #252525;
}
.expressTime {
    font-size: 12px;
    color: #999999;
}
.asideAdImg {
    width: 100%;
    border-radius: 4px;
}
.readRankPanelBody {
    padding: 20px;
    border-radius: 4px;
    background-color: #F8F8F8;
}
.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 {
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
}
.viewpointsPanelItem:first-child {
    padding-top: 0px;
}
.viewpointsPanelItem:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
}
.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: 30px auto 0;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border: 1px solid var(--themeColor);
    color: var(--themeColor);
    border-radius: 4px;
}
.joinReportersLink:hover {
    background-color: var(--themeColor);
    color: #fff;
}
.hotCard {
    box-sizing: border-box;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 4px;
    background-color: #F8F8F8;
}
.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-radius: 2px;
    border: 1px solid #E5E5E5;
    color: #666666;
}
.hotTopicLink:hover {
    border-color: var(--themeColor);
    color: var(--themeColor);
}
.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: 20px 0px 20px 30px;
    background: url(/css/img/topicIcon.png) left top 20px/20px no-repeat;
    border-bottom: 1px solid #E5E5E5;
    cursor: pointer;
}
.topicPanelItem:first-child {
    padding-top: 0px;
    background-position: left top;
}
.topicPanelItem:last-child {
    border-bottom: 0px;
}
.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: #F8F8F8;
}
.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;
}
/* **** 公共搜索浮层 **** */
 .searchWin {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    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(/css/img/searchBtnIcon.svg) var(--themeColor) center center no-repeat;
    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-color: var(--themeColor);
    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 { position: fixed; right: 60px; bottom: 80px; z-index: 800; } */
 .tools {
    position: fixed;
    right: 50%;
    bottom: 80px;
    margin-right: -630px;
    z-index: 800;
}
.toolsItem {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    background-color: #FFFFFF;
    cursor: pointer;
}
.toolsItem:last-child {
    margin-bottom: 0px;
}
.toolsItem:hover, .subToolsItem:hover {
    background-color: var(--themeColor);
    border-color: var(--themeColor);
}
.toolsShareItem, .toolsCommentItem, .toolsLikeItem {
    display: none;
}
.toolsItemLink {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.toolsIcon {
    width: 20px;
}
.toolsItemDesc {
    position: absolute;
    display: flex;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 4px;
    background-color: var(--themeColor);
    color: #fff;
    display: none;
}
.toolsItem.done .toolsIcon path {
    fill: var(--themeColor);
}
.toolsItem:hover .toolsIcon path, .subToolsItem:hover .subToolsIcon path {
    fill: #FFFFFF;
}
.toolsItem:hover .toolsItemDesc {
    display: block;
}
#toTop {
    display: none;
}
.badge {
    box-sizing: border-box;
    position: absolute;
    min-width: 24px;
    top: -10px;
    left: 40px;
    padding: 6px;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    background-color: #DC1E38;
    border-radius: 20px;
    color: #fff;
    display: none;
}
.toolsContent {
    position: absolute;
    right: 45px;
    padding-right: 25px;
    display: none;
}
.toolsItem:not(.toolsShipinhaoItem):hover .toolsContent {
    display: block;
}
.toolsItem.active{
    background-color: var(--themeColor);
    border-color: var(--themeColor);
}
.toolsItem.active .toolsContent{
    display: block;
}
.toolsItem.active .toolsIcon path{
    fill: #FFFFFF;
}

.toolsContentBox {
    position: relative;
    padding: 20px;
    font-size: 0px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #fff;
}
.toolsContentBox::after {
    content:"";
    position: absolute;
    top: 50%;
    right: -20px;
    border: 10px solid transparent;
    border-left-color: #ffffff;
    transform: translateY(-50%);
}
.toolsRecruitItem {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}
.toolsRecruitItem:last-child {
    margin-bottom: 0px;
}
.toolsRecruitItemInfos {
    margin-right: 40px;
    white-space: nowrap;
}
.toolsRecruitItemJob {
    margin-bottom: 10px;
    font-size: 14px;
    color: #252525;
}
.toolsRecruitItemInfo {
    font-size: 14px;
}
.toolsRecruitItemSalary {
    color: #FF0000;
}
.toolsRecruitItemCompany {
    margin-left: 10px;
    font-size: 12px;
    color: #AAAAAA;
}
.toolsRecruitItemCoverImg {
    width: 46px;
    height: 46px;
}
.toolsShareBox {
    display: flex;
    padding: 0px 4px 0 0;
}
.subToolsItem {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
}
.subToolsIcon {
    width: 20px;
}
.toolsWechatBox {
    box-sizing: border-box;
    width: 230px;
}
.toolsWechatImg, .toolsWechatDesc {
    display: inline-block;
    vertical-align: middle;
}
.toolsWechatImg {
    width: 80px;
    margin-right: 15px;
}
.toolsWechatDesc {
    width: calc(100% - 95px);
    font-size: 14px;
    color: #666666;
}
.toolsShipinhaoItem {
    display: none;
}
.toolsShipinhaoBox {
    width: 270px;
    background-color: var(--themeColor);
}
.toolsShipinhaoBox::after {
    border-left-color: var(--themeColor);
}
.toolsShipinhaoInfos {
    display: inline-block;
    vertical-align: middle;
}
.toolsShipinhaoSlogan {
    font-size: 14px;
    color: #ffffff;
}
.closeToolsShipinhao {
    width: 80px;
    height: 24px;
    margin-top: 16px;
    font-size: 12px;
    text-align: center;
    line-height: 24px;
    background-color: #ffffff;
    color: var(--themeColor);
}

.toolsSubscribeBox {
    box-sizing: border-box;
    position: relative;
    width: 260px;
}
.toolsContentBox .toolsSubscribeInput {
    width: 140px;
    height: 30px;
}
.toolsContentBox .toolsSubscribeBtn {
    width: 50px;
    height: 25px;
    line-height: 25px;
}
.toolsSubscribeBox .formTip {
    position: absolute;
}
/* **** 分享微信浮层 **** */
.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(/css/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: 90px 0 80px;
    background-color: #FAFAFA;
}
.follow {
    box-sizing: border-box;
    width: 610px;
    margin-right: 65px;
    padding: 15px 65px 15px 0px;
    border-right: 1px solid #E5E5E5;
}
.followBox {
    width: 210px;
    margin-right: 45px;
}
.followTitle, .subscribeTitle {
    margin-bottom: 40px;
    font-size: 22px;
}
.followIcon, .subscribeIcon {
    display: inline-block;
    vertical-align: middle;
    width: 39px;
    margin-right: 10px;
}
.subscribeIcon {
    width: 34px;
}
.followDesc, .subscribeDesc {
    font-size: 14px;
    line-height: 24px;
}
.followQrCodes {
    margin-top: 25px;
}
.followQrCode {
    width: 120px;
    margin-right: 45px;
}
.followQrCode:last-child {
    margin-right: 0px;
}
.followQrCodeImg {
    width: 100%;
}
.followQrCodeDesc {
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}
.subscribeBox {
    box-sizing: border-box;
    width: 345px;
    padding: 15px 0px 0px 0px;
}
.subscribeDesc {
    margin-bottom: 30px;
}
.subscribeInput {
    width: 250px;
    padding: 0px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid #999999;
    background-color: transparent;
}
.subscribeBtn, .supplementBtn {
    width: 80px;
    height: 30px;
    margin: 10px 0 0 15px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    border: 1px solid var(--themeColor);
    border-radius: 4px;
    cursor: pointer;
}
.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: 70px 0 35px;
    background-color: #3C3C3C;
    z-index: 700;
}
.footerMenus {
    box-sizing: border-box;
    width: 144px;
    height: 210px;
    margin-right: 32px;
    /* margin-right: 19px; */
    padding: 8px 0 0 15px;
    border-left: 1px solid #363636;
}
.footerMenus:last-child{
    margin-right: 0;
}
.newsMenus {
    width: 187px;
}
.footerMenuTitle {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 20px -17px;
    padding-left: 15px;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    color: #fff;
    border-left: 3px solid #CCCCCC;
}
.footerMenuChunk {
    width: 100%;
}
.newsMenus .footerMenuChunk {
    width: 35px;
    margin-right: 50px;
}
.footerMenuLink {
    margin-bottom: 10px;
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.8;
}
.enTdNewsLink {
    clear: both;
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}
.footerLogo {
    width: 127px;
}
.footerFollows {
    clear: both;
    padding: 110px 0 0;
}
.footerFollowItem {
    position: relative;
    margin-left: 15px;
    font-size: 0px;
    cursor: pointer;
}
.footerFollowItem:hover .footerFollowIcon path {
    fill: var(--themeColor);
}
.scanCodeBox {
    position: absolute;
    bottom: 38px;
    left: -35px;
    display: none;
}
.footerFollowItem:hover .scanCodeBox {
    display: block;
}
.footerSubscribe {
    height: 60px;
    font-size: 0px;
}
.scanCode {
    position: relative;
    margin-bottom: 18px;
    padding: 5px;
    background-color: #fff;
}
.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);
}
.codeItem {
    width: 100px;
}
.scanCodeImg{
    width: 100%;
}
.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 {
    padding: 25px 0px;
    font-size: 12px;
    text-align: center;
    color: #868585;
    background-color: #262424;
}
.copyright a {
    display: inline-block;
    color: #868585;
}
.copyright i {
    margin: 0 10px;
    font-style: normal;
}
/* .messageIcon {
    width: 18px;
    height: 18px;
    margin: 12px 8px 0 15px;
}
.newsCount {
    position: absolute;
    right: 80px;
    bottom: 20px;
    padding: 0 8px;
    font-size: 12px;
    box-sizing: border-box;
    text-align: center;
    line-height: 16px;
    color: #FFFFFF;
    background-color: #c30d23;
    border-radius: 8px;
} */
.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: 52px;
}
.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);
}
.moduleContentPanel, .moduleContentList, .moduleContentItem {
    width: 100%;
    margin: 0 auto;
}
.moduleContentPanel {
    background: #3a3a3a;
    border-radius: 4px;
    padding: 24px 20px;
    box-sizing: border-box;
}
.moduleContentListItem {
    width: 68px;
    margin: 0px 12px 20px;
    cursor: pointer;
}
.moduleContentImgPanel {
    width: 68px;
    height: 68px;
}
.moduleContentImg {
    display: block;
    width: 100%;
    height: 100%;
}
.moduleContentText {
    height: 20px;
    margin-top: 8px;
    text-align: center;
    opacity: 0.6;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* 友情链接样式 */
 .friendship {
    width: 1024px;
    margin: 60px auto 0;
    padding: 32px 0;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, .2);
}
.friendshipText {
    font-size: 14px;
    line-height: 36px;
    color: rgba(255, 255, 255, .4);
}
.friendship {
    overflow: hidden;
}
.friendshipLinks {
    display: inline-block;
    vertical-align: middle;
}
.friendship .splitLine {
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 14px;
    margin: 0 6px;
    background: rgba(255, 255, 255, .4);
}
/* tdc顶部广告 */
 .tdcImgBox {
    display: none;
    position: relative;
    width: 100%;
    height: 100px;
}
.tdcImgBox a {
    width: 100%;
    height: 100px;
}
.tdcImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tdcImgClose {
    display: block;
    position: absolute;
    top: 12px;
    right: 15%;
    width: 32px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #080D24;
    background: rgba(255, 255, 255, .5);
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
}

/* 客服样式 */
.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{
    display: block;
    position: absolute;
    top: 10px;
    left: 20px;
    width: 30px;
    height: 14px;
    background: url(/css/img/newMenuIcon.png) center center no-repeat;
    background-size: 100%;
}

.mask_1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}
.isVideoHeadline::after{
    content: "";
    position: absolute;
    top: -40px;
    left: 20px;
    width: 48px;
    height: 28px;
    background: url(/css/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, .3) url(/css/img/newVideoIcon.png) center center no-repeat;
    background-size: auto;
}

@media screen and (max-width:1440px) {
    .tdcImgClose{
        right: 4%;
    }
}
@media screen and (max-width:1366px) {
    .tdcImgClose{
        right: 2%;
    }
}