.hero-section {
	margin: 0;
	padding: 0;
    position: relative;
    height: 400px;
    background: url('/skin/static/images/about_banner.webp');
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    z-index: 1;
    text-align: center;
    padding: 0 15px;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
}


.breadcrumb-item a{
	color: #fff;
}
.about-section {
    padding: 50px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
    }

    /* 左右各占 50% */
    .col-half {
      line-height: 25px;
      flex: 1;
      min-width: 50%;
      box-sizing: border-box;
    }

    /* 文字区域样式 */
    .text-content {
      max-height: 400px; /* 固定高度 */
      overflow-y: auto;   /* 超出显示垂直滚动条 */
      padding: 20px;
      background-color: #f9f9f9;
    }

    /* 图片容器 */
    .img-container img {
      width: 100%;
      height: auto;
      display: block;
    }
	
	.about-info {
	    font-family: Arial, sans-serif;
	    margin-top: 50px;
	    padding: 0;
	    background-color: #f4f4f4;
	}
	
	.about-page {
	    max-width: 1000px;
	    margin: 20px auto;
	    padding: 20px;
	    background-color: #fff;
	    border-radius: 5px;
	    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	
	h2 {
	    margin-top: 0;
	    color: #333;
	}
	
	.info {
	    margin-top: 20px;
	}
	
	.about-item {
	    display: flex;
		flex-wrap: wrap;
	    align-items: center;
	    margin-bottom: 10px;
	}
	
	.label {
	    font-weight: bold;
	    width: 200px;
	    color: #c58f37;
	}
	
	.value {
		line-height: 1.5rem;
	    flex: 1;
	    color: #333;
	}
 @media (max-width: 992px) {
     .hero-section {
        height: auto;
        padding: 50px 15px;
    }
 
    .content h1 {
        font-size: 28px;
    }
    .col-half {
            min-width: 100%;
            border-right: none;
            border-bottom: none;
          }
		   .label, .value {
			      margin-top: 15px;
		          display: block; /* 改变显示方式为块级元素，使其各占一行 */
		          width: 100%; /* 占据整个容器宽度 */
		      }
 }

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 50px 15px;
    }

    .content h1 {
        font-size: 28px;
    }
    .col-half {
            min-width: 100%;
            border-right: none;
            border-bottom: none;
          }
		   .label, .value {
			      margin-top: 15px;
		          display: block; /* 改变显示方式为块级元素，使其各占一行 */
		          width: 100%; /* 占据整个容器宽度 */
		      }
}