*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
a{
    color: #9dbce8;
    text-decoration: none;
    transition: 0.3s;
}
a:hover{
    opacity: 0.7;
}
.logo{
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background:#23232e;
    height: 8vh; 
}
.nav-list{
    list-style: none;
    display: flex;
}
.nav-list li{
    letter-spacing: 3px;
    margin-left: 32px;
}
.zy {
    position: right;
    padding: 40px 0;
    background: #bdd2ee;
    display: flex;
    border-radius: 200px;
    box-shadow: 0 5px 25px #9dbce8;
}
.zy li {
    list-style: none;
    text-align: center;
    display: block;
}
.zy li:not(:last-child) {
    border-right: 1px solid rgba(12, 11, 11, 0.2);
}
.zy li a {
    text-decoration: none;
    padding: 0 60px;
    display: block;
}
.zy li a .icon {
    min-width: 60px;
    height: 30px;
    text-align: center;
    margin: 0 auto;
    overflow: hidden; 
}
.zy li a .icon img {
    width: 100%;
    height: 100%;
    line-height: 38px;
    font-size: 1.5em;
    transition: 0.5s;
    -webkit-text-stroke: 2px #9dbce8;
    color: transparent;
}
.zy li a .icon img:last-child {
    color: #2196f3;
    -webkit-text-stroke: 0px #bdd2ee;
    transform: translateY(-250%);
}
.zy li a:hover img {
    transform: translateY(100%);
}
.zy li a:hover img:last-child {
    transform: translateY(-100%);
}
.zy li a .text {
    position: relative;
    height: 25px;
    width: 100%;
    display: block;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 500;
}
.zy li a .text span {
    display: block;
    position: relative;
    color: #2e4b72;
    font-size: 1em;
    line-height: 20px;
    transition: 0.5s;
}
.zy li a .text span::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    height: 100%;
    color:#2196f3;
}
.zy li a:hover .text span {
    transform: translateY(-20px);
}
@media (max-width:768px) {
    .zy {
        flex-direction: column;
        padding: 20px 30px;
        width: 300px;
    }
    .zy li a {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 20px 0;
    }
    .zy li:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .zy li a .icon {	
        margin: 0 auto;	
    }
    .zy li a .text {
        text-align: start;
    }
}
    .shuju {
        color: #3168a6; 
        text-align: center; 
    }
/* 经济 */
.main-wrapper {
    display: flex;
    flex-direction: column; /* 垂直方向布局 */
    align-items: center; /* 子元素水平居中（可选） */
/* 父容器占满视口高度 */
    padding: 20px; /* 内边距 */
    box-sizing: border-box;
}
 
/* container2 样式 */
.container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px; /* 固定宽度 */
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px; /* 根据需要调整间距 */
}
 
/* 左侧图片列 */
.image-column2 {
    flex: 1;
    height: 100%;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    position: relative;
}
 
.image-container2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
 
.image-container2:hover {
    transform: scale(1.05);
}
 
/* 右侧文字列 */

.scrolling-text2 {
    margin: 5px 0;
}
.text-column2 {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow-y: auto; /* 仅允许垂直滚动 */
    overflow-x: hidden; /* 禁止水平滚动 */
    max-height: 300px; /* 限制最大高度，确保滚动条生效 */
    scrollbar-width: thin; /* 滚动条宽度 */
    scrollbar-color: #b33838 transparent; /* 滚动条颜色 */
    word-wrap: break-word; /* 自动换行，防止文字溢出 */
}
.text-content2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
 
.title2 {
    margin: auto 0;
    font-size: 2rem;
    font-weight: bold;
    color: #3168a6;
    margin-bottom: 15px;
}
 
.description2 {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}
 
/* 自定义滚动条样式 */
.text-column2::-webkit-scrollbar {
    width: 8px; /* 滚动条宽度 */
}
 
.text-column2::-webkit-scrollbar-track {
    background: transparent; /* 滚动条轨道背景 */
}
 
.text-column2::-webkit-scrollbar-thumb {
    background: #c94d4d; /* 滚动条滑块颜色 */
    border-radius: 3px; /* 滚动条滑块圆角 */
}
/* 响应式设计 */
@media (max-width: 820px) {
    .container2 {
        width: 95%; /* 调整宽度以适配小屏幕 */
        flex-direction: column;
        height: auto; /* 自动高度 */
        box-shadow: none;
        margin: 20px auto; /* 居中效果（通过 margin 自动） */
    }
 
    .image-column2 {
        height: 300px;
        border-radius: 8px 8px 0 0;
    }
 
    .text-column2 {
        padding: 20px;
        border-radius: 0 0 8px 8px;
    }
}
/* 结束 */

/* 地点 */
  /* 圆圈容器父级样式，用于水平排列 */
  .circles-row {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;
    margin-bottom: 20px;
}

/* 圆圈容器样式 */
.circle-container {
    display: flex;
    flex-direction: column; /* 圆圈和文字仍垂直排列 */
    align-items: center;
    margin: 0 50px; /* 圆圈之间的水平间距 */
    cursor: pointer;
    animation: pulse 2s infinite;
}

/* 圆圈样式 */
.circle {
    width: 50px;
    height: 50px;
    background-color: lightblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    font-weight: bold;
    margin-bottom: 20px; /* 圆圈和文字之间的间距 */
}

