/* 顶部 */
.head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.head .w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.head .in,
.head .nav {
  display: flex;
  align-items: center;
}

.head .nav li {
  position: relative;
}

.head .nav li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}

.head .nav li>a.on,
.head .nav li>a:hover {
  border-color: #DCE6FC;
}

.head .nav li>a img {
  display: block;
  width: 14px;
  margin-left: 5px;
}

.head .nav li:hover .ul2 {
  display: block;
}

.head .nav .ul2 {
  display: none;
  position: absolute;
  top: 58px;
  left: 0;
  width: 320px;
  padding: 20px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #fff;
}

.head .nav .ul2 .item {
  display: flex;
  align-items: start;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: transparent;
}

.head .nav .ul2 .on,
.head .nav .ul2 .item:hover {
  background-color: rgba(23, 99, 255, .1);
}

.head .nav .ul2 .item img {
  width: 28px;
  margin-top: 6px;
  margin-right: 11px;
}

.head .nav .ul2 .item span {
  color: #000;
  font-size: 16px;
}

.head .nav .ul2 .item p {
  color: rgba(0, 0, 0, .45);
  font-size: 12px;
}

.head .btn {
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  color: #1763FF;
  font-size: 18px;
  text-align: center;
  margin-left: 20px;
  background-color: #fff;
  transition: all .3s;
}

.head .btn:hover {
  color: #fff;
  background-color: #0545d9;
}

/* banner */
.banner img {
  width: 100%;
}

/* 底部 */
.foot {
  width: 100%;
  padding: 70px 0;
  box-sizing: border-box;
  background-color: #242A37;
}

.foot .w {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.foot .logo img {
  width: 130px;
}

.foot .item span {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.foot .item a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.foot .item a:hover {
  color: #1763FF;
}

.foot .item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.foot .item img {
  width: 80px;
}

.ban {
  width: 100%;
  height: 57px;
  line-height: 57px;
  background: #242A37;
  border-top: 1px solid #2D323F;
}

.ban p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: center;
}