/* 主页导航start */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.logo img{
    width:180px;
    height: auto;
}

.nav-menu {
    display: flex;
    flex:1;
    padding: 0 200px;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-item:first-child {
    margin-left: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-link:hover {
    color: #e67e22;
}

/* 主要内容区域 */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.header-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.logo-large {
    font-size: 48px;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
}

.content-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 30px;
}

/* 图片展示区域 */
.image-section {
    width: 100%;
    margin-top: 40px;
}

.main-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 主页导航end */

/* 主页图片start */
.News-p1 {
    text-align: center;
}

.News-p1 img {
    max-width: 80%;
    height: auto;
}

/* 主页图片end */

/* 内容部分start */
/* 主容器 */
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        /* 标题区域 */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 10px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .section-title span {
            color: #e67e22;
            margin-left: 10px;
            font-size: 16px;
        }
        
        .more-link {
            color: #333;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .more-link:hover {
            color: #e67e22;
            text-decoration: none;
        }
        
        /* 内容区域 - 两栏布局 */
        .content-wrapper {
            display: flex;
            gap: 30px;
        }
        
        /* 左侧轮播图 */
        .carousel {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
            height: 400px;
        }
        
        .carousel-item {
            min-width: 100%;
            position: relative;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 20px;
        }
        
        .carousel-caption h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .carousel-caption p {
            font-size: 14px;
            display: -webkit-box;

            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 15px;
        }
        
        .carousel-control {
            background: rgba(255, 255, 255, 0.5);
            color: #333;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .carousel-control:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        /* 右侧新闻列表 */
        .news-list {
            flex: 1;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .news-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-title {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-title:hover {
            color: #e67e22;
        }
        
        .news-date {
            font-size: 12px;
            color: #999;
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-item {
            margin: 0 5px;
        }
        
        .page-link {
            display: block;
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }
        
        .page-link:hover, .page-link.active {
            background: #e67e22;
            color: white;
            border-color: #e67e22;
        }

        a{
            color: #333;
            text-decoration:none;
        }
/* 内容部分end */
        /* 底部备案信息区域 */
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0 20px;
            margin-top: 50px;

        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
            padding-left: 160px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            color: #e67e22;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section .g1{
            padding-right: 150px;
            line-height: 30px;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #e67e22;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #e67e22;
        }

        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: #e67e22;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
        }

        .footer-bottom p {
            margin: 5px 0;
        }

        .beian-link {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .beian-link:hover {
            color: #e67e22;
        }


        /* 响应式设计 */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
            
            .nav-menu {
                padding: 0;
            }
        }