.n_cont{
    margin-top: 30px;
    border-radius: 10px;
    border: 2px solid #FC55A7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.n_search{
    width: 100%;
    background-color: #FC55A7;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.n_footer{
    margin-top: 10px;
}

.n_table{
    width: 98%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    /*justify-content: center;*/
    align-items: center;
    /*z-index: 999;*/
}

.n_table thead th{
    background-color: #FC55A7;
}

.n_text {
    text-align: center;
}


/* 使用一些基础的样式美化下拉框 */
#prettySelect {
    width: 200px;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    appearance: none; /* 避免默认样式 */
    -webkit-appearance: none; /* 对Webkit内核浏览器的支持 */
    -moz-appearance: none; /* 对Firefox的支持 */
    margin-left: 20px;
}

/* 下拉箭头样式 */
#prettySelect::placeholder {
    color: gray;
}

#prettySelect::-ms-expand { /* IE/Edge */
    display: none;
}

/* 当鼠标悬停时改变背景颜色 */
#prettySelect:hover {
    border-color: #e5e5e5;
}

/* 选中选项时的样式 */
option:checked {
    background-color: #dfeeff;
    color: black;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #f0f0f0;*/
    /*font-size: 14px;*/
    /*border: 1px solid #ccc;*/
    border-radius: 4px;
    margin-left: 20px;
}

input[type="text"] {
    width: 200px;
    height: 32px;
    padding: 10px;
    font-size: 14px;
    border: none;
    outline: none;
    /*border-bottom: 2px solid #ccc;*/
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px 0 0 4px;
}

input[type="submit"] {
    /*background-color: #f9f9f9;*/
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 4px 4px 0;
    border-left: gray;
}

input[type="submit"]:hover {
    background-color: rgba(0, 0, 0, 1);
}

/* 悬浮按钮 */
.hover-button {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 99;
}
.hover-button li {
    width: 150px;
    margin-bottom: 10px;
}
.hover-button li a {
    display: block;
    width: 100%;
}
.hover-button li a img {
    width: 100%;
    height: auto;
}