@charset "utf-8";

html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Roboto, sans-serif;
    background: #0D5C00;
    color: #fff;
}
a {
    text-decoration: none;
}

.header-con {
    width: 100%;
    height: 112px;
    background: rgba(0,0,0,0.5);
    padding-left: 360px;
    padding-right: 115px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
}
.header-con .left-area {
    display: flex;
    align-items: center;
}
.header-con .left-area img {
    width: 80px;
}
.header-con .left-area .desc-text {
    margin-left: 27px;
    font-family: Roboto;
}
.header-con .left-area .desc-text h1 {
    font-weight: bold;
    font-size: 24px;
    color: #FDF100;
    margin: 0;
}
.header-con .left-area .desc-text h2 {
    font-weight: 400;
    font-size: 20px;
    color: #DFE2E0;
    margin: 0;
}
.header-con .right-area {
    display: flex;
    align-items: center;
}
.header-con .right-area .download {
    width: 176px;
}
.header-con .right-area .lang-con {
    position: relative;
    width: 186px;
    height: 50px;
    background: rgba(255,255,255,0.21);
    border-radius: 8px;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 59px;
}
.header-con .right-area .lang-con .lang-img {
    width: 24px;
    margin-left: 21px;
    margin-right: 20px;
}
.header-con .right-area .lang-con .arrow-img {
    position: absolute;
    right: 21px;
    top: 18px;
    width: 16px;
    transition: 0.2s all linear;
}
.header-con .right-area .lang-con .arrow-change {
    transform: rotate(180deg);
}
.header-con .right-area .lang-con .lang-text {
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}
.header-con .right-area .lang-con .lang-dialog {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    width: 186px;
    height: 0;
    background: rgba(255,255,255,0.21);
    border: 1px solid #cccccc;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    overflow: hidden;
    transition: 0.25s all ease-out;
}
.header-con .right-area .lang-con .lang-dialog.dialog-visible {
    height: 112px;
    opacity: 1;
}
.header-con .right-area .lang-con .lang-dialog div {
    display: flex;
    align-items: center;
    height: 56px;
    padding-left: 21px;
}
.header-con .right-area .lang-con .lang-dialog div:hover {
    background: rgba(0,0,0,0.56);
}
.header-con .right-area .lang-con .lang-dialog .hi-item {
    border-bottom: 1px solid #CCCCCC;
}
.header-con .right-area .lang-con .lang-dialog .en-item {
    border-radius: 0 0 8px 8px;
}
.header-con .change-lang-m {
    display: none;
}

