html,
body {
  padding: 0;
  margin: 0;
}

header {
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 999;
  font-size: 14px;
}
.header-first {
  display: flex;
  align-items: center;
  color: rgba(0, 131, 239, 1);
  font-size: 20px;
}
.header-first .logo {
  height: 30px;
}
.header-second {
  background-image: linear-gradient(
    90deg,
    rgba(204, 236, 253, 1) 0,
    rgba(255, 255, 255, 1) 17.446631%,
    rgba(255, 255, 255, 1) 88.910645%,
    rgba(195, 231, 250, 1) 100%
  );
  border-bottom: 1px solid #eeeeee;
}
.header-inner {
  width: 1200px;
  height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-right {
  color: rgba(0, 131, 239, 1);
  font-size: 20px;
}

.content {
  width: 940px;
  margin: auto;
  padding-top: 100px;
}
.title {
  font-size: 30px;
  color: rgba(0, 131, 239, 1);
  margin-bottom: 20px;
}
.name {
  font-size: 20px;
}
.content p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 20px;
}
