.banner {
  background: url(https://tfile.dahe.cn/4105020005/img/jczwgk/jczwgkBanner.png) 100% no-repeat;
  height: 500px;
  overflow: hidden;
}


.main {
  padding: 55px 0;
  background: #fff;
}

.info-section {
  display: flex;
  margin-bottom: 40px;
}


.info-content {
  flex: 1;
  margin-left: 40px;
}

.info-title {
font-size: 22px;
    color: #124BB5;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 34px;
    text-align: center;
}

.info-text {
    font-size: 17px;
    color: #333;
    line-height: 29px;
    margin-top: 13px;
    margin-bottom: 13px;
    text-indent: 2em;
}

.info-highlight {
    padding: 19px 0 21px;
    font-size: 17px;
    color: #124BB5;
    height: 68px;
    background: #F1F7FF;
    text-align: center;
    line-height: 28px;
}


.section-title {
  text-align: center;
  margin-bottom: 25px;
}

.policy-section {
  margin-bottom: 40px;
}


.policy-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.policy-column {
  flex: 1;
}

.policy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 18px;
  width: 47%;
}
.policy-item:nth-child(odd) {
  margin-right: 60px;
}

.policy-item:last-child {
  border-bottom: none;
}

.policy-name {
  color: #333;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}

.policy-name:hover {
  color: #1e6fdb;
}

.policy-date {
  color: #999;
  font-size: 14px;
  white-space: nowrap;
}

/* Public Areas Section */
.areas-section {
  margin-bottom: 50px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.area-item {
  border: 1px solid #2062C3;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  color: #2062C3;
  background: #F1F7FF;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.area-item:hover {
  background: #2062C3;
  color: #fff;
  border-color: #2062C3;
}

/* Street Section */
.street-section {
  margin-bottom: 50px;
}

.street-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.street-item {
  border: 1px solid #3EA857;
  padding: 24px 10px;
  text-align: center;
  font-size: 18px;
  color: #3EA857;
  background: #EBFDEF;
  cursor: pointer;
  transition: all 0.3s;
}

.street-item:hover {
  background: #3EA857;
  color: #fff;
  border-color: #3EA857;
}



.oldModel .info-section{
  flex-direction: column;
}
.oldModel .info-content{
  margin-left: 0;
}
.oldModel .info-title,.oldModel .info-text{
  line-height: 1.5;
}
.oldModel .areas-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.oldModel .area-item{
  height: 80px;
}
.oldModel .street-item{
  height: 125px;
}