/* 广告位 */
.header_sec {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  /* height: 70; */
  height: auto;
  z-index: 999;
}

.advertising_wrapper_s {
  width: 100%;
  height: 86px;
}
.advertising_wrapper_s a{
  height: 100%;
}
.advertising_wrapper_s img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advertising_pagination .swiper-pagination-bullet{
  width: 20px;
  height: 4px;
  background: #6D7278;
  border-radius: 10px;
}
.advertising_pagination .swiper-pagination-bullet-active{
  background: #FFC500;
}
@media (max-width: 992px){
  .top_advertising .mobile{
   display: block;
  }
  .top_advertising .pc{
   display: none;
  }
  .top_advertising img {
    object-fit: fill;
  }
}

/* 广告位 */
.top_advertising .remove_btn{
  padding: 8px;
  color:#fff;
  position: absolute;
  top:0;
  right: 20px;
  line-height: 1;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  transition: all .3s;
  z-index: 99;
}

.top_advertising .remove_btn:hover{
  background: rgba(255,255,255,0.4);
}

/* header nav */
  /* sticky_header : 固定后导航类名 */
.header_nav {
  width: 100%;
  transition: background-color .3s ease-in-out;
  /* position: relative; */
}

.header_sec .sticky_header {
  /* background: rgba(255, 255, 255, 0.9); */
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 148, 219, 0.1);
}

.header_nav .header_inner {
  height: 70px;
}

.header_inner .logo {
  width: 220px;
  height: 38px;
  font-size: 0;
}

.header_inner .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.sticky_header .logo_white,
.dark_header .logo_white{
  display: none;
}

.sticky_header .logo_blue,
.dark_header .logo_blue {
  display: block;
}

.header_inner .nav_menu .nav_item {
  margin-left: 40px;
  position: relative;
  color: #fff;
}

.sticky_header .nav_menu .nav_item,
.dark_header .nav_menu .nav_item {
  color: #507390;
}



/* .header_inner .language_toggle a::after {
  display: none;
} */

.header_inner .nav_item a {
  display: block;
  padding: 8px 8px;
  position: relative;
  white-space: nowrap;
}

  /* nav btn */
.header_inner .nav_item_btn a {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  padding: 0 24px;
  border-radius: 24px;
  text-align: center;
  white-space: nowrap;
  transition: all .28s ease-in-out;
}

.header_inner .login a {
  border: 1px solid #fff;
  color: #fff;
}

.header_inner .register a {
  background: #FFC500;
  color: #fff;
}

.sticky_header .login a,
.dark_header .login a {
  border-color: #00A6FD;
  color: #00A6FD;
}

/* 移动端 */
.nav_menu_toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  padding: 5px;
  cursor: pointer;
  z-index: 9;
}

.nav_menu_toggle .bar {
  display: block;
  height: 3px;
  width: 28px;
  background-color: #fff;
  border-radius: 6px;
  transition: all 0.3s;
  transform-origin: center;
}

.sticky_header .nav_menu_toggle .bar,
.dark_header .nav_menu_toggle .bar,
.nav_menu_toggle.is_open .bar {
  background-color: #507390;
}

.nav_menu_toggle .bar2 {
  margin: 4px 0;
}

.nav_menu_toggle.is_open .bar1 {
  transform: translateY(7px) rotate(-45deg);
}

.nav_menu_toggle.is_open .bar2 {
  opacity: 0;
}

.nav_menu_toggle.is_open .bar3 {
  transform: translateY(-7px) rotate(45deg);
}

