@charset "utf-8";
/* CSS Document */


        /* 修改页脚样式 */
        .site-footer {
            position: relative;
            cursor: pointer;
        }
        
        .copyright-text {
            display: inline-block;
            transition: all 0.2s;
        }
        
        .copyright-text:hover {
            color: #a0d1ff;
        }
/* 新栏目样式 */
.new-section {
    padding: 40px 0;
    background: #fff;

}

.new-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* 左侧栏目 (30%) */
.left-column {
    flex: 0 0 20%;
	list-style: none;
	border-bottom: 1px #6C6C6C;
}

.main-category {
    height: 150px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.main-category h3 {
    color: white;
    font-size: 32px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.sub-categories li {
    padding: 15px;
    margin-bottom: 10px;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
	list-style: none;
}

.sub-categories li:hover {
    background: #e0e0e0;
    transform: translateX(5px);
}

/* 右侧内容 (70%) */
.right-column {
    flex: 1;
}
        /* 信息展示栏 */
        .info-bar {
            background: #005897;
            padding: 40px 0;
            color: white;
        }

        .info-container {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            align-items: center;
        }

        /* 左侧logo */
        .logo-column {
            flex: 0 0 40%;
            padding-right: 50px;
        }

        .info-logo {
            max-width: 400px;
            height: auto;
        }

        /* 右侧信息栏（严格对齐版） */
        .contact-column {
            flex: 1;
        }

        .contact-row {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            position: relative;
        }

        /* 图标对齐系统 */
        .icon-pair {
            display: flex;
            align-items: center;
            width: calc(50% - 15px);
        }

        .icon-container {
            width: 40px;
            text-align: center;
            margin-right: 15px;
        }

        .icon {
            font-size: 24px;
            vertical-align: middle;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .info-container {
                flex-direction: column;
            }
            
            .logo-column {
                padding-right: 0;
                margin-bottom: 30px;
                text-align: center;
            }
            
            .contact-row {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .icon-pair {
                width: 100%;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .icon-container {
                width: 30px;
            }
            
            .info-container {
                width: 90%;
            }
        }
		
		
		        .footer-search {
            position: fixed;
            bottom: 0;
            left: -300px;
            width: 300px;
            background: white;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .footer-search.active {
            left: 0;
        }
        
        .footer-search input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        /* 修改页脚样式 */
        .site-footer {
            position: relative;
            cursor: pointer;
        }
        
        .copyright-text {
            display: inline-block;
            transition: all 0.2s;
        }
        
        .copyright-text:hover {
            color: #a0d1ff;
        }