#card-container {
  margin-top: 120px !important;
}

.card-row {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.card-col {
  height: 425px;
  background-color: #fff;
  border-radius: 20px;
  padding-bottom: 15px;
}

.card-col:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* 添加一个黑色阴影 */
}

.card-col img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  cursor: pointer;
}

.card-col .all-content h4 {
  text-align: left;
  color: #003400;
  margin: 25px 0;
  font-size: 26px;
  line-height: 31px;
  font-family: Value-Serif-Bold, Halant, Vollkorn, Georgia, sans-serif;
  font-weight: 700;
  padding: 0 15px;
  border: 0;

}
.card-col .all-content {
  padding: 0 0 10px 0!important;
}
.card-col .all-content .content {
  text-align: left;
  padding: 0 15px;
}
/* 图片放大后的样式 */
.img-zoom-view {
  max-width: 100%;
}

/* 模态框样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
/* 模态框内容样式 */
.modal-content {
  text-align: center;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 模态框内部图片样式 */
.modal img {
  /* display: block;
  margin: 0 auto; */
  max-width: 100%;  
  height: auto;
}

/* 关闭按钮样式 */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}