/*html,body,#app{
    height: 100%;}*/
#app:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)), url(../image/bg.png) no-repeat center top / 100%;
}

.web-name-container {
    display: flex;
    flex-direction: row;
    padding: 1.5%;
    width: 70%;
    justify-content: space-between;
    align-items: flex-end;
}

.web-name-sub {
    font-size: 18pt;
    margin: 2% 0 2% 0;
    text-align: right;
    width: 30%;
    -webkit-background-clip: text;
    font-family: "STXingkai", "FZShuTi", "YouYuan", cursive; /* 手写体字体系列 */
}

/*#box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}*/

.web-name {
    font-size: 30pt;
    font-weight: bold;
    margin: 2% 0 2% 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    -webkit-background-clip: text;
    /*font-family: "STXingkai", "KaiTi", "楷体", "Microsoft YaHei", sans-serif;*/
}

.navbar {
    background-color: rgb(42, 94, 153);
    opacity: 0.9;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 999;
}

.navbar li {
    margin-right: 15px;
}

.navbar a {
    display: block;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
}

.navbar a:hover {
    /*background-color: #ddd;*/
    color: rgb(100, 152, 205);
}

.copy-container {
    width: 85%;
    margin-top: 2%;
    margin-bottom: 2%;
    opacity: 1;
    display: flex;
    flex-direction: row;
}

.copy-right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.copy-right a {
    margin-left: 2%;
}

.copy-area {
    display: flex;
    width: 100%;
    height: 200px;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
}

.copy-line {
    border-top: 4px solid rgba(0, 103, 191, 0.61);
    opacity: 0.5;
    width: 100%;
}

.copy-area a {
    text-decoration: none;
    color: rgba(0, 103, 191, 0.92);
}

.friendly-line {
    text-decoration: none;
    color: rgba(0, 103, 191, 0.92);
}

.gov-st {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* 下拉按钮样式 */
.dropbtn {
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
}

/* 容器元素用于定位下拉内容 */
.dropdown {
    position: relative;
    display: inline-block;
}

/* 隐藏下拉菜单 */
.dropdown-content {
    background-color: rgb(42, 94, 153);
    display: none;
    position: absolute;
    max-width: 350px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* 下拉菜单中的链接样式 */
.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden;
    text-overflow: ellipsis; /* 超出部分用省略号表示 */
}

/* 鼠标悬停时更改下拉内容中的链接颜色 */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* 当用户将鼠标悬停在下拉按钮上时显示下拉菜单 */
.dropdown:hover .dropdown-content {
    display: block;
}

/* 当用户将鼠标悬停在下拉按钮上时改变按钮背景颜色 */
.dropdown:hover .dropbtn {
    color: #3a8ee6;
}