.annual_header {
  height: 712px;
  background: url(../images/annual_bg_header.png) no-repeat;
  background-size: cover;
}
.annual_header .annual_top {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.annual_header .annual_top .annual_nav {
  display: flex;
  padding-top: 15px;
}
.annual_header .annual_top .annual_nav li {
  position: relative;
  margin-left: 30px;
}
.annual_header .annual_top .annual_nav li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 50px;
  height: 2px;
  background-color: transparent;
  transform: translateX(-50%);
}
.annual_header .annual_top .annual_nav li a {
  font-size: 18px;
  color: #016bb5;
}
.annual_header .annual_top .annual_nav li:hover::before {
  background-color: #016bb5;
}
.annual_header .annual_title {
  display: flex;
  justify-content: center;
  margin-top: 160px;
}
.annual_header .annual_desc {
  height: 137px;
  background: url(../images/annual_bg_desc.png) no-repeat;
  background-size: 100% 100%;
  font-size: 20px;
  color: #fff;
  line-height: 36px;
  text-indent: 2em;
  margin-top: 78px;
}
.annual_header .annual_desc .w {
  display: flex;
  align-items: center;
  height: 100%;
}
.main {
  position: relative;
  margin-top: -100px;
  margin-bottom: 50px;
}
.main .other {
  display: flex;
  justify-content: space-between;
}
.main .other .other_item {
  width: 620px;
  height: 120px;
  background-image: linear-gradient(162deg, #d0e7f9 0%, #e4f6fd 100%);
  border-radius: 17px;
}
.main .other .other_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 26px;
  color: #015293;
  font-weight: 700;
}
.main .other .other_item a img {
  margin-left: 5px;
}
.main .module {
  margin-top: 67px;
}
.main .module .moduel_title {
  position: relative;
  text-align: center;
  font-size: 36px;
  color: #0a81c7;
  font-weight: 700;
}
.main .module .moduel_title::before {
  content: "";
  position: absolute;
  left: 229px;
  top: 50%;
  transform: translateY(-50%);
  width: 252px;
  height: 6px;
  background: url(../images/annual_bg_module_title.png) no-repeat;
  background-size: 100% 100%;
}
.main .module .moduel_title::after {
  content: "";
  position: absolute;
  right: 229px;
  top: 50%;
  transform: translateY(-50%);
  width: 252px;
  height: 6px;
  background: url(../images/annual_bg_module_title.png) no-repeat;
  background-size: 100% 100%;
  transform: rotateY(180deg);
}
.main .module .module_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 38px;
}
.main .module .module_list li {
  width: 230px;
  height: 65px;
  background-color: #f2f9fd;
  box-shadow: 3px 4px 0px 0px #85bfe3;
  border-radius: 10px;
  margin-bottom: 24px;
  transition: all 0.3s;
  margin-right: 37px;
}
.main .module .module_list li:nth-child(5n) {
  margin-right: 0;
}
.main .module .module_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  color: #333;
}
.main .module .module_list li:hover {
  transform: translateY(-5px);
}
