@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto.ttf');
    font-weight: 400;
}
*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
:root{
    --fg--color-primary:rgba(93, 173, 176, 1);
}
.fg-primary-bg{
    background-color: rgba(93, 173, 176, 1);
    color: #fff;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.fogo-container{
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
html {
    font-size: 10px;
    font-family: "PingFang SC", "Roboto","Microsoft YaHei", "Heiti SC", "Source Han Sans CN", sans-serif;
}

.hidden {
    display: none;
}
.ellipsis1 {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 限制为两行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制为两行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis3 {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制为两行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 768px) {
    html {
        font-size: 12px;
    }
    .fogo-container {
        max-width: 62.5%;
    }
    .md-none{
        display: none;
    }
}
@media (min-width: 1200px) {
    html {
        font-size: 16px;
    }
    .fogo-container {
        max-width: 62.5%;
    }
    .md-none{
        display: none;
    }
}

.index-top{
    /*background-image: url("../images/index-top-bg.png");*/
    /*background-size: 100% 100%;*/
    text-align: center;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 80px 30px;
    position: relative;
}
/*首页左侧图标*/
.licon-box{
    position: absolute;
    left: 32%;
    top: 500px;
    width: 100px;
    height: 100px;
    z-index: 99;
    transition: transform 0.3s;
    transform: translateZ(0);
}
/*首页右侧图标*/
.ricon-box{
    position: absolute;
    right: 32%;
    top: 500px;
    width: 100px;
    height: 100px;
    z-index: 99;
    transition: transform 0.3s;
    transform: translateZ(0);
}
.licon-box .img-box, .ricon-box .img-box{
    width: 90px;
    height: 90px;
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transform-origin: center;
    z-index: 1;
    /* GPU加速优化 */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: strict;
}


.licon-box .img1{
    background-image: url("../images/homel1.png");
    transform: translate(-320px, -350px) translateZ(0);
}
.licon-box .img2{
    background-image: url("../images/homel2.png");
    transform: translate(-220px, -250px) translateZ(0);
}
.licon-box .img3{
    background-image: url("../images/homel3.png");
    transform: translate(-380px, -150px) translateZ(0);
}

.ricon-box .img1{
    background-image: url("../images/homer1.png");
    transform: translate(320px, -350px) translateZ(0);
}
.ricon-box .img2{
    background-image: url("../images/homer2.png");
    transform: translate(200px, -250px) translateZ(0);
}
.ricon-box .img3{
    background-image: url("../images/homer3.png");
    transform: translate(380px, -150px) translateZ(0);
}
.video-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; /* 最小宽度为容器宽度 */
    min-height: 100%; /* 最小高度为容器高度 */
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
.index-top .big-img{
    z-index: 999;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    will-change: transform;
}
.index-top .big-img.active{
    transform: scale(1.15);
}
.licon-box.active .img-box , .ricon-box.active .img-box{
    animation:
            cubic-bezier(0.2, 0.9, 0.3, 1.1)
            3s
            forwards;
}
.licon-box.active .img1 { animation-name: left1-curve;}
.licon-box.active .img2 { animation-name: left2-curve;}
.licon-box.active .img3 { animation-name: left3-curve;}
.ricon-box.active .img1 { animation-name: right1-curve;}
.ricon-box.active .img2 { animation-name: right2-curve;}
.ricon-box.active .img3 { animation-name: right3-curve;}

/* 关键帧动画 */
@keyframes left1-curve {
    0% { transform: translate(-320px, -350px) rotate(0deg) translateZ(0); }
    100% { transform: translate(0) rotate(450deg) translateZ(0); }
}
@keyframes left2-curve {
    0% { transform: translate(-220px, -250px) rotate(0deg) translateZ(0); }
    100% { transform: translate(0) rotate(450deg) translateZ(0); }
}
@keyframes left3-curve {
    0% { transform: translate(-380px, -150px) rotate(0deg) translateZ(0); }
    100% { transform: translate(0) rotate(450deg) translateZ(0); }
}
@keyframes right1-curve {
    0% { transform: translate(320px, -350px) rotate(0deg) translateZ(0); }
    100% { transform: translate(0) rotate(-450deg) translateZ(0); }
}
@keyframes right2-curve {
    0% { transform: translate(200px, -250px) rotate(0deg) translateZ(0); }
    100% { transform: translate(0) rotate(-450deg) translateZ(0); }
}
@keyframes right3-curve {
    0% { transform: translate(380px, -150px) rotate(0deg) translateZ(0); }
    100% { transform: translate(0) rotate(-450deg) translateZ(0); }
}


.index-top .tip-box{
    font-size: 12px;
    display:inline-flex;
    align-items: center;
    border: 1px solid rgba(61, 150, 153, 1);
    padding: 4px 16px;
    border-radius: 36px;
    margin-bottom: 10px ;
    font-weight: 500;
}

.index-top .title{
    font-family: "PingFang SC", "Roboto","Microsoft YaHei", "Heiti SC", "Source Han Sans CN", sans-serif;
    letter-spacing: 0;
    font-size: 3rem;
    color: rgba(90, 102, 102, 1);
    font-weight: 600;
}
.index-top .title span{
    color: var(--fg--color-primary);
}
.index-top .title .desc{
    font-size: 14px;
    color: rgba(28, 28, 28, 0.6);
    font-weight: 400;
    margin: 15px 22% 30px 22%;
}

.index-top .btn{
    background-color: rgba(93, 173, 177, 1);
    color: #fff;
    display: flex;
    align-items: flex-start;
    border-radius: 100px;
    padding: 14px 50px;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
}
.index-top .btn .icon{
    width: 20px;
    height: auto;
    margin-left: 6px;
}

.index-top .big-img{
    width: 62%;
    position: absolute;
    bottom: -85px;
    max-width: 940px;
}
.index-top .play-big-img{
    position: absolute;
    bottom: 120px;
    width: 65px;
}

.desc-box{
    box-sizing: border-box;
    width: 62%;
    background:
            linear-gradient(180deg, rgba(195, 244, 255, 0.12) 0%, rgba(195, 244, 255, 0) 100%);
    margin: 0 auto;
    margin-bottom: 20px;
}
.desc-box .top-title{
    /*text-wrap: nowrap;*/
    padding: 3rem 20% 0 20%;
    color: var(--fg--color-primary);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    border-right: 2px solid rgba(93, 173, 177, 1);
}
.desc-box .top{
    display: flex;

}
.desc-box .top .icon{
    width: 86px;
    height: 86px;
}
.desc-box .top .left{
    padding: 30px 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: rgba(28, 28, 28, 0.6);
    background-color: rgba(248, 248, 248, 1);
    width: 50%;
    font-size: 14px;
    /* border-top: 2px solid rgba(93, 173, 177, 1);
    border-right: 2px solid rgba(93, 173, 177, 1); */
    position: relative;
    cursor: pointer;
}
.desc-box .top .left.active::after,
.desc-box .top .right.active::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px; /* 从左边10%的位置开始 */
    width: calc(100% - 60px); /* 宽度为父元素的80% */
    height: 1px; /* 边框高度 */
    background-color: rgba(54, 93, 102, 0.2); /* 边框颜色 */
}
.desc-box .top .title{
    font-size: 26px;
    white-space: nowrap;
    letter-spacing: 0;
    font-weight: 600;
    color: rgba(93, 173, 177, 1);
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.36;
}
.desc-box .top .right{
    box-sizing: border-box;
    background-color: rgba(248, 248, 248, 1);
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    color: rgba(28, 28, 28, 0.6);
    width: 50%;
    border-bottom: 2px solid rgba(93, 173, 177, 1);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desc-box .top .left {
    border-bottom: 2px solid rgba(93, 173, 177, 1);
}

.desc-box .top .left:hover,
.desc-box .top .right:hover {
    background-color: rgba(93, 173, 177, 0.05);
}

.desc-box .top .left.active {
    background-color: rgba(93, 173, 177, 0.15);
    border-top: 2px solid rgba(61, 150, 153, 1) !important;
    border-right: 2px solid rgba(61, 150, 153, 1) !important;
    border-left: 2px solid rgba(61, 150, 153, 1) !important;
    border-bottom: none;
    box-shadow: 0 4px 12px rgba(93, 173, 177, 0.3);
    position: relative;
    z-index: 10;
}

.desc-box .top .left.active .title {
    color: rgba(61, 150, 153, 1);
    font-weight: 700;
}

.desc-box .top .right.active {
    background-color: rgba(93, 173, 177, 0.15);
    border-top: 2px solid rgba(61, 150, 153, 1) !important;
    border-right: 2px solid rgba(61, 150, 153, 1) !important;
    border-left: 2px solid rgba(61, 150, 153, 1) !important;
    border-bottom: none;
    box-shadow: 0 4px 12px rgba(93, 173, 177, 0.3);
    position: relative;
    z-index: 10;
}

.desc-box .top .right.active .title {
    color: rgba(61, 150, 153, 1);
    font-weight: 700;
}

.desc-box .top .left.active ~ .desc-content,
.desc-box .top .left.active ~ .desc-bottom {
    border-left: 4px solid rgba(61, 150, 153, 1) !important;
}

.desc-box .top .right.active ~ .desc-content,
.desc-box .top .right.active ~ .desc-bottom {
    border-left: 2px solid rgba(93, 173, 177, 0.8);
}

.desc-box .top .left {
    transition: all 0.3s ease;
}

.desc-box.sp-1 .top-title {
    border-left: 2px solid rgba(93, 173, 177, 1);
    border-right: 2px solid rgba(93, 173, 177, 1);
}
.desc-box.sp-1 .desc-content {
    border-bottom: 2px solid rgba(93, 173, 177, 1);
}

.desc-box .desc-content{
    position: relative;
    display: flex;
    padding: 30px 4.5rem;
    border: 2px solid rgba(93, 173, 177, 1);
    border-bottom: none;
    border-top: none;
    border-left: 2px solid rgba(93, 173, 177, 1);
    transition: border-left 0.3s ease;
    background:
            linear-gradient(180deg, rgba(195, 244, 255, 0.12) 0%, rgba(195, 244, 255, 0) 100%);
}
.swiper-button-next{

}
.swiper-button-next,.swiper-button-prev{
    --swiper-navigation-size:  30px;
    color: var(--fg--color-primary) !important;
}
#mySwiper .swiper-wrapper{
    /*padding: 20px;*/
    /*box-sizing: border-box;*/
    /*margin: 20px;*/
}
.desc-box .desc-content .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.333%;
    text-align: center;
    padding: 30px 5px;
    box-sizing: border-box;
}

