footer {
  width: 100%;
  height: 211px;
  /*background-color: #f15e0e;*/
  /*background-image: -webkit-linear-gradient(*/
  /*  0deg,*/
  /*  rgb(241, 94, 14) 0%,*/
  /*  rgb(247, 146, 33) 100%*/
  /*);*/

  position: relative;
}

#gotop {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  background: #f15e0e;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#gotop.hide {
  opacity: 0;
  visibility: hidden;
}

.footer {
  width: 1440px;
  margin: 0 auto;
    background-color: #c285df;
    padding: 0 10px;
    box-sizing: border-box;
}
.footer-top {
  padding: 26px 0 12px 0;
  height: 148px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
}
.footer-top-left {
  display: flex;
  flex-direction: column;
}
.footer-top-left h6 {
  line-height: 30px;
  font-family: Arial, Helvetica, "Microsoft Yahei", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  margin-top: 8px;
}
.footer-top-right {
  display: flex;
  flex-direction: row;
}
.footer-top-right-item1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  margin-right: 30px;
}
.footer-top-right-item1 h6 {
  line-height: 30px;
  font-family: Arial, Helvetica, "Microsoft Yahei", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}
.footer-top-right-item2 {
  display: flex;
  flex-direction: column;
}
.footer-top-right-item2 .footer-input {
  margin-bottom: 16px;
  width: 270px;
  height: 34px;
  border: rgba(255, 255, 255, 0.5) 1px solid;
  border-radius: 18px;
  font-size: 14px;
  padding: 0 20px;
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  position: relative;
}
.footer-input svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}
.footer-bottom {
  height: 63px;
  padding: 16px 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, "Microsoft Yahei", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
  line-height: 30px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  white-space: nowrap;
}
.footer-bottom a {
  font-family: Arial, Helvetica, "Microsoft Yahei", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
  line-height: 30px;
  display: inline-block;
}
.footer-input-1,
.footer-input-2 {
  display: none;
  position: absolute;
  top: -33px;
  left: 0;
  padding: 0px 20px;
  box-sizing: border-box;
  background-color: #fff;
  width: 270px;
  z-index: 999;
  color: #333 !important;
  font-size: 12px;
  font-family: Arial, "Microsoft Yahei", Helvetica, sans-serif;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.footer-input-1 a,
.footer-input-2 a {
  color: #333 !important;
}

.footer-input:nth-child(1):hover .footer-input-1 {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  opacity: 1;
}
.footer-input:nth-child(2):hover .footer-input-2 {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  opacity: 1;
}

.footer-top-right-item2 {
  position: relative;
}