/* styles.css */
body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}



@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    position: relative;
    display: inline-block;
    padding: 0px 5px;
    margin: 0 0;
    color: #03e9f4;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
    margin-right: 50px;
   
}
a:hover{
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
     -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}
a:nth-child(1){
    filter: hue-rotate(270deg);
}
a:nth-child(2){
    filter: hue-rotate(110deg);
}
a span{
    position: absolute;
    display: block;
}
a span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#03e9f4);
    animation: animate1 1s linear infinite;
}
@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}
a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#03e9f4);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}
a span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#03e9f4);
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}


a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#03e9f4);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}













nav {
    background-color: #444;
    color: #fff;
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content {
    background-color: #f4f4f4;
    padding: 20px;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    nav li {
        display: block;
        margin-bottom: 10px;
    }
}

.top-nav {
    background-color: #222020;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: white;
}

.logo {
    max-width: 100px;
    height: auto;
}

.navbar {
    box-sizing: border-box;
    /* 其他样式 */
  }
  

.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

.user-icon {
    font-size: 24px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: right;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

/* 添加滚动容器的样式 */
.scrollable-content {
    max-height: 500px; /* 设置最大高度，根据需要调整 */
    overflow-y: auto; /* 添加垂直滚动条 */
    margin-top: 20px; /* 调整间距，根据需要调整 */
    padding-right: 10px; /* 保留滚动条空间 */
  }
  

  






















/* styles.css */
.image-text-section {
    display: flex;
    align-items: center;
    margin-top: 0px;
}




.text-container {
    width: 100%;
    padding: 15px;
    background-color: black; /* 背景色改为黑色 */
    color: white; /* 文字颜色改为白色 */
}

.text-container h3 {
    font-size: 35px;
    margin: 0;
    margin-left: 10%;
    margin-right: 10%;
}

.text-container h1 {
    font-size: 45px;
    margin: 20px 0;
    margin-left: 10%;
    margin-right: 10%;
}

#view-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s, color 0.3s; /* 添加过渡效果 */
    margin-left: 10%;
    margin-right: 10%;
}

#view-button:hover {
    background-color: white; /* 鼠标移入时按钮背景色变成白色 */
    color: black; /* 鼠标移入时文字颜色变成黑色 */
}


.bar-container {
    margin-top: 20px;
}

.bar {
    width: 150px;
    height: 10px;
    background-color: #ddd;
    margin-right: 5px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10%;
}

.bar.active {
    background-color: #007bff;
    margin-left: 14%;
}

@media (max-width: 768px) {
    nav li {
        display: block;
        margin-bottom: 10px;
    }

.image-text-section {
    flex-direction: column; /* 图片和文字垂直排列 */
}

.text-container {
    width: 100%; /* 文字区域宽度占满整个容器 */
}

/* Add more styles as needed */

}






/* 在您的 CSS 文件中添加以下样式 */
footer {
    background-color: black;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content img {
    width: 100px; /* 根据您的 logo 图片尺寸调整宽度 */
    height: auto; /* 根据宽度自动缩放高度 */
    margin-right: 10px; /* 可根据需要微调 */
}

.footer-content p {
    color: white;
    margin: 0;
}