.desc-box .desc-content .img{
    width: 80%;
    height: auto;
}
.desc-box .desc-content .title{
    color: rgba(93, 173, 177, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 132%;
    white-space: wrap;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.desc-box .desc-content .tip{
    font-weight: 300;
    font-size: 10px;
    line-height: 146%;
    letter-spacing: 0;
    color: rgba(51, 51, 51, 0.6);
}

.desc-box .desc-bottom{
    padding: 0 30px 30px 30px;
    border: 2px solid rgba(93, 173, 177, 1);
    border-top: none;
    border-left: 2px solid rgba(93, 173, 177, 1);
    transition: border-left 0.3s ease;
    text-align: center;
}

.desc-box .use-btn{
    /*margin-top: 10px;*/
    display: inline-flex;
    text-align: center;
    color: rgba(93, 173, 177, 1);
    border: 2px solid rgba(93, 173, 177, 1);
    padding: 10px 40px;
    line-height: 1;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
}

.why{
    padding: 5rem 2rem;
    text-align: center;
}
.why .title{
    color: rgba(56, 57, 64, 1);
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: 0;
    margin-bottom: 8px;
}
.why .tip{
    color: rgba(102, 102, 102, 1);
    font-size: 0.7rem;
    margin-bottom: 1.6rem;
}
.why .tip1{
    display: none;
}
.why .item-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(15, 23, 42, 1);
}
.why .item-box .item{
    box-sizing: border-box;
    padding: 30px;
    width: 25%;
}
.why .item-box .icon{
    width: 70px;
    margin-bottom: 8px;
}


.fogo-header{
    background-color: rgba(93, 173, 177, 1);
    color: #fff;
    padding: 10px 0;
    z-index: 9999;
}
.fogo-header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
}
.fogo-header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(93, 173, 177, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: #fff;
    max-width: 80%;
    margin: 0 auto;
}
.fogo-header-top .left{
    display: flex;
    align-items: center;
    padding: 15px 0;
}
.fogo-header-top .right {
    font-size: 12px;
}