.nav-con-wrap {
    width: 100%;
    height: 87px;
    background: linear-gradient(180deg, #1B750C 0%, #0D5C00 100%);
    display: flex;
    align-items: center;
    margin-top: 112px;
}
.nav-con-wrap .nav-con {
    width: 1200px;
    height: 63px;
    background: #082C02;
    border-radius: 34px;
    border: 3px solid #1B750C;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.nav-con-wrap .nav-con .nav-item {
    flex: 1;
    height: 100%;
    font-family: Montserrat;
    font-weight: 900;
    font-size: 24px;
    color: #A8E6A1;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.nav-con-wrap .nav-con .nav-item:first-child:hover {
    border-radius: 34px 0 0 34px;
}
.nav-con-wrap .nav-con .nav-item:last-child:hover {
    border-radius: 0 34px 34px 0;
}
.nav-con-wrap .nav-con .nav-item:hover {
    color: #082C02;
    background: linear-gradient(180deg, #DFEF28 0%, #1B750C 100%);
}
.nav-con-wrap .nav-con .nav-item.active {
    color: #082C02;
    background: linear-gradient(180deg, #DFEF28 0%, #1B750C 100%);
}

.easy-nav-con {
    position: fixed;
    top: 199px;
    right: 18px;
    width: 152px;
    height: 288px;
    border-radius: 16px;
    background: rgba(13,92,0,0.5);
    z-index: 99;
}
.easy-nav-con .item {
    width: 152px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    font-family: Roboto, Roboto;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
}
.easy-nav-con .item a {
    color: #FFFFFF;
    text-decoration: none;
}
.easy-nav-con .item.current {
    background: linear-gradient(180deg, #DFEF28 0%, #1B750C 100%);
    font-weight: bold;
    color: #082C02;
}
.easy-nav-con .item.current a {
    color: #082C02;
}
.easy-nav-con .item:first-child.current {
    border-radius: 16px 16px 0 0;
}
.easy-nav-con .item:last-child.current {
    border-radius: 0 0 16px 16px;
}

.go-top {
    position: fixed;
    top: 65vh;
    right: 11px;
    width: 100px;
    z-index: 99;
    cursor: pointer;
}

.blog-con {
    background: #0D5C00;
    padding-bottom: 100px;
    position: relative;
}
.blog-con .top-area {
    background: #0D5C00;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 87px 0;
    width: 100%;
    box-sizing: border-box;
}
.blog-con .top-area .frame-con {
    width: 1193px;
    background: #082C02;
    border: 3px solid #1B750C;
    position: relative;
    box-sizing: border-box;
    padding: 40px 60px 28px 60px;
}
.blog-con .top-area .frame-con:not(:first-child) {
    margin-top: 22px;
}
.blog-con .top-area .frame-con::before {
    position: absolute;
    left: -7px;
    top: -6px;
    content: '';
    width: 92px;
    height: 74px;
    background: url('images/home/top-frame.webp') no-repeat;
    background-size: 100% 100%;
}
.blog-con .top-area .frame-con::after {
    position: absolute;
    right: -7px;
    bottom: -6px;
    content: '';
    width: 92px;
    height: 74px;
    background: url('images/home/bottom-frame.webp') no-repeat;
    background-size: 100% 100%;
}
.blog-con .top-area .frame-con h1 {
    font-family: Montserrat;
    font-size: 28px;
    line-height: 33px;
    color: #DFEF28;
    margin: 0 0 20px 0;
}
.blog-con .top-area .frame-con .p {
    font-family: Roboto;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0;
}
.blog-con .top-area .frame-con .more {
    width: 209px;
    height: 63px;
    background: url("images/blog/view-more.webp") no-repeat;
    background-size: 100% 100%;
    margin-top: 5px;
    cursor: pointer;
}
.blog-con .top-area .mg-cls {
    margin-top: 80px;
}
.blog-con .content-con {
    padding: 84px 360px 60px 360px;
    background: #0D5C00;
}
.blog-con .content-con .advantage-title {
    width: 725px;
    height: 109px;
    background: url('images/home/advantage-title-img.webp') no-repeat;
    background-size: 100% 100%;
    text-align: center;
    margin: 0 auto;
}
.blog-con .content-con .advantage-title span {
    display: block;
    font-family: Montserrat;
    font-size: 44px;
    line-height: 109px;
    color: #DFEF28;
}
.blog-con .left-bg {
    position: absolute;
    left: 0;
    top: 199px;
    width: 225px;
    height: 289px;
    background: url('images/home/advantage-left-bg.webp');
    background-size: 100% 100%;
}
.blog-con .right-bg {
    position: absolute;
    right: 0;
    top: 970px;
    width: 162px;
    height: 258px;
    background: url('images/home/advantage-right-bg.webp');
    background-size: 100% 100%;
}
.blog-con a, .blog-con a:active, .blog-con a:link, .blog-con a:visited, .blog-con a:focus {
    color: #A8E6A1;
}

.blog-detail-con {
    background: #0D5C00;
    padding-bottom: 150px;
    position: relative;
} 
.blog-detail-con .content-con {
    padding: 84px 360px 70px 360px;
    background: #0D5C00;
    color: #fff;
    font-size: 24px;
    font-family: Roboto;
}
.blog-detail-con .content-con .title {
    font-family: Montserrat;
    font-weight: 900;
    font-size: 40px;
    line-height: 47px;
    color: #DFEF28;
    padding-bottom: 80px;
    text-align: center;
}
.blog-detail-con .left-bg {
    position: absolute;
    left: 0;
    top: 361px;
    width: 293px;
    height: 289px;
    background: url('images/home/advantage-left-bg.webp');
    background-size: 100% 100%;
}
.blog-detail-con .right-bg {
    position: absolute;
    right: 0;
    top: 912px;
    width: 184px;
    height: 294px;
    background: url('images/home/advantage-right-bg.webp');
    background-size: 100% 100%;
}

.blog-content {
    font-size: 20px;
    font-family: Roboto-Medium;
    font-weight: 500;
    line-height: 1.4;
    width: 100%;
    overflow: hidden;
}
.blog-content a {
    color: #DFEF28;
}
.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5 {
    margin-bottom: 32px;
    margin-top: 32px;
}
.blog-content h1 { font-size: 22px; }
.blog-content h2 { font-size: 24px; }
.blog-content h3 { font-size: 28px; }
.blog-content h4 { font-size: 30px; }
.blog-content h5 { font-size: 20px; }
.blog-content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}
.blog-content img {
    max-width: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
.blog-content ol li {
    list-style-type: decimal;
    list-style-position: inside;
}

.footer-con {
    width: 100%;
    background: #0E5003; 
}
.footer-con .text1 {
    width: 1200px;
    margin: 0 auto;
    font-family: Roboto;
    font-weight: 500;
    font-size: 24px;
    color: #DFEF28;
    line-height: 28px;
    text-align: left;
    padding: 30px 0;
}
.footer-con .text2 {
    width: 100%;
    height: 106px;
    font-family: Roboto;
    padding: 39px 0;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 24px;
    color: #1B750C;
    line-height: 28px;
    text-align: center;
    background: #082C02;
}
.footer-con .bottom-download-m {
    display: none;
}

.numbers {
    text-align: center;
    margin-top: 30px;
}
.numbers span, .numbers a {
    font-size: 20px;
    margin-right: 8px;
    color: #DFEF28;
    padding: 8px 16px;
    background: #082C02;
    border: 2px solid #1B750C;
    border-radius: 8px;
    text-decoration: none;
}
.numbers a:hover {
    background: #1B750C;
    color: #082C02;
}

@media (max-width: 782px) {
    .header-con {
        height: 80px;
        padding: 11px 18px 11px 12px;
    }
    .header-con .left-area img {
        width: 58px;
    }
    .header-con .left-area .desc-text {
        margin-left: 8px;
    }
    .header-con .left-area .desc-text h1 {
        font-size: 16px;
    }
    .header-con .left-area .desc-text h2 {
        font-size: 10px;
        line-height: 12px;
    }
    .header-con .right-area .download {
        width: 117px;
        margin-left: 5px;
    }
    .header-con .right-area .lang-con {
        display: none;
    }
    .header-con .change-lang-m {
        display: block;
        position: absolute;
        bottom: -42px;
        right: 8px;
    }
    .header-con .change-lang-m .img-m {
        width: 36px;
    }
    
    .nav-con-wrap {
        height: 80px;
        margin-top: 80px;
    }
    .nav-con-wrap .nav-con {
        width: 336px;
        height: 52px;
    }
    .nav-con-wrap .nav-con .nav-item {
        font-size: 15px;
        line-height: 18px;
    }
    
    .easy-nav-con {
        display: none;
    }
    
    .go-top {
        width: 66px;
        height: 66px;
        top: 65vh;
    }
    
    .blog-con {
        padding-bottom: 250px;
        min-height: calc(100vh - 168px);
    }
    .blog-con .top-area {
        padding: 35px 0;
    }
    .blog-con .top-area .frame-con {
        width: 333px;
        padding: 20px 17px;
    }
    .blog-con .top-area .frame-con:not(:first-child) {
        margin-top: 2.93vw;
    }
    .blog-con .top-area .frame-con::before {
        left: -1.5vw;
        top: -1.6vw;
        width: 21.6vw;
        height: 17.06vw;
        pointer-events: none;
    }
    .blog-con .top-area .frame-con::after {
        right: -1.5vw;
        bottom: -1.6vw;
        width: 21.6vw;
        height: 17.06vw;
        pointer-events: none;
    }
    .blog-con .top-area .frame-con h1 {
        font-size: 16px;
        line-height: 19px;
    }
    .blog-con .top-area .frame-con .p {
        font-size: 10px;
        line-height: 12px;
        margin-top: 10px;
        margin-bottom: 16px;
    }
    .blog-con .top-area .frame-con .more {
        width: 90px;
        height: 27px;
        font-size: 12px;
        line-height: 14px;
    }
    .blog-con .top-area .frame-con h1 a {
        font-size: 16px;
        line-height: 19px;
    }
    .blog-con .top-area .frame-con .author-info {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    .blog-con .top-area .frame-con .author-info img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        margin-right: 8px;
    }
    .blog-con .top-area .frame-con .author-info .author-name {
        font-size: 12px;
        color: #DFEF28;
    }
    .blog-con .top-area .frame-con .author-info .author-date {
        font-size: 10px;
        color: #A8E6A1;
    }
    
    .numbers {
        margin-top: 20px;
    }
    .numbers span, .numbers a {
        font-size: 14px;
        margin-right: 5px;
        padding: 6px 12px;
        border-radius: 6px;
    }
    
    .blog-detail-con {
        padding-bottom: 44px;
        min-height: calc(100vh - 44px);
    }
    .blog-detail-con .content-con {
        padding: 0 20px 52px 20px;
        font-size: 10px;
    }
    .blog-detail-con .content-con .title {
        font-size: 16px;
        line-height: 19px;
        padding-bottom: 28px;
    }
    .blog-detail-con .content-con .author-info {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .blog-detail-con .content-con .author-info img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
    }
    .blog-detail-con .content-con .author-info .author-name {
        font-size: 14px;
        color: #DFEF28;
    }
    .blog-detail-con .content-con .author-info .author-date {
        font-size: 12px;
        color: #A8E6A1;
    }
    .blog-detail-con .content-con .author-bio {
        padding: 20px;
        margin-top: 30px;
    }
    .blog-detail-con .content-con .author-bio img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 15px;
    }
    .blog-detail-con .content-con .author-bio h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .blog-detail-con .content-con .author-bio p {
        font-size: 12px;
        line-height: 16px;
    }
    .blog-detail-con .content-con .related-title {
        font-size: 16px;
        margin: 30px 0 20px 0;
    }
    .blog-detail-con .content-con .related-articles .related-item {
        width: 333px;
        margin: 0 10px 10px 10px;
        padding: 15px;
    }
    .blog-detail-con .content-con .related-articles .related-item h4 {
        font-size: 14px;
    }
    .blog-detail-con .content-con .related-articles .related-item p {
        font-size: 12px;
        line-height: 16px;
    }
    .blog-detail-con .content-con .related-articles .related-item .related-author {
        font-size: 10px;
    }
    .blog-detail-con .content-con .related-articles .related-item .related-author img {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }
    
    .footer-con {
        height: 116px;
        padding-bottom: 39px;
    }
    .footer-con .text1 {
        width: 100%;
        font-size: 12px;
        line-height: 12px;
        padding: 0 19px;
        display: flex;
        align-items: center;
        background: #0E5003;
        height: 76px;
    }
    .footer-con .text2 {
        height: 39px;
        font-size: 10px;
        line-height: 25px;
    }
    .footer-con.footer-show-down-m {
        height: 199px;
    }
    .footer-con .bottom-download-m {
        display: block;
        width: 100%;
        text-align: center;
        background: #082C02;
    }
    .footer-con .bottom-download-m .foot-download-m {
        width: 323px;
    }
    
    .blog-content {
        font-size: 14px;
        font-weight: 400;
    }
    .blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5 {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .blog-content h1 { font-size: 13px; }
    .blog-content h2 { font-size: 14px; }
    .blog-content h3 { font-size: 15px; }
    .blog-content h4 { font-size: 16px; }
    .blog-content h5 { font-size: 18px; }
    .blog-content p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 12px;
    }
    .blog-content img {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    p {
        font-family: Roboto-Medium;
        font-size: 14px;
        line-height: 18px;
    }
}