/**
 * 颜色
 */
.fj-language-box {
  position: fixed;
  top: 0;
  width: 100%;
  height: 83px;
  background: #fff;
  z-index: 99999999;
  justify-content: center;
  box-shadow: 0px 0px 10px 0px rgba(74, 58, 136, 0.2);
  display: none;
}
.fj-language-box > div {
  position: relative;
  display: inline-block;
}
.fj-language-box .tips {
  max-width: 600px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  color: #17191D;
  opacity: 0.8;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  height: 100%;
}
.fj-language-box .tips > span {
  display: inline-block;
}
.fj-language-box .selecter {
  width: 200px;
  height: 40px;
  top: 22px;
  margin-left: 50px;
  color: #17191D;
  border-radius: 10px;
  background: #f3f3f7;
  cursor: pointer;
  padding-left: 5px;
  line-height: 40px;
}
.fj-language-box .selecter > :hover {
  background: #e9e9ed;
  box-shadow: none;
  transition: all 0.3s;
}
.fj-language-box .selecter .current {
  padding-left: 10px;
  width: 100%;
}
.fj-language-box .selecter .current > div {
  display: inline-block;
}
.fj-language-box .selecter .current .text {
  width: 80%;
}
.fj-language-box .selecter .current .icon {
  width: 26px;
}
.fj-language-box .selecter .items {
  display: none;
  background: #fff;
  width: 200px;
  border: 1px solid #e2e6e6;
  border-radius: 8px;
  padding: 10px 0;
}
.fj-language-box .selecter .items .item {
  padding-left: 10px;
}
.fj-language-box .selecter .items .item:hover {
  background: #f3f3f7;
}
.fj-language-box .btn {
  height: 40px;
  line-height: 40px;
  padding: 0 35px;
  border-radius: 10px;
  margin-right: 36px;
  top: 22px;
  margin-left: 10px;
  background: #FF822C;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
}
.fj-language-box .btn:hover {
  background: #ff6412;
}
.fj-language-box .close {
  right: 6px;
  top: 33px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}
.fj-language-box .close:hover svg path {
  fill: #1A1B1C;
  transition: all 0.3s;
}
@media screen and (max-width: 1040px) {
  .fj-language-box .tips {
    max-width: 600px;
  }
  .fj-language-box .selecter {
    width: 140px;
  }
  .fj-language-box .selecter .current .text {
    width: 70%;
  }
  .fj-language-box .selecter .items {
    width: 140px;
  }
}
@media screen and (max-width: 860px) {
  .fj-language-box .tips {
    width: calc(100% - 330px);
    padding-left: 20px;
  }
  .fj-language-box .btn {
    padding: 0 10px;
  }
}
@media screen and (max-width: 640px) {
  .fj-language-box {
    display: none !important;
  }
}
/*# sourceMappingURL=language.css.map */