.el-option {
    display: none !important;
}
.ppkc-header{
    position: fixed;
    width: 100vw;
    top: 0;
    display: flex;
    justify-content: space-between;
    height: 104px;
    padding: 0 48px;
    align-items: center;
    z-index: 4;
    ._logo{
        height: 40px;
        img{
            height: 100%;
        }
    }
    ._menu{
        height: 100%;
        display: flex;
        ._item{
            position: relative;
            letter-spacing: 1.4px;
            ._lab{
                height: 100%;
                padding: 0 24px;
                display: flex;
                align-items: center;
                cursor: pointer;
            }
            ._list{
                opacity: 0;
                pointer-events: none;
                position: absolute;
                background: #F8F9F9D9;
                display: flex;
                flex-direction: column;
                gap: 8px;
                padding: 12px 32px;
                white-space: nowrap;
                backdrop-filter: blur(12px);
                >*:hover{
                    color: var(--color-primary);
                }
            }
        }
        ._item.on,
        ._item:hover{
            ._lab{
                color: var(--color-primary);
            }
            ._list{
                opacity: 1;
                pointer-events: all;
            }
        }
    }
    .lang-btn{
        display: flex;
        align-items: center;
        font-weight: 500;
        cursor: pointer;
        gap: 7px;
    }
    .lang-btn:hover{
        color: var(--color-primary);
    }
    ._wap-toggle-btn{
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-direction: column;
        padding: 10px;
        div{
            width: 19px;
            margin: 2px 0;
            height: 2px;
            background: #8B8B8B;
            border-radius: 2px;
            position: relative;
        }
    }
    ._wap-toggle-btn.on div:nth-child(1){
        transform: rotate(45deg);
        top: 4px;
    }
    ._wap-toggle-btn.on div:nth-child(2){
        display: none;
    }
    ._wap-toggle-btn.on div:nth-child(3){
        transform: rotate(-45deg);
        top: -2px;
    }
    ._wap-menu{
        position: fixed;
        width: 100%;
        padding: 24px 24px 0;
        height: calc(100vh - 88px);
        overflow-y: auto;
        left: 0;
        top: 88px;
        transform: scaleY(0);
        display: none;
        opacity: 0;
        transform-origin: top;
        /*background: #F8F9F9D9;*/
        /*backdrop-filter: blur(12px);*/
        ._item{
            margin-bottom: 16px;
            ._lab{
                line-height: 36px;
                letter-spacing: 1.4px;
                cursor: pointer;
            }
            ._lab:hover{
                color: var(--color-primary);
            }
            ._list{
                letter-spacing: 1.4px;
                padding: 0 10px;
                display: flex;
                flex-direction: column;
                gap: 8px;
                height: 0;
                overflow: hidden;
            }
            ._list>*{
                font-size: 12px;
            }
        }
        ._item.on{
            ._lab{
                color: var(--color-primary);
            }
            ._list{
                margin-top: 4px;
                height: auto;
            }
        }
        ._menu-btm-btn{
            padding-top: 15px;
            padding-bottom: 24px;
            position: sticky;
            bottom: 0;
            background: #fff;
        }
    }
    ._wap-menu.on{
        transform: scaleY(1);
        opacity: 1;
    }

}
.ppkc-header:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(12px);
    background: #F8F9F9D9;
    z-index: -1;
}
.ppkc-footer{
    padding: 84px 0;
    border-top: 1px solid #00000012;
    background: #fff;
    ._line1{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border-bottom: 1px solid #00000012;
        padding-bottom: 12px;
        margin-bottom: 40px;
        ._logo{
            height: 40px;
            img{
                height: 100%;
                object-fit: contain;
            }
        }
    }
    ._line3{
        font-size: 12px;
        line-height: 18px;
        border-top: 1px solid #00000012;
        padding-top: 12px;
        margin-top: 92px;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 992px){
    .ppkc-header{
        height: 88px;
        padding: 0 16px;
        ._menu,._right{
            display: none !important;
        }
        ._wap-toggle-btn{
            display: flex;
        }
        ._logo{
            height: 40px;
        }
        ._wap-menu{
            display: block;
        }
        .lang-btn{
            margin-top: 48px;
        }
    }
    .ppkc-header.on:after{
        height: 100vh;
    }
    .ppkc-footer{
        padding: 48px 0;
        ._line1{
            padding-bottom: 34px;
            flex-direction: column;
            align-items: flex-start;
        }
        ._line3{
            margin-top: 40px;
            padding-top: 24px;
            flex-direction: column;
        }
    }
}
