.body{
    font-family: Helvetica Neue LT Pro Bold Extended, sans-serif;
}

@font-face {
	font-family: 'BAUHS93';
	src: url(../font/BAUHS93.ttf) format('truetype');
 
}
@font-face {
    font-family: 'GothamThin'; /* 自定义字体名称 */
    src: url(../font/gotham_thin.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}


.news-item-box {
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
}
.news-item-img {
    width: 100%;
    min-height: 120px;
    overflow: hidden;
}
.news-item-box img {
    transition: all .3s;
}
.news-item-box:hover img{
    transform: scale(1.1);
}
.news-item-box p {
    margin-top: 0;
    color: #777;
    line-height: 1.5;
    font-size: 14px;
    word-break: break-all;
}


.module-capacity {
	 
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	display: flex; 
    justify-content: center;
}

.capacity-container { 
    max-width: 1200px;
	width: 100%;  
 

 
}

.content-box {
    margin: 40px 0;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}

.image-block {
	background-color: #e0e0e0;
	background-size: cover;
}

 

.content-box .box1 {
	grid-row: 1/7;
}

.content-box .box2 {
	grid-column: 3/9;
	grid-row: 1/7;
}

.content-box .box3 {
	grid-column: 9/13;
	grid-row: 1/7;
}

.content-box .box4 {
    margin-bottom: 30px;
	grid-column: 1/9;
	grid-row: 7/10;
}

.content-box .box5 {
	grid-column: 1/7;
	grid-row: 10/13;
}

.content-box .box6 {
	grid-column: 9/13;
	grid-row: 7/10;
}

.content-box .box7 {
	grid-column: 7/13;
	grid-row: 10/13;
}

.text-block {
	border-radius: 10px;
}

.box1 p {  
    font-weight: bolder;
	color: #000;
	margin: 0; 
	text-align: right;
	font-size: 230px;
	word-break: break-all;
	line-height: 1;


}

.box2 p {
    font-family: 'Gotham', Arial, sans-serif;
    margin-top: 15px;
    text-transform: uppercase;
	color: #000; 
	align-items: center;
	text-align: left;
	font-size: 85px;
	word-break: break-all;
	line-height: 1;
	/* 可选：控制大字号行高 */
}
.box6 p { 
    font-weight: bolder;
	color: #000;
	margin: 0;
	align-items: center;
	text-align: right;
	font-size: 230px;
	word-break: break-all;
	line-height: 1;
    margin-top: 60px;

}

.box7 p {
    font-family: 'Gotham', Arial, sans-serif;
    margin: 0; 
    text-transform: uppercase;
	color: #000; 
	align-items: center;
	text-align: right;
	font-size: 85px;
	word-break: break-all;
	line-height: 1;
	/* 可选：控制大字号行高 */
}

.text-block h3 {
	margin: 10px 0 0;
}

.image-block {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.image-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.image-block span {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: white;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 5px 10px;
	border-radius: 5px;
}
 .contact-container {
    display: flex;
    align-items: center;  
    gap: 15px;  
  }
  .contact-icon {
    font-size: 24px;  
    color: #fff;  
  }
  .contact-text p {
    margin: 0;  
  }
  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* 黑色半透明背景 */
  color: white;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s, visibility .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay p {
  text-transform: uppercase;
  font-size: 36px;
  font-family: 'Gotham', Arial, sans-serif;
  text-align: center;
  padding: 0 20px; /* 根据需要调整 */
}

.box3:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.box4:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.box5:hover .overlay {
  visibility: visible;
  opacity: 1;
}
 /*响应式*/
@media (max-width: 768px) {
	.content-box {
		grid-template-columns:  repeat(12, 1fr);  
	}

	.image-block, .text-block {
		text-align: center;  
	}

	.box1 {
	    grid-column: 1/13;
		grid-row: 1 / 4; 
		margin-bottom: 20px; 
	}
	 .box2 {
	    grid-column: 1/13;
		grid-row: 4/7;  
		margin-bottom: 20px; 
	}
	.box3{
	    grid-column: 1/13;
		grid-row: 7/10;  
		margin-bottom: 20px; 
	}
	.box4 {
	    grid-column: 1/13;
		grid-row: 10/13;  
		margin-bottom: 20px; 
	}
	 .box5{
	    grid-column: 1/13;
		grid-row: 13/16;  
		margin-bottom: 20px; 
	}
	.box6{
	    grid-column: 1/13;
		grid-row: 16/19;  
		margin-bottom: 20px; 
	}
	.box7{
	    grid-column: 1/13;
		grid-row: 19/21;  
		margin-bottom: 20px; 
	}

	/* 自适应字体大小 */
	.box1 p, .box2 p, .box6 p, .box7 p {
		font-size: 5vw;
		line-height: 1.2;  
	}
}

 