.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #fff;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
          display: none;
}
.header .logo {
  width: 206px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo svg {
  width: 100%;
}
.header .header_top {
  border-bottom: 1px solid #f4f4f4;
  position: relative;
  z-index: 2;
}
.header .header_top_flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header_top_flx > a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header_top_flx > a:hover {
  color: #f06330;
}
.header .language {
  position: relative;
  margin-left: 32px;
}
.header .language_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .language_top svg {
  margin-right: 14px;
}
.header .language_top svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .language_top:hover {
  color: #f06330;
}
.header .language_top:hover svg path {
  fill: #f06330;
}
.header .language_btm {
  display: none;
  position: absolute;
  width: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #fff;
}
.header .language_btm a {
  text-align: center;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 10px 0;
}
.header .language_btm a:hover {
  color: #fff;
  background: #f06330;
}
.header .header_top_line {
  width: 1px;
  height: 14px;
  background: #404040;
  margin: 0 24px;
}
.header .header_flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1440px;
  margin: auto;
}
.header .navge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .navge > div {
  position: relative;
}
.header .navge > div:last-child {
  margin-right: 0;
}
.header .navge > div:hover .nav1 a{
    color: #f06330;
}
.header .nav1 {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 20px;
}
.header .navge > div:last-child{
    padding-right: 0;
}
.header .nav1 a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .nav1 a:hover {
  color: #f06330;
}
.header .nav2 {
  display: none;
  border-bottom: 4px solid rgb(240, 99, 48);
}
.header .nav2 a {
  color: #333;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header_other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 70px;
}
.header .header_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header_search {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: linear-gradient(135deg, #2eb4fc, #1366f7);
  cursor: pointer;
  position: relative;
}
.header .header_search:hover svg{
    transform: scale(1.2);
}
.header .header_search svg {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header .header_search svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header_search svg:last-child {
  opacity: 0;
}
.header .header_search.header_search_act svg:first-child {
  opacity: 0;
}
.header .header_search.header_search_act svg:last-child {
  opacity: 1;
}
.header .header_search_drop {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.06);
}
.header .header_search_drop svg {
  cursor: pointer;
}
.header .header_search_drop svg path{
    transition: all 0.5s;
}
.header .header_search_drop svg:hover path{
    fill:#f06330
}
.header .drop_flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 600px;
  margin: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}
