This commit is contained in:
2025-07-17 11:18:49 +08:00
parent 3bbf6675dd
commit c676a88c69
40 changed files with 1255 additions and 484 deletions

View File

@@ -5317,3 +5317,113 @@ ul li .ab_tad {
font-style: italic !important;
font-weight: bold !important;
}
.article_navbar-container {
display: flex;
align-items: center;
background-color: #fff;
padding:0 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.article_dropdown-menu {
position: relative;
margin-right:20px;
}
.article_dropbtn {
color: #333;
padding: 14px 10px;
font-size: 16px;
border: none;
font-weight:bold;
cursor: pointer;
transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* By default, the dropdown list is hidden */
.article_dropdown-list {
display: none;
position: absolute;
background-color: #ffffff;
min-width: 160px;
z-index: 1;
border-radius: 4px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
opacity: 0;
transition: opacity 0.3s ease-in-out;
top:40px;
}
.article_dropdown-list a {
color: #333;
margin: 12px 10px 0;
text-decoration: none;
display: inline-block;
transition: background 0.3s ease;
border-bottom:2px solid #fff;
}
.article_dropdown-list {
padding-bottom:12px;
}
.article_dropdown-menu:hover .article_dropdown-list {
display: block;
opacity: 1;
}
.article_navbar-container .article_dropdown-menu {
margin-right: 40px;
}
#common-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: none;
z-index: 100;
}
/* 弹窗主体 */
#common-popup {
width: 600px;
min-height: 400px;
height: auto;
background: white;
border-radius: 8px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
opacity: 0;
transition: opacity 0.3s;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.common-popup-box .whitebg{
border-bottom:none !important;
}
/* 关闭按钮 */
.common-close-btn {
position: absolute;
right: 15px;
top: 10px;
font-size: 24px;
cursor: pointer;
color: #999;
}
.common-close-btn:hover {
color: #333;
}