.container {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}

.page {
  display: flex;
  height: 100vh;
  flex-direction: column;
  overflow-y: auto;
}

.header {
  width: 100%;
}
.header .container {
  display: flex;
  height: 100px;
  color: #0098ee;
  align-items: center;
  justify-content: space-between;
}
.header .container .top-links .split {
  display: inline-block;
  margin: 0 20px;
}
.header .container .top-links .link-item {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
}
.header .container .top-links .link-item.active {
  border-bottom: 2px solid #fe8554;
  color: #fe8554;
}

.page-body {
  flex: 1;
  padding-bottom: 30px;
  background: url(../images/bg.jpg) no-repeat center top;
  background-size: 100% auto;
}

.page-container {
  padding: 0 40px;
}

.title-bar {
  display: flex;
  align-items: center;
}
.title-bar .title {
  flex: 1;
  padding: 0 10px;
  font-size: 30px;
  font-weight: bold;
  color: #16559c;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}
.banner-img {
  display: none;
}

.pannel-list {
  padding: 20px 0 60px;
  margin: 0 -15px;
  font-size: 0;
}
.pannel-list .pannel-item {
  display: inline-block;
  position: relative;
  width: 380px;
  height: 215px;
  margin: 0 15px;
  border-radius: 20px;
  font-size: 0;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.09);
  overflow: hidden;
}
.pannel-list .pannel-item .pannel-bg-img {
  position: absolute;
  right: -50px;
  bottom: -70px;
  transition: all 0.2s ease-out;
}
.pannel-list .pannel-item .pannel-info {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.pannel-list .pannel-item .pannel-info .title {
  display: flex;
  flex-direction: column;
  height: 80px;
  line-height: 36px;
  font-size: 24px;
  color: #999;
  justify-content: center;
}
.pannel-list .pannel-item.pannel1 {
  background-image: linear-gradient(to right bottom, #0194e9, #16559c);
}
.pannel-list .pannel-item.pannel1 .pannel-info .title {
  color: #fff;
}
.pannel-list .pannel-item.pannel2 {
  background-image: linear-gradient(to right bottom, #8ae4f2, #00a8b2);
}
.pannel-list .pannel-item.pannel2 .pannel-info .title {
  color: #16559c;
}
.pannel-list .pannel-item.pannel3 {
  background-image: linear-gradient(to right bottom, #ffc75c, #e76d01);
}
.pannel-list .pannel-item.pannel3 .pannel-info .title {
  color: #fff;
}
.pannel-list .pannel-item.pannel4 {
  background-image: linear-gradient(to right bottom, #beb1e7, #874bbb);
}
.pannel-list .pannel-item.pannel4 .pannel-info .title {
  color: #fff;
}
.pannel-list .pannel-item.pannel5 {
  background-image: linear-gradient(to right bottom, #f0f6ff, #09a6ff);
}
.pannel-list .pannel-item.pannel5 .pannel-info .title {
  color: #16559c;
}
.pannel-list .pannel-item:hover .pannel-bg-img {
  right: -20px;
  bottom: -50px;
}

.about-pannel {
  position: relative;
  height: 215px;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.09);
  background-color: #fff;
}
.about-pannel .about-info {
  display: flex;
  height: 100%;
  padding: 20px;
  padding-right: 420px;
  font-size: 24px;
  color: #16559c;
  align-items: center;
}
.about-pannel .pannel-bg-img {
  position: absolute;
  right: 20px;
  bottom: 0;
}

.footer {
  width: 100%;
  background-color: #455059;
}
.footer .container {
  padding: 10px;
  color: #c9c9c9;
}
.footer .copyright a {
  color: #c9c9c9;
}
.copyright {
  line-height: 19px;
}
.copyright *{
  vertical-align: middle;
}
@media (max-width: 550px) {
  .container {
    width: 100%;
  }

  .header .container {
    height: 50px;
    padding: 0 20px;
  }
  .header .container .logo-img {
    height: 30px;
  }
  .header .container .top-links .split {
    margin: 0 10px;
  }
  .header .container .top-links .link-item {
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }

  .page-body {
    background: none;
  }

  .page-container {
    padding: 0 14px;
  }

  .title-bar .icon-img {
    width: 30px;
  }
  .title-bar .title {
    font-size: 16px;
  }

  .banner-wrapper {
    height: auto;
  }
  .banner-img {
    display: block;
    width: 100%;
  }

  .pannel-list {
    padding: 10px 0;
    margin: 0 -10px;
  }
  .pannel-list .pannel-item {
    width: calc(50% - 20px);
    height: 120px;
    margin: 10px;
  }
  .pannel-list .pannel-item .pannel-bg-img {
    height: 100%;
    right: -20px;
    bottom: -20px;
  }
  .pannel-list .pannel-item .pannel-info {
    padding: 10px;
  }
  .pannel-list .pannel-item .pannel-info .icon-img {
    width: 30px;
  }
  .pannel-list .pannel-item .pannel-info .title {
    height: 40px;
    line-height: 20px;
    font-size: 12px;
  }
  .pannel-list .pannel-item:hover .pannel-bg-img {
    right: -10px;
    bottom: -10px;
  }

  .about-pannel {
    height: 120px;
    margin-top: 20px;
  }
  .about-pannel .about-info {
    padding: 10px;
    padding-right: 170px;
    font-size: 12px;
  }
  .about-pannel .pannel-bg-img {
    right: 0;
    height: 110%;
  }

  .footer {
    font-size: 12px;
  }
}
