body::-webkit-scrollbar {
    display: none;
  }
  
  .t_1l {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}


.t_12 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.t_13 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.t_14 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

a {
    display: block;
}

.catename {
    text-transform: capitalize !important;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

body {
    font-family: "Exo", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
    font-family: 'Exo', sans-serif;
}

a h2:hover {
    text-decoration: underline;
}

.dt-content .info {
    display: flex;
    flex-direction: column;
}

.dt-content .info p {
    color: #98A4A6 !important;
}

@media (max-width:1220px) {}

.dt-content table {
    width: 100% !important;
    overflow: auto !important;
    display: block !important;
}

.dt-content table tr {
    background-color: transparent !important;
}

.dt-content a {
    display: inline-block;
}

.dt-content h1,
.dt-content h2,
.dt-content h3,
.dt-content h4,
.dt-content h1 span,
.dt-content h2 span,
.dt-content h3 span,
.dt-content h4 span {
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-indent: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-family: 'Exo', sans-serif !important;
}

.dt-content .dt-title {
    font-size: 20px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    font-style: normal;
    font-weight: 600 !important;
    font-family: 'Exo', sans-serif !important;
}


.dt-content p,
.dt-content span,
.dt-content ul li,
.dt-content ol li {
    color: #333 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-indent: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-style: normal !important;
    font-family: 'Exo', sans-serif !important;
    font-weight: 400 !important;
    text-align: left !important;
    margin-left: 0 !important;
}

.dt-content ul,
.dt-content ol {
    margin-bottom: 15px;
    margin-left: 0px !important;
    padding-left: 30px !important;
    font-family: 'Exo', sans-serif !important;
}

.dt-content ul,
.dt-content ul li {
    list-style: disc;
}

.dt-content ol,
.dt-content ol li {
    list-style: decimal;
}

.dt-content img {
    display: block;
    cursor: auto;
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    margin: auto;
    margin-bottom: 15px;
}

.dt-content strong,
.dt-content strong span {
    font-weight: 600 !important;
}

header {
    position: relative;
    padding: 0px 0px;
    background-color: var(--bg-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    margin: auto;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 10px;
    display: block;
}

.nav-links li a:hover {
    text-decoration: underline;
    color: var(--text-color);
}

.nav-links li a img {
    width: 24px;
    aspect-ratio: auto;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
}

.line1,
.line2,
.line3 {
    width: 22px;
    height: 2px;
    background-color: var(--text-color);
    margin: 2px;
}

.logo a {
    font-size: 30px;
    line-height: 34px;
    color: var(--logo-color);
    padding: 10px 10px;
    display: block;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
}

@media screen and (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        /* 将导航链接改为纵向布局 */
        background-color: #fff;
        /* 为导航链接添加背景色 */
        padding: 10px;
        /* 为导航链接添加内边距 */
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 9999;
        padding-top: 60px;
        height: 100vh;
    }

    .navbar {
        padding: 0px 0px;
    }

    .logo a {
        padding: 8px 15px;
        font-size: 24px;
        line-height: 26px;
    }

    .nav-links.nav-active {
        display: flex;
        position: fixed;
    }

    .nav-links li a {
        padding: 6px 10px;
        color: #333;
    }

    .burger {
        display: flex;
        padding: 10px 15px;
    }

    .toggle {
        position: fixed;
        z-index: 9999;
        right: 6px;
        font-size: 24px;
        top: 0px;
        color: #333;
    }


}

.capitalize {
    text-transform: capitalize;
}

footer {
    margin-top: 50px;
    position: relative;
    background: var(--bg-color);
}

@media (max-width:550px) {

    footer .pt p,
    footer .pb {
        font-size: 14px;
        line-height: 18px;
    }

    footer .pb {
        padding-bottom: 10px;
    }

    footer .pb a {
        padding: 0 14px 0;
    }
}


.cl_footer-copyright-text {
    flex-shrink: 0;
}

.cl_footer-copyright-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color);
    margin-bottom: 0;
}

.cl_footer-copyright-text p a {
    color: var(--text-color);
}

.cl_footer-copyright-menu ul {
    list-style: none;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0;
    margin: 0;
}



.cl_footer-copyright-menu ul li {
    position: relative;
    z-index: 1;
}

.cl_footer-copyright-menu ul li:not(:last-child) {
    margin-right: 10px;
    padding-right: 12px;
    line-height: normal;
}

.cl_footer-copyright-menu ul li:not(:last-child)::after {
    position: absolute;
    right: 0;
    top: 50%;
    content: "";
    transform: translateY(-50%);
    width: 2px;
    background-color: var(--text-color);
    height: 15px;
}

.cl_footer-copyright-menu ul li a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.cl_footer-copyright {
    padding: 23px 0 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .cl_footer-copyright {
        justify-content: center;
        row-gap: 10px;
    }
}

@media (max-width: 480px) {
    .cl_footer-copyright-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }

    .cl_footer-copyright-menu ul li a,
    .cl_footer-copyright-text p {
        font-size: 12px;
    }

    .cl_footer-copyright {
        row-gap: 0px;
    }
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

a img {
    aspect-ratio: 1/0.6;
}

img {
    object-fit: cover;
    display: block;
    width: 100%;
}

.catename {
    color: #4146E6;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 18px;
}

section {
    padding: 24px 0;
}