.header .drop_flx input {
  width: calc(100% - 40px);
  border: none;
  margin-right: 20px;
  background: none;
}
.header .column_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #E6E9EF;
  line-height: 1;
}
.header .column_top::before {
  content: "";
  display: block;
  width: 4px;
  margin-right: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(#36BFFB), to(#176CF4));
  background: linear-gradient(180deg, #36BFFB 0%, #176CF4 100%);
}
.header .column_top a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: bold;
  line-height: 1;
}
.header .column_top a:hover {
  color: #f06330;
}
.header .column_btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .column_btm a {
  margin-top: 15px;
  padding: 12px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
  border-radius: 0px 15px 0px 15px;
  border: 1px solid #E4E4E4;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 15px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .column_btm a img {
  margin-right: 8px;
}
.header .column_btm a:hover {
  color: #f06330;
  border-color: #f06330;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(240, 99, 48, 0.2);
          box-shadow: 0px 4px 4px 0px rgba(240, 99, 48, 0.2);
}
.header .column_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  flex-wrap:wrap;
}
.header .column_nav>div{
    width: 20%;
    border-right:1px dashed rgba(0,0,0,0.1);
    padding: 0 10px;
}
.header .column_nav>div:nth-child(n+6){
    margin-top: 30px;
}
.header .column_nav_list {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header .column_nav_list a {
  line-height: 2;
  color: #737373;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
width: 48%;
}
.header .column_nav_list a:hover {
  color: #f06330;
}
.header .column_nav_tit {
  font-weight: 500;
}

.nav2 {
  border-top: 1px solid #f4f4f4;
  position: fixed;
  z-index: 4;
  width: 100vw;
  left: 0;
  top: auto;
  background: #fff;
  overflow-y: auto;
}
.nav2.nav2_spe {
  height: 100vh;
}
.nav2 .flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav2 .l {
  width: 65%;
}
.nav2 .r {
  width: 26%;
}
.nav2 .top {
  border-bottom: 1px solid #E6E9EF;
}
.nav2 .btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.nav2 .btm a {
  width: calc((100% - 195px) / 4);
  margin-right: 65px;
  height: 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav2 .btm a:nth-child(4n) {
  margin-right: 0;
}
.nav2 .btm a:nth-child(n+5) {
  margin-top: 20px;
}
.nav2 .btm a:hover {
  background: #EFF3F9;
}
.nav2 .img {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
}
.nav2 .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav2 .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.nav2 .column_des {
  text-align: center;
}

.phone_menu {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  margin-left: 30px;
}
.phone_menu span {
  background: #333;
  height: 2px;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.phone_menu span:first-child {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  top: 0;
}
.phone_menu span:last-child {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  -webkit-transform: translateY(18px);
      -ms-transform: translateY(18px);
          transform: translateY(18px);
  top: 0;
}

.menu_act span:first-child {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(10px) rotate(45deg);
      -ms-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.menu_act span:last-child {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(10px) rotate(135deg);
      -ms-transform: translateY(10px) rotate(135deg);
          transform: translateY(10px) rotate(135deg);
}
.menu_act span:nth-child(2) {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header_act {
  top: -133px;
}

.header_pc_act {
  top: 0;
}

.footer a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer a:hover {
  color: #f06330;
}
.footer .mat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .mat a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .mat a img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 30px;
}
.footer .mat a:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.footer .mat a:hover .mat_tit {
  color: #f06330;
}
.footer .line {
  width: 1px;
  background: rgba(221, 221, 221, 0.5);
}
.footer .mat_tit {
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 5px;
}
.footer .footer_nav1 {
  line-height: 1;
}
.footer .footer_nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .footer_nav2 a {
  color: rgba(51, 51, 51, 0.7);
  line-height: 1;
}
.footer .footer_nav2 a:hover {
  color: #f06330;
}
.footer .foot_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footer .footer_btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footer .footer_btm a {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer .footer_btm a:hover {
  color: #f06330;
}
.footer .footer_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer_media a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #cccccc;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 10px;
  position: relative;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.footer .footer_media a .share_img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 70px;
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  display: none;
}
.footer .footer_media a .share_img img {
  width: 82px;
}
.footer .footer_media a:hover {
  background: #999999;
}
.footer .footer_media a:last-child {
  margin-right: 0;
}
.footer .links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}
.footer .links .sw1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .links .sw_s {
  margin-right: 50px;
  display: block;
}
.footer .links.active .sw1 {
  -webkit-animation: ticker2 linear 20s infinite;
          animation: ticker2 linear 20s infinite;
}
.footer .links:hover .sw1 {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes ticker2 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker2 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@media screen and (max-width: 1700px) {
  .header .header_flx {
    width: 94%;
  }
  .header .header_search_drop {
    padding: 60px 0;
  }
  .footer .mat a img {
    margin-right: 20px;
  }
  .footer .mat_tit {
    margin-bottom: 0;
  }
  .header .nav1{
      padding: 0 12px;
  }
  .header .header_other {
    margin-left: 35px;
  }
  .header .logo {
    width: 180px;
  }
  .nav2 .img {
    border-radius: 0 20px 0 20px;
  }
}
@media screen and (max-width: 1200px) {
    .header .column_btm{
        display: none;
    }
  .header .header_flx {
    width: 90%;
  }
  .header .header_search_drop {
    padding: 40px 0;
  }
  .footer .mat a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer .mat a img {
    margin-right: 0px;
    margin-bottom: 10px;
    height: 34px;
  }
  .footer .mat_tit {
    text-align: center;
  }
  .footer .foot_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin-bottom: 0;
  }
  .footer .foot_nav > div {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .footer .footer_nav2 {
    display: none;
    padding: 0 20px 10px;
  }
  .footer .footer_nav2 a {
    display: block;
    line-height: 40px;
    margin-top: 0;
  }
  .footer .footer_nav1 a {
    line-height: 50px;
  }
  .footer .links {
    border-top: none;
  }
  .footer .footer_nav1 {
    position: relative;
  }
  .footer .footer_nav1::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto 0;
    display: block;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .footer .footer_active::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .footer .footer_btm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .footer_btm div {
    text-align: center;
  }
  .footer .footer_media {
    margin-top: 14px;
  }
  .footer .links .sw_s {
    margin-right: 35px;
  }
  .header .navge > div {
    margin-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .navge {
    position: fixed;
    top: 104px;
    width: 100%;
    left: 0;
    height: calc(100% - 60px);
    background: white;
    display: none;
    padding: 10px 20px 0;
  }
  .phone_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .nav1 {
    height: 50px;
    padding: 0;
  }
  .xuan:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto 0;
    display: block;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .xuan_act:after {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header .header_flx {
    height: 60px;
  }
  .header .nav1 a {
    color: #333;
  }
  .header {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .nav2 {
    padding: 0;
    position: relative;
    width: 100%;
    height: auto;
  }
  .header .drop_flx {
    width: 90%;
  }
  .header .header_search_drop {
    padding: 30px 0;
  }
  .header .logo {
    width: 130px;
  }
  .header_pc {
    display: none !important;
  }
  .nav2 .top {
    display: none;
  }
  .nav2 .l {
    width: 100%;
  }
  .nav2 .r {
    display: none;
  }
  .nav2 .btm a {
    width: calc((100% - 90px) / 4);
    margin-right: 30px;
            background: #EFF3F9;
  }
  .header .column_nav {
    display: none;
  }
  .header .column_top::before{
      display: none;
  }
  .header .column_top{
      padding-bottom: 0;
      border-bottom: 0;
  }
  .header .column_top a{
      font-size: 18px;
      font-weight: inherit;
  }
    .nav2_spe>div{
        display: flex;
        flex-wrap: wrap;
    }
      .nav2_spe .column_repeat{
        width: calc((100% - 90px) / 4);
        margin-right: 30px;
        background: #EFF3F9;
        height: 50px;
            border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }
    .nav2_spe .column_repeat:nth-child(n+5){
            margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    .header .column_top a{
        font-size: 14px;
    }
    .nav2_spe>div{
        justify-content: space-between;
    }
    .nav2_spe .column_repeat{
        width: calc((100% - 15px) / 2);
        margin-right: 0;
    }
    .nav2_spe .column_repeat:nth-child(n+3){
            margin-top: 15px;
    }
  .footer .mat {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .line {
    display: none;
  }
  .footer .mat a {
    width: 50%;
  }
  .footer .mat a:nth-child(n+4) {
    margin-top: 30px;
  }
  .footer .links .sw_s {
    margin-right: 20px;
  }
  .header .header_search {
    width: 34px;
    height: 34px;
  }
  .phone_menu {
    margin-left: 20px;
  }
  .header .header_top_line {
    margin: 0 15px;
  }
  .nav2 .btm {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav2 .btm a {
    width: calc((100% - 15px) / 2);
    margin-right: 0;
    background: #EFF3F9;
    font-size: 14px;
  }
  .nav2 .btm a:nth-child(n+3) {
    margin-top: 15px;
  }
  .header .column_btm {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .column_btm a {
    width: calc((100% - 15px) / 2);
    margin-right: 0;
    margin-top: 15px;
  }
}
