html,
body {
  font-size: 18px;
}
a {
  color: #333;
  line-height: 33px;
}

.modal-title {
  font-weight: 900;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-body img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
}
.modal-body p {
  font-size: 14px;
}

#banner {
  padding: 80px 0;
  background-color: #f1f1f1;
  background-image: url(../images/banner_bg.jpg);
  background-size: cover;
  background-position: center center;
  color: #f1f1f1;
}
#banner .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#banner .content div {
  margin-left: 50px;
}
#banner .content div h1 {
  font-size: 54px;
  margin: 0 0 30px 0;
  padding: 0;
  letter-spacing: 10px;
  line-height: 1;
  text-shadow: 2px 2px 0 #000000;
}
#banner .content div h1 span {
  color: orangered;
  font-weight: 900;
  font-size: 100px;
  display: inline-block;
  transform: translateY(15px);
}
#banner .content div p {
  font-size: 40px;
  opacity: 0.8;
  text-shadow: 2px 2px 0 #000000;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 80px;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 900;
  color: #004a81;
  letter-spacing: 10px;
}
.section-title small {
  font-size: 18px;
  color: #999999;
}

p.section_content {
  padding: 0 120px;
  text-indent: 2em;
  font-size: 18px;
  line-height: 2;
}

ul.rwlist {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(10, 1fr);
  margin: 0;
  padding: 0;
}
ul.rwlist li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f0f9ff;
  border-top: 5px solid orangered;
}
ul.rwlist li div.img {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 10px;
  background-color: #004a81;
  text-align: center;
}
ul.rwlist li div.img img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 100%;
  border: 5px solid rgba(255, 255, 255, 0.75);
}

ul.rwlist li div.content h3 {
  font-size: 18px;
  margin: 15px 0;
  font-weight: 900;
}
ul.rwlist li div.content div {
  /* height: 200px; */
  overflow: hidden;
  display: none;
}
ul.rwlist li div.content p {
  font-size: 14px;
}
ul.rwlist li div.content p:last-of-type {
  margin-bottom: 0;
}

ul.zflist {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
}
ul.zflist .item {
  display: flex;
  column-gap: 30px;
  flex-direction: row;
  align-items: center;
}
ul.zflist .item > a.img_a {
  flex: 3;
  display: block;
  height: 150px;
  border-radius: 5px;
  overflow: hidden;
}
ul.zflist .item .img_a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul.zflist .item > div {
  flex: 6;
}
ul.zflist .item > div p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: #666666;
  margin-top: 30px;
}

#copy {
  padding: 50px 0;
  background: #004a81;
  margin: 80px 0 0;
}
#copy > p {
  font-size: 14px;
}
#copy img {
  width: 150px;
}

/* 手机专用（小于 768px） */
@media (max-width: 767px) {
  #copy {
    padding: 30px 0;
    margin: 50px 0 0;
  }
  #copy img {
    width: 120px;
  }
  #copy p {
    font-size: 14px;
    line-height: 2;
    margin: 0;
  }
  #banner {
    padding: 50px 0;
  }
  #banner .content {
    flex-direction: column;
  }
  #banner .content img {
    width: 30%;
  }
  #banner .content div {
    margin-left: 0px;
    margin-top: 10px;
    text-align: center;
  }
  #banner .content div h1 {
    font-size: 24px;
    margin: 0 0 20px 0;
    letter-spacing: 0px;
  }
  #banner .content div h1 span {
    color: orangered;
    font-size: 60px;
    transform: translateY(5px);
  }
  #banner .content div p {
    font-size: 20px;
  }
  .section-title {
    margin-bottom: 30px;
    margin-top: 50px;
  }
  .section-title h2 {
    font-size: 22px;
    letter-spacing: 0px;
  }
  .section-title small {
    display: none;
    font-size: 10px;
    line-height: 1;
  }
  p.section_content {
    padding: 0;
    font-size: 16px;
  }
  ul.rwlist {
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
  ul.rwlist li {
    border-top-width: 5px;
  }
  ul.rwlist li div.content h3 {
    font-size: 16px;
  }
  ul.rwlist li div.img img {
    width: 85px;
    height: 85px;
    border: 3px solid #ffffff;
  }

  ul.zflist {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  ul.zflist .item {
    column-gap: 20px;
  }
  ul.zflist .item > a.img_a {
    flex: 3;
    height: 80px;
  }
  ul.zflist .item > div h3 {
    margin: 0;
    padding: 0;
    font-weight: 900;
    font-size: 16px;
  }
  ul.zflist .item > div p {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
  }
}
/* 小屏幕（平板，大于等于 768px） */
@media (min-width: 768px) {
}
/* 中等屏幕（桌面显示器，大于等于 992px） */
@media (min-width: 992px) {
}
/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media (min-width: 1200px) {
  .container {
    min-width: 1170px;
    width: 90%;
  }
}
