body {
    font-family: Arial, sans-serif;
    margin: 0px;
    background-color: #FFFFFF;
    height: 100%;
    overflow: hidden;
}

.navbar {
    overflow: hidden;
    background-color: #444444;
    margin-bottom: 10px;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    background-color: #222222;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    border: none;
    outline: none;
    color: white;
    padding: 8px 10px;
    background-color: inherit;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    font-size: 14px;
    line-height: 14px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 0px 0px 5px 0px;
    border-radius: 0px 0px 5px 5px;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size:14px;
    font-family: 'Courier New', Courier, monospace;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover {
    background: #FF0000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#userInfo {
    float: right;
}

#addon_guide {
    z-index: 10;
    background-color: #FFFFFF;
    border: 1px solid #BBBBBB;
    line-height: 25px;
    border-radius: 10px;
    margin: 10px 10px 0px 0px;
    float: right;
    position: absolute;
    right: 0px;
    width: 400px;
    display: none;
    padding: 15px;
    padding-bottom: 0px;
}

#addon_guide img.logo {
    float: left;
    margin-right: 10px;
}

#righttopbar {
    width: 280px;
    position: absolute;
    top: 0px;
    right: 0px;
}

#righttopbar ab {
    color: #FFFFFF;
    text-decoration: none;
    float: right;
    font-size: 16px;
    line-height: 16px;
    padding: 10px 22px 0px 0px;
}

#righttopbar ab:hover {
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
}

.search_logo {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.search_logo img {
    height: 65px;
}

.search-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 600px;
    margin: 0px auto;
}

.search-box input[type="text"] {
    flex: 1;
    padding: 10px;
    padding-left: 12px;
    border: none;
    outline: none;
    font-size: 20px;
}

.search-box button {
    padding: 10px 30px;
    border: none;
    background-color: #2d8cf0;
    color: white;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    font-size: 20px;
}

.search-box button:hover {
    background-color: #0b66d3;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* 提示信息窗口样式 */
.modal {
    display: none;
    position: absolute;
    margin: 0px;
    padding: 0px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.modal h2 {
    font-weight: normal;
}

/* 关闭按钮样式 */
#close_button {
    width: 15px;
    float: right;
    height: 15px;
    background: #FFFFFF;
    text-align: right;
    margin-top: -15px;
    margin-right: -11px;
    font-size: 26px;
    cursor: pointer;
}

.info-box {
    width: 450px;
    margin: 60px auto;
    top: 20%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    z-index: 2;
}

.info-box .logo {
    float: left;
    margin-right: 25px;
}

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    max-width: 80%;
    /* 避免过长的消息使 Toast 过宽，可根据需要调整 */
    text-align: center;
    /* 文本居中显示 */
}

.toast.show {
    opacity: 1;
}
.wrappers{
    width:100%;
    height:100%;
}