/* 基础设置 */
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{
    margin: 0;
    padding: 0;
}

ul,ol {
    list-style: none;
}

img {
    /* 底部留白 */
    display: block;
	border:0;
}

b,strong {
    font-weight: 400;
}

h1,h2,h3,h4,h5,h6 {
    /* 父元素字号的百分比 */
    font-size: 100%;
    font-weight: normal;
}

i,em {
    /* 不倾斜 */
    font-style: normal;
}

u,ins,s,del {
    /* 去掉中划线和下划线 */
    text-decoration: none;
}

table {
    border: 1px solid #999;
    /* 相当于是cellspacing */
    border-spacing: 0;
    /* 1px边框 */
    border-collapse: collapse;
}

td,th {
    border: 1px solid #999;
}

input,button {
    /* 去掉轮廓线 */
    outline: none;
    border:none;
}

/* 风格设置 */
body {
    font: 12px/1.5 "Microsoft YaHei", Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
    color: #333;
}

a {
    text-decoration: none;
    color: #666;
}

a:hover {
    color:#DD302D;
    text-decoration: none;
}

.leftfix {
    float: left;
}

.rightfix {
    float: right;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* 让背景充满屏幕*/
html {
    width: 100%;
    height: 100%;
    scroll-behavior: auto;
}

body {
    /* 这里不能设置body为100%高宽，因为会使body撑出浏览器滚动条的范围，导致window.innerWidth == document.documentElement.clientWidth 
       只需要设置margin和padding为0即可实现铺满全屏了*/
    /* width: 100%;
    height: 100%; */
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    overflow-x: auto;
    /* 启用水平滚动 */
    /* color: rgb(15, 150, 218); */
}

body {
    /* background-color: #E3FCDD; */
    background-color: rgb(227 252 221 / 75%);
}

.center_container {
    margin: 0 auto;
    width: 1440px;
    /* 用内容撑开高度 */
    /* height: 100%; */
    background-color: #FAFFF2;
    overflow: hidden;
}

.custom_alert {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);

    /* width: 400px; */
    letter-spacing: 1px;
    background-color: #4fb479;
    color: white;
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    z-index: 3003;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* 间距 */
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.custom_alert.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    /* 消失时向上浮动 */
}

.nav_header {
    width: 100%;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    /* overflow-x: auto; */
    /* 启用水平滚动 */
}

/* 遮罩层 */
.contact_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3001;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

/* 当卡片可见时 */
.contact_overlay.active {
    visibility: visible;
    opacity: 1;
}

/* 设置left变量 */
:root {
    --contact_card_left: -700px;
    /* --contact_card_left: 250px; */
}

/* Contact信息卡片 */
.contact_card {
    position: fixed;
    top: 20%;
    left: var(--contact_card_left);
    /* left: 20%; */
    /* 初始状态：隐藏在视图左侧 */
    width: 580px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 3002;
    transform: translateX(0);
    transition: left 0.3s ease, transform 0.3s ease;
}

/* 当卡片滑入时：水平居中 */
.contact_card.active {
    left: 50%;
    /* 将卡片移至屏幕中间 */
    transform: translateX(-50%);
    /* 水平居中 */
}

/* 当卡片向右滑出时 */
.contact_card.slide_out {
    left: 100%;
    /* 将卡片移到屏幕外右侧 */
    transform: translateX(0);
    /* 确保卡片完全离开视窗 */
}

.contact_card.reset {
    opacity: 0;
    left: var(--contact_card_left);
    /* 重置卡片的位置 */
}


.contact_card h2 {
    margin-top: 0;
    font-size: 23px;
    font-weight: bold;
}

.contact_card .intro_text {
    margin: 20px 0;
    font-size: 17px;
}

.contact_card .content_text {
    margin: 10px 0;
}

