* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia Pro";
    /*font-family: "Times New Roman", serif;*/
    background-color: #fafbfc;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

@font-face {
    font-family: Georgia;
    src: url(/css/blog_44/fonts/GeorgiaPro-Regular.ttf)
}

@font-face {
    font-family: 'Georgia Pro';
    font-weight: 400;
    src: url(/css/blog_44/fonts/GeorgiaPro-Regular.ttf)
}

@font-face {
    font-family: 'Georgia Pro';
    font-weight: 600;
    src: url(/css/blog_44/fonts/GeorgiaPro-SemiBold.ttf)
}

@font-face {
    font-family: 'Georgia Pro';
    font-weight: 700;
    src: url(/css/blog_44/fonts/GeorgiaPro-Bold.ttf)
}

@font-face {
    font-family: Georgia-Bold;
    font-weight: 700;
    src: url(/css/blog_44/fonts/GeorgiaPro-Bold.ttf)
}

.header {
    padding: 10px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #d7d7d7;
    /*max-width: 1280px;*/
    /*margin: auto;*/
    /*padding: 0 10px 15px;*/
}

.header-menu-list {
    padding: 15px 0;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 20px;

    border-bottom: 1px solid #004CD3;
}

.header-menu-item {
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.header-menu-item:hover {
    color: #004CD3;
}

.header-menu-item.active {
    color: #004CD3;
}

.header-bottom {
    /*padding-bottom: 10px;*/
}

.content-main {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 10px;
}

.divider-1 {
    border: 1px solid #d7d7d7;
    margin: 10px 0;
    width: 100%;
}

.divider-2 {
    border: 1px solid #d7d7d7;
    margin: 30px 0;
    width: 100%;
}

.top-info {
    display: flex;
    gap: 2rem;
}

.top-left {
    flex: 3;
    width: 72%;
}

.header-top-right {
    width: 1px;
    height: 1px;
}

.slider-info {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
    border-bottom: 1px solid #d7d7d7;
}

.slider-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    overflow: hidden;
}

.slider-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 10px 0;
    flex-wrap: wrap;
    background: transparent;
    text-decoration: auto;
}

.slider-text {
    flex: 1;
}

.slider-img {
    flex: 1;
    width: 100%;
    aspect-ratio: 4/2.25;
    display: flex;
}

