* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    /* background: url('assets/bg.jpg') no-repeat center top; */
	 /* background: url('http://image2.sina.com.cn/gm/o/i/2006-10-12/U159P115T41D109490F757DT20061012120121.jpg') no-repeat center top;*/
    
	background-color: black;
    background-size: cover;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* 顶部横幅样式 */
.banner {
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo {
    max-width: 400px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.enter-btn {
    padding: 12px 40px;
    font-size: 18px;
    background: linear-gradient(45deg, #FFB300, #FF6B00);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.enter-btn:hover {
    transform: scale(1.05);
}

/* 轮播图样式 */
.carousel {
    height: 300px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.carousel-items {
    display: flex;
    height: 100%;
}

.carousel-items img {
    width: 100%;
    object-fit: cover;
}

/* 导航菜单样式 */
.nav-menu {
    background: rgba(249, 40, 40, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.menu-items {
    display: flex;
    justify-content: space-around;
}

.menu-item {
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    transition: background 0.3s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 右侧功能栏样式 */
.side-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 10px;
}

.side-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background 0.3s;
}

.side-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .banner {
        height: 300px;
    }
    
    .side-menu {
        position: static;
        transform: none;
        margin-top: 20px;
    }
    
    .menu-items {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-item {
        margin: 5px 0;
    }
} 

/* 添加以下新样式 */
.container::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
    z-index: 1000;
}

/* 右下角遮罩 */
.corner-mask {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 200px;
    /* background-image: url('assets/mask.png'); */
    background-image: url('http://image2.sina.com.cn/gm/o/i/2006-10-12/U159P115T41D109486F757DT20061012120034.jpg');
    background-size: cover;
    background-position: center;    
    z-index: 1001;
    pointer-events: none;
} 

/* 添加网站标题样式 */
.site-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 107, 0, 0.7),
        0 0 20px rgba(255, 179, 0, 0.5),
        0 0 30px rgba(255, 107, 0, 0.3);
    margin-bottom: 20px;
    font-family: "Microsoft YaHei", sans-serif;
    letter-spacing: 5px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 
            0 0 10px rgba(255, 107, 0, 0.7),
            0 0 20px rgba(255, 179, 0, 0.5),
            0 0 30px rgba(255, 107, 0, 0.3);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 107, 0, 0.9),
            0 0 30px rgba(255, 179, 0, 0.7),
            0 0 40px rgba(255, 107, 0, 0.5);
    }
} 
.title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    margin-bottom: 20px;
    font-family: "Microsoft YaHei", sans-serif;
    letter-spacing: 5px;
}
/* 内容区块样式 */
.content-sections {
    margin-top: 30px;
}

.system-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s;
    scroll-margin-top: 20px;
}

.system-section:hover {
    transform: translateY(-5px);
}

.system-section h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    position: relative;
    padding-left: 20px;
}

.system-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #FFB300, #FF6B00);
    border-radius: 2px;
}

.section-content {
    display: flex;
    gap: 30px;
}

.section-image {
  


    flex: 0 0 200px;
    height: 200px;
    /* background: url('assets/section-bg2.png') center center; */
    background: url('http://image2.sina.com.cn/gm/o/i/2006-10-12/U159P115T41D109453F757DT20061012115644.jpg') center center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.section-text {
    flex: 1;
    color: #fff;
}

.section-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.section-text ul {
    list-style: none;
}

.section-text li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.section-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFB300;
}

/* 平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
    }
    
    .section-image {
        width: 100%;
        height: 150px;
    }
} 

/* 添加页脚样式 */
.site-footer {
    margin-top: 50px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    position: relative;
    z-index: 999;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer {
    color: #ea2405;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.disclaimer p {
    margin-bottom: 0px;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-btn {
    padding: 10px 25px;
    background: linear-gradient(45deg, #FFB300, #FF6B00);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    background: transparent;
    border-color: #FF6B00;
}

/* 调整响应式布局 */
@media (max-width: 768px) {
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-btn {
        width: 200px;
        text-align: center;
        margin: 5px 0;
    }
    
    .disclaimer {
        text-align: center;
    }
} 