@media(min-width:992px) {
  /* 二级菜单 */
  .item_has_children .down_menu {
    display: none;
    position: absolute;
    z-index: 99;
    bottom: 0px;
    left: 0;
    transform: translate(8px,100%);
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0px 0px 10px 10px;
  }
  .sticky_header .down_menu,
  .dark_header .down_menu {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 10px 20px 0px rgba(0, 148, 219, 0.2);
  }

  .header_inner .down_menu li {
    margin-top: 20px;
  }
  .header_inner .down_menu li:first-child {
    margin-top: 0;
  }

  .header_inner .down_menu li a {
    padding: 5px 0;
    white-space: nowrap;
  }

  .header_inner .nav_item a::after {
    position: absolute;
    content: "";
    display: inline-block;
    left: 8px;
    bottom: 0;
    width: 0;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    transition: all .3s ease-in-out;
    opacity: 0;
  }
  .header_inner .down_menu a::after {
    left: 0;
  }
  .sticky_header .nav_item a::after,
  .dark_header .nav_item a::after {
    background-color: #00A6FD;
  }
  .header_inner .item_to_page:hover>a::after,
  .header_inner .item_to_page.active>a::after {
    width: 14px;
    opacity: 1;
  }

  .sticky_header .down_menu li:hover,
  .sticky_header .down_menu li.active,
  .dark_header .down_menu li:hover,
  .dark_header .down_menu li.active {
    color: #00A6FD;
  }

  /* nav hovner */
  .header_inner .login a:hover {
    background: #fff;
    color: #00A6FD;
  }

  .sticky_header .login a:hover,
  .dark_header .login a:hover {
    background: #00A6FD;
    color: #fff;
  }

  .header_inner .register a:hover {
    color:#fff;
    background: #F4D402;
  }
}

@media(max-width:992px) {
  .header_inner .logo{
    width: 190px;
    height: 32px;
  }
  .nav_menu_toggle {
    display: block;
  }
  .header_nav ._container{
    position: relative;
  }
  .header_nav .nav_inner {
    position: absolute;
    display: none;
    top: 20%;
    right: 0;
    width: 50%;
    padding-top: 48px;
    min-width: 280px;
    background: #fff;
    box-shadow: 0px 10px 20px 0px rgba(0, 148, 219, 0.1);
    border-radius: 20px 0px 0px 20px;
    overflow: hidden;
  }

  .header_inner .nav_menu {
    display: block;
  }

  .header_inner .nav_item_btn {
    display: none;
  }

  .header_inner .nav_menu .nav_item {
    margin-left: 0;
    text-align: center;
  }

  .header_inner .nav_item a {
    display: block;
    min-height: 60px;
    line-height: 60px;
    padding: 0 10px;
    text-align: center;
    color: #507390;
    transition: color .3s ease-in-out;
    position: relative;
  }

  .header_inner .nav_item.active>a,
  .header_inner .down_menu .active a{
    color: #00A6FD;
  }

  .header_inner li.active {
    background: #F0F6FA;
  }

  /* 二级菜单 */

  .item_has_children .down_menu {
    display: block !important;
    background: #fff;
  }
  /* 二级菜单 语言切换*/
  .language_item .down_menu {
    display: flex !important;
    padding: 0 !important;
    height: auto !important;
    background: #fff;
  }
  .language_item .down_menu li {
    flex: 1;
    background: #f0f6fa;
    color: #507390;
  }
  .language_item .down_menu li.active {
    background: linear-gradient(
      180deg,
      rgba(0, 166, 253, 1) 0%,
      rgba(120, 210, 255, 1) 100%
    );
  }

  .language_item .down_menu li.active a {
    color: #fff;
  }
  /* 语言切换 */
  .header_inner ul .nav_item .mobile_hide {
    display: none;
  }
  /* 移动端登录注册 待调整 */
  .mobile_signIn {
    display: flex;
  }
  .mobile_signIn .signIn_item{
    width: 50%;
  }
  .mobile_signIn .signIn_item a{
    display: block;
    min-height: 60px;
    line-height: 60px;
    padding: 0 10px;
    text-align: center;
  }
  .mobile_signIn .log{
    border-top: 1px solid #d8d8d8;
    color:#00A6FD;
  }
  .mobile_signIn .reg{
    background: #FFC500;
    color:#fff;
  }
}

 /* banner */
 .banner_sec{
  position: relative;
  height: 700px;
 }
 .banner_sec .banner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
 }

 .banner_sec .banner_inner{
   position: relative;
   z-index: 1;
 }

 .banner_inner .banner_title {
   color:#fff;
   letter-spacing:2px;
   margin-bottom: 38px;
 }

 .banner_inner .introduce{
  color: #fff;
  line-height: 28px;
  text-align: center;
 }
 .banner_sec .created_acc_num {
  margin-top: 60px;
 }

