/* 底部横幅 */
.full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}
.full_l {
  width: 70%;
}

.full_l h1 {
  font-size: 34px;
  font-weight: bold;
  color: var(--c1);
}

.full_l p {
  font-size: 18px;
  color: #6b6977;
}
.full1 {
  background-image: url(../img/bg2.png);
  background-repeat: repeat;
}

/* 客服 */
#online_qq_layer .animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.livechat-girl:focus {
  outline: 0;
}

.livechat-girl:after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #ff0000, #ff0000);
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 50;
}

.livechat-girl .girl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 50;
  background: #cc3337;
  border-radius: 50%;
}

.livechat-girl .animated-circles .circle {
  background: rgb(255 255 255 / 25%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  z-index: 49;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.livechat-girl .animated-circles.animated .c-1 {
  animation: 2s scaleToggleOne cubic-bezier(0.255, 0.55, 0.55, 0.94) forwards;
}

.livechat-girl .animated-circles.animated .c-2 {
  animation: 2.5s scaleToggleTwo cubic-bezier(0.255, 0.55, 0.55, 0.94) forwards;
}

.livechat-girl .animated-circles.animated .c-3 {
  animation: 3s scaleToggleThree cubic-bezier(0.255, 0.55, 0.55, 0.94) forwards;
}

.livechat-girl.animation-stopped .circle {
  opacity: 0 !important;
}

.livechat-girl.animation-stopped .circle {
  opacity: 0 !important;
}

.livechat-girl .livechat-hint {
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -20px;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
}

.livechat-girl .livechat-hint.show_hint {
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
  opacity: 1;
  z-index: 333;
}

.livechat-girl .livechat-hint.hide_hint {
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  z-index: -1;
}

.livechat-girl .livechat-hint.rd-notice-tooltip .rd-notice-content {
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rd-notice-tooltip {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  border-radius: 3px;
  line-height: 1.25;
  position: absolute;
  z-index: 65;
  max-width: 350px;
  opacity: 1;
}

.rd-notice-tooltip:after {
  position: absolute;
  display: block;
  content: '';
  height: 20px;
  width: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  z-index: 50;
}

.rd-notice-tooltip .rd-notice-content {
  background: 0;
  border-radius: 3px;
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 60;
  padding: 20px;
  line-height: 1.45;
}

.rd-notice-type-success {
  background-color: #cc3337;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.rd-notice-type-success .rd-notice-content {
  background-color: #cc3337;
  color: #fff;
  font-size: 14px;
  position: relative;
}

.rd-notice-type-success .rd-notice-content:before {
  position: absolute;
  content: '';
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff',endColorstr='#00ffffff',GradientType=1);
  width: 30%;
  height: 100%;
  transform: skew(-10deg, 0deg);
  animation: move 2s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

.rd-notice-type-success:after {
  background-color: #cc3337;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 113, 181, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 113, 181, 0.2);
}

.rd-notice-position-left {
  margin-left: -16px;
}

.rd-notice-position-left:after {
  right: -3px;
  top: 50%;
  margin-top: -10px;
}

.rd-notice-tooltip.single-line .rd-notice-content {
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  white-space: nowrap;
  font-size: 14px;
  font-family: 'poppins';
}

@media only screen and (max-width: 768px) {
  .livechat-girl {
    display: none;
  }
}

#online_qq_layer {
  z-index: 99999999;
  position: fixed;
  right: 80px;
  bottom: 30px;
  font-size: 13px;
}

#floatShow {
  display: block;
}

#floatHide {
  display: none;
}

#online_qq_tab {
  position: relative;
  z-index: 9;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#online_qq_tab #floatShow {
  line-height: 50px;
  position: relative;
  color: #fff;
  font-size: 13px;
  text-transform: capitalize;
  font-family: 'muli_b';
  width: 50px;
  height: 50px;
}

#online_qq_tab #floatShow i {
  height: 50px;
  width: 50px;
  background: url(../images/online.png) no-repeat 10px center;
  position: absolute;
  left: 5px;
  top: 0;
  display: inline-block;
}

#online_qq_tab #floatShow:hover {
  margin-right: 0;
}

#online_qq_tab #floatHide {
  font-family: 'FontAwesome';
  height: 50px;
  background: #ccc;
  color: #fff;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  position: relative;
}

#online_qq_tab #floatHide:after {
  border-radius: 0;
  color: #999;
  font-family: 'FontAwesome';
  font-size: 20px;
  content: 'x';
  color: #fff;
  line-height: 50px;
}

#online_qq_tab #floatShow:hover,
#online_qq_tab #floatHide:hover {
  text-decoration: none;
}

#onlineService {
  display: inline;
  width: 28rem;
  display: none;
  font-size: 14px;
  border-top: none;
  margin-bottom: 70px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.15) 0px 5px 30px 0px, rgba(0, 0, 0, 0.05) 0px 3px 3px 0px;
  border-radius: 5px;
  background: #f9fafa;
}

