/* 全局样式 */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 导航栏 */
.navbar {
    background-color: #000 !important;
    box-shadow: 0 2px 4px rgba(255,255,255,0.1);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #0066cc !important;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* 首页横幅 */
.banner {
    position: relative;
}
.banner-btn{
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}
.banner-btn button{
    margin: 0 10px;
}
.slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 80%;
}

.slogan p {
    margin: 10px 0;
     font-size: 40px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .slogan p {
        font-size: 1rem;
    }
    
    .slogan {
        padding: 15px;
    }
}

/* 项目展示 */
.projects {
    padding-top: 100px !important;
}

.line1, .line2 {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.line1 img, .line2 img {
    width: 200px;
}

.line2 {
    margin-top: 30px;
}

.game-icons img {
    transition: transform 0.3s;
}

.game-icons img:hover {
    transform: scale(1.1);
}

.project-buttons img {
    cursor: pointer;
}
.img-title{
    width: 200px;
}
/* 我们职责 */
.joblist{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.joblist img{
    margin:0 0 20px 0;
}

/* 关于科信 */
.about {
    padding-top: 100px !important;
}

/* 服务内容 */
.services-layout{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.services-item{
    padding: 0px 10px;
}
.services {
    padding-top: 100px !important;
}

.services-grid img {
    transition: transform 0.3s;
}
.services-grid p{
    padding: 10px 0;
    color: #555;
}
.services-grid img:hover {
    transform: translateY(-5px);
}

/* 游戏案例 */
.showcase {
    padding-top: 100px !important;
}

.showcase-content video {
    border-radius: 8px;
}

/* 联系科信 */
.contact {
    padding-top: 100px !important;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-content img {
    max-width: 200px;
    padding: 10px;
}
.m-image-list-item{
    padding: 10px 0;
}

/* 页脚 */
.footer {
    background-color: #000 !important;
}

.footer h2 {
    margin-bottom: 20px;
}

.footer-logos img {
    max-height: 40px;
}
.icp{
    font-size: 12px;
    color: #eee;
    padding: 20px 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .project-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .project-buttons a {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .game-icons img {
        max-width: 100px;
    }
    
    .footer-logos {
        gap: 10px;
    }
    
    .footer-logos img {
        max-height: 30px;
    }
}