.created_acc_num form{
  width:440px;
  height:50px;
  background:rgba(255,255,255,0.1);
  border-radius:25px;
  padding: 8px 8px 8px 40px;
  display: flex;
 }
 .banner_input::-webkit-input-placeholder{
   font-size: 14px;
   color:#fff;
 }
 .banner_input::-moz-placeholder{
  font-size: 14px;
  color:#fff;
}
.banner_input:-ms-input-placeholder{
  font-size: 14px;
  color:#fff;
}
.created_acc_num .banner_input {
  flex: 1;
  margin-right:10px; 
}

.banner_sec .scroll_arrow{
  position: absolute;
  bottom:40px;
  text-align: center;
  left: 0;
  right: 0;
}

@keyframes scroll_arrow {
  25% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(3px);
  }
  50%,
  100% {
    transform: translateY(0);
  }
}

.scroll_arrow .animation_icon{
  color: #fff !important;
  font-size: 40px;
  animation: scroll_arrow 1s infinite both;
}

@media (max-width: 768px){
  .banner_sec{
    height: 350px;
   }
   .banner_sec .banner_title {
     text-align: center;
     font-size: 28px;
     margin-bottom: 20px;
   }
   .banner_inner .introduce p{
     font-size: 16px;
   }
   .banner_sec .created_acc_num {
    margin-top: 28px;
   }
  .created_acc_num form{
    padding: 0;
    width: auto;
    height: auto;
  }
  /* .created_acc_num .banner_input{
    display: none;
  } */
  .banner_sec .scroll_arrow{
    bottom:20px;
  }
  .scroll_arrow .animation_icon{
    font-size: 28px;
  }
}
    /* 引导注册 */
    .guidance_register_sec {
      background: url('../../images/home/guidance-register.jpg') no-repeat;
      background-size: cover;
    }
  
    .guidance_register_sec_inner {
      padding: 44px 158px 44px;
    }
  
    .guidance_register_sec .title {
      color: #fff;
      line-height: 40px;
    }
  
    @media (max-width : 992px) {
      .guidance_register_sec {
        background: url('../../images/home/guidance-register-m.jpg') no-repeat;
        background-size: cover;
      }
  
      .guidance_register_sec_inner {
        display: block;
        padding: 56px 0;
        text-align: center;
      }
  
      .guidance_register_sec .reg_btn {
        margin: 38px auto 0;
      }
    }
  
    @media(max-width:768px) {
      .guidance_register_sec_inner .title {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 1px;
      }
  
      .guidance_register_sec_inner {
        padding: 28px 0;
      }
  
      .guidance_register_sec .reg_btn {
        margin: 20px auto 0;
      }
    }

    /* footer */
  .footer .footer_menu_wrap {
    background: #F0F6FA;
    padding-bottom: 112px;
  }

  .footer .menu_wrap_item {
    margin-top: 112px;
  }

  @media (max-width: 768px) {
    .footer .footer_menu_wrap {
      padding-bottom: 30px;
    }

    .footer .menu_wrap_item {
      margin-top: 30px;
    }
  }

  .footer .menu_wrap_item .title {
    color: #00A6FD;
  }

  .footer .menu_wrap_item li:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer .menu_wrap_item li a {
    transition: all .3s;
    padding-bottom: 4px;
    border-bottom: 1px solid #F0F6FA;
  }

  .footer .menu_wrap_item .footer_nav_item.active {
    color: #00A6FD;
    border-bottom: 1px solid #00A6FD;
  }
  
  .footer .menu_wrap_item .footer_nav_item:hover{
    color: #00A6FD;
  }

  .footer .external_link i:not(:last-child) {
    margin-right: 12px;
  }

  .footer .external_link {
    color: #507390;
  }

  .footer .footer_desc {
    background: #507390;
  }

  .footer .footer_desc ._container {
    height: 90px;
  }

  .footer .footer_desc p {
    line-height: 22px;
    white-space: nowrap;
    color: #fff;
  }

  .footer .footer_desc .logo {
    width: 220px;
    height: 38px;
    margin-right: 30px;
  }

  .footer .footer_desc .logo img {
    width: 100%;
    object-fit: contain;
  }

  @media (max-width: 768px) {
    .footer .footer_desc ._container {
      display: block;
      text-align: center;
      padding-top: 16px;
      padding-bottom: 16px;
      height: auto;
    }

    .footer .footer_desc .logo {
      width: 190px;
      height: 32px;
      margin: 0 auto 8px;
    }
    .foot_copyright p{
      font-size: 12px;
    }
  }


  /* animate */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animated{
  -webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } 
}

