ul,
ol,
p,
h1,
h2,
h5 {
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: normal;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  color: #474157;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #474157;
}
.container {
  min-width: 1200px;
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid #efefef;
}
header > section {
  display: flex;
  align-items: center;
}
header > section .logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
header > section .logo > img {
  height: 60px;
  border-radius: 25px;
  overflow: hidden;
}
header > section .logo > span {
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 0.5rem;
}
header > section .menus {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header > section .menus > li {
  margin-left: 1rem;
  position: relative;
}
header > section .menus > li a {
  padding: 0 10px;
  line-height: 60px;
  font-weight: 500;
  font-size: 16px;
  display: block;
  letter-spacing: 1px;
  text-decoration: none;
}
header > section .menus .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #26b178;
  border-radius: 10px;
  z-index: 1;
}
.home-body {
  min-width: 1200px;
  background-image: url("../images/body_bg.jpg");
  background-repeat: no-repeat;
  background-position: center 0px;
  background-size: 100%;
}
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 800px;
}
.banner .context {
  flex: 1;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
}
.banner .context h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 4px;
  line-height: 2;
}
.banner .context h5 {
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.7;
}
.banner .context .image {
  padding: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  width: 160px;
  height: 160px;
  margin-top: 3rem;
}
.banner .context .image > img {
  height: 100%;
}
.banner .image img {
  height: 600px;
}
footer {
  background: #333;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
footer a {
  color: rgba(255, 255, 255, 0.7);
}
footer a:hover {
  color: #fff;
}
.home-introduce {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.home-introduce-title {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  line-height: 4;
}
.home-introduce .cells {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.home-introduce .cells .cell {
  width: 24%;
  margin: 0.5%;
  border: 1px solid #efefef;
  padding: 15px;
  border-radius: 10px;
}
.home-introduce .cells .cell h2 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: 0.35s;
}
.home-introduce .cells .cell p {
  font-size: 14px;
  font-weight: 300;
  color: #111;
  line-height: 1.6;
}
.home-introduce .cells .cell:hover {
  background: linear-gradient(to bottom, #fff, #f5f5f5);
}
.home-introduce .cells .cell:hover h2 {
  color: #26b178;
}
/*# sourceMappingURL=style.css.map */