/* 圆圈文字样式 */
.circle-text {
    font-size: 24px; /* 文字变大 */
     color: #247292; /* 淡蓝色 */
    font-weight: bold;
}

/* 圆圈脉冲动画 */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 内容样式 */
#content {
    max-width: 100%;
    text-align: left;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(27px);
    transition: all 0.8s ease;
}

/* 显示内容时的样式 */
#content.show {
    opacity: 1;
    transform: translateY(0);
}
/* 结束 */

/* 社会效益 */
.container0 {
    display: flex;
    margin: 0 0 0 50px;
    height: 100%; /* 确保父容器有高度 */
    gap: 20px;
    width: 90%;
    max-width: 100%;
    height: 80vh;
   
}

/* 左侧列 */
.left-column0 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 85%;
    padding-top: 40px；
}

.data-box0 {
    background: #98d7f4;
    padding: 44px;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}


.data-box0 .small-text0 {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 20px;
}

.data-box0 .large-text0 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}


.right-column0 {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.text-area0 {
    background: white;
    padding: 0;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image-container0 {
    display: flex;
    gap: 15px;
    height: 250px;
}

.large-image0 {
    flex: 2;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.small-image0 {
    flex: 1;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}


@media (max-width: 768px) {
    .container0 {
        flex-direction: column;
        height: auto;
    }

    .right-column0 {
        flex-direction: column;
    }

    .image-container0 {
        flex-direction: column;
        height: auto;
    }

    .large-image0, .small-image0 {
        width: 100%;
        height: 200px;
    }
}
/* 结束 */

.sd {
    margin: 150px 0 0 0;
}
.col-lg-6 p {
    size: 20px;
}
.content_index2_div2 p {
    margin-top: 15px;
    line-height: 33px;
}
.content_index2_div2 {
    margin-left: 10%;
    display: inline-block;
    width: 40%;
}
.index_div2 {
    width: 100%;
    margin: 5% auto;
}
.index_div2_1 {
    width: 45%;
    display: inline-block;
}
.index_div2_2 {
    width: 45%;
    display: inline-block;
}
.index_div3_1 {
    display: inline-block;
}
.index_div3_2 {
    display: inline-block;
}
jshao {
    margin: 0 500px 500px 0;
}
.content-block {
    width: 1200px;
    margin: 120px auto 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    box-shadow: none;
}
.content-block:hover {
    transform: none;
    box-shadow: none;
}
.title-line {
    font-size: 36px;
    color: #7a0101;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
    position: relative;
    font-weight: bold;
    overflow: hidden;
}
.title-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #7a0101;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.title-line:hover::after {
    width: 100px;
}
.benefit-section {
    margin-bottom: 10px;
    padding: 10px;
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
}
.benefit-section:hover {
    background: transparent;
    box-shadow: none;
}
.section-desc {
    color: #ba2929;
    font-size: 18px;
    line-height: 2;
    margin: 30px 0;
    padding: 0 30px;
    text-align: justify;
    letter-spacing: 1px;
    text-indent: 2em;
}
.benefit-section:hover .section-desc {
    transform: none;
}
.image-container {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}
.image-container img {
    max-width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.image-container:hover img {
    transform: scale(1.02);
}
.data-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    gap: 30px;
}
.data-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: none;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.data-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}
.data-card::before {
    display: none;
}
.data-title {
    color: #444;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}
.data-number {
    color: #7a0101;
    font-size: 36px;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}
.data-number span {
    font-size: 18px;
    margin-left: 5px;
}
.data-card:hover .data-number {
    transform: scale(1.1);
    color: #a50c04;
}
.eco-cards {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 30px;
    margin-top: 30px;
}
.eco-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.eco-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}
.eco-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px;
}
.eco-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.eco-card:hover .eco-image img {
    transform: scale(1.05);
}
.eco-desc {
    padding: 25px;
    color: #2482c0;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    flex-grow: 1;
    overflow-y: auto;
    letter-spacing: 0.5px;
}
.eco-desc::-webkit-scrollbar {
    width: 6px;
}
.eco-desc::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}
.eco-desc::-webkit-scrollbar-thumb {
    background: rgba(122, 1, 1, 0.3);
    border-radius: 3px;
}
.eco-desc::-webkit-scrollbar-thumb:hover {
    background: rgba(122, 1, 1, 0.5);
}
@media (max-width: 1200px) {
    .eco-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 30px auto;
    }
    .eco-desc {
        height: auto;
        max-height: 200px;
    }
}

 /* 社会 */
.social-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-image-item {
    text-align: center;
    max-width: 200px; /* 调整图片容器宽度 */
}

.social-image-item img {
    width: 100%;
    height: auto;
    border: 2px solid rgb(90, 153, 216); /* 蓝色边框 */
    border-radius: 5px; /* 可选：添加圆角 */
}

.social-image-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.eco-card {
    text-align: center;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.shuju {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.container3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.box3 {
    border: 2px solid rgb(90, 153, 216); /* 蓝色边框 */
    border-radius: 5px; /* 可选：添加圆角 */
    padding: 20px;
    background-color: #e0f7fa;
    width: 300px; /* 调整框的宽度 */
    box-sizing: border-box;
}

.title3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.content3 {
    font-size: 14px;
    color: #555;
}


.box3:hover {
    background-color: #b2ebf2; /* 鼠标悬停时背景颜色变深 */
}