#onlineService .online_form {
  padding: 10px;
}

#online_qq_layer .inquiry .main_more {
  border-width: 1px;
  margin-top: 0;
}

#online_qq_layer .inquiry .main_more input {
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 40px;
  background: #cc3337;
  color: #fff;
  text-transform: uppercase;
  border-radius: 0;
  transition: 0.5s all;
  border-radius: 0;
  font-family: 'muli_b';
  border-radius: 0;
  width: 100%;
  border-radius: 0;
}

#online_qq_layer .inquiry .main_more:hover input {
  background: ##f182;
}

#onlineService .title {
  display: block;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  font-style: normal;
  font-family: 'muli_b';
  color: #666;
  background: #cc3337 url('../images/cate_bg.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 10px 18px;
  padding-bottom: 46px;
}

#onlineService .text {
  margin-bottom: 10px;
  color: #999;
  line-height: 20px;
  background: #f9fafa;
  margin-top: -50px;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  border-bottom: 1px solid #e5e5e5;
}

.i_message_inquiry {
  padding: 0px 10px;
  overflow: hidden;
}

.i_message_inquiry ::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #f5f5f5;
}

.i_message_inquiry ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;

  background-color: #f5f5f5;
}

.i_message_inquiry ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);

  background-color: #999;
}

@media only screen and (max-width: 768px) {
  #online_qq_layer {
    overflow: visible;
  }

  #online_qq_tab #floatHide i {
    margin-top: 0;
    margin-right: 0;
  }

  #online_qq_tab #floatHide i:before,
  #online_qq_tab #floatHide i:after {
    background: #fff;
  }

  .iti__country-list {
    width: 50vw;
  }

  .iti-mobile .iti--container {
    z-index: 999999999 !important;
  }
}

.mobile_nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5px;
  display: none;
  z-index: 99999998;
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.4);
  border-radius: 2px 2px 0 0;
  background: #333;
  border-top: 1px solid #eee;
}

.mobile_nav a {
  display: inline-block;
  width: 20%;
  text-align: center;
  line-height: 14px;
}

.mobile_nav a i {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url(../img/icon.png);
}

.mobile_nav a p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
}

.mobile_nav a:nth-child(3) {
  float: right;
}

.mobile_nav a:nth-child(4) {
  float: right;
}

@media only screen and (max-width: 992px) {
  #service {
    display: none;
  }

  #onlineService01 {
    width: 150px;
  }

  .onlineMenu .call-top {
    padding: 8px 5px;
  }

  .onlineMenu .call-top p {
    font-size: 16px;
  }

  .onlineMenu ul {
    padding: 10px;
  }

  .onlineMenu .call > p {
    padding-left: 20px;
    font-size: 14px;
  }

  .onlineMenu .call > p a {
    font-size: 14px;
  }

  .onlineMenu .call > p.ser01,
  .onlineMenu .call > p.ser02,
  .onlineMenu .call > p.ser03,
  .onlineMenu .call > p.ser04,
  .onlineMenu .call > p.ser05 {
    background-size: 12px;
  }

  .back_top {
    right: 5px;
    bottom: 60px;
    width: 40px;
    height: 40px;
    background-image: none;
  }

  .back_top:before {
    font-size: 20px;
    line-height: 36px;
  }

  #online_qq_tab #floatShow {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1200px) {
  #online_qq_tab #floatShow i {
    left: 0px;
  }

  #online_qq_tab #floatShow {
    width: 50px;
    padding-right: 0;
  }

  #online_qq_layer {
    right: 60px;
  }
}

@media only screen and (max-width: 768px) {
  #online_qq_layer {
    right: 0;
  }

  #onlineService {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  #online_qq_layer {
    width: 100%;
    bottom: 58px;
  }

  #online_qq_tab {
    right: 50%;
    margin-right: -25px;
    bottom: -44px;
  }

  #online_qq_tab #floatShow {
    background: #cc3337 url(../img/icon.png) no-repeat -128px -218px;
    border-radius: 0;
    margin-right: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    border: 3px solid #fff;
    padding: 0;
    box-shadow: none;
    border-radius: 50%;
    text-indent: -999999px;
    z-index: 9999999999;
  }

  #online_qq_tab #floatShow i {
    display: none;
  }

  #online_qq_tab #floatShow span {
    display: none;
  }

  .mobile_nav {
    display: block;
  }

  .mobile_nav a p {
    text-transform: capitalize;
  }

  .footer-bottom {
    padding-bottom: 60px;
  }

  #onlineService .i_message_inquiry .main-more input {
    padding: 8px 20px;
  }

  .i_message_inquiry .inquiry {
    padding: 15px 10px;
    height: 54vh;
    overflow: auto;
  }

  .footer_bottom {
    padding-bottom: 70px;
    padding-top: 10px;
  }
}

@media only screen and (max-width: 375px) {
  .mobile_nav a p {
    text-transform: capitalize;
  }
}