.fogo-header-top .left .icon{
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.fogo-menu{
    list-style: none;
    display: flex;
    color: #fff;
    /*font-family: Roboto,Inter,system-ui;*/
    font-family: "PingFang SC", "Roboto","Microsoft YaHei", "Heiti SC", "Source Han Sans CN", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
}
.fogo-menu li{
    padding: 20px 18px;
}
.fogo-menu a{
    color: #fff;
    display: inline-flex;
}
.fogo-footer{
    color: #fff;
    font-size: 14px;
    background-color: rgba(44, 44, 50, 1);
}
.fogo-footer-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.fogo-footer-top .right{
    display: flex;
    align-items: center;
}
.fogo-footer-top .right .title{
    margin-right: 2rem;
    line-height: 1;
    font-family: "PingFang SC", "Roboto","Microsoft YaHei", "Heiti SC", "Source Han Sans CN", sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 2px;
}
.fogo-footer-top .social-box{
    display: flex;
    align-items: center;
}
.fogo-footer-top .social-box .icon{
    display: inline-block;
    width: 1rem;
    margin-right: 1.2rem;
}
.fogo-footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    font-size: 0.8rem;
    background-color: rgba(36, 36, 43, 1);
}
.fogo-footer-body{
    display: flex;
    box-sizing: border-box;
    gap: 2rem;
    padding: 1rem 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}
