* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Microsoft YaHei, PingFang SC, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

ul li {
  list-style: none;
}

em {
  font-style: normal;
}

img {
  display: block;
  border-style: none;
  pointer-events: none;
}

.page-container {
  width: 100%;
  height: auto;
}
.page-container .header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  line-height: 1;
  background-color: rgb(255, 255, 255);
}
.page-container .header-container .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
}
.page-container .header-container .header-wrapper .header-left {
  display: flex;
  align-items: center;
}
.page-container .header-container .header-wrapper .header-left .item-image {
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .header-container .header-wrapper .header-left .item-text {
  font-size: 26px;
  font-weight: 600;
  color: rgb(42, 42, 48);
  margin-left: 20px;
}
.page-container .header-container .header-wrapper .header-right {
  display: flex;
  align-items: center;
}
.page-container .header-container .header-wrapper .header-right .item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 42px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  padding: 0 40px;
  border-radius: 42px;
  background: linear-gradient(to right, rgb(0, 200, 252), rgb(0, 90, 235));
  cursor: pointer;
}
.page-container .body-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-image: url("../images/bg.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: rgb(224, 240, 255);
}
.page-container .body-container .body-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  line-height: 1;
  margin: 90px 0;
}
.page-container .body-container .body-header .head-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-container .body-container .body-header .head-left .item-text {
  font-size: 55px;
  font-weight: 600;
  letter-spacing: 2px;
}
.page-container .body-container .body-header .head-left .item-desc {
  line-height: 36px;
  font-size: 19px;
  color: rgb(82, 82, 88);
  font-weight: 600;
  margin-top: 35px;
}
.page-container .body-container .body-header .head-left .item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  width: 320px;
  height: 82px;
  font-size: 35px;
  color: rgb(255, 255, 255);
  margin-top: 35px;
  border-radius: 80px;
  background: linear-gradient(to right, rgb(0, 200, 252), rgb(0, 90, 235));
  cursor: pointer;
}
.page-container .body-container .body-header .head-left .info-box {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.page-container .body-container .body-header .head-left .info-box .info-item {
  display: flex;
}
.page-container .body-container .body-header .head-left .info-box .info-item:not(:first-of-type) {
  margin-top: 10px;
}
.page-container .body-container .body-header .head-left .info-box .info-item .item-label {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  color: rgb(42, 42, 48);
}
.page-container .body-container .body-header .head-left .info-box .info-item .item-label:first-child {
  width: 180px;
}
.page-container .body-container .body-header .head-right {
  flex: 0 0 auto;
  margin-left: 100px;
}
.page-container .body-container .body-header .head-right .item-image {
  width: auto;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .body-container .body-list {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 1;
  padding: 90px 0 60px;
  background-color: rgba(255, 255, 255, 0.5);
}
.page-container .body-container .body-list .list-box {
  display: flex;
  justify-content: space-between;
  width: 1200px;
}
.page-container .body-container .body-list .list-box .list-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: calc(25% - 30px);
  padding: 0 10px 0 15px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 85, 255, 0.15);
  background: linear-gradient(to bottom, rgba(0, 85, 255, 0.03) 0%, rgb(255, 255, 255) 45%);
}
.page-container .body-container .body-list .list-box .list-item .item-image {
  position: absolute;
  top: -40px;
  height: 80px;
}
.page-container .body-container .body-list .list-box .list-item .item-text {
  font-size: 24px;
  font-weight: 600;
  color: rgb(62, 62, 68);
  margin-top: 60px;
}
.page-container .body-container .body-list .list-box .list-item .item-label {
  font-size: 16px;
  color: rgb(142, 142, 148);
  margin: 15px 0 30px;
}
.page-container .body-container .body-content {
  display: flex;
  flex-direction: column;
  width: 1200px;
  line-height: 1;
  padding: 75px 0;
}
.page-container .body-container .body-content .item-title {
  display: flex;
  justify-content: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 75px;
}
.page-container .body-container .body-content .module-box {
  display: flex;
  align-items: center;
}
.page-container .body-container .body-content .module-box:not(:first-of-type) {
  margin-top: 30px;
}
.page-container .body-container .body-content .module-box .module-photo {
  flex: 0 0 auto;
}
.page-container .body-container .body-content .module-box .module-photo:not(:first-of-type) {
  margin-left: 110px;
}
.page-container .body-container .body-content .module-box .module-photo .item-image {
  height: 390px;
}
.page-container .body-container .body-content .module-box .module-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-container .body-container .body-content .module-box .module-text:not(:first-of-type) {
  margin-left: 110px;
}
.page-container .body-container .body-content .module-box .module-text .item-text {
  font-size: 32px;
  font-weight: 600;
}
.page-container .body-container .body-content .module-box .module-text .item-label {
  width: 100%;
  line-height: 32px;
  font-size: 18px;
  color: rgb(62, 62, 68);
  font-weight: 600;
  margin-top: 45px;
}
.page-container .body-container .body-content .module-box .module-text .item-label em {
  position: relative;
  top: -1px;
  font-size: 18px;
  font-weight: normal;
  margin: 0 5px;
}
.page-container .footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 335px;
  background-image: url("../images/bg-1.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}
.page-container .footer-container .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 1200px;
  line-height: 1;
}
.page-container .footer-container .footer-wrapper .item-text {
  font-size: 58px;
  font-weight: 600;
  color: transparent;
  letter-spacing: 2px;
  background-image: linear-gradient(to right, rgb(0, 200, 250), rgb(0, 90, 235));
  background-clip: text;
  -webkit-background-clip: text;
}
.page-container .footer-container .footer-wrapper .item-label {
  font-size: 18px;
  font-weight: 600;
  color: rgb(82, 82, 88);
  letter-spacing: 5px;
  margin-top: 20px;
}
.page-container .footer-container .footer-wrapper .item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  width: 320px;
  height: 82px;
  font-size: 35px;
  color: rgb(255, 255, 255);
  margin-top: 35px;
  border-radius: 80px;
  background: linear-gradient(to right, rgb(0, 200, 252), rgb(0, 90, 235));
  cursor: pointer;
}
.page-container .footer-container .footer-copyright {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}
.page-container .footer-container .footer-copyright .item-text {
  font-size: 14px;
  color: rgb(42, 42, 48);
}
.page-container .footer-container .footer-copyright .item-box {
  display: flex;
  margin-top: 5px;
}
.page-container .footer-container .footer-copyright .item-box .item-text {
  font-size: 14px;
  color: rgb(42, 42, 48);
}
.page-container .footer-container .footer-copyright .item-box .item-text:not(:first-of-type) {
  margin-left: 5px;
}
.page-container .footer-container .footer-copyright .item-box .item-link {
  font-size: 14px;
  color: rgb(42, 42, 48);
  text-decoration: none;
  margin-left: 5px;
}
.page-container .footer-container .footer-copyright .item-box .item-link:hover {
  color: rgb(0, 90, 235);
}/*# sourceMappingURL=index.css.map */