/* 首页和头尾公共样式 */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 10px 0;
    line-height: 1.3;
    font-weight: 700;
    /* color: #000; */
    color: #333;
    word-break: break-word;
}

/* 顶部导航栏样式 */
.layout {
    position: relative;
    z-index: 1;
    height: 100%;
    background-color: #0e0e10;
    margin: 0px auto;
}

.detail-layout {
    background: #effdff;
}

.search-layout {
    position: relative;
    z-index: 1;
    height: 100%;
    background-color: #0e0e10;
    margin: 0px auto;
}

/*侧边栏弹框样式*/
.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.popup-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .55)
}

.popup-mask-show {
    animation: fadeMask 0.3s forwards;
}

.popup-body-show {
    animation: showPopup 0.3s forwards;
}

.popup-body-hide {
    animation: hidePopup 0.3s forwards;
}

@keyframes fadeMask {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-body {
    position: absolute;
    z-index: 10;
    width: fit-content
}

@keyframes showPopup {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translateZ(0);
    }
}

@keyframes hidePopup {
    0% {
        transform: translateZ(0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

.menu-drawer {
    max-width: 70vw;
    padding: 20px;
    background-color: #fff;
}

.menu-close-wrap {
    position: relative;
    z-index: 10;
    height: 30px;
    text-align: right;
}

.menu-drawer .search {
    width: 100%;
    margin: 40px auto;
    box-shadow: 0 0 2px 2px #f2f2f2;
}

.menu-drawer-main {
    /* overflow: auto; */
    overflow-y: scroll;
    height: calc(100vh - 220px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-drawer-main::-webkit-scrollbar {
    display: none;
}

.menu-drawer .drawer-recent {
    margin-bottom: 20px;
}

.menu-drawer h3 {
    margin-top: 0;
    font-size: 22px;
}

.menu-drawer-item {
    padding: 14px 0;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(24, 24, 24, .05);
}

.menu-drawer-item a {
    color: #222;
    font-size: 16px;
    line-height: 24px;
    background-image: linear-gradient(0, transparent, rgba(26, 26, 26, .6) 0);
    background-position: 0 100%;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: background .2s linear;
}

.menu-drawer .search-wrap {
    width: 100%;
    margin: 40px auto;
    box-shadow: 0 0 2px 2px #f2f2f2;
}

.search-bar-light {
    background-color: #fff;
    border: 2px solid #fff;
}

.search-wrap {
    display: flex;
    align-items: center;
    width: calc(100% - 6px);
    max-width: 748px;
    height: 44px;
    padding: 9px 12px;
    margin: 40px auto 30px;
    border-radius: 10px;
}

.search-light .input-element {
    color: #333;
}

.search-bar-input .input-element {
    font-style: italic;
}

.btn-icon {
    background: transparent;
    border: none;
    margin-left: 6px;
    cursor: pointer;
}

.menu-drawer-item {
    padding: 14px 0;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(24, 24, 24, .05);
}

.feedback-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483646 !important;
    display: none;
    background-color: rgba(0, 0, 0, .4);
}

.feedback-modal-body {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    min-height: 250px;
    transform: translate3d(-50%, -50%, 0);
    background-color: #fff;
    border-radius: 14px;
}

.feedback-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 0 20px;
}

.feedback-modal-input {
    width: calc(100% - 40px);
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.text-area {
    font-size: 17px;
    color: #333;
    text-align: left;
    --count-text-align: right;
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.text-area-element {
    resize: none;
    flex: auto;
    display: block;
    font-family: var(--adm-font-family);
    font-size: 17px;
    color: #ccc;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    background: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    min-height: 1.5em;
    text-align: var(--text-align)
}

.text-area-element:-webkit-autofill {
    background-color: transparent
}

.text-area-element:invalid {
    box-shadow: none
}

.text-area-element::-ms-clear {
    display: none
}

.text-area-element-hidden {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1000
}

.text-area-count {
    text-align: var(--count-text-align);
    color: #999;
    font-size: 17px;
    padding-top: 8px
}

.feedback-modal-rate {
    padding: 0 40px 10px;
}

.rate-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header-wrap {
    height: 92px;
    padding: 24px 20px;
    /* margin: 0 auto; */
    color: #fff;
}

.header-extra {
    display: flex;
    align-items: center;
    font-weight: 700;
    position: absolute;
    right: 0px;
    height: 46px;
    line-height: 46px;

}

.header-extra-item {
    margin-right: 20px;
    cursor: pointer;
}

img {
    border: 0;
    vertical-align: middle;
}

.select {
    position: relative;
}

.select-title {
    line-height: 18px;
    cursor: pointer;
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.select-title span {
    font-weight: 500;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.header-extra-item .select-list-item {
    text-transform: capitalize;
}

.header-extra-item .select-list {
    min-width: 120px;
}

.select-list {
    overflow: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: -11px;
    z-index: 999;
    padding-top: 10px;
    color: #fff;
    background: transparent;
    transition: height 1s;
    border-radius: 0 0 8px 8px;
}

.select-list-item {
    padding: 8px 10px;
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    cursor: pointer;
    background: rgba(0, 0, 0, .5);
}

.select:hover .select-list {
    display: block;
    /* 鼠标悬停时显示 */
}

.select-list-item:hover {
    background-color: #1677ff;
    /* 蓝色背景 */
}

.select-list-item:first-child {
    border-radius: 8px 8px 0 0;
}

.feedback {
    display: flex;
    align-items: center;
    line-height: 24px;
    cursor: pointer;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.feedback-text {
    margin-bottom: -2px;
    font-weight: 500;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

main {
    max-width: 1200px;
    min-width: 200px;
    min-height: calc(100vh - 160px);
    margin: 0 auto;
    padding: 0 20px;
}


/*卡片样式*/
.trend-list-item .trending-card {
    flex-direction: column;
}

.news-card {
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    border-radius: 10px;
    transition: opacity .3s;
    background-color: #0e0e10;
}

.vertical-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    opacity: 1;
    font-size: 0;
    overflow: hidden;
    transition: filter 0.3s;
}

.vertical-card.news-card:hover img {
    filter: brightness(70%);
}

.news-card-dark span {
    color: rgb(255, 255, 255);
}

.news-card-dark.vertical-card .news-card-cnt {
    padding: 13px 0;
}

.news-card-cnt span {
    font-size: 19px;
    line-height: 23px;
    font-weight: 700;
    text-align: left;
    word-break: break-all;
}

.ellipsis-2 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-card-cnt {
    height: 72px;
    padding: 13px 11px;
}

.page02 {
    margin-bottom: 48px;
}

.recent-list {
    display: flex;
    flex-wrap: wrap;
}

.recent-list-item {
    width: calc(50% - 10px);
    margin-right: 20px;
}

.recent-img-large img {
    min-height: 340px !important;
}

.recent-img-large .news-card-cnt {
    height: 110px;
    padding: 20px 16px;
}

.recent-img-large .news-card-cnt span {
    font-size: 29px;
    line-height: 35px;
    font-weight: 700;
    text-align: left;
    word-break: break-all;
}

.recent-list-right {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 10px);
    height: 100%;
}

.recent-list-item:nth-child(2n) {
    margin-bottom: 14px;
    margin-right: 0;
}

.article {
    margin-bottom: 50px !important;
}

.page03 {
    margin-bottom: 50px !important;
}

.article-list {
    display: flex;
    flex-wrap: wrap;
}

.article-large {
    padding-right: 20px;
}

.article-list-item {
    flex: 1 1;
    margin-bottom: 11px;
}

.article-list-right {
    flex: 1 1;
    flex-direction: column;
    display: flex;
}

.article-large .news-card-cnt span {
    font-size: 29px;
    line-height: 35px;
    font-weight: 700;
}

.article-large .news-card-cnt {
    height: 110px;
    padding: 20px 16px;
}

.article-img-large img {
    min-height: 340px !important;
}

.horizontal-card {
    display: flex;
}

.horizontal-card img {
    width: 285px;
    height: 160px;
}

.horizontal-card.news-card:hover img {
    filter: brightness(70%);
}

.horizontal-card .news-card-left {
    overflow: hidden;
    width: 240px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .3s;
}

.horizontal-card .news-card-right {
    flex: 1 1;
    padding: 0 10px;
}

footer {
    margin: 0 auto;
    padding: 20px 0;
    color: #aaa;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
}

footer a {
    cursor: pointer;
    display: inline-block;
    padding: 0 10px;
    color: #aaa;
    border-right: 1px solid #aaa;
}

footer a:last-child {
    border-right: none;
}

footer p {
    margin-bottom: 9px;
}

footer p:last-child {
    margin-bottom: 0;
}

.search-bar-dark {
    background-color: #39393c;
    border-width: 2px;
    border-style: solid;
    border: 2px solid #65508e;
    border-image: initial;
}

.header-wrap .search {
    width: 482px;
    margin: 0 0 0 22px;
}

.search {
    display: flex;
    align-items: center;
    width: calc(100% - 6px);
    max-width: 748px;
    height: 44px;
    padding: 9px 12px;
    margin: 40px auto 30px;
    border-radius: 10px;

}

.search-bar-light {
    background-color: #fff;
    border: 2px solid #fff;
}

.input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 24px;
    background-color: var(--background-color);
}

.search-bar-input {
    display: flex;
    align-items: center;
    width: calc(100% - 30px);
    max-width: 748px;
    height: 44px;
    padding: 9px 12px;
    margin: 40px auto 30px;
    border-radius: 10px;
}

.search-bar-dark .input-element {
    color: rgb(255, 255, 255);

}
.search-bar-input .input-element {
    font-style: italic;
}

.input-element {
    flex: auto;
    display: inline-block;
    box-sizing: border-box;
    /* width: 100%; */
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    background: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    min-height: 1.5em;
    text-align: var(--text-align);
}

.home-page .search button {
    border: none;
    background: none;
    top: 10px;
}

.home-page .search button img {
    transition: 0.4s;
}

.search img:hover {
    transform: scale(1.05);
}

.page01 {
    margin-bottom: 48px;
}

.page-title {
    position: relative;
    margin: 0 0 11px;
    padding-left: 4px;
    color: #fff;
    font-weight: 700;
    text-align: left;
    font-size: 20px;
    line-height: 24px;
}

.trend-list {
    display: flex;
    flex-wrap: wrap;
}

.triangle:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -2px;
    left: 0;
    width: 0;
    height: 0;
    border-right: 11px solid transparent;
    border-bottom: 13px solid transparent;
}

.triangle-blue:before {
    border-top: 13px solid #37b6f5;
    border-left: 11px solid #37b6f5;
}

.search-triangle-blue:before {
    border-top: 13px solid #37b6f596;
    border-left: 11px solid #37b6f596;
}

.triangle-green:before {
    border-top: 13px solid #21b700;
    border-left: 11px solid #21b700;
}

.triangle-yellow:before {
    border-top: 13px solid #fcc81a;
    border-left: 11px solid #fcc81a;
}

.page-layout {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
}

.page-layout-main {
    flex: 1 1;
    max-width: 850px;
    min-width: 300px;
    content-visibility: auto;
    contain-intrinsic-height: 800px;
    box-sizing: border-box;
}

/*公共头部样式*/
.header-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 960px;
    height: 92px;
    padding: 0 20px;
    /* padding: 24px 20px; */
    margin: 0 auto;
}

.header-container .search {
    width: 482px;
    margin: 0 0 0 15px;
}

.header-container .search button {
    /* position: absolute; */
    right: 15px;
    border: none;
    background: none;
    top: 10px;
}

.header-container .logo-link-home {
    position: absolute;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
}

.logo-link img {
    width: 240px;
    height: 80px;
    cursor: pointer;
    display: block;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.help-icon {
    display: none;
}

.news-content {
    contain: layout paint style;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-block {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}


/***search***/
.search-page {
    padding-top: 14px;
}

.search-result-title {
    position: relative;
    margin: 0 0 2px;
    padding-left: 4px;
    color: #6ecbff;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.search-item-title {
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 26px;
}

.search-result-item-cnt {
    color: #fff;
    font-weight: 700;
}

.search-result-title a {
    color: #111111;
    font-weight: 700;
}

.a {
    display: block;
    text-decoration: none;
}

.search-result h2 {
    margin: 0 0 4px;
}

.search-result-link {
    font-size: 13px;
    color: #488ef9;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.search-result.last-item {
    border-bottom: none;
}

.search-result {
    padding: 14px 0;
    border-bottom: 1px solid #404040;
}

.search-result-item {
    flex: 1 1;
    margin-top: 2px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    word-break: break-word;
}


/*list样式*/
.list-title {
    margin: 60px 0;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    line-height: 1.1;
}

.list-card {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid #ebebeb;
}

.card-img-wrap {
    width: 220px;
    height: 173px;
    cursor: pointer;
}

.card-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1;
    margin-left: 16px;
}

.card-category {
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
}

.card-title {
    margin: 0 0 10px;
    line-height: 30px;
    font-weight: 600;
    font-size: 26px;
    color: #fff;
}

.card-cnt {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #ccc;

}

.card-category a {
    display: inline-block;
    height: 16px;
    padding: 0 5px;
    line-height: 16px;
    font-size: 11px;
    color: #000;
    border-radius: 8px;
}

.category-layout:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translate3d(-50%, 0, 0);
    width: 365px;
    height: 215px;
}

.category-layout-1:before {
    background: no-repeat url(../img/bg-blue.webp);
    background-size: contain;
}

.category-layout-2:before {
    background: no-repeat url(../img/bg-green.webp);
    background-size: contain;
}

.category-layout-3:before {
    background: no-repeat url(../img/bg-yellow.webp);
    background-size: contain;
}

.category-layout-4:before {
    background: no-repeat url(../img/bg-pink.webp);
    background-size: contain;
}

.category-layout-5:before {
    background: no-repeat url(../img/bg-purple.webp);
    background-size: contain;
}

.category-layout-1 .card-category a {
    background-color: #6ecbff;
}

.category-layout-2 .card-category a {
    background-color: #6be185;
}

.category-layout-3 .card-category a {
    background-color: #ffa25f;

}

.category-layout-4 .card-category a {
    background-color: #e261e5;
}

.category-layout-5 .card-category a {
    background-color: #c361f1;
}


/***contactUs****/
.contact-us {
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.contact-email {
    margin-top: 30px;
    font-size: 16px;
}

.contact-us h3 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
}

.contact-email a {
    display: inline;
    color: #3e8bff;
}


/****detail****/

/** header ***/
.detail-header {
    height: 100px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.detail-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_row{
    height: 100px;
    display: flex;
    justify-content: space-between; 
    align-items: center;

}
.header-layout-title {
    display: block;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}

.layout-logo{
    font-weight: 700;
    font-size: 23px;
    color: rgb(51, 51, 51);
    cursor: pointer;
    /* font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; */
}
.layout-logo.full {
    display: inline-block;
}

.search-input{
    background-color: #fff;
    width: 482px;
    padding: 9px 12px;
    border-radius: 10px;
    margin: 0 0 0 22px;
}
.el-input {
    --el-input-focus-border-color: #409eff;
    --el-input-width: 100%;
    --el-input-inner-height: calc(var(--el-input-height, 32px) - 2px);
    box-sizing: border-box;
    display: inline-flex;
    font-size: 14px;
    line-height:14px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}
.el-input__wrapper {
    width: 458px;
    align-items: center;
    background-color: #ffffff;
    background-image: none;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #dcdfe6;
    cursor: text;
    display: inline-flex;
    flex-grow: 1;
    justify-content: center;
    padding: 1px 11px;
    transform: translateZ(0);
    transition: box-shadow .2s cubic-bezier(.645,.045,.355,1);
}



.el-input__wrapper:hover {
    box-shadow: 0 0 0 1px #409eff inset
}

.el-input__wrapper.is-focus {
    box-shadow: 0 0 0 1px #409eff inset
}

.el-input__inner {
    -webkit-appearance: none;
    background: none;
    border: none;
    box-sizing: border-box;
    color: #606266;
    flex-grow: 1;
    font-size: inherit;
    height: calc(32px - 2px);
    line-height: calc(32px - 2px);
    outline: none;
    padding: 0;
    width: 100%;
}
.el-input__suffix {
    margin-left: 6px;
    cursor: pointer;
}
.el-input__suffix-inner {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    pointer-events: all;
}
.el-input__suffix .el-icon {
    color: #333;
    font-size: 18px;
    transition: color .3s ease;
}
.el-input__suffix-inner>:first-child {
    margin-left: 8px;
}
.el-icon {
    --color: inherit;
    align-items: center;
    display: inline-flex;
    height: 1em;
    justify-content: center;
    line-height: 1em;
    position: relative;
    width: 1em;
    fill: currentColor;
    color: var(--color);
    font-size: inherit;
}

.pc-header-extra {
    display: flex;
    align-items: center;
    gap: 16px;
}

 .pc-header-extra .dropdown {
    position: relative;
    cursor: pointer;
}

.pc-header-extra .pc-header-extra-item {
    margin-right: 0;
}
.pc-header-extra-item .dropdown-list {
    min-width: 180px;
}
.pc-header-extra .dropdown:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 998;
}

 .dropdown-list .dropdown-list-item:last-child {
    margin-bottom: 0
}
 .dropdown-list .dropdown-list-item .dropdown-item-text {
    flex: 1
}
.pc-header-extra .dropdown:hover .dropdown-title .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1
}

 .dropdown .dropdown-list .dropdown-list-item:hover {
    background: linear-gradient(135deg,#246def,#1a5bd8);
    color: #fff;
    transform: translate(4px);
    box-shadow: 0 2px 8px rgba(36,109,239,.3)
}

 .dropdown-list .dropdown-list-item:active {
    transform: translate(2px) scale(.98)
}


.pc-header-extra .dropdown-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    line-height: 18px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

 .dropdown .dropdown-list .dropdown-list-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    color: #333;
    border-radius: 8px;
    transition: all .2s ease;
    margin-bottom: 4px;
}

.dropdown-item-text{
    flex: 1;
    text-align: center;
}

.dropdown-title .dropdown-arrow {
    transition: transform .3s ease;
    color: #fff;
    opacity: .9;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* 默认隐藏下拉列表 */
.pc-header-extra .dropdown .dropdown-list {
    display: none;
    position: absolute;
    width: 180px;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    gap: 8px;
  }

  .pc-header-extra .dropdown:hover .dropdown-list {
    display: block;
    opacity: 1;
    transform: translate(-50%);
}
  
  /* 只有鼠标悬停标题时显示下拉列表 */
  .pc-header-extra .dropdown .dropdown-title:hover + .dropdown-list {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  
  /* 箭头旋转 */
  .pc-header-extra .dropdown .dropdown-title:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
  }

.el-overlay {
    background-color:rgba(0,0,0,.5);
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
}
.is-message-box .el-overlay-message-box {
    bottom: 0;
    left: 0;
    overflow: auto;
    padding: 16px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
}
.el-message-box {
    backface-visibility: hidden;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 12px 32px 4px rgba(0,0,0,.04),0px 8px 20px rgba(0,0,0,.08);
    box-sizing: border-box;
    display: inline-block;
    font-size: 18px;
    max-width: 420px;
    overflow: hidden;
    overflow-wrap: break-word;
    padding: 12px;
    position: relative;
    text-align: left;
    vertical-align: middle;
    width: 100%
}

.el-message-box:focus {
    outline: none!important
}

.is-message-box .el-overlay-message-box {
    bottom: 0;
    left: 0;
    overflow: auto;
    padding: 16px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0
}

.is-message-box .el-overlay-message-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.el-message-box.is-draggable .el-message-box__header {
    cursor: move;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}
.el-message-box__title {
    color: #303133;
    font-size: 18px;
    line-height: 24px;
}
.el-message-box__input {
    padding-top: 12px;
}

.el-message-box__headerbtn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    height: 40px;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px
}

.el-message-box__headerbtn .el-message-box__close {
    color: #909399;
    font-size: inherit
}

.el-message-box__headerbtn:focus .el-message-box__close,.el-message-box__headerbtn:hover .el-message-box__close {
    color: var(--el-color-primary)
}

.el-message-box__content {
    color: #606266;
    font-size: 14px;
}

.el-message-box__container {
    align-items: center;
    display: flex;
    gap: 12px
}
.el-message-box__btns {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 12px;
}
.el-button {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #dcdfe6;
    border-color: #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    cursor: pointer;
    display: inline-flex;
    font-weight: 500;
    height: 32px;
    justify-content: center;
    line-height: 1;
    outline: none;
    text-align: center;
    transition: .1s;
    vertical-align: middle;
    white-space: nowrap;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.el-button:hover {
    background-color: rgb(236,245,255);
    border-color: rgb(198,226,255);
    color:#409eff;
    outline: none;
}

.el-button+.el-button {
    margin-left: 12px;
}

.el-button--primary{
    align-items: center;
    background-color: #409eff;
    border: 1px solid #dcdfe6;
    border-color: #409eff;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 500;
    height: 32px;
    justify-content: center;
    line-height: 1;
    outline: none;
    text-align: center;
    transition: .1s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.el-button--primary:hover {
    background-color: #66b1ff;
    border-color: #66b1ff;
    color: #ffffff; 
    outline: none;
}

.el-message-box__header {
    padding-bottom:12px ;
}

/* 提示框*/
#message_19 {
    position: fixed !important;     
    top: 16px !important;           
    left: 50% !important;             /* 水平居中 */
    transform: translateX(-50%);      /* 使水平居中生效 */
    z-index: 2057 !important;         /* 保证在最上层 */
    background-color: rgb(241, 249, 236);      
    color: rgb(109, 196, 66);                
    padding: 12px 24px;              
    border-radius: 4px;              
    box-shadow: 0 1px 4px #bad780ab; 
    display: flex;                  
    align-items: center;              /* 垂直居中 */
    font-size: 14px;
    pointer-events: none;             /* 默认不可点击 */
    opacity: 0;                      /* 默认隐藏 */
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  /* 图标样式 */
  #message_19 .el-message__icon {
    margin-right: 10px;
    font-size: 20px;
    flex-shrink: 0;
    color: rgb(109, 196, 66); 
  }
  
  /* 文字内容 */
  #message_19 .el-message__content {
    margin: 0;
  }
  
  /* 显示时 */
  #message_19.show {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0);
  }
  
  /* 进入动画 */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
  
  /* 离开动画 */
  @keyframes fadeOut {
    from {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    to {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }
  }
  
  /* 进入动画类 */
  #message_19.fade-in {
    animation: fadeIn 0.4s forwards;
  }
  
  /* 离开动画类 */
  #message_19.fade-out {
    animation: fadeOut 0.4s forwards;
  }
  
/* 取消提示容器 */
#message_15 {
    position: fixed !important;
    top: 16px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 2045 !important;
    background-color: rgb(244, 244, 245); 
    color: rgb(149 152 155);
    padding: 12px 24px;
    border-radius: 4px;
    /* box-shadow: 0 1px 4px rgb(244, 244, 245); */
    display: flex;
    align-items: center;
    font-size: 14px;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  /* 图标样式 */
  #message_15 .el-message__icon {
    margin-right: 10px;
    font-size: 20px;
    flex-shrink: 0;
    color: rgb(182, 184, 187);
  }
  
  /* 文字内容 */
  #message_15 .el-message__content {
    margin: 0;
  }
  
  /* 显示时 */
  #message_15.show {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0);
  }
  
  /* 进入动画 */
  @keyframes fadeInCancel {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
  
  /* 离开动画 */
  @keyframes fadeOutCancel {
    from {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    to {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }
  }
  
  /* 进入动画类 */
  #message_15.fade-in {
    animation: fadeInCancel 0.4s forwards;
  }
  
  /* 离开动画类 */
  #message_15.fade-out {
    animation: fadeOutCancel 0.4s forwards;
  }
  

