@charset "utf-8";
#headline {
	height:376px;
	width:100%;
	min-width:1263px; /* 保持最小宽度，确保在大屏幕上布局不变 */
	background: url("../img/newlabel1.png") no-repeat center;
	background-size: cover; /* 背景图自适应 */
	border-bottom: 1px solid #DEF7F1;
}

/* 当屏幕宽度小于1263px时，去掉最小宽度限制 */
@media screen and (max-width: 1263px) {
    #headline {
        min-width: 100%;
        height: auto;
        min-height: 300px;
        background-size: cover;
    }
}

.headline {
	width:1263px;
	height:376px;
	margin:0 auto;
}

/* 当屏幕宽度小于1263px时，headline容器自适应 */
@media screen and (max-width: 1263px) {
    .headline {
        width: 100%;
        height: auto;
        min-height: 300px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    hgroup {
        padding: 60px 0 0 40px;
    }
}

/* 当屏幕宽度小于768px时，进一步调整 */
@media screen and (max-width: 768px) {
    hgroup {
        padding: 40px 0 0 20px;
    }
    
    .headline h2 {
        font-size: 36px;
    }
    
    .headline p {
        font-size: 20px;
    }
}

hgroup {
	padding:100px 0 0 80px;
}
.headline h2{
	font-size:45px;
	color:#FFFFFF;
	letter-spacing: 1px;
}
.headline p{
	font-size:25px;
	color:#FFFFFF;
	letter-spacing: 1px;
}
#container {
	width:1263px;
	margin:30px auto;
    overflow: hidden;
}