.search {
    display: flex;
    align-items: center;
    margin: 0 auto 20px;
    justify-content: space-between;
    max-width: 600px;
    border-radius: 60px;
    background: #fff;
    border: 1px solid #1E1E1E;
}

.search input {
    border-radius: 0;
    border: none !important;
    margin-bottom: 0;
    padding: 8px 12px;
    width: 100%;
    height: auto;
    border-radius: 60px 0 0 60px;
    outline: none !important;
}

input:focus {
    border: none !important;
    /* 确保聚焦时也没有边框 */
    outline: none !important;
    /* 确保聚焦时没有轮廓 */
}

.search_btn a {
    padding: 8px 20px !important;
    color: #1E1E1E;
    border-radius: 60px;
}

main {
    margin: auto;
}

.tp-section-gap a {
    text-align: center;
    padding: 12px;
}

.tp-section-gap a p {
    color: var(--text-sub-color);
    padding: 10px 0;
    margin-bottom: 0;
}

.tp-section-gap a h6 {
    margin-bottom: 0;
}

.big-post h4,
.big-post p,
.post-section-top h4,
.post-section-top p {
    color: #fff;
}

.small-post .heading-title {
    margin-bottom: 0px !important;
}

.eblog-post-list-style img {
    aspect-ratio: 1/0.7;
}

.time i {
    padding-right: 8px;
}

.post-section-top a img {
    aspect-ratio: 1/1;
}

.latest-news .time {
    margin-bottom: 0;
}

#Popular a,
#Editor a,
#Latest a {
    padding: 12px;
}

p.time {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.eblog-post-list-style .blog-content .sub-title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.tp-section-gap h6,
.small-post .heading-title {
    font-size: 18px;
    line-height: 1.4;
}

.eblog-featured-news,
.eblog-featured-news .image-area,
.eblog-featured-news img {
    height: 100%;
}

#Popular h4,
#Editor h4,
#Latest h4 {
    font-size: 28px;
    line-height: 1.4;
}

#Latest .desc {
    font-size: 14px;
    line-height: 1.6;
}

#Latest .image-area {
    width: 35%;
}

#Latest .blog-content {
    width: 65%;
}

.dt-main .dt-content {
    width: 70%;
    padding: 12px;
}

.dt-main .small-post {
    width: 30%;
    flex-basis: auto !important;
}

.dt-main .small-post .heading-title,
.top-de h6 {
    font-size: 16px;
}

.dt-main .eblog-post-list-style {
    gap: 12px;
}

@media (max-width:992px) {
  .dt-main .dt-content,
  .dt-main .small-post {
    width: 100%;
}
    #Latest .image-area {
        width: 50%;
    }

    #Latest .blog-content {
        width: 50%;
    }

    #Latest h4 {
        font-size: 24px;
        line-height: 1.4;
    }

    .latest-news .eblog-post-list-style .blog-content .heading-title,
    .latest-news .eblog-post-list-style .blog-content .sub-title {
        margin-bottom: 10px;
    }

    .latest-news .eblog-post-list-style .blog-content .desc {
        margin: 10px 0;
    }
}

@media (max-width:768px) {
    .container {
        padding: 0;
    }

    .post-section-top a img {
        aspect-ratio: 1/0.75;
    }

    .eblog-featured-post-area .left-side-post-area .featured-post .section-title-area .section-title {
        font-size: 28px;
    }

    #Popular h4,
    #Editor h4,
    #Latest h4 {
        font-size: 24px;
    }

    #Latest .eblog-post-list-style {
        flex-direction: column;
        gap: 12px;
    }

    #Latest .image-area,
    #Latest .blog-content {
        width: 100%;
    }

}

@media (max-width:576px) {
    .tp-section-gap {
        padding: 6px 0;
    }

    section {
        padding: 6px 0;
    }

    .tp-section-gap a,
    #Popular a,
    #Editor a,
    #Latest a {
        padding: 6px 12px;
    }

    p.time,
    .tp-section-gap a p {
        font-size: 12px;
        line-height: 16px;
        padding: 6px 0;
    }

    .tp-section-gap h6,
    .small-post .heading-title {
        font-size: 16px;
    }

    .eblog-featured-post-area .left-side-post-area .featured-post .section-title-area .section-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    #Popular h4,
    #Editor h4,
    #Latest h4 {
        font-size: 18px;
    }

    .eblog-featured-news .image-area .tag,
    .blog-content .sub-title {
        font-size: 12px;
    }

    #Popular h4,
    .blog-content .heading-title {
        margin-bottom: 10px;
    }

    #Editor .eblog-post-list-style img,
    #Popular .eblog-post-list-style img {
        aspect-ratio: 1 / 1;
    }

    .eblog-post-list-style {
        gap: 12px;
    }

    .latest-news .eblog-post-list-style .blog-content .desc {
        margin: 5px 0;
    }

    .top-de h6 {
        font-size: 14px;
    }
}

.theme-dark {
    --bg-color: #1E1E1E;
    --text-color: #fff;
    --logo-color: #fff;
    --text-sub-color:#999
    --color-primary: #00C89A;
}


.theme-light {
    --bg-color: #3498db;
    --text-color: #fff;
    --logo-color: #fff;
    --color-primary: #3498db;
    --text-sub-color: #3498db;
}