.contact_card strong {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact_card .email_address {
    font-size: 15px;
    color: cadetblue;
}

.contact_card .email_address:hover {
    text-decoration: underline;
    cursor: pointer;
}


.contact_card .location_text {
    font-size: 15px;
    text-wrap: wrap;
}

.contact_card a {
    font-size: 15px;
    text-decoration: none;
    color: #3498db;
}

.contact_card a:hover {
    text-decoration: underline;
}



.nav_container {
    position: relative;

}

.nav_bar {
    /* position: relative; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #488a63;
    padding: 5px 15px;
    border-radius: 30px;
    color: white;
    /* width: 80%; */
    /* 固定宽度 */
    margin: 0 auto;
    /* 水平居中 */
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1);
}

.nav_bar .logo_container {
    /* width: 340px;
    height: 100px; */
    /* background-color: skyblue; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}

.nav_bar .logo_container a {
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.nav_bar .logo_container .logo_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_bar .logo_container .logo_box img {
    width: 41px;
    /* height: 100px; */
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1);
}

.nav_bar .logo_container .title_box {
    margin-left: 20px;
}

.nav_bar .logo_container .title_box h1 {
    font-size: 33px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.nav_bar .menu_container {
    background-color: rgb(255, 255, 255, 0.9);
    border-radius: 30px;
}

.nav_bar .menu_container .menu_links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    padding: 10px 10px;
    font-size: 16px;
}

.nav_bar .menu_container .menu_links .first_level_link {
    margin: 0 10px;

}

.nav_bar .menu_container .menu_links .first_level_link a,
.nav_bar .menu_container .menu_links .second_level_link a {
    text-decoration: none;
    color: black;
    transition: all 0.3s;
    padding: 10px 10px;
    cursor: pointer;
}

.nav_bar .menu_container .menu_links .first_level_link>a:hover,
.nav_bar .menu_container .menu_links .dropdown:hover>a {
    font-weight: bold;
    /* color: palevioletred; */
    background-color: rgba(97, 181, 132, 0.8);
    border-radius: 10px;
}

.nav_bar .menu_container .menu_links .second_level_link a:hover {
    background-color: rgba(97, 181, 132, 0.8);
    border-radius: 10px;
}

.nav_bar .menu_container .menu_links .dropdown {
    position: relative;
}

.nav_bar .menu_container .menu_links .dropdown .dropdown_content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* 宽度根据最长的行自动撑开 */
    min-width: max-content;

    background-color: rgb(240, 240, 240);
    border-radius: 10px;
    margin-top: 9px;
    padding: 10px;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1);

}

.nav_bar .menu_container .menu_links .dropdown:hover .dropdown_content {
    display: block;
}

.nav_bar .menu_container .menu_links .dropdown .dropdown_content .second_level_link a {
    display: block;
    padding: 5px;
    width: calc(100% - 10px);
    border-bottom: 1px solid #dcdcdc;
    text-align: center;
}

.nav_bar .search_box_container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 5px 10px;
    position: relative;
}

.nav_bar .search_box_container input {
    width: 180px;
    height: 30px;
    padding: 0 10px;
    font-size: 16px;
    background: none;
}

.nav_bar .search_box_container .search_button {
    width: 30px;
    height: 30px;
    background: none;
    cursor: pointer;
    transition: all 0.2s;
}

.nav_bar .search_box_container .search_button:hover {
    transform: scale(1.1);
}

.nav_bar .search_box_container .search_button .search_icon {
    font-size: 18px;
}

.nav_bar .search_box_container .search_box_tooltip {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;

    opacity: 0;
    visibility: hidden;
    /* 
    opacity: 1;
    visibility: visible; */

    background-color: rgb(189, 236, 182);
    color: black;
    border-radius: 8px;
    padding: 5px 10px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-49%);
    /* 并不完全居中，视觉上更加平衡 */
    z-index: 2000;
    width: 90%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nav_bar .search_box_container:hover .search_box_tooltip {
    opacity: 1;
    visibility: visible;
}

.nav_bar .search_box_container .search_box_tooltip .tooltip_text {
    text-align: left;
    margin: 5px 2px;
    font-weight: 600;
}

.nav_bar .search_box_container .search_box_tooltip .example_ids .example_title,
.nav_bar .search_box_container .search_box_tooltip .example_ids .example_id {
    font-weight: normal;
    margin-right: 10px;
    margin-top: 10px;
    transition: all 0.5s;
}

