/* 底部 */
.footer_box {
  width: 100%;
  background: #0C1729;
  border-top: 10px solid #3772FB;
  padding: 0 260px;
}

.footer_box .footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_box .footer_top .logo {
  width: 112px;
  height: auto;
  cursor: pointer;
}

.footer_box .footer_top .logo img {
  width: 100%;
  height: auto;
}

.footer_box .footer_top .info_box {
  display: flex;
  align-items: center;
  gap: 0 44px;
}

.footer_box .footer_top .info_box>div {
  display: flex;
  align-items: center;
  /* cursor: pointer; */
}

/* .footer_box .footer_top .info_box>div:hover div{
  color: #3772FB;
} */
.footer_box .footer_top .info_box>div img {
  width: 11px;
  height: auto;
  margin-right: 10px;
}

.footer_box .footer_top .info_box>div>div {
  font-size: 14px;
  color: #ffffff;
}

.footer_box .footer_bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_box .copyright {
  font-size: 14px;
  color: #ffffff;
}

/* .footer_box .copyright:hover{
  color: #3772FB;
} */
.footer_box .footer_bottom .footer_link {
  display: flex;
  align-items: center;
}

.footer_box .footer_bottom .footer_link .link_item {
  padding: 0 16px;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
}

.footer_box .footer_bottom .footer_link .link_item:nth-of-type(1) {
  padding-left: 0;
}

.footer_box .footer_bottom .footer_link .link_item:last-child {
  padding-right: 0;
}

.footer_box .footer_bottom .footer_link .line {
  width: 1px;
  height: 10px;
  background: #ffffff;
  padding: 0;
}

.footer_box .footer_bottom .footer_link .link_item:hover {
  color: #3772FB;
}


/* PC端右侧悬浮框 */
.f_service {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 50%;
  width: 80px;
  background: #fff;
  z-index: 2222;
  transform: translate(0px, 50%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  border-radius: 40px;
}

.f_service .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  /* 主色，可改 */
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
  border-radius: 0px;
}
.f_service .btn:first-child{
  border-radius: 40px 40px 0 0;
  padding-top: 15px;
  height: 95px;
}

.f_service .btn:active {
  border: none;
  border-bottom: 1px solid #eee;
}

.f_service .btn:last-child {
  border-bottom: none;
  border-radius: 0 0 40px 40px;
  padding-bottom: 15px;
  height: 95px;
}

.f_service .btn a {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.f_service .btn a img {
  width: 30px;
  height: 30px;
}

.f_service .btn a p {
  padding-top: 5px;
  margin-bottom: 0px;
}

.f_service .btn .weixin_erweima {
  display: none;
}

.f_service .tel:hover .weixin_erweima {
  display: block;
  position: absolute;
  right: 90px;
  top: 255px;
  width: 120px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.f_service .tel:hover .weixin_erweima p {
  margin-bottom: 10px;
}

.f_service .weixin:hover .weixin_erweima {
  display: block;
  position: absolute;
  right: 90px;
  top: 135px;
  width: 120px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.f_service .weixin:hover .weixin_erweima img {
  width: 100px;
  height: 100px;
}
.f_service .weixin:hover .weixin_erweima span {
  margin-top: 10px;
}
/* 移动端底部按钮 */
.bottom_btn_box{
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 8000;
}

.bottom_btn_box .winbtn_list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px;
  box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.15);
  gap: 10px;
}
.bottom_btn_box .winbtn_list .btn{
  width: 50%;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(145.12deg, #2EB8FF 8.2%, #3772FB 54.54%);
  color: #fff;
  cursor: pointer;
  border: none;
  padding: 0;
}
.bottom_btn_box .winbtn_list .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 40px;
    gap: 5px;
}

.bottom_btn_box .winbtn_list .btn a img {
    width: 20px;
    height: 20px;
}
.bottom_btn_box .winbtn_list .btn a p {
    margin-bottom: 0px;
    font-size: 14px;
}

@media (max-width: 1599.98px) {
  .footer_box {
    padding: 0 120px;
  }
}

@media (max-width: 1199.98px) {
  .footer_box {
    padding: 0 40px;
  }
}

@media (max-width: 767.98px) {
  .footer_box {
    padding: 0 16px;
    /* padding-bottom: 60px; */
  }

  .footer_box .footer_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px 0;
  }

  .footer_box .footer_top .info_box {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
  }

  .footer_box .footer_top .info_box>div {
    align-items: flex-start;
  }

  .footer_box .footer_top .info_box>div img {
    margin-top: 4px;
  }

  .footer_box .footer_top .info_box>div>div {
    line-height: 20px;
    word-break: break-all;
  }

  .footer_box .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
  }

  .f_service{
    display: none;
  }

  /* .bottom_btn_box{
    display: block;
  } */
}

@media (max-width: 479.98px) {
  .footer_box .footer_top .logo {
    width: 96px;
  }

  .footer_box .footer_bottom .footer_link .link_item {
    padding: 0 12px;
  }
}