/** header ***/

.detail-main{
    padding: 0px 0px;
    max-width: 1200px;

}
.detail-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}


.detail-box .left {
    width: 100%;
    margin: 0 auto;
    content-visibility: auto;
    /* 启用智能渲染 */
    contain-intrinsic-height: 800px;
    /* 预设高度，避免跳动 */
}

.detail-box .left .time {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
}

.detail-box h1{
    margin: 0px 0;
}

.detail-box .detail-page-title {
    position: relative;
    -webkit-line-clamp: 4;
    font-weight: 800;
    font-size: 25px;
    color: #333;
    line-height: 1.2;
    /* margin-bottom: 8px; */
}


.detail-box .des{
    margin-bottom: 8px;
}

.detail-box .left p {
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* margin-bottom: 8px; */
    margin-bottom: 16px;
}

.detail-box .left h2{
    color: #333;
   font-size: 18px;
   font-weight: 700;
   line-height: 32px;
   margin: 18px 0;
}

.detail-box .left h3{
    color:#333 ;
    font-size: 17px;
    font-weight: 700;
    line-height: 32px;
    margin: 10px 0;
 }
 .detail-box .left h4{
    color:#333;
    font-size: 16px;
    line-height: 32px;
    margin: 10px 0;

 }

.multi-ellipsis-base {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.detail-box img {
    width: 100% !important;
    border-radius: 10px;
}

.detail-box .left .news-content img {
    margin: 10px 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    /* 限制最大宽度 */
    /* aspect-ratio: 16 / 9; */
    background: #f5f5f5;
    display: block;
}
.detail-box .des {
    padding-top: 8px;
}

.news-content p {
    font-weight: 400;
    font-size:18px;
    line-height: 28.8px;
    /* margin-bottom: 16px */
}

.news-content ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    list-style: disc;
    margin-left: 18px;
    color: #333333;
}