.nav_bar .search_box_container .search_box_tooltip .example_ids .example_id:hover {
    cursor: pointer;
    transform: scale(1.1);
    color: red;
    /* text-decoration: underline; */
}

.nav_bar .search_box_container .search_box_tooltip .download_button {
    margin: 10px 0;
    padding: 5px 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
}

.nav_bar .search_box_container:hover .search_box_tooltip .download_button:hover {
    background: #8bc2d0;
    color: #fff;
}

.menu_toggle,
.menu_close {
    display: none;
    background: none;
    border: 1px solid white;
    color: #dcdcdc;
    padding: 8px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu_toggle:hover,
.menu_close:hover {
    background-color: white;
    border: #dcdcdc;
}

.menu_toggle:hover .iconfont,
.menu_close:hover .iconfont {
    color: black;
}

.menu_open .menu_toggle {
    display: none;
}

.menu_open .menu_close {
    display: block;
}

.expanded_nav {
    /* display: flex; */
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    z-index: -1;
    top: 0;

    flex-direction: column;
    /* justify-content: center; */
    align-items: center;

    background-color: #488a63;
    border-radius: 30px 30px 10px 10px;
    /* height: 100px; */
    width: 81%;
    padding: 60px 10px 10px 10px;
    margin: 0 auto;
    box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1);
}

.expanded_nav_open .expanded_nav {
    display: flex;
}


.expanded_nav .search_box_container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e8e8e8;
    border-radius: 30px;
    padding: 5px 10px;
    margin: 10px 0;
    width: 30%;
    position: relative;
}

.expanded_nav .search_box_container input {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    font-size: 16px;
    background: none;
}

.expanded_nav .search_box_container .search_button {
    width: 30px;
    height: 30px;
    background: none;
    cursor: pointer;
    transition: all 0.2s;
}

.expanded_nav .search_box_container .search_button:hover {
    transform: scale(1.1);
}

.expanded_nav .search_box_container .search_button .search_icon {
    font-size: 18px;
}

.expanded_nav .search_box_container .search_box_tooltip {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;

    opacity: 0;
    visibility: hidden;

    /* opacity: 1;
    visibility: visible; */

    background-color: rgb(189, 236, 182);
    color: black;
    border-radius: 8px;
    padding: 5px 10px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-49%);
    /* 并不完全居中，视觉上更加平衡 */
    z-index: 2000;
    width: 90%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.expanded_nav .search_box_container:hover .search_box_tooltip {
    opacity: 1;
    visibility: visible;
}

.expanded_nav .search_box_container .search_box_tooltip .tooltip_text {
    text-align: left;
    margin: 5px 2px;
    font-weight: 600;
}

.expanded_nav .search_box_container .search_box_tooltip .example_ids .example_title,
.expanded_nav .search_box_container .search_box_tooltip .example_ids .example_id {
    font-weight: normal;
    margin-right: 10px;
    margin-top: 10px;
    transition: all 0.5s;
}

.expanded_nav .search_box_container .search_box_tooltip .example_ids .example_id:hover {
    cursor: pointer;
    transform: scale(1.1);
    color: red;
    /* text-decoration: underline; */
}

.expanded_nav .search_box_container .search_box_tooltip .download_button {
    margin: 10px 0;
    padding: 5px 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
}

.expanded_nav .search_box_container:hover .search_box_tooltip .download_button:hover {
    background: #8bc2d0;
    color: #fff;
}

.expanded_nav .menu_container {
    background-color: #e8e8e8;
    border-radius: 10px;
    width: 100%;
}

.expanded_nav .menu_container .menu_links {
    /* display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center; */
    list-style: none;
    padding: 10px 10px;
    font-size: 16px;
}

.expanded_nav .menu_container .menu_links .first_level_link a,
.expanded_nav .menu_container .menu_links .second_level_link a {

    display: block;
    width: calc(100% - 20px);
    padding: 10px 10px;
    cursor: pointer;
    text-decoration: none;
    color: black;
    transition: all 0.3s;
    border-bottom: 1px solid #dcdcdc;
}

