#footer {
  background: #F5F5F5;
}
#footer .bgfff {
  background: #fff;
}
#footer .wrap {
  position: relative;
}
#footer .toTop {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  background-image: linear-gradient(to right, #d8c99e, #907f56);
  transform: translateY(-50%);
  font-size: 12px;
  z-index: 9;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s linear;
}
#footer .toTop:hover {
  transform: translateY(-60%);
}
#footer .footer_t .logo img {
  width: 210px;
}
#footer .footer_t .c_m {
  display: flex;
  margin-left: 80px;
  justify-content: flex-end;
}
#footer .footer_t .c_m .list {
  flex: 0 0 auto;
  margin-right: 80px;
}
#footer .footer_t .c_m .list svg {
  width: 14px;
}
#footer .footer_t .c_m .list a {
  color: #666;
  position: relative;
}
#footer .footer_t .c_m .list a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s linear;
  background: var(--textColor);
}
#footer .footer_t .c_m .list a:hover {
  color: var(--textColor);
}
#footer .footer_t .c_m .list a:hover::after {
  width: 100%;
}
#footer .footer_t .c_m .list:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(8em + 40px);
}
#footer .footer_t .c_m .list:nth-child(2) ul li {
  width: 4em;
  margin-right: 40px;
}
#footer .footer_t .c_m .list:nth-child(2) ul li:nth-child(2n) {
  margin-right: 0;
}
#footer .footer_t .c_m .list .tit {
  transition: all 0.2s linear;
}
#footer .footer_t .c_m .list .tit a {
  color: #333;
  font-weight: 600;
}
#footer .footer_t .c_m .list .tit svg {
  transition: all 0.2s linear;
}
#footer .footer_t .c_m .list .tit.act a {
  color: var(--textColor);
}
#footer .footer_t .c_m .list .tit.act svg {
  transform: rotate(90deg);
}
#footer .footer_t .c_m .list .tit.act svg path {
  fill: var(--textColor);
}
#footer .footer_t .c_m .list li {
  line-height: 2;
}
#footer .footer_t .c_l {
  flex: 1;
}
#footer .footer_t .share {
  flex: 0 0 auto;
}
#footer .footer_t .share a {
  margin-left: 20px;
  width: 24px;
  height: 24px;
  background: #ccc;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s linear;
  position: relative;
}
#footer .footer_t .share a > img {
  width: 90%;
  transition: all 0.4s linear;
  filter: brightness(0) invert(1);
}
#footer .footer_t .share a .info {
  width: 140px;
  padding: 10px;
  position: absolute;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  display: none;
  z-index: 2;
  background-color: #fff;
}
#footer .footer_t .share a .info img {
  width: 100%;
}
#footer .footer_t .share a:hover img {
  filter: none;
}
#footer .footer_t .share a:hover .info {
  display: block;
  animation-delay: 1s;
  animation: tab_ani 1s;
}
#footer .footer_f .c_l {
  flex: 0 0 auto;
}
#footer .footer_f .c_l .tit {
  color: #fff;
}
#footer .footer_f .c_l form div {
  position: relative;
}
#footer .footer_f .c_l form input {
  padding: 24px 30px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 350px;
  border: none;
  transition: all 0.2s linear;
  color: #fff;
}
#footer .footer_f .c_l form input:focus {
  background: rgba(255, 255, 255, 0.1);
}
#footer .footer_f .c_l form .sub {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  display: flex;
}
#footer .footer_f .c_l form .sub img {
  width: 18px;
}
#footer .footer_map {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#footer .footer_map a {
  position: relative;
  color: #333;
}
#footer .footer_map a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s linear;
  background: var(--textColor);
}
#footer .footer_map a:hover {
  color: var(--textColor);
}
#footer .footer_map a:hover::after {
  width: 100%;
}
#footer .footer_f {
  border: none;
}
#footer .footer_f p,
#footer .footer_f a {
  color: #999;
}
@keyframes tab_ani {
  0% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0px);
    opacity: 1;
  }
}
@media screen and (max-width: 1600px) {
  #footer .footer_t .logo img {
    width: 180px;
  }
  #footer .footer_t .c_m .list:nth-child(2) ul li {
    margin-right: 2vw;
  }
  #footer .footer_t .c_m .list {
    margin-right: 2vw;
  }
  #footer .footer_t .c_m .list:nth-child(2) ul li {
    width: auto;
    min-width: 4em;
  }
  #footer .footer_t .c_m {
    margin-left: 4vw;
  }
}
@media screen and (max-width: 1440px) {
  #footer .footer_t .logo img {
    width: 140px;
  }
  #footer .footer_t .share a .info {
    width: 100px;
  }
}
@media screen and (max-width: 1200px) {
  #footer .footer_t .logo img {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer_t .c_m .list ul{
      padding-left: 1em;
  }
  #footer .footer_t .c_l {
    flex-wrap: wrap;
    flex: 0 0 100%;
  }
  #footer .footer_t .c_m .list:nth-child(2) ul{
      width: 100%;
  }
    #footer .footer_t .c_m .list  ul li a{
        display: block;
        width: 100%;
    }
  #footer .footer_t .c_m .list:nth-child(2) ul li{
      width: 100%;
  }
  #footer .logo {
    margin: auto;
  }
  #footer .footer_t .c_m .list {
    flex: 0 0 100%;
    margin-right: 0;
    padding: 4px 0;
  }
  #footer .footer_t .c_m {
    flex-wrap: wrap;
    flex: 0 0 100%;
    margin: 4vw 0 0 0;
  }
  #footer .footer_t .c_m .list .tit svg path {
    fill: #333;
  }
  #footer .footer_t .share {
    flex: 0 0 100%;
    justify-content: center;
    margin-top: 4vw;
  }
  #footer .footer_t .share a:first-child {
    margin-left: 0;
  }
  #footer .dis_ju_sp {
    flex-wrap: wrap;
  }
  #footer .footer_t .c_m .list:nth-child(2) ul,
  #footer .footer_t .c_m .list ul {
    display: none;
  }
  #footer .footer_map {
    display: flex;
    justify-content: center;
  }
  #footer .footer_map .dis_flex {
    flex-wrap: wrap;
            justify-content: center;
  }
}