.slider-title {
    font-size: 28px;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.slider-cate {
    padding-bottom: 15px;
    border-bottom: 1px solid #d7d7d7;
}

.slider-preview {
    font-size: 18px;
    font-weight: 600;
    color: #818283;
    margin-top: 15px;
}

.slider-cate, .slider-cate p, .slider-cate time {
    color: #919499;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}

.hot-content {
    margin-top: 20px;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hot-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hot-text {
    flex: 1;
}

.hot-img {
    flex: 1;
    display: flex;
    align-items: center;
}

.hot-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.hot-preview {
    font-size: 16px;
    font-weight: 600;
    color: #818283;
}

.hot-cate, .hot-cate p, .hot-cate time {
    color: #919499;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}

.last-main {
    padding: 12px;
    border: 1px solid #d7d7d7;

    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.last-item {
    position: relative;
    width: 100%;
    display: flex;
    aspect-ratio: 4/2.25;
}

.last-img {
    width: 100%;
    aspect-ratio: 4/2.25;
}

.last-cate {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
    z-index: 1;
    font-size: 14px;
    background: #ca0404;
    color: #fff;
    font-weight: bold;
}

.top-right {
    flex: 1;
}

.last-title {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 5px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.slider-img img, .hot-img img {
    width: 100%;
    aspect-ratio: 4 / 2.25;
}

.max-line-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.max-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.max-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", serif;
}

a {
    text-decoration: auto;
}

.header-icon {
    max-width: 200px;
}

.footer {
    background: #353434;
    color: #fff;
    padding: 2rem 1rem;
    font-size: 20px;
    font-weight: bold;
}

.footerLinks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
}

.footerLinks a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: auto;
    gap: 1rem;
}

.header-top-left {
    display: flex;
    align-items: center;
}

.menu-icon {
    width: 30px;
    height: 30px;
    transition: transform .25s ease, opacity .2s ease;
}

.menu-icon.open {
    transform: rotate(90deg);
}

.text-0-content {
    margin-top: 20px;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-0-item {
    display: flex;
    gap: 1rem;
}

.text-0-text {
    flex: 1;
}

.text-0-img {
    flex: 1;
}

.text-0-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.text-0-preview {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #818283;
}

.text-0-cate, .text-0-cate p, .text-0-cate time {
    color: #919499;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}

.text-0-cate {
    padding-bottom: 10px;
    border-bottom: 1px solid #d7d7d7;
}

.cate-title-0 {
    font-size: 28px;
    font-weight: bolder;
    color: #004CD3;
}

.cate-title-1 {
    font-size: 28px;
    font-weight: bolder;
    color: #749fec;
}

.text-top-content {
    margin-top: 20px;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-top-item {
    display: flex;
    gap: 1rem;
}

.text-top-text {
    flex: 1;
}

.text-top-img {
    flex: 1;
}

.text-top-title {
    font-size: 20px;
    font-weight: bold;
    color: #c6c6c6;
    margin-bottom: 8px;
}

.text-top-preview {
    font-size: 16px;
    font-weight: 600;
    color: #818283;
    padding-top: 10px;
}

.text-top-cate, .text-top-cate p, .text-top-cate time {
    color: #919499;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}

.text-top-cate {
    padding-bottom: 10px;
    border-bottom: 1px solid;
}

.text-bottom-content {
    margin-top: 20px;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.text-bottom-item {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.text-bottom-text {
    flex: 1;
}

.text-bottom-img {
    flex: 1;
    display: flex;
}

.text-bottom-img, .text-top-img, .text-3-img {
    display: flex;
    align-items: center;
}

.text-bottom-img img, .text-top-img img, .text-0-img img, .text-3-img img, .common-image {
    width: 100%;
    aspect-ratio: 4/2.25;
}

.text-bottom-title {
    font-size: 20px;
    font-weight: bold;
    color: #c6c6c6;
    margin-bottom: 8px;
}

.text-bottom-preview {
    font-size: 16px;
    font-weight: 600;
    color: #818283;
}

.common-cate {
    margin: 8px 0;
}

.text-bottom-cate, .text-bottom-cate p, .text-bottom-cate time, .text-3-cate time, .common-cate time {
    color: #919499;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}

.content-1 {
    padding: 20px 10px;

    background: #1f1f1f;
}

.cate-guide {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-link {
    color: #989595;
    font-weight: bold;
}


.text-3-cate {
    margin-top: 20px;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.text-3-cate {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.text-3-cate {
    flex: 1;
}

.text-3-cate {
    flex: 1;

}

.text-3-cate-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.text-3-cate-preview {
    font-size: 16px;
    font-weight: 600;
    color: #818283;
}

.text-3-content, .text-2-content {
    display: flex;
    gap: 1.5rem;
}

.text-2-left, .text-2-right {
    flex: 2;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.text-2-mid {
    flex: 3;
}

.text-3-item {
    flex: 1;
}

.common-preview {
    font-size: 16px;
    font-weight: 600;
    color: #818283;
}

.common-title-large {
    font-size: 22px;
    color: #1F1F1F;
    font-weight: bold;
}

.common-title, .text-3-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.text-3-preview {
    font-size: 16px;
    font-weight: 600;
    color: #818283;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 99999;
    width: 40px;
    height: 40px;
    display: flex;
    border: none;
    outline: none;
    border-radius:50px;
}

.back-to-top img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {

    .top-info {
        flex-direction: column;
    }

    .top-left {
        width: 100%;
    }

    .common-item {
        flex: 1;
    }

    .text-3-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .text-3-item {
        flex: none;
        width: 47%;
    }

    .slider-item {
        gap: .5rem;
    }

    .hot-content {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .text-0-content {
        gap: 1rem 0.5rem;
    }

    .text-0-item {
        flex-direction: column-reverse;
    }

    .text-top-content {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .text-bottom-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .text-2-content {
        flex-direction: column;
    }

    .text-2-left, .text-2-right {
        flex-direction: row;
        gap: .5rem;
    }

    .footer-container {
        flex-direction: column;
    }

    .footerLinks a {
        font-size: 14px;
    }

    .footer {
        padding: 1rem .5rem;
        font-size: 15px;
    }

    .content-main {
        padding: 0;
        margin: 0 10px;
        width: auto;
    }

    .content-1 {
        margin: 0 -10px;
    }

    .text-0-cate, .text-0-cate p, .text-0-cate time {
        font-size: 12px;
    }

    .hot-cate, .hot-cate p, .hot-cate time {
        font-size: 12px;
    }


    .text-bottom-title, .text-top-title, .text-0-title, .common-title, .text-3-title, .slider-title, .hot-title {
        font-size: 17px;
    }

    .text-top-preview, .text-0-preview, .text-3-preview, .slider-preview {
        font-size: 14px;
    }

    .header-menu-list {
        overflow: auto;
        justify-content: normal;
    }

    .header-bottom {
        display:none;
    }

    .header {
        border-bottom: 1px solid #004CD3;
        padding: 0 10px;
    }

    .header-top {
        padding: 10px 0 15px;
        border: none;
    }

    .menu-info {
        max-width: 100%!important;
    }
}


.menu-main {
    width: 100%;
    height: 100%;
    /*display: none;*/
}

.menu-main.open {
    display: flex;
    position: fixed;
}

.menu-info {
    width: 100%;
    height: 100%;
    max-width: 300px;
    position: fixed;
    z-index: 999999;
    left: -100%;
    /*top: 0;*/
    background: #fff;
    transition: .3s all;
}

.menu-bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .24);
}

.search-info {
    background: #F5F5F5;
    padding: 20px;
}

.search-form {
    border: 1px solid #C5CAD1;
    display: flex;
    background: #fff;
    align-items: center;
    padding: 10px;
}

.search-input {
    height: 42px;
    width: 100%;
    flex: 1;
    border: none;
    font-weight: bold;
    outline: none;
    font-size: 18px;
    background: none;
}

.search-btn {
    height: 42px;
    width: 42px;
    padding: 10px;
    background: #ececed;
    border: none;
    transition: background .3s ease, transform .25s ease;
}

.search-btn img {
    width: 100%;
    aspect-ratio: 1;
}

.cate-title-text {
    padding: 22px 24px;
    background: #ececec;

    display: flex;
    gap: 10px;
    font-size: 22px;
    font-weight: bolder;

    color: #303030;
}

.cate-title-text img {
    width: 30px;
}

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-item {
    line-height: 3;
    font-weight: bold;
    font-size: 18px;
    color: #1F1F1F;
    padding-left: 24px;
}

.menu-item:hover {
    background: #a6a6a6;
}



.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slides a {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
}

.progress-bars {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.progress-bar {
    width: 100px;
    height: 5px;
    background-color: #ececec;
    margin: 0 5px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background-color: #bfbebe;

}

.progress-bar.active::before {
    width: 100%;
    transition: width 5s linear;
}



.page-size {
    display: flex;
    font-weight: bold;
    gap: 1.5rem;
    margin: 2rem auto 1rem;
    justify-content: center;
    font-size: 20px;
}

.page-size ul {
    display: flex;
    font-weight: bold;
    gap: 1.5rem;
    justify-content: center;
    font-size: 20px;
}

.page-size li {
    list-style: none;
}

.page-size li a, .page-size span, .page-size a {
    background: #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    text-decoration: auto;
    padding: 5px 10px;
    border: 1px solid #1990e1;
    color: #fff;
}

.page-size li a:hover, .page-size a:hover {
    background: #1990e1;
}

.page-size a {
    background: #1990e1;
}

.article-info p, .article-info li {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-info ul, .article-info li {
    list-style: disc;
}

.article-info ul {
    padding-left: 2rem;
}

.article-info table {
    width: 100%;
    font-size: 10px;
}

.article-info h1, .article-info h2, .article-info h3, .article-info h4, .article-info h5, .article-info h6 {
    font-weight: 1000;
    margin: 10px 0;
    color: #000;
}

.article-info h1 {
    font-size: 30px;
}

.article-info h2 {
    font-size: 28px;
}

.article-info h3 {
    font-size: 25px;
}

.article-info h4 {
    font-size: 22px;
}

.article-info h5, .article-info h6 {
    font-size: 19px;
}

.article-info a {
    color: red;
}

.article-info img {
    max-width: 450px;
    width: 100%;
}


.guide-main {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #999;
}

.guide-main a, .guide-main p {
    color: #1990e1;
    font-weight: bold;
    font-size: 12px;
    text-decoration: auto;
}

.article-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.other-info {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1.2;
}

.article-category {
    background:#1990e1;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 5px;
    color: #fff;
}

.meta-date {
    display: flex;
    gap: 1rem;
    color: #64748b;
    font-size: 0.85rem;
}
.title-main {
    padding: 30px 0;
}