.expanded_nav .menu_container .menu_links .first_level_link>a:hover,
.expanded_nav .menu_container .menu_links .accordion:hover>a {
    font-weight: bold;
    /* color: palevioletred; */
    background-color: rgba(97, 181, 132, 0.8);
    border-radius: 10px;
}

.expanded_nav .menu_container .menu_links .second_level_link a:hover {
    background-color: rgba(97, 181, 132, 0.8);
    border-radius: 10px;
}

.expanded_nav .menu_container .menu_links .accordion>a {
    display: flex;
    justify-content: space-between;
}

.expanded_nav .menu_container .menu_links .accordion .accordion_content {
    display: none;
    margin-left: 10px;
}



/* 导航栏中的菜单和关闭图标字体(font-class 引用方式)，来自于 https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=4552750*/
@font-face {
    font-family: "iconfont";
    /* Project id 4552750 */
    src: url('//at.alicdn.com/t/c/font_4552750_t8m32k3o3g.woff2?t=1717830003770') format('woff2'),
        url('//at.alicdn.com/t/c/font_4552750_t8m32k3o3g.woff?t=1717830003770') format('woff'),
        url('//at.alicdn.com/t/c/font_4552750_t8m32k3o3g.ttf?t=1717830003770') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-liebiao:before {
    content: "\e600";
}

.icon-31guanbi:before {
    content: "\e601";
}

/* 导航栏中的回到顶部图标(symbol 引用）*/
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}


.scroll_to_top_button {
    /* 当视口在顶部时隐藏按钮，后续搭配js进行页面滚动距离的图标展现 */
    display: none;
    background-color: transparent;
    /* 按钮背景透明 */
    border: none;
    /* 无边框 */
    cursor: pointer;
    /* 鼠标悬停时变成手指形状 */
    position: fixed;
    right: 10px;
    bottom: 25%;
    z-index: 3000;
}

.scroll_to_top_button img {
    width: 50px;
}

.scroll_to_top_button:hover img {
    animation: bounce 1.3s infinite;
}

/* 为回到顶部图标设置动画，在40%和60%这两个时间点向上位移，模拟跳跃两次的效果 */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}


/* 导航栏响应式布局 */
@media (min-width: 1440px) {
    .nav_bar {
        /* width: 1280px; */
        width: 1370px;
    }
}

@media (min-width: 1150px) and (max-width: 1440px) {
    .nav_bar {
        width: 95%;
    }

    .menu_toggle,
    .menu_close {
        display: none;
    }
}

@media (max-width: 1150px) {
    .nav_bar {
        width: 95%;
    }

    .nav_bar .menu_container,
    .nav_bar .search_box_container {
        display: none;
    }

    .menu_toggle {
        display: block;
    }

    /* .nav-links,
            .search-box {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .expanded-nav {
                display: none;
            } */
}

.content_container {
    width: calc(100% - 40px);
    /* 保证内容不溢出 */
    /* height: 1130px;  */
    /* 由内容自动撑起 */
    padding: 20px;
    margin-top: 90px;
}


.content_container .search_container {
    /* width: calc(100% - 80px); */
    margin: 0 10px 40px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content_container .search_container .select_genome_form_group {
    width: 300px;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(179, 236, 202, 0.73);
    border-radius: 10px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);

}

.content_container .search_container .select_genome_form_group label {
    font-size: 16px;
    font-weight: bold;

}

