.gallery {
  width: 100%;
  height: 16vw;
  background: url("../img/gallery.png") no-repeat;
  background-size: cover;
}
/* ********************************************** */
/* 副页 */
.subpage_left {
  float: left;
  width: 21%;
}
.subpage_left .program_name {
  line-height: 70px;
  background: #003f6b;
  color: #fff;
  padding-left: 27px;
  font-size: 24px;
}
.program_list {
  box-sizing: border-box;
  box-shadow: 0px 3px 8.2px 1.8px rgba(90, 92, 90, 0.1);
}
.program_list li a {
  font-size: 16px;
  line-height: 40px;
  display: block;
  padding-left: 25px;
  padding-right: 25px;
  box-sizing: border-box;
}
.program_list li:hover a {
  color: #003f6b;
  font-weight: bolder;
}
.subpage_right {
  float: right;
  width: 75%;
  box-sizing: border-box;
}
.subpage_right .subpage_right_title {
  padding-bottom: 10px;
  border-bottom: solid 1px #dddddd;
  position: relative;
}
.subpage_right .subpage_right_title .section_name {
  float: left;
  line-height: 1;
  font-size: 20px;
  font-weight: bolder;
  color: #003f6b;
  position: relative;
}
.subpage_right .subpage_right_title .address {
  float: right;
  line-height: 20px;
  font-size: 14px;
  color: #999;
  padding-left: 30px;
}
.subpage_right .subpage_right_title::before {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  background-color: #003f6b;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .subpage_left {
    display: none;
  }
  .subpage_right {
    float: none;
    width: 100%;
  }
  .subpage_right_title .section_name {
    float: none;
  }
  .subpage_right_title .address {
    float: none;
    padding-left: 0;
    margin-top: 10px;
  }
}
/* ********************************************** */
.list {
  margin-top: 20px;
}
.list>li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.list>li a {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}
.list>li a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #ffcc00;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.list>li span {
  padding-left: 15px;
  color: #999;
  font-size: 14px;
  line-height: 1;
}
.list>li:hover a {
  color: #00367c;
  font-weight: bold;
}
.list>li:first-child {
  padding-top: 0;
}
.article {
  margin-top: 40px;
}
.article .article_title {
  margin-bottom: 20px;
}
.article .article_title h1 {
  font-size: 26px;
  line-height: 30px;
  text-align: left;
  color: #000;
  margin-bottom: 10px;
}
.article .article_title .about {
  display: flex;
  justify-content: left;
  line-height: 40px;
  border-bottom: 1px solid #dddddd;
  color: #999;
  font-size: 14px;
}
.article .article_title .about .line {
  background-color: #dddddd;
  margin: 0 20px;
}
.article .content {
  min-height: 600px;
  margin-top: 10px;
}
.article .content img {
  max-width: 100% !important;
}
