@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

body,
html {
  background-color: #f4f4f4;
  overflow-x: hidden;
}

.ellipsis {
  white-space: nowrap;
  /* 防止文本换行 */
  overflow: hidden;
  /* 隐藏溢出的内容 */
  text-overflow: ellipsis;
  /* 显示省略符号来代表被修剪的文本 */
}

.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ellipsis3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.header-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  height: 100px;
  z-index: 100;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header-nav .logo {
  width: 505px;
  height: 71px;
}

.header-nav .nav-box {
  display: flex;
  align-items: center;
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 500;
}

.header-nav .nav-box .nav-li {
  padding: 0 36px;
  color: #1A1A1A;
  text-decoration: none;
  cursor: pointer;
}

.header-nav .nav-box .nav-li.actived {
  position: relative;
  color: #083EC7;
}

.header-nav .nav-box .nav-li.actived::after {
  position: absolute;
  content: '';
  left: calc(50% - 16px);
  bottom: -32px;
  width: 32px;
  height: 6px;
  background: #083EC7;
  border-radius: 3px;
}

.header-nav .nav-box .nav-li:hover {
  color: #083EC7;
  animation: color 0.5s;
}

.footer {
  font-size: 24px;
  padding-top: 120px;
  background-color: #fff;
}

.footer .footer-link {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 313px;
  color: #fff;
  background: #083EC7;
}

.footer .footer-link .logo {
  width: 408px;
  height: 185px;
}

.footer .footer-link .links {
  font-size: 26px;
  line-height: 36px;
}

.footer .footer-link .links > div {
  margin-bottom: 20px;
}

.footer .footer-link .links > div:last-child {
  margin-bottom: 0;
}

.footer .footer-link .qrcode {
  width: 174px;
  height: 174px;
  border: 2px solid #FFFFFF;
}

.footer .copyright {
  color: #1A1A1A;
  font-size: 20px;
  text-align: center;
  padding: 12px 0;
}