.content_container .search_container .select_genome_form_group select {
    width: 120px;
    height: 30px;
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.content_container .search_container .search_id_form_group .submit_box {
    width: 740px;
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(179, 236, 202, 0.73);
    border-radius: 10px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}

.content_container .search_container .search_id_form_group .submit_box label {
    font-size: 16px;
    font-weight: bold;
    /* margin-left: 30px; */
}

.content_container .search_container .search_id_form_group .submit_box input {
    width: 200px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: bold;
    padding: 0 10px;
    border-radius: 5px;
}

.content_container .search_container .search_id_form_group .submit_box button {
    width: 100px;
    height: 30px;
    /* margin-left: 30px;
    margin-right: 30px; */
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.content_container .search_container .search_id_form_group .submit_box .previous_id_button {
    width: 130px;
}

.content_container .search_container .search_id_form_group .submit_box button:hover {
    transform: scale(1.1);
}

.content_container .search_container .search_id_form_group .example_ids {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_container .search_container .search_id_form_group .example_ids .example_title,
.content_container .search_container .search_id_form_group .example_ids .example_id {
    font-size: 16px;
    font-weight: normal;
    margin-right: 10px;
    margin-top: 10px;
    transition: all 0.5s;
}

.content_container .search_container .search_id_form_group .example_ids .example_title {
    font-weight: bold;
}

.content_container .search_container .search_id_form_group .example_ids .example_id:hover {
    cursor: pointer;
    color: red;
    text-decoration: underline;
}

.content_container .search_container .search_id_form_group .help_box .download_button {
    margin: 10px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
}

.content_container .search_container .search_id_form_group .help_box .download_button:hover {
    background: #8bc2d0;
    color: #fff;
}

.content_container .search_container .search_id_form_group {
    position: relative;

}

.content_container .search_container .search_id_form_group .submit_box .help_icon {
    padding: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    color: #007BFF;
    /* 蓝色 */
    user-select: none;

}

/* 浮窗样式 */
.content_container .search_container .search_id_form_group .help_box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 55%;
    background-color: rgb(246, 255, 250);
    /* 浅蓝色背景 */
    /* border: 1px solid rgba(179, 236, 202); */
    /* 蓝色边框 */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 8px 16px 5px rgba(0, 0, 0, 0.2);
    z-index: 2001;
    display: none;
    /* 默认不显示，由JS控制 */
}

.content_container .search_container .search_id_form_group .help_box h1 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.content_container .search_container .search_id_form_group .help_box p {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

.content_container .search_container .search_id_form_group .help_box p strong {
    font-size: 18px;
    font-weight: bold;
}

.content_container .search_container .search_id_form_group .help_box .notice {
    font-size: 16px;
    color: #d93939;
    /* margin-top: 10px; */
}


.content_container .search_container .search_id_form_group .help_box .close_icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 20px;
}

.content_container .search_container .search_id_form_group .help_box .close_icon:hover {
    transition: all 0.5s;
    transform: scale(1.1);
}

.content_container .search_container .search_id_form_group .search_alert {
    /* display: none; */
    color: #d9534f;
    /* 警告文字通常使用红色系 */
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    position: absolute;
    /* 根据需要调整定位 */
    z-index: 1000;
    /* 确保提示框在最上面 */
    width: 100%;
    /* 根据需要调整宽度 */
    text-align: center;
    font-size: 18px;
}


.footer_container {
    width: 100%;
    padding: 10px 0;
    /* height: 225px; */
    background-color: #00411A;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.footer_container .logo_container {
    width: 100%;
    margin: 5px 0;
    /* height: 130px; */
    /* background-color: skyblue; */
    display: flex;
    justify-content: center;
    align-items: center;
}



.footer_container .logo_container .logo_box {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 15px;
}

.footer_container .logo_container .logo_box img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.footer_container .logo_container ul {
    font-size: 18px;
    line-height: 1.5;
    color: white;
}


.footer_container .development_info {
    font-size: 15px;

    color: white;
    text-align: center;
    line-height: 30px;
}

.footer_container .copyright_revolvermap_container {
    display: flex;
    justify-content: center;
    align-items: center;

}

.footer_container .copyright_revolvermap_container .copyright_container {

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}

.footer_container .copyright_revolvermap_container .copyright_container h1 {
    font-size: 15px;

    color: white;
    margin-right: 20px;
}

/* 
.footer_container .copyright_revolvermap_container .copyright_container .copyright {
    margin-left: 10px;
} */

.footer_container .copyright_revolvermap_container .copyright_container .email_address {
    text-decoration: none;
    font-size: 15px;
    color: antiquewhite;
}

.footer_container .copyright_revolvermap_container .copyright_container .email_address:hover {
    text-decoration: underline;
    cursor: pointer;
}

.footer_container .revolver_maps {
    width: 140px;
    height: 65px;
    border-radius: 10px;
}

.tmp_display_none {
    display: none;
}

.tmp_display_block {
    display: block;
}

.tmp_display_flex {
    display: flex;
}