/* 当屏幕宽度小于1263px时，容器自适应 */
@media screen and (max-width: 1263px) {
    #container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

.sidebar {
	float:left;
	width:270px;
	color:#666;
}

/* 当屏幕宽度小于1000px时，侧边栏和内容区改为上下布局 */
@media screen and (max-width: 1000px) {
    .sidebar {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .sidebox {
        display: inline-block;
        vertical-align: top;
        margin-right: 15px;
    }
    
    .list {
        float: none;
        width: 100%;
        margin-left: 0;
    }
}

/* 当屏幕宽度小于700px时，侧边盒子堆叠显示 */
@media screen and (max-width: 700px) {
    .sidebox {
        display: block;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px;
    }
}

.sidebox {
	height:360px;
	text-align: center;
	margin-bottom:20px;
	width:260px;
    border:1px solid #ccc;
	border-radius: 5px;
	margin: 10px 3px 15px 0;
}
.sidebox h3{
	font-size: 25px;
	font-weight: normal;
	letter-spacing: 1px;
	height:48px;
	line-height:48px;
	background: #fafafa;
	margin-bottom: 5px;
	display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
}

.sidebox li{
	display: flex; /* 使用Flexbox布局 */
    align-items: center; /* 垂直居中 */
	height:45px;
	margin:2px;
	line-height:45px;
	color:#fff; 
	background: #eee;
}
.tag li a {
	width: 100%; /* 确保链接占据整个<li>的宽度 */
    height: 100%; /* 确保链接占据整个<li>的高度 */
	color:#999;
	display: flex; /* 使用Flexbox布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */ 
}
.tag li a:hover {
	background: #458b00;
	display:block;
	color:#fff;

}
.tag img {
	width: 200px;
	height: auto;
}

.sidebox .figure{
	width:340px;
	text-align: center;
}
 .figure figure{
	display: inline-block;
	padding:5px;
}
.figure figcaption {
	color:#666;
	
}
.box {
	padding:10px 0 10px 0;
}
.box a {
	width:150px;
	height:45px;
	line-height: 45px;
	text-indent: 10px;
	font-size: 16px;
	display: inline-block;
	color:#999;
	margin:2px ;
}

/* 小屏幕下盒子内的链接自适应 */
@media screen and (max-width: 600px) {
    .box a {
        width: 45%;
        min-width: 130px;
    }
}

@media screen and (max-width: 400px) {
    .box a {
        width: 100%;
        margin: 2px 0;
    }
}

.box a.trea1  {
	background: #eee url(../img/trea1.png) no-repeat 10px center;
}
.box a.trea2 {
	background:#eee url(../img/trea2.png) no-repeat 10px center;
}
.box a.trea3  {
	background:#eee url(../img/trea3.png) no-repeat  10px center;
}
.box a.trea4  {
	background: #eee url(../img/trea4.png) no-repeat  10px center;
}
.treasure {
	height:170px;
}

.list {
	float:left;
	width:1265px;
	height: auto;
}

/* 当屏幕宽度小于1263px时，列表宽度自适应 */
@media screen and (max-width: 1263px) {
    .list {
        width: 100%;
    }
}

.list img{
	width:380px;
	height: auto;
	padding: 10px 10px 20px 10px;
	transition: transform 0.3s ease; /* 平滑过渡效果 */
  	cursor: pointer; /* 鼠标悬停时显示指针手势 */
}

/* 小屏幕下图片自适应 */
@media screen and (max-width: 600px) {
    .list img {
        width: 100%;
        max-width: 380px;
        display: block;
        margin: 0 auto;
    }
}

.newreport1 img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 鼠标悬停效果 */
.newreport1:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.newreport1:hover img {
    transform: scale(1.05);
}

.infos {
	width:900px;
	height:50px;
	background: #eee;
}

/* 小屏幕下infos区域可横向滚动 */
@media screen and (max-width: 950px) {
    .infos {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .infos_left {
        white-space: nowrap;
    }
    
    .infos_right {
        margin-right: 0;
    }
}

.infos_left{
	float:left;
	line-height: 48px;
	text-align: center;
}
.infos_left li {
	display: inline-block;
	width:150px;
	height:48px;
}
.infos_left li a {
	display: block;
	color: #666;
	cursor: pointer;
}
.infos_left li:first-child {
	position: relative;
	background: #fff;
	border-top:2px solid #458b00;
	left:1px;
}
.infos_right{
	width:300px;
	height:50px;
	line-height: 50px;
	float:right;
	text-align: center;
	margin-right:-30px;
}
.infos_right li {
	display: inline-block;
	width:60px;
}
.infos_right li a.selected,
.infos_right li a:hover{
	background: #458b00;
	color:#fff;
}
.infos_right li a {
	color:#666;
	width:60px;
	padding:5px;
	font-size:14px;	
}
.tour {
	width:898px;
	height:231px;
	margin-top:20px;
	position: relative;
	border:1px solid #ccc;
	color:#666;
}

/* 小屏幕下tour区域自适应 */
@media screen and (max-width: 950px) {
    .tour {
        width: 100%;
        height: auto;
        min-height: 231px;
        overflow: hidden;
    }
    
    .tour img {
        max-width: 280px;
        width: 30%;
        height: auto;
    }
    
    .tour .description {
        width: calc(100% - 300px);
        height: auto;
        min-height: 200px;
    }
}

@media screen and (max-width: 700px) {
    .tour img {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .tour .description {
        float: none;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
    
    .description .buy {
        position: static;
        margin-top: 20px;
        text-align: center;
    }
    
    .buy .reserve a {
        margin: 10px auto 0;
    }
    
    .description .footer {
        position: static;
        margin-top: 20px;
    }
}

.tour img {
	float:left;
}
.tour .description {
	float:right;
	width:498px;
	height:200px;
	padding:10px 0 0 20px;
}
.description h3 {
	font-size: 24px;
	width:300px;
	font-weight: normal;
}
.description p {
	font-size: 14px;
	line-height: 2;
	width:300px;
	margin-top:10px;
}
.description ol li  {
	font-size: 16px;	
	width:300px;
	margin-top:10px;
	height:20px;
	line-height: 20px;
}
.description ol li mark  {
	color:#458b00;
	border:1px solid #458b00;
	padding:0 5px;
	background: #fff;
	border-radius: 5px;
}
.description .type {
	position:absolute;
	left:0;
	top:0;
	width:80px;
	height:20px;
	background: #59b200;
	line-height: 20px;
	text-align: center;
	font-size:14px;
	color:#fff;
}
.description .disc{
	position: absolute;
	top:0;
	right:0;
	width:52px;
	height:52px;
	background: url(../img/disc.png) no-repeat;
}
.description .disc span{
	display: block;
	width:52px;
	height:52px;
	transform: rotate(45deg);
	padding: 5px 0 0 0px;
	color: #ff7a4d;
	font-size: 14px;
	text-indent: 7px;
}
.description .buy {
	position: absolute;
	top:50px;
	right:20px;
}
.buy .price {
	color:#f60;
	font-size: 20px;
}
.buy .price  strong {
	color:#f60;
	font-size: 36px;
}
.buy .price  s {
	color:#999;
	font-size:19px;
}
.buy .reserve a {
	display: block;
	width:150px;
	height:50px;
	background: #f80;
	text-align: center;
	line-height: 50px;
	border-radius: 5px;
	color:#fff;
	font-size:20px;
	margin-top:10px;
}
.description .footer {
	width:498px;
	height:28px;
	line-height: 28px;
	text-indent: 20px;
	position:absolute;
	bottom:2px;
	letter-spacing: 1px;
	background-color: #fafafa;
}
.description .footer time {	
	color:#458b00;
}
.list .more {
	width:150px;
	height:50px;
	line-height: 50px;
	text-align: center;
	margin:0 auto;
	background: #fafafa;
	border:1px solid #ccc;
	border-radius: 5px;
	cursor: pointer;
	font-size: 18px;
	color:#666;
	margin-top:20px;
}
.ticket {
	font-size:20px;
	color:#666;
}
.ticket form h2 {
	height:50px;
	line-height: 50px;
	font-size:40px;
	font-weight: normal;
	padding:5px 0 10px 0;
	border-bottom:1px dashed #999;
}

/* 小屏幕下票务表单自适应 */
@media screen and (max-width: 800px) {
    .ticket form h2 {
        font-size: 32px;
    }
    
    .ticket form .left,
    .ticket form .center,
    .ticket form .right {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .form input {
        margin: 5px 0;
        width: 100%;
        max-width: 300px;
    }
    
    .ticket form .right .submit {
        top: 0;
        margin: 20px auto;
    }
}

.ticket form .type{
	margin:20px 0 10px 0;
}
.ticket form .type span {
	display: block;
}
.ticket form .type strong {
	padding:0 10px 0 10px;
	margin:0 20px 0 10px;
	color:#fff;
	display: inline-block;
	height:30px;
	background: #458b00;
	line-height:30px;
	text-align: center;
	border-radius: 4px;
}
.form input {
	width:250px;
	height:30px;
	border:1px solid #ccc;
	font-size:18px;
	margin:0 0 0 12px;
	padding:5px;
	border-radius: 5px;
	outline: none;
}
.form {
	line-height: 3;
}
.ticket form .left {
	display:inline-block;
	width:43%;
}
.ticket form .center {
	display:inline-block;
	width:43%;
}
.ticket form .right {
	display:inline-block;
	width:9%;
}
.ticket form .right .submit {
	height:90px;
	width:90px;
	text-align: center;
	line-height: 90px;
	background: #f60;
	border:0;
	position:relative;
	top: -25px;
	color:#fff;
	font-size: 18px;
	letter-spacing: 2px;
	border-radius: 5px;
}
.list_news {
	color:#666;
}
.list_news h2{
	height:50px;
	line-height: 50px;
	font-size:40px;
	font-weight: normal;
	padding:5px 0 10px 0;
	border-bottom:1px dashed #999;
}

@media screen and (max-width: 800px) {
    .list_news h2 {
        font-size: 32px;
    }
}

.list_news ul {
	margin:10px 0 20px 0;
}
.list_news ul li {
	display: inline-block;
	width:50px;
	height:30px;
	line-height: 30px;
}
.list_news ul li:first-child {
	width:120px;
	height:30px;
}
.list_news ul li:nth-child(2) a {
	margin-left:-5px;
	background: #458b00;
	color:#fff;
	border-radius: 3px;
}
.list_news ul li a {
	display: block;
	padding:0 5px 0 5px;
	color:#666;
}
.list_news table {
	border:1px solid #ccc;
	border-collapse: collapse;
	width:100%;
	text-align: center;
}

/* 小屏幕下表格可横向滚动 */
@media screen and (max-width: 800px) {
    .list_news table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.list_news table tr:nth-child(2n) {
	background: #fafafa;
}
.list_news table tr:hover{
	background: #eee;
}
.list_news table th,.list_news table td {
	border-bottom:1px solid #ccc;
	height:50px;
}
.list_news table td.price{
	color:#f60;
}
.list_news table td .reserve {
	display: inline-block;
	height:35px;
	width:80px;
	text-align: center;
	line-height: 35px;
	background: #f60;
	border-radius:4px;
	color:#fff;
}
.list_news table td .ticket_more {
	color:#666;
}
.list{
	color:#666;
}
.list h2{
	font-size: 45px;
	margin-bottom:10px;
	color:#666;
	font-weight: normal;
	border-bottom: 1px dashed #ccc;
	padding:0 0 15px 0;
}

@media screen and (max-width: 800px) {
    .list h2 {
        font-size: 36px;
    }
}

.list p{
	font-size: 20px;
	margin-bottom:10px;
	color:#666;
	font-weight: normal;
}

@media screen and (max-width: 800px) {
    .list p {
        font-size: 16px;
    }
}

.list .xq p{
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	padding: 20px 0 10px 0;
}

@media screen and (max-width: 800px) {
    .list .xq p {
        font-size: 24px;
    }
}

.scenery figure {
	padding:4px;
	text-align: center;
	width: 470px;
	height: 350px;
	border:1px solid #ccc;
	display: inline-block;
	margin: 10px 1px 10px 10px ;
	border-radius: 5px;
	letter-spacing: 1px;
}

/* 小屏幕下风景图自适应 */
@media screen and (max-width: 1000px) {
    .scenery figure {
        width: calc(50% - 30px);
        min-width: 300px;
        height: auto;
        min-height: 300px;
        margin: 10px;
    }
    
    .scenery figure img {
        width: 100%;
        height: auto;
        max-width: 450px;
    }
}

@media screen and (max-width: 700px) {
    .scenery figure {
        width: 100%;
        max-width: 470px;
        margin: 10px auto;
        display: block;
    }
}

.scenery figure img{
	vertical-align:middle;
	width:450px;
	height: 290px;
}

.scenery .exhibit figure{
	padding:2px;
	text-align: center;
	width: 400px;
	height: 320px;
	border:1px solid #ccc;
	display: inline-block;
	margin: 5px 5px 5px 5px;
	border-radius: 2px;
	letter-spacing: 1px;
	cursor: pointer; /* 添加鼠标指针样式 */
    transition: transform 0.3s ease; /* 添加悬停效果 */
}

@media screen and (max-width: 1000px) {
    .scenery .exhibit figure {
        width: calc(50% - 20px);
        min-width: 280px;
        height: auto;
        min-height: 280px;
        margin: 10px;
    }
    
    .scenery .exhibit figure img {
        width: 100%;
        height: auto;
        max-width: 380px;
    }
}

@media screen and (max-width: 600px) {
    .scenery .exhibit figure {
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
        display: block;
    }
}

.scenery .exhibit figure:hover {
    transform: scale(1.02); /* 鼠标悬停时轻微放大 */
}
.scenery .exhibit figure img{
	vertical-align:middle;
	width: 380px;
	height: 250px;
}

.scenery figcaption {
	line-height: 1.5;
	padding:10px  0 10px 0;
	font-size: 16px;
}
.about p{
	text-indent:2em;
	line-height: 2;
	margin:20px 0;
}
.about .address{
	margin:10px 0 0 0;
}
.about .address address{
	font-style: normal;
	line-height: 1.5;
	font-size:18px;
	margin-top:20px;
}
.left_text_contract {
	width: 1100px;
	height: auto;
	min-height: 250px;/*分会新闻左边容器*/
}

@media screen and (max-width: 1150px) {
    .left_text_contract {
        width: 100%;
    }
}

.report {
	width: 1265px;
	height: 210px;
	margin-top: 10px;
	margin-left: 5px;
	border-bottom: 1px dashed #C4C4C4;
	align-items: center;
	overflow: hidden;
}

/* 小屏幕下报告区域自适应 */
@media screen and (max-width: 1300px) {
    .report {
        width: 100%;
        height: auto;
        min-height: 210px;
        margin-left: 0;
        overflow: hidden;
    }
}

@media screen and (max-width: 800px) {
    .report_left {
        float: none;
        width: 100%;
        text-align: center;
    }
    
    .report_left img {
        margin: 0 auto;
    }
    
    .report_right {
        float: none;
        width: 100%;
    }
    
    .report_right01,
    .report_right02,
    .report_right03 {
        width: 100%;
        margin-left: 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .report_right01 {
        font-size: 22px;
    }
    
    .report_right02 {
        height: auto;
        min-height: 80px;
    }
}

.report_left {
	width: 340px;
	height: 200px;
	float: left;
}

.report_left img {
	width: 320px;
	height: 190px;
	padding: 5px;
	display: block;
	margin: 0 auto;
}
.report_right {
	width: calc(100% - 360px); /* 减去左侧宽度(340px)和间距(20px) */
	height: 200px;
	float: left;
	margin-left: 20px;
}
.report_right01 {
	width: 100%;
	height: auto;
	margin: 5px 0 0 0;
	font-size: 25px;
	color: #003366;
	letter-spacing: 1px;
}
.report_right02 {
	width: 100%;
	height: 100px;
	margin: 5px 0 0 0;
	font-size: 15px;
	color: #000000;
	text-indent: 2em;
	line-height: 28px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* 显示3行 */
	-webkit-box-orient: vertical;
}
.report_right03 {
	width: 100%;
	height: 35px;
	margin: 10px 0 0 0;
	font-size: 14px;
	color: #000000;
}
.img6 img{
	max-width: 100%;
	width: auto;
	height: auto;
	display: block; /* 使图片成为块级元素 */
  	margin-left: auto;
  	margin-right: auto; /* 水平居中 */
}

@media screen and (max-width: 1300px) {
    .report {
        width: 100%;
        height: auto;
        min-height: 210px;
        margin-left: 0;
    }
}

@media screen and (max-width: 800px) {
    .report_left {
        float: none;
        width: 100%;
        max-width: 340px;
        margin: 0 auto 20px;
        height: auto;
    }
    
    .report_left img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
    
    .report_right {
        float: none;
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 200px;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .report_right01 {
        font-size: 22px;
        text-align: center;
        white-space: normal; /* 小屏幕下允许换行 */
    }
    
    .report_right02 {
        height: auto;
        min-height: 80px;
        -webkit-line-clamp: none; /* 取消行数限制 */
    }
}

/* 卡片网格布局 */
.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 30px 0;
}

.category-grid > * {
    flex: 1 1 300px; /* 类似于 minmax(300px, 1fr) 的效果 */
    min-width: 300px;
    max-width: 100%;
}

.category-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #007bff, #00b4ff);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-card h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.category-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #007bff, #00b4ff);
    border-radius: 2px;
}

.category-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}
.tech-projects {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.tech-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-title {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.title-icon {
    font-size: 36px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tech-header .tech-title h2 {
    color: #2c3e50;
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, #007bff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
}

.projects-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tech-project {
    display: flex;
    align-items: center;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: linear-gradient(to right, rgba(248, 249, 255, 0.5), white);
    border: 1px solid #f0f4ff;
    transition: all 0.3s;
}

.tech-project:hover {
    background: linear-gradient(to right, rgba(0, 123, 255, 0.05), white);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateX(10px);
}

.tech-project:last-child {
    margin-bottom: 0;
}

.project-icon {
    font-size: 36px;
    margin-right: 25px;
    flex-shrink: 0;
}

.project-info {
    flex: 1;
}

.project-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 8px;
}

.project-category {
    background: linear-gradient(135deg, #007bff, #00b4ff);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-info h3 {
    color: #2c3e50;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    flex: 1;
    min-width: 300px;
}

.contact-consultation {
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    border-radius: 16px;
    padding: 35px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 123, 255, 0.1);
}

.contact-icon {
    font-size: 36px;
    margin-right: 15px;
}

.contact-header h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    position: relative;
}

.contact-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
    text-align: center;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #f0f4ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.item-label {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    min-width: 100px;
}

.item-value {
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
}
.modal {
  display: none; /* 默认不显示 */
  position: fixed; /* 固定定位，覆盖在页面上 */
  z-index: 1000; /* 确保模态框在最上层 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
	animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001; /* 设置层级 */
}

.modal-content img {
    max-width: 60vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    transform: scale(1.2); /* 放大1.2倍 */
}

/* 关闭按钮 */
.close {
    position: fixed; /* 改为fixed，确保始终可见 */
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1002; /* 提高层级 */
    line-height: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close:hover,
.close:focus {
    color: #f0f0f0;
    transform: scale(1.1);
}

/* 添加动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* 新闻 */
.article-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 20px 15px;
    background-color: #fff;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    width: 100%; /* 添加宽度限制 */
    box-sizing: border-box; /* 确保padding不会增加总宽度 */
}

/* 文章标题 */
.article-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
    margin-bottom: 20px;
    padding: 0 5px;
    text-align: center;
    margin-top: 0; /* 确保标题显示 */
}

/* 作者/发布信息 */
.article-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    padding: 0 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    text-align: center;
}

.meta-author {
    color: #666;
    font-weight: 500;
}

/* 正文内容容器 */
.article-content {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
    word-wrap: break-word; /* 防止长文本溢出 */
    overflow-wrap: break-word;
}

/* 正文段落 */
.article-content p {
    margin-bottom: 18px;
    padding: 0 5px;
    text-align: justify;
    color: #333; /* 确保文字颜色 */
}

/* 强调文本 */
.article-content strong {
    color: #000;
    font-weight: 600;
}


/* 如果你想要所有图片都是固定尺寸，使用这个： */
.article-container .article-content img {
    width: 100%;
 	height: auto;
}

/* 小标题 */
.article-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 30px 0 15px 5px;
    line-height: 2;
    padding-left: 5px;
    border-left: 4px solid #0088ff;
	background-color: #f5f5f5;
}

/* 列表样式 */
.article-content ul,
.article-content ol {
    margin: 18px 0 18px 30px;
    padding: 0 5px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333; /* 确保列表文字颜色 */
}


/* 底部信息 */
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

.list section h2 {
    color: #2c3e50;
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, #007bff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* 六边形基础样式 - 简单版本 */
.hexagon-simple {
  position: relative;
  width: 200px;
  height: 115.47px; /* height = width * √3 / 2 */
  background-color: #64C7CC;
  margin: 57.74px 0; /* margin = height/2 */
  display: inline-block;
}

.hexagon-simple:before,
.hexagon-simple:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 100px solid transparent; /* border-left = width/2 */
  border-right: 100px solid transparent; /* border-right = width/2 */
}

.hexagon-simple:before {
  bottom: 100%;
  border-bottom: 57.74px solid #64C7CC; /* border-bottom = height/2 */
}

.hexagon-simple:after {
  top: 100%;
  width: 0;
  border-top: 57.74px solid #64C7CC; /* border-top = height/2 */
}

/* 使用clip-path的现代方法 - 更简单 */
.hexagon-clip {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #64C7CC, #4A90E2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin: 20px;
  display: inline-block;
}

/* 装饰性六边形 - 适合您的装饰元素 */
.hex-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(100, 199, 204, 0.15), rgba(74, 144, 226, 0.15));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
}

/* 更新您的装饰元素样式 */
.decorative-elements .color-blob.hexagon {
  border-radius: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: blur(40px);
  opacity: 0.08;
}

/* 如果您想将现有的圆形斑点改为六边形 */
.blob-1.hexagon {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #64C7CC, #4A90E2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 10%;
  left: 5%;
}

.blob-2.hexagon {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  bottom: 10%;
  right: 5%;
}

.blob-3.hexagon {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #6BFFB8, #00D4AA);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 50%;
  left: 70%;
}

/* 六边形图标 - 适合放在内容中 */
.hex-icon {
  width: 60px;
  height: 60px;
  background: #4A90E2;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 10px auto;
}

/* 最简单可用的测试样式 - 添加到您的HTML中看看效果 */
.test-hexagon {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #64C7CC, #4A90E2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin: 50px auto;
  display: block;
}
/* hexagon.css - 六边形网络图专用样式 */

/* 六边形网络图容器 */
.hexagon-network-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px; /* 减小高度 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0; /* 减小外边距 */
    background: transparent;
    overflow: hidden;
}

