/* ======国旗样式 start ========= */
.header-lang {
  position: relative;
  z-index: 200;
  padding-left:15px;
}

.header-lang .box {
  height: 34px;
  width: 90px;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.header-lang .box em {
  margin: 0 7px;
  line-height: 18px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
}

.header-lang .box i {
  width: 15px;
  line-height: 18px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.header-lang .lang-box {
  width: 200px;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 42px;
  z-index: 200;
  background: #fff;
  transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  box-shadow: 0 0 10px rgba(63, 62, 62, 0.2);
}

.header-lang .lang-box::before {
  content: "";
  position: absolute;
  right: 37px;
  top: -8px;
  overflow: hidden;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  display: block;
}

.header-lang ul {
  max-height: 160px;
  overflow-y: scroll;
  padding: 5px 10px;
  border: 1px solid #e5e5e5;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-lang ul li {
  line-height: 20px;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
  width: 50%;
}

.header-lang ul li:last-child {
  border: none;
}

.header-lang ul li a {
  color: #333;
  font-size: 12px;
  display: block;
}

.header-lang ul li a:hover {
  color: #015198;
}

.header-lang ul li img {
  vertical-align: middle;
  margin-right: 7px;
}

.header-lang:hover .lang-box {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
/* ======国旗样式 end ========= */

/*
* ----------------------------------------------------------------------------------------
* PRELOADER
* ----------------------------------------------------------------------------------------
*/
.atf-preloader {
  background: #fff;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}
.loader {
  width: 100px;
  height: 100px;
  top: 50%;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader .loader-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.loader .loader-inner:before {
  content: "";
  display: block;
  width: 15%;
  height: 25%;
  border-radius: 100%;
  background: var(--color-primary);
  margin: 0 auto;
  animation: loading-1 1.2s infinite ease-in-out both;
}
.loader .box-2 {
  transform: rotate(30deg);
}
.loader .box-3 {
  transform: rotate(60deg);
}
.loader .box-4 {
  transform: rotate(90deg);
}
.loader .box-5 {
  transform: rotate(120deg);
}
.loader .box-6 {
  transform: rotate(150deg);
}
.loader .box-7 {
  transform: rotate(180deg);
}
.loader .box-8 {
  transform: rotate(210deg);
}
.loader .box-9 {
  transform: rotate(240deg);
}
.loader .box-10 {
  transform: rotate(270deg);
}
.loader .box-11 {
  transform: rotate(300deg);
}
.loader .box-12 {
  transform: rotate(330deg);
}
.loader .box-2:before {
  animation-delay: -1.1s;
}
.loader .box-3:before {
  animation-delay: -1s;
}
.loader .box-4:before {
  animation-delay: -0.9s;
}
.loader .box-5:before {
  animation-delay: -0.8s;
}
.loader .box-6:before {
  animation-delay: -0.7s;
}
.loader .box-7:before {
  animation-delay: -0.6s;
}
.loader .box-8:before {
  animation-delay: -0.5s;
}
.loader .box-9:before {
  animation-delay: -0.4s;
}
.loader .box-10:before {
  animation-delay: -0.3s;
}
.loader .box-11:before {
  animation-delay: -0.2s;
}
.loader .box-12:before {
  animation-delay: -0.1s;
}
@keyframes loading-1 {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/*
back-to-top
*/

.atf-progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(95, 58, 252, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.atf-progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.atf-progress-wrap::after {
  position: absolute;
  content: "↑";
  font-family: "Font Awesome 6 Free";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-weight: 700;
}
.atf-progress-wrap svg path {
  fill: none;
}
.atf-progress-wrap svg.atf-progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*
* ----------------------------------------------------------------------------------------
* 02.START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.atf-site-branding.atf-white-logo img {
  max-width: 190px;
  height: auto;

}
.atf-top-header {
  position: relative;
  z-index: 1;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}
.atf-top-header p {
  color: #c5c4c4;
  font-size: 14px;
  margin-bottom: 0rem;
}
/* .atf-top-header::after {
  background: #162017 none repeat scroll 0 0;
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: calc(55% + 0px);
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  border-right: 4px solid #fff;
} */
.atf-top-header ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.atf-header-top-auth {
  display: inline-block;
  margin-right: 10px;
}
.atf-header-top-auth a {
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}
.atf-header-top-auth a i {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  background: #fff;
  color: #6861bc;
  border-radius: 50%;
  margin-right: 10px;
}
.atf-header-top-right {
  text-align: right;
}
.atf-header-top-social {
  display: inline-block;
}
.atf-header-top-social ul li {
  display: inline-block;
  margin-left: 10px;
}
.atf-header-top-social ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}
.atf-header-top-social ul li a:hover,
.atf-header-top-auth a:hover {
  color: #fff;
}
.atf-top-header {
  background-color: #1f1f1f;
  overflow: hidden;
}
.atf-top-header .atf-top-header-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  transition: all 0.4s ease;
}
.atf-top-header .atf-top-social {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.4s ease;
  color: #fff;
  text-align: center;
}
.atf-top-social a i:hover {
  color: #fff;
}
.atf-top-social a i {
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.atf-header-top-social ul .address {
  margin-right: 20px;
}
.atf-header-top-social ul li .icon {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.atf-sticky-active .atf-top-header {
  height: 0;
}
.atf-top-header-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.atf-top-header-list li {
  margin-right: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 3px;
}
.atf-top-header-list li:last-child {
  margin-right: 0;
}
.atf-top-header-list li i {
  margin-right: 10px;
}
.atf-top-header-list li a {
  color: inherit;
}
.atf-top-header-list li a:hover {
  color: #fff;
}
.atf-site-header.atf-style1 {
  transition: all 0.4s ease;
}
.atf-site-header.atf-style1 .atf-main-header-in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 88px;
}
.atf-site-header.atf-style1.atf-sticky-active {
  background: rgba(0, 0, 0, 0.3);
  color: #fff !important;
  box-shadow: 0 0 15px rgba(244, 231, 231, 0.48);
}
.atf-nav .atf-nav-list > li > a {
  color: #fff;
}
 .atf-nav .atf-nav-list > li > a:hover,.atf-nav .atf-nav-list > li.active > a {
  color: var(--color-primary);
  text-decoration: underline;
} 

.search-lang-wrap {
  display: flex;
}
.search-wrap {
  border: 1px solid rgba(210, 210, 210, 0.4);
  border-radius: 17px;
  position: relative;
  margin-right: 10px;
}
.search-wrap .submit_text {
  width: 240px;
  height: 34px;
  padding: 0 45px 0 12px;
  background: transparent;
  color: #fff;
}
.search-wrap .submit_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  border-radius: 17px;
  height: 34px;
}
.search-wrap .submit_btn i {
  font-size: 24px;
}
.jianyi-side-bar {
  top: 50%;
  margin-top: -200px;
  position: fixed;
  right: 10px;
  z-index: 200;
}
.jianyi-side-bar .side-bar-innr li {
  background: var(--color-primary);
  border-radius: 10px;
  width: 74px;
  height: 74px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.jianyi-side-bar .side-bar-innr li i {
  color: #fff;
  font-size: 36px;
}
.jianyi-side-bar .side-bar-innr li img {
  width: 37px;
}


@media (min-width: 1200px) {

  .atf-nav .atf-nav-list > li {
    margin-left: 35px;
  }
  .atf-nav .atf-nav-list .qico {
    font-size:14px;
  }
}

@media screen and (max-width: 992px) {
  .atf-main-header .container {
    max-width: 100%;
  }

  .atf-top-header {
    display: none;
  }

  .atf-site-header.atf-style1 {
    background-color: #162017;
  }
}
.atf-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: capitalize;
  font-size: 18px;
}
.atf-main-header {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

@media screen and  (min-width: 1600px) {
   .atf-main-header .container{
        max-width:1600px;
    }
  .atf-nav .atf-nav-list > li {
    margin-left: 60px;
  }
}

@media screen and (min-width: 992px) {
  .atf-nav .atf-nav-list {
    display: flex !important;
    flex-wrap: wrap;
    float: right;
    margin-right: 60px;
  }

  .atf-nav .atf-nav-list > li {
    font-weight: 500;
  }
  .atf-nav .atf-nav-list > li:last-child {
    margin-right: 0;
  }
  .atf-nav .atf-nav-list > li > a {
    padding: 15px 0;
    display: inline-block;
  }
  .atf-nav .atf-nav-list > li > ul {
    left: 0;
    top: calc(100% + 15px);
  }
  .atf-nav .atf-nav-list > li > ul:before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1px solid #eaeaea;
    transform: rotate(45deg);
    background-color: #fff;
    border-right: none;
    border-bottom: none;
    top: -6px;
    left: 16px;
  }
  .atf-nav .atf-nav-list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .atf-nav .atf-nav-list li {
    position: relative;
  }
  .atf-nav .atf-nav-list li a.active {
    color: #fff;
  }
  .atf-nav .atf-nav-list ul {
    width: 200px;
    background-color: #fff;
    position: absolute;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: all 0.1s ease;
  }
  .atf-nav .atf-nav-list ul li:hover ul {
    top: 0px;
  }
  .atf-nav .atf-nav-list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .atf-nav .atf-nav-list ul a {
    font-size: calc(100% - 1px);
    display: block;
    line-height: 1.6em;
    padding: 9px 20px;
    color: var(--text-color);
  }
  .atf-nav .atf-nav-list ul a:hover {
    background-color: var(--color-primary);
    color: #fff;
  }
  .atf-nav .atf-nav-list ul ul {
    top: 15px;
    left: 100%;
  }
  .atf-menu-toggle,
  .atf-menu-dropdown-toggle {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .atf-menu-dropdown-toggle {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 20px;
    top: 5px;
  }
  .atf-menu-dropdown-toggle:before,
  .atf-menu-dropdown-toggle:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .atf-menu-dropdown-toggle:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .atf-menu-dropdown-toggle.active:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .atf-nav .atf-nav-list {
    width: 200px !important;
    position: absolute;
    right: 0;
    background-color: #162017;
    padding: 10px 0;
    display: none;
    top: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 0px solid #eaeaea;
    overflow: auto;
    max-height: calc(100vh - 80px);
    width: 50%;
  }
  .atf-nav .atf-nav-list ul {
    padding-left: 15px;
    display: none;
  }
  .atf-nav .atf-nav-list a {
    display: block;
    padding: 8px 20px;
    color: #fff;
  }
  .atf-nav .menu-item-has-children {
    position: relative;
  }
  .atf-nav .menu-item-has-children i {
    display: none;
  }

  /*Mobile Menu Button*/

  .atf-menu-toggle {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 27px;
    margin: 15px 0px 15px 0px;
    cursor: pointer;
    vertical-align: middle;
  }
  .atf-menu-toggle span,
  .atf-menu-toggle span:before,
  .atf-menu-toggle span:after {
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: block;
  }
  .atf-menu-toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }
  .atf-menu-toggle span:before {
    content: "";
    position: absolute;
    margin-top: -8px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .atf-menu-toggle span:after {
    content: "";
    position: absolute;
    margin-top: 8px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .atf-toggle-active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }
  .atf-toggle-active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }
  .atf-toggle-active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }
}
.atf-sticky-header {
  position: fixed;
  z-index: 200;
  width: 100%;
  top: 0;
  left: 0;
}
.atf-sign-inner {
  position: relative;
  z-index: 1;
}
.atf-sign-inner ul li {
  display: inline-block;
}
.atf-sign-in li {
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0px 5px;
}
/* .atf-sign-inner::after {
	position: absolute;
	top: 0%;
	width: 2px;
	height: 30px;
	content: "";
	background: #fff;
	left: 45%;
} */
/*
* ----------------------------------------------------------------------------------------
* 02. END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/

.f-17 {
  font-size: 17px;
}

.f-16 {
  font-size: 16px;
}

@media (max-width: 1200px) {
  .atf-main-header .container {
    max-width: 100%;
  }

  .search-wrap .submit_text {
    width: 200px;
  }
}

@media  screen and (max-width: 1399px){
  .atf-nav .atf-nav-list > li {
    margin-right: 6px !important;
    font-size: 13px;
  }
}

@media only screen and (max-width: 1199px) {
  .atf-nav .atf-nav-list > li {
    margin-left: 18px;
  }
  .atf-nav .atf-nav-list {
    margin-right: 20px;
  }
  .atf-nav .atf-nav-list .qico {
    font-size:14px;
  }
  .atf-nav .atf-nav-list > li {
    margin-right: 6px !important;
    font-size: 14px;
  }
  .atf-sign-in a {
    margin: 5px;
  }
  .search-wrap .submit_text {
    width: 170px;
  }
  .search-wrap .submit_btn {
    width: 46px;
  }

  .search-wrap .submit_btn i {
    font-size: 22px;
  }
}
@media only screen and (max-width: 992px) {
  .atf-header-area .atf-single-details h2 {
    font-size: 60px;
    line-height: 70px;
  }
  .atf-nav .atf-nav-list > li {
    margin-right: 15px !important;
  }
  .atf-single-details h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .atf-nav {
    float: right;
  }

  .search-wrap {
    display: block;
  }
  .atf-site-header.atf-style1 .col-md-8{
  order:1
  }
  
  .atf-site-header.atf-style1  .col-md-2{
    order:0
  }
}

.atf-sitetop-center {
  display: flex;
  align-items: center;
}

.atf-main-header-left {
  max-height: 80px;
}

@media (max-width: 768px) {
  /* .jianyi-side-bar .side-bar-innr li {
    width: 48px;
    height: 48px;
  }
  .jianyi-side-bar .side-bar-innr li i {
    font-size: 26px;
  } */
  .jianyi-side-bar {
    display: none;
  }
  
      .search-wrap .submit_text {
        width: 90px;
    }
}