/* footer微信弹窗 */
.my_modal{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%; 
  overflow-x: hidden;
  outline: 0;
  background: rgba(0, 0, 0, 0.5);
}
.my_modal .modal_dialog{
  width: 200px;
  height: 200px;
  margin: 100px auto;
  position: relative;
}
.my_modal .modal_dialog img{
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.my_modal .modal_dialog .del{
  position: absolute;
  top:-8px;
  right: -8px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  background: rgba(255,255,255,1);
}

/* button loading */
.button_loading {
  position: absolute;
  line-height: 38px;
  cursor: default;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 1;
  border-radius: inherit;
  /* background-color: rgba(255,255,255,.35); */
  background: inherit;
}

.button_loading  span {
  display: inline-block;
  background-color: #fff;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear; 
}

.button_loading span:nth-child(2n-1) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s; 
}

/* message box */
#message_box {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  line-height: 22px;
  font-size: 14px;
  max-width: 300px;
  padding: 13px 18px;
  border-radius: 6px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 9999;
  user-select: none;
}

/* 浮动联系我们 */
.customer_contact_channel{
  position: fixed;
  bottom: 60px;
  /* width: 120px; */
  right: 36px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: flex-end;
  /* tidio层级 */
  z-index: 9999999999;
}

.customer_contact_channel .float_icon_item{
  margin-bottom: 10px;
  text-align: center;
  position: relative; 
 }
 .customer_contact_channel .fixed_box{
   width: 70px;
   height: 70px;
   padding: 10px 0;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   background: #fff;
   cursor: pointer;
   border-radius: 50%;
   box-shadow: 0px 10px 20px 0px rgba(0, 148, 219, 0.1);
   color: #333;
   line-height: 20px;
 }
.customer_contact_channel .fixed_box:hover + .text_box{
  display: block;
}
 .customer_contact_channel .fixed_box .img_box{
   width: 28px;
   height: 28px;
 }
 
 .customer_contact_channel .code_box{
   width: 112px;
   height: 112px;
 }
 .customer_contact_channel .img_box img,
 .customer_contact_channel .code_box img{
   width: 100%;
   height: 100%;
   object-fit: contain;
 }
 .customer_contact_channel .text_box{
   position: absolute;
   left: -20px;
   top:50%;
   transform: translate(-100%,-50%);
   padding: 12px;
   line-height: 22px;
   border-radius: 4px;
   color:#00A6FD;
   text-align: center;
   white-space: nowrap;
   background: #fff;
   box-shadow: 0px 10px 20px 0px rgba(0, 148, 219, 0.1);
 }
 .customer_contact_channel .mar_bottom{
   margin-bottom: 4px;
 }
 .customer_contact_channel .title{
   color:#333;
 }
 /* .customer_contact_channel .widget_label{
   position: absolute;
   padding: 10px 15px;
   border-radius: 16px;
   right: 60px;
   top: 50%;
   background: #fff;
   transform: translateY(-50%);
   box-shadow: rgb(0 18 46 / 18%) 0px 2px 20px 0px;
   cursor: pointer;
   z-index: -1;
 } */
 .customer_contact_channel .text_box .wave{
   display: inline-block;
   width: 20px;
   height: 20px;
   object-fit: contain;
 }
 .customer_contact_channel .text_box .txt{
   white-space: nowrap;
   font-size: 14px;
   line-height: 22px;
 }
@media(max-width:768px){
  .customer_contact_channel{
    right: 20px;
    z-index: 6666;
  }
  .customer_contact_channel .widget_label{
    display: none;
  }
}