.nav_pad {
    /* padding-bottom: 80px; */

    .nav_flex {
        position: fixed;
        z-index: 9999;
        height: 80px;
        width: 100%;
        transform: translate(-50%);
        left: 50%;
        background-image: linear-gradient(to bottom, rgba(16, 15, 22, 0.6) 0%, rgba(16, 15, 22, 0.2) 100%);

        .nav_box {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .separate_box {
                cursor: pointer;
            }

            .nav_item {
                padding: 28px 0;
                display: flex;
                align-items: center;
                cursor: pointer;

                a {
                    margin-right: 30px;
                    font-size: 18px;
                    color: #fff;
                }

                a:last-child {
                    margin-right: 0px;
                }

                a:hover {
                    color: #fe628e;
                }

                .header_selected {
                    color: #fe628e;
                }

                img {
                    margin: 0 50px;
                }

            }
        }

    }
}


.search_box {
    background: #ffffff19;
    padding: 0px 20px;
    border-radius: 12px;
    width: 400px;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 53px;
    line-height: 53px;
    box-shadow: 0 0 0 2px transparent;
    /* 初始状态没有边框 */
    transition: box-shadow 0.3s ease;

    /* 添加过渡效果 */
    .hot_word {
        position: relative;

        .input_value {
            background: none;
            color: #fff;
            border: none;
            font-size: 18px;
            cursor: pointer;
            float: left;

        }



        .input_value::placeholder {
            color: #fff;
        }

        .input_value:focus {
            outline: none;
        }

        .hot-search {
            display: flex;
            overflow: hidden;
            /* 确保超出部分隐藏 */
            white-space: nowrap;
            /* 防止文本换行 */
        }

    }


    .search_info {
        display: flex;
        align-items: center;
        cursor: pointer;
        float: right;

        .rank_header_box {
            display: flex;
            align-items: center;
            cursor: pointer;

            a {
                display: flex;

                .search_phb {
                    margin: 0 20px 0 10px;
                }

                img {
                    margin: 0;
                    transition: opacity 0.5s ease;
                }

                img:hover {
                    content: url('/assets/image/phb-select.svg');
                }

                .search_phb:hover {
                    color: #fe628e;
                }
            }

        }

        .search_fun {
            display: flex;
            align-items: center;
            height: 53px;

            img {
                margin: 0;
            }
        }
    }



}

.search_box:hover {
    box-shadow: 0 0 0 2px #fe628e;
}

.settings {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    .setting_user {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        span {
            margin-top: 5px;
            font-size: 18px;
            color: #fff;
        }

        img {
            margin: 0;
        }

    }

    .setting_user:hover {
        img {
            content: url('/assets/image/icon-user-select.svg');
        }

        span {
            color: #fe628e;
        }
    }

    .setting_collect {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 30px;

        span {
            margin-top: 5px;
            font-size: 18px;
            color: #fff;
        }

        img {
            margin: 0;
        }
    }

    .setting_collect:hover {
        img {
            content: url('/assets/image/icon-collect-select.svg');
        }

        span {
            color: #fe628e;
        }
    }

}

.hot_search_container {
    width: 100%;
    height: 53px;
    overflow: hidden;
    position: absolute;
    top: 0;
    cursor: pointer;

    .hot_search_list {
        transition: transform 0.5s ease;
        /* 过渡效果，让滚动更平滑 */

        .hot_search_item {
            height: 53px;
            /* 每个热搜项的高度 */
            line-height: 53px;
        }
    }
}

/**遮罩层样式 */
.menusShowBox {
    width: 100%;
    position: fixed;
    padding-top: 80px;
    background: rgba(17, 21, 32, 0.98);
    z-index: 999;
    overflow-y: scroll;
    height: 100vh;
    top: 0;
    left: 0;

    .menus_box {
        width: 50%;
        margin: auto;

        .menus_flex {
            display: flex;
            flex-direction: column;

            h1 {
                font-size: 34px;
                margin-bottom: 20px;
            }

            .menus_name {
                display: flex;
                flex-wrap: wrap;

                .menus_content {
                    font-size: 18px;
                    flex: 1 1 25%;
                    max-width: 25%;
                    box-sizing: border-box;
                    margin-bottom: 20px;
                    cursor: pointer;
                    display: flex;
                }
            }
        }
    }
}