.news-content ol li {
    list-style-type: decimal;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    margin-left: 18px;
    color: #333333;
}

.news-content hr {
    border: none;
    border-top: 1px solid gray;
    margin: 15px 0;
}

.detail-box .left .author h2 { 
    align-items: center;
    font-weight: 400;
    /* font-size: 24px; */
    font-size: 16px;
}

 .author h2 .author-name {
    margin-left: 8px;
    color: #76B5C5;
}
.author{
    max-width: 1200px;
    width: 100%;      
    box-sizing: border-box; 
    margin: 0 auto;  
}

.aside-container{
    margin: 6px;
    box-shadow: 2px 2px 7px #ccc;
    border-radius: 4px;
    padding: 8px 8px;
}
.author hr {
    background-color:#76B5C5;
    border: none;
    height: 4px;
    margin: 16px 75% 0 0;
}

.published-mobile {
    font-weight: 500;
    opacity: .6;
    font-size: 16px;
}

.article-info-mobile {
    padding: 5px 0;
}
.news-content table {
    margin-top: 10px;
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 48px;
    table-layout: fixed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-content th,
td {
    width: calc(100% / var(--col-count));
    border: 4px solid #ffffff;
    word-break: break-word;
}

.news-content th {
    word-break: break-word;
    text-align: center;
}

th:nth-child(1) {
    background-color: #FFF8E9;
}

th:nth-child(2) {
    background-color: #D7ECFF;
}

th:nth-child(3) {
    background-color: #FFDAD4;
}

th:nth-child(4) {
    background-color: #CAFFD9;
}

th:nth-child(5) {
    background-color: #FFCFE3;
}

/* 偶数行背景色*/
tr:nth-child(even) td {
    background-color: #F5F5F5;

}

/* 奇数行背景色 */
tr:nth-child(odd) td {
    background-color: #FCFCFC;
}

.news-content td {
    padding: 4px 8px;
    /* 减小上下内边距 */
    line-height: 1.4;
}

/***detail 右边样式***/

.page-layout-aside {
    display: block;
}

.right {
    width: 350px;
}

.right-title {
    position: relative;
    height: 28px;
    margin-bottom: 20px;
}

.right-title:after,
.right-title:before {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    content: "";
    width: 90px;
    height: 0;
    border: 1px solid;
}

.right-title-light h2 {
    color: #000;
}

.right-title-dark h2 {
    /* color: #fff; */
    color: #404040;
}

.right-title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.right-item {
    margin-bottom: 18px;
}

.right-item .news-card-cnt {
    margin-bottom: 0;
}

.right-title:after {
    right: 0;
    transform: translate3d(0, -50%, 0) rotate(180deg);
}

.right-title-light:after,
.right-title-light:before {
    border-image: linear-gradient(90deg, transparent, #000) 1 1;
}

.right-title:before {
    left: 0;
}

.right-title-dark:after,
.right-title-dark:before {
    border-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff) 1 1;
}

.news-card-cnt {
    margin-bottom: 0
}

.multi-ellipsis {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.autor {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
}

.autor .autor-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.autor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor .detail-detail p {
    font-size: 16px;
}

.autor .detail-detail p.name {
    font-weight: bold;
    /* margin-top: 20px; */
    text-align: center;
}


.adm-text-area {
    font-size: 17px;
    color: #333;
    --placeholder-color: var(--adm-color-light);
    --disabled-color: var(--adm-color-weak);
    --text-align: left;
    --count-text-align: right;
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.adm-text-area-element {
    font-family: var(--adm-font-family);
    resize: none;
    flex: auto;
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
    color: var(--color);
    font-size: 17px;
    line-height: 1.5;
    background: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    min-height: 1.5em;
    text-align: var(--text-align);
}

.adm-text-area-element::placeholder {
    color: #CCCCCC;
    font-family: inherit
}

.adm-text-area-element:-webkit-autofill {
    background-color: transparent
}

.adm-text-area-element:disabled {
    color: var(--disabled-color);
    cursor: not-allowed;
    opacity: 1;
    -webkit-text-fill-color: var(--disabled-color)
}

.adm-text-area-element:read-only {
    cursor: default
}

.adm-text-area-element:invalid {
    box-shadow: none
}

.adm-text-area-element::-ms-clear {
    display: none
}

.adm-text-area-element-hidden {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1000
}

.adm-text-area-count {
    text-align: right;
    color: #999;
    font-size: 17px;
    padding-top: 8px;
}

.feedback-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483646 !important;
    display: none;
    background-color: rgba(0, 0, 0, .4);
}

.feedback-modal-body {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    min-height: 230px;
    transform: translate3d(-50%, -50%, 0);
    background-color: #fff;
    border-radius: 14px;
}

.feedback-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.feedback-modal-input-wrap {
    width: calc(100% - 40px);
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.feedback-modal-rate-wrap {
    padding: 0 40px 10px;
}

.star-rate-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.feedback-modal-thumb-wrap {
    margin-top: 10;
    margin-bottom: 10px;
    text-align: center;
}
.feedback-modal-thanks {
    text-align: center;
}

.feedback-modal-submitted{
    width: 600px;
}

