@charset "utf-8";
/*CSS reset1*/

a:link    { color: #0000FF; text-decoration: none; } /* 未访问 */
a:visited { color: #0000FF; text-decoration: none; } /* 已访问 */
a:hover   { color: #0000FF; text-decoration: underline; } /* 悬停 */
a:active  { color: #0000FF; text-decoration: none; } /* 点击瞬间 */

.container1 {
  display: flex;
  justify-content: space-between; /* 让两端文字分别靠左右边缘 */
  align-items: center; /* 垂直居中对齐 */
  height: 20px; /* 设置容器高度，可根据实际调整 */
}
.left-text, .right-text {
  margin: 0;
  padding: 0;
}
				
 /* 以下是下拉菜单设置*/
       
        .dropdown-container {
            position: relative;
            display: inline-block;
            margin: 10px;
        }

        .dropdown-btn {
            background-color: #004488;
            color: white;
            padding: 12px 20px;
            font-size: 20px;
            border: none;
            border-radius: 4px 4px 0 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dropdown-btn:hover {
            background-color: #0066cc;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #1a527d;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
        }

        .dropdown-content a {
            color: white;
            padding: 16px 24px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s ease;
        }

        .dropdown-content a:hover {
            background-color: #2980b9;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .dropdown-btn {
                padding: 10px 16px;
                font-size: 16px;
            }
            .dropdown-content {
                min-width: 180px;
            }
        }
/* 以上是下拉菜单设置*/