@charset "utf-8";
/* CSS Document */
body, html {
	/*font: Helvetica;*/
	font-family: Arial, sans-serif;
	font-size: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
/*页面背景*/
.pdbg-ct {
    width: 100%;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Optional: to hide any overflow if the image exceeds the div */
    /*border: 1px solid #ccc; /* Optional: to visualize the container border */
	
}

.pdbg-ct img {
    width: 100%;
    height: auto;
	min-height: 320px;
}

/*顶部logo导航栏*/
.pd-top-div {
	z-index: 30; 
	position: absolute;
    width: 100%; /* 使 div 宽度自适应浏览器宽度 */
    background-color: rgba(0,0,0,0.6); /* 黑色背景半透明 */

}

/* 顶部总体样式 */
.pd-main-content {
	max-width: 1200px;
	z-index: 15; 
    margin: 0 auto; /* 使div在水平方向上居中 */
    height: 100%; /* 与上级div高度一致 */
	position: relative;
	display: flex;
    flex-direction: row; /* 默认横向排列 */
}



/*logo总体样式*/
.logostarcontainer {
    position: relative; /* 必须设置为相对定位，以便绝对定位的子元素能够相对于它定位 */
    width: 250px; /* 设置容器的宽度 */
    height: 100px; /* 设置容器的高度 */
}

/*主logo，不含stars*/
.L-DIV {
    width: 250px;
    height: 60px;
    position: relative; /* 设置为绝对定位 */
	top: 25px; /* 调整L-DIV的顶部位置 */
    left: 20px; /* 调整L-DIV的左侧位置 */
}
/*导航栏*/
.navbarDIV {
	display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 使子元素垂直对齐到底部 */
    margin: 0px auto; /* 给logo和导航栏一些外边距 */
	/*min-width:550px;/**/
	padding: 0px;
	padding-bottom: 11px;
	position: relative;
	align-items: center;
}
/* 导航栏样式 */
.navbar {
    padding: 0px 0;
}
.navbar-list {
    display: flex;
    justify-content: center;
}
.navbar-item {
    margin: 0 15px;
}

.navbar-link {
    color: #CCC;
	font-size: 18px;
    text-decoration: none;
    position: relative;
    display: inline-block; /* 确保伪元素能正确显示 */
    padding-bottom: 3px; /* 为下划线留出空间 */
}

/* 悬停效果 */
.navbar-link:hover {
    color: #FFF; /* 设置悬停时的颜色 */
    text-decoration: none; /* 去掉默认的下划线 */
}
.navbar-link:hover::after {
    content: '';
    position: absolute; /* 使用绝对定位来确保下划线定位正确 */
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.navbar-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* 如果需要，可以为logoDIV和navbarDIV添加更具体的样式 */
ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

.visited {
	color:white;
	font-weight: 500;
}

/*电话信息栏*/
.phoneDIV {
	z-index: 20; 
    margin: 0px; /* 给logo和导航栏一些外边距 */
	width:350px;
	height:auto;
	padding-top: 55px;
  	padding-bottom: 0px;
	position: relative;
	top:0;

}
  /* 当视口宽度小于800px时，改为纵向排列 */
  @media (max-width: 800px) {
    .pd-main-content {
      flex-direction: column; /* 改为纵向排列 */
    }
	 .pd-top-div {
		height: 130px;
		/*background-color: rgba(25,35,45,0.7); /* 黑色背景半透明 */
	}
	 /*主logo，不含stars*/
	/*.L-DIV {
		top: 8px; /* 调整L-DIV的顶部位置 */
	/*}
	  /*
	.L-DIV img {
		height: 40px;
		width: auto;
	}*/
	  
	.pdbg-ct img {
		width: auto;
		overflow: hidden;
		object-fit: cover;
	}
	  
}




 /* 当视口宽度小于1200px时，隐藏DIV */
 @media (max-width: 1200px) {
    .phoneDIV {
      	display: none;
    }
 }
 /* 当视口宽度小于600px时，缩导航栏字体及间距 */
 @media (max-width: 600px) {
	.navbar-item {
    margin: 0 5px;
	}
	.navbar-link {
	font-size: 15px;
  	}
}

.fullcenter {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;    /* 垂直居中 */
	flex-direction: column; /* 垂直排列子元素 */
    width: 100%;            /* 宽度占据100% */
    padding: 0;             /* 移除内边距 */
    margin: 0;              /* 移除外边距 */
}

/*画廊css*/
h1 {
     color: #333;
     font-size: 24px;
	 font-weight: normal;
     margin: 0px;
	 padding: 0;
}

.gallery {
    width: 80%;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
	margin-bottom: 20px;
	margin-top: 50px;
}
 /* 响应式设计 */
 @media (max-width: 800px) {
    .gallery {
        width: 95%;
    } 
 }
.gallery-header {
    text-align: center;
    padding: 20px;
	font-size:18px;
	background-color: #f7f7f7;/**/
}
.gallery-header h1 {
    text-align: center;
    padding: 0;
	font-size:24px;

}
.gallery-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;

}
.gallery-image {
    height: 600px; /* 默认高度 */
    width: auto; /* 宽度自动调整以保持比例 */
    max-width: 100%; /* 限制最大宽度不超过容器 */
    object-fit: contain; /* 保持图片内容在容器内，可能会留黑边 */
    overflow: hidden; /* 隐藏超出容器的部分 */
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
@media (max-width: 800px) {
    .gallery-image {
    	height: 400px;

    } 
}
.gallery-image.zoomed {
    transform: scale(1.1);
}
.gallery-title {
    margin: 20px 0 0px;
    font-size: 24px;
}
.gallery-caption {
    font-size: 18px;
    color: #555;
}
.thumbnails {
    display: flex;
	height: 130px;
    align-items: center;
	justify-content:center; /* 水平居中 */
    padding: 10px 20px;
	z-index: 180;
    background-color: #f7f7f7;
}
.thumbnails-wrapper {
	height: 130px;
	width:100%;
    display: flex;
	align-items: center; /* 添加这一行来使子元素垂直居中 */
	justify-content: left; /* 水平居中 */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}
.thumbnail {
	z-index: 150;
    width: 80px;
	min-width: 80px;
    height: 80px;
    margin: 0 20px;
    cursor: pointer;
    overflow: hidden;/**/
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}
@media (max-width: 800px) {
	.thumbnails {
		height: 100px;
	    padding: 10px 20px;
	}
	.thumbnails-wrapper {
		height: 90px;
	}
	.thumbnail {
	    width: 50px;
		min-width: 50px;
	    height: 50px;
	    margin: 0 10px;
	    border-radius: 10px;
	}
}
.thumbnail img {
    width: 100%;
    height: 100%;
}
.thumbnail:hover, .thumbnail.active {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
	
.thumbnail.active {
    transform: scale(1.3); /* 放大1.2倍 */
    transition: transform 0.3s ease; /* 添加平滑过渡效果 */
    z-index: 100; /* 确保放大的缩略图位于其他缩略图之上 */
}

.arrow {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 4px;
    user-select: none;
}
.arrow-left {
    margin-right: 10px;
	z-index: 500;
}
.arrow-right {
    margin-left: 10px;
	z-index: 510;
}


/* 导航栏容器 */
.pdnavs {
  align-items: center;
  background-color: #0063B9;
  padding:0;
 /* max-width: 1200px; /* 最大宽度限制 */
  margin: 0 auto; /* 居中显示 */
}

.pdnav {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	padding: 0px 20px;
 	max-width: 1200px; /* 最大宽度限制 */
  	margin: 0 auto; /* 居中显示 */
	text-align: center; /* 直接在父元素上设置 */
}

/* 导航元素 */
.pdnav a {

  	color: white;
  	text-decoration: none;
	font-size: 18px;
  	padding: 10px 15px;
  	transition: background-color 0.3s ease, transform 0.3s ease;
}

/* 导航元素悬停效果 */
.pdnav a:hover {
  	background-color: #FFFFFF;
  	transform: scale(1.05);
	color:#333;
}

/* 当前页面导航元素样式 */
.pdnav a.current {
    background-color: #fff;
	  color: #333;
	    font-weight:600;
  }
 /* 响应式设计 */
  @media (max-width: 600px) {
  .pdnav a {

	font-size: 15px;
	padding: 10px 5px;
  }
.pdnav {

  	padding: 0px 10px;

}

	  
	  
} 

	  
	  
	  
	  
	  
	  


 /* 容器样式 */
  .styled-container {
        width: 80%;
        max-width: 1200px;
        background: #f7f7f7;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        overflow: hidden;
		margin-bottom: 50px;
		margin-top: 50px;
	  	padding:0;
	  
  }
  /* 响应式设计 */
  @media (max-width: 800px) {
    .styled-container{
        width: 95%;
    } 
  }
  /* 带点的标题样式 */
  .styled-container h2 {
	padding: 30px;
    border-bottom: 1px dotted #333; /* 带点的底边框 */
    padding-bottom: 5px; /* 底边距 */
    margin-bottom: 15px; /* 与正文的间距 */
  }

  /* 正文样式，可根据需要调整 */
  .styled-container p {
	font-size: 18px;
	padding: 0 30px;
    line-height: 1.6; /* 行高 */
    margin-bottom: 10px; /* 段落后间距 */
	margin-top: 0px; /* 段落后间距 */
	  
  }
  /* 正文样式，可根据需要调整 */
.center-text {
  	text-align: center;
	padding: 20px;
	padding-bottom: 50px;
}

/*视频样式*/
.video-container {
     max-width: 800px;
     margin: 0 auto;
     padding: 0px;
     background-color: #fff;
	 border-radius: 20px;/**/
     overflow: hidden;
     /*border: 1px solid #ccc;/**/
     /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
 }
 video {
     width: 100%;
     height: auto;
 }










/* 底部整体样式 */
.footer {
    width: 100%;
	/*min-width: 600px;	/**/
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* 内部自适应宽度的DIV */
.footer-content {
    width: 90%;
    max-width: 1200px;
    /*min-width: 600px;/**/
    margin: 0 auto;
}

/* 友情链接样式 */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.footer-links a {
	color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    color: white;

}
/* 行间距 */
.footer-row {
    margin-bottom: 10px;
	color:#ccc;
}

/* 警徽和沪公网安备号样式 */
.footer-police {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-police img {
    margin-right: 10px;
}
