body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #043E22FF;
    font-family: 'Crimson Pro';
    font-size: 28px;
    line-height: 1.4;
    --wp--style--root--padding-top: 0;
    --wp--style--root--padding-right: 6vw;
    --wp--style--root--padding-bottom: 0;
    --wp--style--root--padding-left: 6vw;
}

* {
    margin: 0;
    padding: 0;
}

.header {
    background: #043E22FF;
    font-family: 'Metropolis';
    padding: .5rem 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    max-width: 1140px;
    padding: 0 10px;
}

.header-bottom {
    margin: auto;
    padding: 0 10px;
    max-width: 1140px;
}

.logo {
    max-width: 200px;
}

.logo a {
    display: flex;
}

.logo img {
    width: 100%;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-btn {
    background: none;
    border: none;
    outline: none;
    width: 30px;
    height: 30px;
}

.menu-btn img {
    width: 100%;
    height: 100%;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: auto;
}

.menu-item a {
    color: #fff;
    font-weight: 1000;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

a {
    color: #043E22FF;
    text-decoration: auto;
}

.main-content {
    /*max-width: 1140px;*/
    margin: auto;
    /*margin: 10px;*/
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: hidden;
}

.region-1 {
    margin: auto;
    max-width: 1140px;
}

.region-1-title {
    font-style: italic;
    font-weight: bold;
    font-size: 28px;

    padding-bottom: 1rem;
    border-bottom: 4px solid #043E22FF;
}

.hot-post {
    margin-top: 1rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.left-post-item {
    position: sticky;
    top: 1rem;
    display: block;
}

.post-image:hover {
    scale: 1.1;
}

.post-image {
    width: 100%;
    aspect-ratio: 4/2.25;
    transition: all .3s;
}

.background-white {
    background: #fff;
}

.post-info {
    position: absolute;
    bottom: 1rem;
    width: 90%;
    padding: 0 1rem;
    text-align: center;
    color: #fff;
}

.post-title {
    font-size: 20px;
    font-weight: bold;
}

.post-date time {
    font-size: 12px;
    font-weight: 500;
}

.right-post-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.right-post-info {
    padding-bottom: 1.5rem;
    border-bottom: 4px solid #dedede;

    color: #043E22FF;
}

.right-post-title {
    font-size: 20px;
    font-weight: bold;
}

.right-post-date time {
    font-size: 12px;
}

.new-post {

    max-width: 1140px;
    margin: auto;
    padding: 2rem 10px;
    border-top: 4px solid #dedede;
    border-bottom: 4px solid #dedede;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.new-post-item {
    display: flex;
    gap: 1rem;
    color: #043E22FF;
}

.article-content {
    font-size: 16px;
}

.article-content img {
    max-width: 100%;
}

.article-content p, .article-content li, .article-content div {
    margin: 0 0 16px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    padding-left: 30px;
}

.article-content ul, .article-content li, .article-content ol {
    list-style: disc;
}

.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
    margin: 16px 0;
    font-weight: bold;
    line-height: 1.3;
}

.article-content a {
    color: #00d76f;
}

.article-date {
    margin: 0 0 16px;
    font-weight: 500;
}

.new-post-img {
    flex: 1;
    width: 30%;
}

.new-post-info {
    flex: 3;
    width: 70%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.right-post-date {
    display: flex;
    margin-top: .5rem;
}

.new-post-title {
    font-size: 20px;
    font-weight: bold;
}

.new-post-cate {
    font-size: 16px;
    font-weight: 500;
}

.max-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.max-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-1 {
    max-width: 1140px;
    padding: 1rem 10px;
    margin: auto;
    color: #043E22FF;
}

.post-1-main {
    margin-top: 2rem;
}

.post-1-type {
    padding: 0 0 1rem;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    border-bottom: 4px solid #043E22FF;
}

ul, ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-1-list {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.post-1-item {
    width: 100%;
}

.post-1-info {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.post-1-cate {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

time {
    font-size: 12px;
    font-weight: normal;
}

.post-1-title {
    font-weight: bold;
    font-size: 18px;
}

.post-2 {
    background: #043E22FF;
    padding: 1.5rem 0;
    color: #fff;
}

.post-2-type {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 1rem;
    text-align: center;
}

.post-2-list {
    max-width: 1140px;
    margin: auto;
    padding: 1rem 10px;
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-2-item a {
    position: relative;
    display: flex;
    justify-content: center;
}

.title {
    font-style: italic;
    font-size: 28px;
    font-weight: bold;
}

.post-2-title {
    position: absolute;
    bottom: 1rem;
    width: 98%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    margin: auto;
}

.footer {
    background: #043E22FF;
    color: #fff;
}

.footer-main {
    max-width: 1140px;
    margin: auto;
    padding: 1rem 10px;
}

.footer-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;

    padding: 1rem 0;
    border-bottom: 4px solid #205b41;

    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.post-date {
    display: flex;
    justify-content: center;
}

.footer-item a {
    color: #fff;
    font-size: 16px;
}

.copyright {
    margin-top: 1rem;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.post-1-date {
    display: flex;
}

.site-main {
    position: relative;
}

.menu-main {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 100000;
    transition: all .3s;
    right: -100%;
}

.menu-bg {
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 47%);
}

.menu-info {
    width: 70%;
    height: 100%;
    background: #043E22FF;
    max-width: 500px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100001;
    padding: 2rem 1.5rem;
}

.menu-close {
    width: 30px;
    height: 30px;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 2rem auto;
}

.search-input {
    height: 40px;
    border-radius: 50px;
    background: #b2b0b0;
    color: #043E22FF;
    font-size: 16px;
    font-weight: bold;
    padding: 0 50px 0 15px;
    width: 100%;
    border: none;
    outline: none;
}

.search-btn {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;

    background: none;
    border: none;
    outline: none;
}

.search-btn img {
    width: 100%;
    height: 100%;
}

.type-list {
    padding: 2rem 0;
    border-top: 1px dashed #fff;
    border-bottom: 1px dashed #fff;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.type-item a {
    font-weight: 1000;
    font-size: 24px;
    color: #fff;
}

.about-list {
    display: flex;
    margin-top: 2rem;
    gap: .5rem;
    color: #fff;
    font-size: 14px;
    justify-content: center;
    font-weight: bold;
}

.about-item {
    color: #fff;
}

.about-item a {
    color: #fff;
}

.scroll-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    border-radius: 50px;
    background: #043E22FF;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
}

.scroll-top img {
    width: 50%;
    height: 50%;
}

.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recommend-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.recommend-cate {
    color: #043E22FF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.recommend-title {
    color: #043E22FF;
    font-size: 18px;
    font-weight: bold;
}

.article-region {
    display: flex;
    gap: 2rem;
    position: relative;
    margin: 1rem auto;
    max-width: 1140px;
    padding: 0 10px;
}

.recommend-type {
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 28px;
    color: #043E22FF;
}

.region-left {
    flex: 7;
    width: 70%;
}

.region-right {
    flex: 3;
    width: 30%;
    position: sticky;
    top: 1rem;
    max-height: 1000px;
}

.region-all {
    width: 100%;
}


.page_size {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: bold;
}

.page_size span {
    color: #c1bbbb;
}

.page_size a {
    color: #043E22FF;
}


@media screen and (max-width: 768px) {
    .hot-post {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .new-post {
        display: flex;
        flex-direction: column;
    }

    .post-1-list {
        gap: 1rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .post-2-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .header-bottom {
        display: none;
    }

    .right-post-list {
        gap: 0.5rem;
    }

    .right-post-title {
        font-size: 17px;
    }

    .right-post-info {
        padding-bottom: 1rem;
    }

    .article-region {
        flex-direction: column;
    }

    .region-left {
        width: 100%;
    }

    .region-right {
        width: 100%;
    }
}

@media screen and (max-width: 1140px) {
    .region-1 {
        margin: 0 10px;
        padding: 0;
    }

    .new-post {
        margin: 0 10px;
        padding: 2rem 0;
    }

    .article-region {
        margin: 1rem 10px;
        padding: 0;
    }
}