.fogo-footer-body .item{
    /*margin-right: 1.5rem;*/
}
.fogo-footer-body .item .send-btn{
    background-color: rgba(62, 62, 71, 1);
    padding: 0.5rem 1.4rem;
    border-radius: 120px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}
.fogo-footer-body .item .title{
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.47);
}
.fogo-footer-body .item a{
    display: block;
    margin-bottom: 0.8rem;
}
.fogo-footer-body .btn-box{
    background-color: rgba(62, 62, 71, 1);
    padding: 0.4rem 1rem;
    border-radius: 12px;
    display: flex;
    margin-bottom: 1rem;
}
.fogo-footer-body .btn-box .icon{
    width: 1.2rem;
    padding-right: 0.6rem;
    margin-right: 0.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}





.business-top{
    background-color: rgba(93, 173, 176, 1);
    padding: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}
.business-top .left{
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
}
.business-top .right{
    width: 45%;
}
.business-top .title{
    /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.business-top .left .tip{
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}
.business-top .left .btn{
    /*display: inline-block;*/
    font-size: 1rem;
    line-height: 1;
    padding: 0.6rem 2.2rem;
    border-radius: 100rem;
    border: 1px solid #fff;
    font-weight: 700;
    letter-spacing: 0;
}

.business-content{
    padding: 5.5rem 0;
    display: flex;
    line-height: 1.5;
}
.business-content .many{
    width: 64%;
}
.business-content .many .title{
    color: rgba(93, 173, 177, 1);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 2rem;
}
.business-content .many p{
    margin-bottom: 1rem;
    color: rgba(102, 102, 102, 1);
    font-size: 0.8rem;
    font-family: system-ui;
}
.business-content .few{
    box-sizing: border-box;
    width: 36%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.business-content .few .image{
    width: 9rem;
}

.say-box{
    margin-bottom: 8rem;
}
.say-box .title{
    color: rgba(93, 173, 177, 1);
    font-weight: 500;
    margin: 0 auto;
    width: 80%;
    font-size: 2.3rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
}
.say-item-box{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.say-item-box .item{
    background-color: rgba(242, 250, 253, 1);
    padding: 1rem 1rem 0 1rem;
    border-radius: 18px;
    flex: 1 0 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.say-item-box .item .desc{
    font-size: 0.8rem;
    color: rgba(73, 103, 105, 1);
    margin-top: 0.6rem;
    margin-bottom: 1.5rem;
}
.say-item-box .item .avatar{
    width: 2rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}
.say-item-box .item .bottom{
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(93, 173, 177, 0.2);
    padding: 0.8em 0;
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 1);
}
.say-box .say-btn{
    color: rgba(93, 173, 177, 1);
    border: 2px solid rgba(93, 173, 177, 1);
    border-radius: 10rem;
    line-height: 1;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}




.pricing-top{
    padding: 4rem 0 2rem 0;
    display: flex;
    margin-bottom: 1.5rem;
}
.pricing-top .left{
    width: 50%;
}
.pricing-top .right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-top .left p{
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(56, 57, 64, 0.6);
    line-height: 1.5;
}
.pricing-top .title{
    color: var(--fg--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.pricing-top .left .desc{
    color: rgba(28, 28, 28, 1);
    line-height: 1.3;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 6rem;
}
.pricing-card .fg-card{
    width: calc(50% - 1.5rem);
    box-sizing: border-box;
    padding: 1.5rem;
    background-color: var(--fg--color-primary);
    border-radius: 1rem;
    position: relative;
}
.pricing-card .fg-card .jiao-box{
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    content: '';
}
.pricing-card .fg-card .jiao-box .img{
    width: 100%;
}
.pricing-card .fg-card .jiao-box .img2{
    position: absolute;
    z-index: 999;
    top: 8px;
    right: 11px;
    width: 55%;
}
.pricing-card .fg-card .btn{
    display: block;
    text-align: center;
    line-height: 2.6rem;
    font-size: 1rem;
    background-color: #fff;
    border-radius: 0.5rem;
    color: var(--fg--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}
.pricing-card .fg-card .desc1{
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.pricing-card .fg-card .desc2{
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--fg--color-primary);
}
.pricing-card .fg-card .price-box{
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.pricing-card .item-box .line{
    height: 1px;
    background-color: rgba(255, 255, 255, 0.16);
}
.pricing-card .item-box p{
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}
.pricing-card .item-box .icon{
    width: 0.9rem;
    margin-right: 0.6rem;
}



/* 布局结构 */

@media (max-width: 768px) {
    .login-btn {
        display: none;
    }
}


@media (max-width: 768px) {
    .menu-btn {
        display: inline-block;
    }
    .fogo-menu-pc {
        display: none;
    }
}

/* 移动端菜单样式 */
.mobile-menu-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    background-color: var(--fg--color-primary);
    color: white;
    padding: 3rem 2rem;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-sizing: border-box;
}
.mobile-menu-wrapper.active .mobile-menu {
    right: 0;
}
.mobile-menu-wrapper.active .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}
.close-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    position: absolute;
    top: 1rem;
    right: 2.5rem;
}
.fogo-menu-mobile{
    list-style: none;
}
.fogo-menu-mobile a {
    display: block;
    padding: 15px 10px;
    font-size: 18px;
    font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
}


.resource-top{
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.resource-top .title{
    font-size: 2rem;
    width: 50%;
    font-weight: 600;
}
.resource-top .image{
    width: 13rem;
}
.resource-content-top{
    display: flex;
    padding: 2.5rem 0;
}
.resource-content-top .image{
    width: 48%;
    height: 13rem;
    margin-right: 1rem;
}
.resource-content-top .right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.resource-content-top .date{
    color: var(--fg--color-primary);
    font-size: 12px;
    margin-bottom: 8px;
}
.resource-content-top .title{
    color: rgba(26, 26, 26, 1);
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.resource-content-top .desc{
    color: rgba(102, 112, 133, 1);
    font-size: 14px;
}
.resource-content-top .tag-box{
    display: flex;
    font-size: 12px;
}
.resource-content-top .tag-box p{
    padding: 3px 10px;
    border-radius: 100px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.resource-content-top .tag-box .icon{
    width: 15px;
    margin-right: 2px;
}
.resource-content-top .tag-box .tag1{
    background-color: rgba(226, 250, 236, 1);
    color: rgba(0, 172, 117, 1);
}
.resource-content-top .tag-box .tag2{
    background-color: rgba(253, 34, 63, 0.12);
    color: rgba(253, 34, 63, 1);
}
.language-switcher select {
    padding: 4px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    outline: none;
    overflow: hidden;
}

.language-switcher select option{
    color: #333;
    background: #fff;
    overflow: hidden;
    border-radius: 5px;
}

.resource-post-box{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid rgba(234, 236, 240, 1);
}

.res-post-item {
    overflow: hidden;
    margin-bottom: 2rem;
    width: calc(33.333% - 15px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.res-post-thumb{
    width: 100%;
    height: 12rem;
}
.res-post-thumb img {
    width: 100%;
    height: 100%;
    display: block;
}

.post-content {
    padding: 1rem 0;
}

.post-title {
    font-size: 1.4rem;
    line-height: 1.3;
    min-height: 2.6em;
    margin: 0 0 0.5rem;
}

.post-meta {
    font-size: 12px;
    font-weight: 500;
    color: var(--fg--color-primary);
    margin-bottom: 0.5rem;
}

.post-excerpt {
    font-size: 14px;
    color: rgba(102, 112, 133, 1);
    line-height: 1.5;
}

.post-tags {
    margin-top: 0.5rem;
}

.post-tag {
    font-size: 12px;
    color: #0073aa;
    text-decoration: none;
    margin-right: 0.5rem;
    padding: 2px 10px;
    border-radius: 12px;
    color: rgba(0, 172, 117, 1);
    background-color: rgba(226, 250, 236, 1);
}
.post-tags .post-tag:nth-child(2){
    color: rgba(242, 108, 74, 1);
    background-color: rgba(255, 238, 234, 1);
}
.post-tag:hover {
    text-decoration: underline;
}

.post-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}
.post-detail .post-thumbnail img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.post-detail .post-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.post-detail .post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}
.post-detail .post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}
.post-detail .post-tags {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #555;
}
.post-detail .post-navigation {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}
.post-detail .back-link {
    text-align: center;
    margin-top: 2rem;
}
.post-detail .back-link a {
    text-decoration: none;
    color: #0073aa;
}


.pagination {
    margin: 1rem 0 3rem 0;
    text-align: center;
    font-size: 12px;
}
.pagination .prev{
    float: left;
}
.pagination .next{
    float: right;
}
.pagination a,
.pagination .page-numbers {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    border-radius: 4px;
    color: rgba(102, 112, 133, 1);
    text-decoration: none;
}
.pagination .current {
    background-color: rgba(93, 173, 176, 0.12);
    color: var(--fg--color-primary);
    border: none;
}
.pagination a:hover {
    background-color: #f5f5f5;
}

/* 分类筛选器样式 */
.category-filter {
    margin: 30px 0;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.category-filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.category-btn:hover {
    background-color: var(--fg--color-primary);
    color: white;
    border-color: var(--fg--color-primary);
    transform: translateY(-1px);
}

.category-btn.active {
    background-color: var(--fg--color-primary);
    color: white;
    border-color: var(--fg--color-primary);
}

.category-count {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .category-buttons {
        gap: 8px;
    }

    .category-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .category-filter {
        margin: 20px 0;
        padding: 15px 0;
    }
}




