.header{
    width: 100vw;
    z-index: 3;
    position: sticky;
    top: 0;
    height: 76px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    padding: 0 40px;
    background-image: url("../images/base/header-top.png");
    background-position: top left;
    background-repeat: no-repeat;
    justify-content: space-between;
    background-size: 216px;
    ._logo{
        width: 238px;
        height: 62px;
        /* margin-right: 22px; */
        flex-shrink: 0;
    }
    ._menus{
        display: flex;
        gap: 0 35px;
        flex-wrap: wrap;
        flex: 1;
        transition: all .3s;
        position: absolute;
        left: 214px;
        max-width: calc(100% - 320px);
        margin-left: 30px;
        ._item{
            cursor: pointer;
            font-size: 17px;
            color: #fff;
        }
        ._item:hover,
        .on{
            font-weight: 900;
            font-size: 19px;
        }
    }
    ._menus.h{
        opacity: 0;
    }
    ._menu-toggle{
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        align-items: center;
        background: #fff;
        color: var(--color-primary);
        font-weight: bold;
        line-height: 32px;
        flex-shrink: 0;
        display: none;
        cursor: pointer;
        margin-left: auto;
    }
    ._search-box{
        margin-left: auto;
        position: relative;
        display: flex;
        /*width: 280px;*/
        padding: 0 14px;
        align-items: center;
        height: 36px;
        border-radius: 36px;
        /*background: #fff;*/
        transition: all .6s;
        max-width: 954px;
        .icon-search{
            font-size: 20px;
            color: #fff;
            margin-right: 2px;
        }
        .icon-chacha{
            display: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #AEAEB2;
            flex-shrink: 0;
            color: #fff;
            margin-left: 20px;
            font-size: 12px;
            font-weight: bold;
            text-align: center;
            line-height: 16px;
            cursor: pointer;
        }
        input{
            flex: 1;
            font-size: 17px;
        }
        ._search-result{
            display: none;
            position: absolute;
            background: #fff;
            flex-wrap: wrap;
            border-radius: 16px;
            padding: 32px;
            gap: 12px;
            bottom: 0;
            transform: translateY(calc(100% + 1px));
            left: 0;
            width: calc(100% - 52px);
            z-index: 1;
            ._search-recommend{
                background: #F1F1F2;
                padding: 9px 16px;
                border-radius: 40px;
                color: #3F3F3F;
                line-height: 14px;
            }
            ._search-about{
                display: flex;
                align-items: center;
                width: 100%;
                font-size: 16px;
                line-height: 20px;
                gap: 12px;
                color: #000;
                font-weight: bold;
                i{
                    font-weight: normal;
                }
            }
        }
    }
    .search_input{
        display: none;
    }
    ._search-box.on{
        width: 100%;
        background: #fff;
        border: 1px solid var(--color-secondary);
        ._search-result.on{
            display: flex;
        }
        .search_input{
            display: block;
        }
        .icon-search{
            color: #AEAEB2;
        }
    }
    ._user{
        margin-left: 30px;
        position: relative;
        ._user-img{
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #fff;
            object-fit: contain;
            cursor: pointer;
        }
        ._out{
            position: absolute;
            height: 32px;
            background: #fff;
            border-radius: 8px;
            padding: 0 20px;
            line-height: 32px;
            font-size: 14px;
            color: var(--color-primary);
            width: fit-content;
            right: 0;
            white-space: nowrap;
            top: 44px;
            box-shadow: 0 0 10px #aaa;
            display: none;
            cursor: pointer;
        }
        ._out:after{
            content: '';
            display: block;
            position: absolute;
            width: 100%;
            height: 30px;
            left: 0;
            top: -27px;
        }
    }
    ._user:hover ._out{
        display: block;
    }
    ._mark{
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid #fff;
        color: #fff;
        text-align: center;
        line-height: 36px;
        margin-left: 32px;
    }
    ._login-btn{
        text-align: center;
        line-height: 36px;
        height: 36px;
        border-radius: 36px;
        font-size: 17px;
        font-weight: 600;
        padding: 0 22px;
        color: #fff;
        background: #000;
        margin-left: 20px;
    }
}

.wap-header{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #000;
    left: 0;
    top: 0;
    padding: 20px;
    transform: translateY(-100%);
    transition: all .3s;
    display: none;
    ._search-box{
        display: flex !important;
        width: 100%;
        ._search-result{
            width: 100%;
        }
    }
    ._menus{
        display: flex !important;
        opacity: 1 !important;
        position: relative;
        max-width: 100%;
        left: 0;
        flex-direction: column;
        margin: 20px 0;
        gap: 10px;
    }
}
.wap-header.on{
    transform: translateY(0);
}

.search-menu{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    div{
        position: relative;
        cursor: pointer;
        width: 130px;
        text-align: center;
        color: #6D6C71;
        font-size: 20px;
        line-height: 25px;
        padding-bottom: 7px;
    }
    .on{
        font-weight: 700;
        color: #000;
    }
    .on:after{
        display: block;
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 12px;
        height: 3px;
        border-radius: 3px;
        background: var(--color-primary);
    }
}
.search-count{
    margin-bottom: 12px;
    color: #424242;
    font-size: 17px;
    line-height: 17px;
    font-weight: 6000;
}
.footer-part3{
    background: #F5F5F5;
    padding: 20px 0;
    line-height: 20px;
}
.footer-part3 .container{
    /*height: 100%;*/
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #555555;
}
.footer-part3 .container a{
    color: #555555;
    text-decoration: none;
}
.footer-part3 .container img{
    width: 14px;
    margin: 0 4px;
    object-fit: contain;
}
.footer-part3 .container .footer-logo{
    width: 132px;
    margin: 0 9px;
}
.pc-show.sticky,
.wap-show.sticky{
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9;
}
.wap-show{
    display: none;
}
.d-flex-between {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .footer-no-footer {
        display: none;
    }
    .pc-show.sticky, .wap-show.sticky{
        z-index: 99999;
    }
    .pc-show{
        display: none !important;
    }
    .wap-show{
        display: block;
    }
    .header{
        padding: 0 20px;
        ._logo{
            position: absolute;
            /*margin-right: 20px;*/
        }
        ._menus{
            display: none;
        }
        ._search-box{
            display: none;
        }
        ._menu-toggle{
            display: block;
        }
        ._user{
            margin-left: 20px;
        }
    }
    .wap-header{
        display: block;
    }
    .footer-part3{
        padding: 15px 0 47px;
    }
    .footer-part3 .container{
        font-weight: 400;
        font-size: 10px;
        justify-content: center;
    }
}