/* 六边形布局容器 */
.hexagon-layout-box {
    position: relative;
    width: 480px; /* 减小容器宽度 */
    height: 480px; /* 减小容器高度 */
    margin: 0 auto;
}

/* 六边形单元 */
.hexagon-item {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

/* 六边形形状 */
.hexagon-shape-base {
    width: 150px;
    height: 160px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #3b5dbd 0%, #0f172a 100%);
    border: 2px solid #3498db;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 15px;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

/* 悬停效果 */
.hexagon-item:hover .hexagon-shape-base {
    transform: scale(1.1);
    filter: brightness(1.2);
    border-color: #2ecc71;
}

/* 六边形图标 */
.hexagon-icon-style {
    font-size: 28px;
    margin-bottom: 8px;
    color: #3498db;
    transition: transform 0.3s;
}

.hexagon-item:hover .hexagon-icon-style {
    transform: scale(1.2);
    color: #2ecc71;
}

/* 六边形文字 */
.hexagon-text-chinese {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hexagon-text-english {
    font-size: 14px;
    color: #3498db;
    line-height: 1.2;
    font-weight: 500;
}

.hexagon-item:hover .hexagon-text-english {
    color: #2ecc71;
}

/* 六个六边形的位置 */
.hexagon-position-1 { left: 50%; top: 0; transform: translateX(-50%); }
.hexagon-position-2 { right: -5%; top: 15%; }
.hexagon-position-3 { right: -5%; bottom: 15%; }
.hexagon-position-4 { left: 50%; bottom: 0; transform: translateX(-50%); }
.hexagon-position-5 { left: -5%; bottom: 15%; }
.hexagon-position-6 { left: -5%; top: 15%; }

/* 响应式调整 */
@media (max-width: 768px) {
    .hexagon-layout-box {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .hexagon-layout-box {
        transform: scale(0.6);
    }
}

/* 确保这些样式只影响六边形相关元素 */
.hexagon-network-wrapper * {
    box-sizing: border-box;
}

.hexagon-network-wrapper h1,
.hexagon-network-wrapper h2,
.hexagon-network-wrapper h3,
.hexagon-network-wrapper p,
.hexagon-network-wrapper a,
.hexagon-network-wrapper li {
    /* 重置字体继承 */
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    margin: inherit;
    padding: inherit;
    text-decoration: inherit;
}

/* 左侧装饰区域 */
.article-container::before {
    content: '' !important;
    position: absolute !important;
    left: -80px !important;  /* 在正文左侧留出装饰空间 */
    top: 100px !important;
    width: 60px !important;
    height: 300px !important;
    background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,180,255,0.1)) !important;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) !important;
    opacity: 0.5 !important;
}

/* 右侧装饰区域 */
.article-container::after {
    content: '' !important;
    position: absolute !important;
    right: -80px !important;  /* 在正文右侧留出装饰空间 */
    bottom: 100px !important;
    width: 60px !important;
    height: 300px !important;
    background: linear-gradient(135deg, rgba(0,180,255,0.1), rgba(0,123,255,0.1)) !important;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) !important;
    opacity: 0.5 !important;
}

/* 左侧小装饰点 */
.left-dots {
    position: fixed !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 10 !important;
}

.left-dots span {
    width: 8px !important;
    height: 8px !important;
    background: #007bff !important;
    border-radius: 50% !important;
    opacity: 0.2 !important;
    animation: dotPulse 2s infinite !important;
}

.left-dots span:nth-child(2) { animation-delay: 0.3s !important; }
.left-dots span:nth-child(3) { animation-delay: 0.6s !important; }
.left-dots span:nth-child(4) { animation-delay: 0.9s !important; }
.left-dots span:nth-child(5) { animation-delay: 1.2s !important; }

/* 右侧小装饰点 */
.right-dots {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 10 !important;
}

.right-dots span {
    width: 8px !important;
    height: 8px !important;
    background: #00b4ff !important;
    border-radius: 50% !important;
    opacity: 0.2 !important;
    animation: dotPulse 2s infinite reverse !important;
}

.right-dots span:nth-child(2) { animation-delay: 0.3s !important; }
.right-dots span:nth-child(3) { animation-delay: 0.6s !important; }
.right-dots span:nth-child(4) { animation-delay: 0.9s !important; }
.right-dots span:nth-child(5) { animation-delay: 1.2s !important; }

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.5);
    }
}