* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-word;
  /* break-all; */
}

li,
i,
em {
  list-style: none;
}
a {
  text-decoration: none;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  color: #fff;
  font-size: 14px;
  scroll-behavior: smooth;
}
.headerM {
  z-index: 999;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 1px -3px 10px 2px rgba(0, 0, 0, 0.1);
}
.headerM .header-inner {
  width: 90%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.headerM .header-inner .header-lang {
  display: flex;
  align-items: center;
}
.headerM .header-inner .header-lang-one {
  position: relative;
}
.headerM .header-inner .searchBtn {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}
.headerM .header-inner .searchBtn img {
  width: 20px;
  transform: scale(1);
  transition: 0.5s;
}
.headerM .header-inner .searchBtn:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
.headerM .header-inner .searchInput {
  position: absolute;
  top: 30px;
  right: 0;
  width: 240px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}
.headerM .header-inner .searchInput .searchInput-inner {
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff !important;
}
.headerM .header-inner .searchInput .searchInput-inner .el-icon-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.headerM .header-inner .searchInput input {
  width: 240px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #CC141C;
  background: #CC141C;
  border-radius: 6px;
  color: #fff !important;
}
.headerM .header-inner .searchInput input::-webkit-input-placeholder {
  color: #fff;
  text-indent: 0px;
}
.headerM .header-inner .searchInputShow {
  height: 40px;
  opacity: 1;
  z-index: 1000;
  transition: all 0.5s;
}
.headerM .header-inner .langBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}
.headerM .header-inner .langBtn .langBtn-img {
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 7px;
}
.headerM .header-inner .langBtn .langBtn-img img {
  position: absolute;
  height: 20px;
  left: 0;
  top: 0;
}
.headerM .header-inner .langBtn .langBtnA {
  font-size: 18px;
  color: #333;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.headerM .header-inner .langBtn .langBtnA img {
  width: 8px;
  margin-right: 0;
  margin-left: 6px;
}
.headerM .header-inner .langBtn .langBtnA:hover {
  color: #CC141C;
  transition: 0.5s;
}
.headerM .header-inner .langList {
  position: absolute;
  top: 30px;
  right: 0;
  width: 100px;
  height: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}
.headerM .header-inner .langList .langList-inner {
  width: 100%;
  background: #CC141C;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s;
}
.headerM .header-inner .langList .langList-inner a {
  padding: 0px 10px;
  text-align: center;
  width: 100%;
  height: 0;
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 36px;
  transition: all 0.5s;
  position: relative;
}
.headerM .header-inner .langList .langList-inner a:hover {
  background: #CC141C;
  transition: all 0.5s;
}
.headerM .header-inner .langList .langList-inner a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 68%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}
.headerM .header-inner .langList .langList-inner a:hover:after {
  background: transparent;
  transition: 0.5s;
}
.headerM .header-inner .langList .langList-inner .langList-last:after {
  height: 0;
}
.headerM .header-inner .langListShow {
  height: 114px;
  opacity: 1;
  z-index: 1000;
  transition: all 0.5s;
}
.headerM .header-inner .langListShow .langList-inner {
  padding: 8px 0;
  transition: all 0.5s;
}
.headerM .header-inner .langListShow .langList-inner a {
  height: 36px;
  transition: all 0.5s;
}
.headerM .header-inner .action_item {
  width: 34px;
  height: 22px;
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.headerM .header-inner .action_item .action_item_span_line {
  width: 28px;
  height: 2px;
  transform: scaleY(0.5);
  background: #333;
}
.headerM .logo {
  width: auto;
  max-width: 64px;
}
.headerM .logo img {
  width: 100%;
  display: block;
}
.sidefixed {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-60%);
  z-index: 998;
  display: flex;
  width: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sidefixed .sideitemTop {
  border-radius: 10px 10px 0px 0px;
  padding: 8px 0 0;
}

.sidefixed .sideitemTop .icon-box {
  color: #fff;
}

.sidefixed .sideitemTop .icon-box img {
  width: 19px;
  transition: 0.5s;
}

.sidefixed .sideitemTop:hover .icon-box img {
  transform: scale(1.1);
}

.sidefixed .sideitem3 {
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: #CC141C;
  transition: 0.5s;
  position: relative;
  right: 0px;
}

.sidefixed .sideitem3:hover {
  background: #CC141C;
  transition: .5s;
  right: 160px;
  border-radius: 10px !important;
}

.sidefixed .sideitem3:hover .icon-box {
  border-radius: 10px 0px 0px 10px !important;
  background: #CC141C;
  transition: .5s;
}

.sidefixed .sideitem3:hover .sideins {
  border-radius: 0px 10px 10px 0px;
  transition: .5s;
}

.sidefixed .sideitem3 .p {
  font-size: 12px;
}

.sidefixed .sideitem3 .p a {
  color: #fff;
  width: 100%;
  display: block;
}

.sidefixed .sideitem3 .p a span {
  white-space: wrap;
}

.sidefixed .sideitem3 .icon-box {
  z-index: 801;
  padding: 10px 0px;
  align-items: center;
  flex-direction: column;
  width: 58px;
  display: flex;
  transition: .5s;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: #CC141C;
  position: relative;
}

.sidefixed .sideitem3 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
  text-align: center;
  word-break: break-word;
  font-family: Alibaba PuHuiTi, Alibaba PuHuiTi;
  font-weight: 400;
}

.sidefixed .sideitem3 .icon-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  background: #CC141C;
  width: 34px;
}

.sidefixed .sideitem3 svg {
  width: 19px;
  height: 19px;
}

.sidefixed .sideitem3 .sideins {
  width: 180px;
  background: #CC141C;
  padding: 10px 10px;
  min-height: 65px;
  transition: all .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.6;
}

.sidefixed .sideitem3 .sideins .contactWays-value {
  position: relative;
}

.sidefixed .sideitem3 .sideins .contactWays-value::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: 0.5s;
}

.sidefixed .sideitem3 .sideins .contactWays-value:hover::after {
  width: 100%;
  background: #fff;
  transition: 0.5s;
}

.sidefixed .sideitem3 .sideins p {
  line-height: 20px;
  padding: 8px 0px;
  white-space: nowrap;
  position: relative;
}

.sidefixed .sideitem3 .sideins p::after {
  content: '';
  position: absolute;
  top: 14%;
  height: 80%;
  left: -20px;
  width: 1px;
  background: #fff;
}

.sidefixed .sideitem3_1 {
  border-radius: 10px 10px 0 0;
}

.sidefixed .sideitem3_1 .icon-box {
  border-radius: 10px 10px 0 0;
}

.sidefixed .sideitem4:hover {
  right: 180px;
}

.sidefixed .sideitem4 .sideins {
  width: 180px;
}

.sidefixed .sideitem1 {
  width: 58px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-family: Alibaba PuHuiTi-Regular;
  background: #CC141C;
  transition: .5s;
  position: relative;
  right: 0px;
  overflow: hidden;
}

.sidefixed .sideitem1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  background: #CC141C;
  width: 34px;
}

.sidefixed .sideitem1:hover {
  overflow: visible;
  background: #CC141C;
  transition: .5s;
}

.sidefixed .sideitem1:hover .sideins {
  transform: translateX(-5px) translateY(-50%);
  opacity: 1;
  transition: all .5s;
}

.sidefixed .sideitem1 .p {
  font-size: 11px;
}

.sidefixed .sideitem1 .p a {
  color: #fff;
}

.sidefixed .sideitem1 .icon-box {
  z-index: 801;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 58px;
}

.sidefixed .sideitem1 .icon-box p {
  margin-top: 4px;
  font-size: 11px;
  background: transparent !important;
  text-align: center;
  word-break: break-word;
}

.sidefixed .sideitem1 svg {
  width: 30px;
  height: 30px;
}

.sidefixed .sideitem1 .sideins {
  opacity: 0;
  z-index: 800;
  border-radius: 8px;
  transform: translateX(10px) translateY(-50%);
  background: #CC141C;
  padding: 10px 10px;
  position: absolute;
  top: 0;
  right: 100%;
  min-height: 74px;
  transition: all .5s;
  display: flex;
}

.sidefixed .sideitem1 .sideins .sideins-one {
  width: 50%;
  margin: 5px 4px 0px;
}

.sidefixed .sideitem1 .sideins p {
  line-height: 26px;
  padding: 5px 0px;
  white-space: nowrap;
  text-align: center;
}

.sidefixed .sideitem1 .sideins img {
  width: 100px;
  height: 100px;
  display: block;
}

.sidefixed .sideitem2 {
  cursor: pointer;
  width: 58px;
  display: flex;
  padding-bottom: 8px;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: #CC141C;
  transition: .5s;
  overflow: hidden;
  position: relative;
  right: 0px;
  border-radius: 0px 0px 10px 10px;
}

.sidefixed .sideitem2:hover {
  background: #CC141C;
}

.sidefixed .sideitem2 .p {
  font-size: 16px;
}

.sidefixed .sideitem2 .p a {
  color: #fff;
}

.sidefixed .sideitem2 .sideins {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidefixed .sideitem2 .icon-box {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.sidefixed .sideitem2 .icon-box svg {
  width: 10px;
  height: 10px;
  margin-right: 4px;
}

.sidefixed .sideitem2 .icon-box p {
  font-size: 12px;
  background: transparent !important;
}

.sidefixed .sideitemBase {
  border-radius: 23px;
}

.sidefixed .sideitemOther {
  display: flex;
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: -12px;
  bottom: -98%;
  transform: scale(0.7);
}

.sidefixed .sideitemOther .sideitemOther-title {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 15px 10px;
  width: 100%;
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
}

.sidefixed .sideitemOther .sideitem-chat {
  width: 100px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #EFEFEF;
  transition: 0.5s;
  position: relative;
}

.sidefixed .sideitemOther .sideitem-chat:last-child {
  border-bottom: none;
}

.sidefixed .sideitemOther .sideitem-chat:last-child:hover::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #EFEFEF;
  position: absolute;
  top: -1px;
  left: 0;
}

.sidefixed .sideitemOther .sideitem-chat .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  left: 10px;
}

.sidefixed .sideitemOther .sideitem-chat .link:hover {
  background: #EFEFEF;
}

.sidefixed .sideitemOther .sideitem-chat .link:focus {
  background: #EFEFEF;
}

.sidefixed .sideitemOther .sideitem-chat .link span {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}

.sidefixed .sideitemOther .sideitem-chat .link img {
  display: block;
  width: 50px;
}

.sidefixed .sideitemOther .sideitem-chat .gif {
  display: block;
  width: 76px;
  margin: 0 auto;
  transition: 0.5s;
  transform: scale(0.9);
  opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover {
  width: 210px;
}

.sidefixed .sideitemOther .sideitem-chat:hover .link {
  opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover .gif {
  opacity: 0;
}

.sidefixed .sideitemOther-show {
  display: flex !important;
  margin-top: 20px;
  min-height: 120px;
}

.sidefixedM {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 998;
  left: 0;
  display: none;
  justify-content: space-between;
  background: #CC141C;
}

.sidefixedM .sideitem1 {
  width: 25%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-family: Alibaba PuHuiTi-Regular;
  transition: .5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.sidefixedM .sideitem1:hover {
  overflow: visible;
}

.sidefixedM .sideitem1:hover .sideins {
  bottom: calc(100% + 5px);
  opacity: 1;
  transition: .5s;
}

.sidefixedM .sideitem1 .p {
  font-size: 12px;
}

.sidefixedM .sideitem1 .p a {
  color: #fff;
}

.sidefixedM .sideitem1 .sideins1 {
  display: flex;
}

.sidefixedM .sideitem1 .sideins-one {
  width: 50%;
  margin: 5px 5px 0;
}

.sidefixedM .sideitem1 .sideins-one p {
  text-align: center;
  padding: 2px 0;
  line-height: 20px !important;
}

.sidefixedM .sideitem1 .icon-box {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.sidefixedM .sideitem1 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  word-break: break-word;
  background: transparent !important;
}

.sidefixedM .sideitem1 .icon-box img {
  width: 20px;
  height: 20px;
}

.sidefixedM .sideitem1 svg {
  width: 20px;
  height: 20px;
}

.sidefixedM .sideitem1 .sideins {
  border-radius: 6px 6px 6px 6px;
  background: #CC141C;
  padding: 5px 5px;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}

.sidefixedM .sideitem1 .sideins p {
  line-height: 50px;
  white-space: nowrap;
}

.sidefixedM .sideitem1 .sideins img {
  width: 100px;
  height: 100px;
  display: block;
}

.sidefixedM .sideitem2 {
  width: 25%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: .5s;
  overflow: hidden;
  position: relative;
}

.sidefixedM .sideitem2 .p {
  font-size: 12px;
}

.sidefixedM .sideitem2 .p a {
  color: #fff;
}

.sidefixedM .sideitem2 .sideins {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidefixedM .sideitem2 .icon-box {
  padding: 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.sidefixedM .sideitem2 .icon-box svg {
  width: 15px;
  height: 10px;
  margin-bottom: 2px;
  margin-top: 5px;
}

.sidefixedM .sideitem2 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
}
.sidefixed {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-60%);
  z-index: 998;
  display: flex;
  width: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sidefixed .sideitemTop {
  border-radius: 10px 10px 0px 0px;
  padding: 8px 0 0;
}

.sidefixed .sideitemTop .icon-box {
  color: #fff;
}

.sidefixed .sideitemTop .icon-box img {
  width: 19px;
  transition: 0.5s;
}

.sidefixed .sideitemTop:hover .icon-box img {
  transform: scale(1.1);
}

.sidefixed .sideitem3 {
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: #CC141C;
  transition: 0.5s;
  position: relative;
  right: 0px;
}

.sidefixed .sideitem3:hover {
  background: #CC141C;
  transition: .5s;
  right: 160px;
  border-radius: 10px !important;
}

.sidefixed .sideitem3:hover .icon-box {
  border-radius: 10px 0px 0px 10px !important;
  background: #CC141C;
  transition: .5s;
}

.sidefixed .sideitem3:hover .sideins {
  border-radius: 0px 10px 10px 0px;
  transition: .5s;
}

.sidefixed .sideitem3 .p {
  font-size: 12px;
}

.sidefixed .sideitem3 .p a {
  color: #fff;
  width: 100%;
  display: block;
}

.sidefixed .sideitem3 .p a span {
  white-space: wrap;
}

.sidefixed .sideitem3 .icon-box {
  z-index: 801;
  padding: 10px 0px;
  align-items: center;
  flex-direction: column;
  width: 58px;
  display: flex;
  transition: .5s;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: #CC141C;
  position: relative;
}

.sidefixed .sideitem3 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
  text-align: center;
  word-break: break-word;
  font-family: Alibaba PuHuiTi, Alibaba PuHuiTi;
  font-weight: 400;
}

.sidefixed .sideitem3 .icon-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  background: #CC141C;
  width: 34px;
}

.sidefixed .sideitem3 svg {
  width: 19px;
  height: 19px;
}

.sidefixed .sideitem3 .sideins {
  width: 180px;
  background: #CC141C;
  padding: 10px 10px;
  min-height: 65px;
  transition: all .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.6;
}

.sidefixed .sideitem3 .sideins .contactWays-value {
  position: relative;
}

.sidefixed .sideitem3 .sideins .contactWays-value::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: 0.5s;
}

.sidefixed .sideitem3 .sideins .contactWays-value:hover::after {
  width: 100%;
  background: #fff;
  transition: 0.5s;
}

.sidefixed .sideitem3 .sideins p {
  line-height: 20px;
  padding: 8px 0px;
  white-space: nowrap;
  position: relative;
}

.sidefixed .sideitem3 .sideins p::after {
  content: '';
  position: absolute;
  top: 14%;
  height: 80%;
  left: -20px;
  width: 1px;
  background: #fff;
}

.sidefixed .sideitem3_1 {
  border-radius: 10px 10px 0 0;
}

.sidefixed .sideitem3_1 .icon-box {
  border-radius: 10px 10px 0 0;
}

.sidefixed .sideitem4:hover {
  right: 180px;
}

.sidefixed .sideitem4 .sideins {
  width: 180px;
}

.sidefixed .sideitem1 {
  width: 58px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-family: Alibaba PuHuiTi-Regular;
  background: #CC141C;
  transition: .5s;
  position: relative;
  right: 0px;
  overflow: hidden;
}

.sidefixed .sideitem1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  background: #CC141C;
  width: 34px;
}

.sidefixed .sideitem1:hover {
  overflow: visible;
  background: #CC141C;
  transition: .5s;
}

.sidefixed .sideitem1:hover .sideins {
  transform: translateX(-5px) translateY(-50%);
  opacity: 1;
  transition: all .5s;
}

.sidefixed .sideitem1 .p {
  font-size: 11px;
}

.sidefixed .sideitem1 .p a {
  color: #fff;
}

.sidefixed .sideitem1 .icon-box {
  z-index: 801;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 58px;
}

.sidefixed .sideitem1 .icon-box p {
  margin-top: 4px;
  font-size: 11px;
  background: transparent !important;
  text-align: center;
  word-break: break-word;
}

.sidefixed .sideitem1 svg {
  width: 19px;
  height: 19px;
}

.sidefixed .sideitem1 .sideins {
  opacity: 0;
  z-index: 800;
  border-radius: 8px;
  transform: translateX(10px) translateY(-50%);
  background: #CC141C;
  padding: 10px 10px;
  position: absolute;
  top: 0;
  right: 100%;
  min-height: 74px;
  transition: all .5s;
  display: flex;
}

.sidefixed .sideitem1 .sideins .sideins-one {
  width: 50%;
  margin: 5px 4px 0px;
}

.sidefixed .sideitem1 .sideins p {
  line-height: 26px;
  padding: 5px 0px;
  white-space: nowrap;
  text-align: center;
}

.sidefixed .sideitem1 .sideins img {
  width: 100px;
  height: 100px;
  display: block;
}

.sidefixed .sideitem2 {
  cursor: pointer;
  width: 58px;
  display: flex;
  padding-bottom: 8px;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: #CC141C;
  transition: .5s;
  overflow: hidden;
  position: relative;
  right: 0px;
  border-radius: 0px 0px 10px 10px;
}

.sidefixed .sideitem2:hover {
  background: #CC141C;
}

.sidefixed .sideitem2 .p {
  font-size: 16px;
}

.sidefixed .sideitem2 .p a {
  color: #fff;
}

.sidefixed .sideitem2 .sideins {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidefixed .sideitem2 .icon-box {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.sidefixed .sideitem2 .icon-box svg {
  width: 10px;
  height: 10px;
  margin-right: 4px;
}

.sidefixed .sideitem2 .icon-box p {
  font-size: 12px;
  background: transparent !important;
}

.sidefixed .sideitemBase {
  border-radius: 23px;
}

.sidefixed .sideitemOther {
  display: flex;
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: -12px;
  bottom: -98%;
  transform: scale(0.7);
}

.sidefixed .sideitemOther .sideitemOther-title {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 15px 10px;
  width: 100%;
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
}

.sidefixed .sideitemOther .sideitem-chat {
  width: 100px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #EFEFEF;
  transition: 0.5s;
  position: relative;
}

.sidefixed .sideitemOther .sideitem-chat:last-child {
  border-bottom: none;
}

.sidefixed .sideitemOther .sideitem-chat:last-child:hover::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #EFEFEF;
  position: absolute;
  top: -1px;
  left: 0;
}

.sidefixed .sideitemOther .sideitem-chat .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  left: 10px;
}

.sidefixed .sideitemOther .sideitem-chat .link:hover {
  background: #EFEFEF;
}

.sidefixed .sideitemOther .sideitem-chat .link:focus {
  background: #EFEFEF;
}

.sidefixed .sideitemOther .sideitem-chat .link span {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}

.sidefixed .sideitemOther .sideitem-chat .link img {
  display: block;
  width: 50px;
}

.sidefixed .sideitemOther .sideitem-chat .gif {
  display: block;
  width: 76px;
  margin: 0 auto;
  transition: 0.5s;
  transform: scale(0.9);
  opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover {
  width: 210px;
}

.sidefixed .sideitemOther .sideitem-chat:hover .link {
  opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover .gif {
  opacity: 0;
}

.sidefixed .sideitemOther-show {
  display: flex !important;
  margin-top: 20px;
  min-height: 120px;
}
.sidefixed .sideitemOther {
  display: flex;
  margin-top: 20px;
  min-height: 120px;
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: -12px;
  bottom: -50%;
  transform: scale(0.7);
}
.sidefixed .sideitemOther .sideitemOther-title {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  text-align: center;
  padding: 15px 10px;
  width: 100%;
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
}
.sidefixed .sideitemOther .sideitem-chat {
  width: 100px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #EFEFEF;
  transition: 0.3s;
  position: relative;
}
.sidefixed .sideitemOther .sideitem-chat:last-child {
  border-bottom: none;
}
.sidefixed .sideitemOther .sideitem-chat:last-child:hover::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #EFEFEF;
  position: absolute;
  top: -1px;
  left: 0;
}
.sidefixed .sideitemOther .sideitem-chat .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  left: 10px;
}
.sidefixed .sideitemOther .sideitem-chat .link:hover {
  background: #EFEFEF;
}
.sidefixed .sideitemOther .sideitem-chat .link:focus {
  background: #EFEFEF;
}
.sidefixed .sideitemOther .sideitem-chat .link span {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-decoration: underline;
  white-space: nowrap;
}
.sidefixed .sideitemOther .sideitem-chat .link img {
  display: block;
  width: 50px;
}
.sidefixed .sideitemOther .sideitem-chat .gif {
  display: block;
  width: 76px;
  margin: 0 auto;
  transition: 0.5s;
  transform: scale(0.9);
  opacity: 1;
}
.sidefixed .sideitemOther .sideitem-chat:hover {
  width: 210px;
}
.sidefixed .sideitemOther .sideitem-chat:hover .link {
  opacity: 1;
}
.sidefixed .sideitemOther .sideitem-chat:hover .gif {
  opacity: 0;
}
.sidefixedM {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 998;
  left: 0;
  display: none;
  justify-content: space-between;
  background: #CC141C;
}

.sidefixedM .sideitem1 {
  width: 25%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-family: Alibaba PuHuiTi-Regular;
  transition: .5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.sidefixedM .sideitem1:hover {
  overflow: visible;
}

.sidefixedM .sideitem1:hover .sideins {
  bottom: calc(100% + 5px);
  opacity: 1;
  transition: .5s;
}

.sidefixedM .sideitem1 .p {
  font-size: 12px;
}

.sidefixedM .sideitem1 .p a {
  color: #fff;
}

.sidefixedM .sideitem1 .sideins1 {
  display: flex;
}

.sidefixedM .sideitem1 .sideins-one {
  width: 50%;
  margin: 5px 5px 0;
}

.sidefixedM .sideitem1 .sideins-one p {
  text-align: center;
  padding: 2px 0;
  line-height: 20px !important;
}

.sidefixedM .sideitem1 .icon-box {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.sidefixedM .sideitem1 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  word-break: break-word;
  background: transparent !important;
}

.sidefixedM .sideitem1 .icon-box img {
  width: 20px;
  height: 20px;
}

.sidefixedM .sideitem1 svg {
  width: 20px;
  height: 20px;
}

.sidefixedM .sideitem1 .sideins {
  border-radius: 6px 6px 6px 6px;
  background: #CC141C;
  padding: 5px 5px;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}

.sidefixedM .sideitem1 .sideins p {
  line-height: 50px;
  white-space: nowrap;
}

.sidefixedM .sideitem1 .sideins img {
  width: 100px;
  height: 100px;
  display: block;
}

.sidefixedM .sideitem2 {
  width: 25%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: .5s;
  overflow: hidden;
  position: relative;
}

.sidefixedM .sideitem2 .p {
  font-size: 12px;
}

.sidefixedM .sideitem2 .p a {
  color: #fff;
}

.sidefixedM .sideitem2 .sideins {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidefixedM .sideitem2 .icon-box {
  padding: 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.sidefixedM .sideitem2 .icon-box svg {
  width: 15px;
  height: 10px;
  margin-bottom: 2px;
  margin-top: 5px;
}

.sidefixedM .sideitem2 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
}

.formMessage{
  opacity: 0;
  z-index: -1;
}
.el-message-fade-enter-active{
  opacity: 1;
  -webkit-transform:translate(-50%,100%);
  transform:translate(-50%,100%)
}


.langDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  z-index: 2001;
  display: none;
  transition: 0.5s;
}
.langDialog .langDialog-inner {
  width: 90%;
  max-width: 1200px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 5% 5%;
  position: relative;
  overflow: hidden;
}
.langDialog .langDialog-inner .langDialog-close {
  position: absolute;
  width: 160px;
  height: 160px;
  cursor: pointer;
  top: -80px;
  right: -80px;
  background: #cc141c;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
}
.langDialog .langDialog-inner .langDialog-close svg {
  width: 34px;
  height: 34px;
  margin: 0 0 26px 26px;
}
.langDialog .langDialog-inner .langDialog-title {
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin-bottom: 16px;
  line-height: 30px;
}
.langDialog .langDialog-inner .langDialog-main {
  display: flex;
  flex-wrap: wrap;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one {
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  border: 1px solid #EFEFEF;
  transition: 0.5s;
  margin-right: 5%;
  height: 60px;
  border-radius: 30px;
  margin-top: 20px;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one p {
  width: 10px;
  height: 10px;
  background: #999999;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:hover {
  background: #cc141c;
  border: 1px solid #cc141c;
  color: #fff;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:hover p {
  background: #fff;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:nth-of-type(3n) {
  margin-right: 0;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one-active {
  background: #cc141c;
  border: 1px solid #cc141c;
  color: #fff;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one-active p {
  background: #fff;
  transition: 0.5s;
}
.top_nav.show_nav {
  transform: translateY(0);
}
textarea {
  resize: none;
}
.top_nav {
  display: none;
  overflow: auto;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  height: 100vh;
  transform: translateY(-100vh);
  transition: 0.5s;
  background: #fff;
}
.top_nav .top_nav_inner {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
}
.top_nav .logo img {
  display: block;
  width: 64px;
}
.top_nav .top_nav_close {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
}
.top_nav .top_nav_close svg {
  width: 30px;
  height: 30px;
  margin-top: 20px;
  margin-right: 0px;
  cursor: pointer;
}
.top_nav .nav {
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  background: #fff;
  height: auto;
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
}
.top_nav .nav .li {
  width: 100%;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.top_nav .proMenu-a {
  width: 230px;
  height: 42px;
  background: #cc141c;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  padding: 0 10px;
}
.top_nav .proMenu-a .proMenu-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.top_nav .proMenu-a .proMenu-icon img {
  width: 100%;
}
.top_nav .proMenu-a:hover {
  transform: rotateY(15deg) rotateX(-15deg) scale(1);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}
.top_nav .nav .li:last-child {
  border-right: none;
}
.top_nav .nav .li .logo {
  width: 150px;
  height: 100%;
  padding-top: 60px;
  box-sizing: border-box;
  margin: 0 auto;
}
.top_nav .nav .li .menu {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
  padding: 10px 0;
}
.top_nav .nav .li .menu a {
  width: 40px;
  display: flex;
  height: 20px;
  justify-content: flex-end;
  align-items: center;
}
.top_nav .nav .li .menu p {
  width: 48px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
  margin-right: 20px;
  transition: 0.5s;
}
.top_nav .nav .li .menu p:hover {
  transform: translateX(12px);
  transition: 0.5s;
}
.top_nav .nav .li .menu img {
  display: block;
  height: 25px;
  transition: 0.5s;
}
.top_nav .nav .li .menu .index {
  font-size: 18px;
  color: #333;
}
.top_nav .nav .li .menu .name {
  font-size: 18px;
  color: #333;
  width: calc(100% - 50px);
  display: flex;
  height: 20px;
  justify-content: flex-start;
  align-items: center;
}
.top_nav .nav .li .menu .name:hover {
  color: #cc141c;
}
.top_nav .nav .li .menu2 {
  width: 100%;
  z-index: 2;
  box-sizing: border-box;
  padding: 0 4%;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.5s linear;
}
.top_nav .nav .li .menu2 .item_list {
  width: 100%;
}
.top_nav .nav .li .menu2 .item_val {
  line-height: 24px;
}
.top_nav .nav .li .menu2 .item_val a {
  color: #333;
  display: flex;
  margin-bottom: 6px;
  width: 100%;
}
.top_nav .nav .li .menu2 .item_val a span {
  font-size: 12px;
  margin-right: 8px;
  white-space: nowrap;
}
.top_nav .nav .li .menu2 .item_val a p {
  font-size: 16px;
}
.top_nav .nav .li .menu2 .item_val a:hover {
  color: #cc141c;
}
.swiper-button-lock {
  display: block;
}

@media only screen and (max-width: 1281px) {

}

@media only screen and (max-width: 1025px) {
  .header{
    display: none;
  }
  .headerM {
    display: block;
  }
}

@media only screen and (max-width: 850px) {
  .sidefixed .sideitemBase {
    display: none;
  }
  .sidefixedM {
    display: flex;
  }
}

@media only screen and (max-width: 821px) {
  .sidefixed .sideitemBase {
    display: none;
  }
  .sidefixedM {
    display: flex;
  }
  .top_nav .logo img {
    max-width: 50px;
  }
  .top_nav .top_nav_close svg {
    width: 24px;
    height: 24px;
    margin-top: 0px;
  }
  .top_nav .nav .li .menu .name {
    font-size: 16px;
  }
  .top_nav .nav .li .menu {
    margin-bottom: 18px;
  }
  .sidefixedM .sideitem1 .sideins img {
    width: 60px;
    height: 60px;
  }
  .sidefixed .sideitemOther {
    top: 90px;
    transform: scale(0.8) translateX(10%);
    bottom: auto;
  }
  .sidefixed {
    transform: translateY(-100%);
  }
  .headerM .action_item {
    width: 30px;
    height: 30px;
  }
  .headerM .action_item .action_item_span_line {
    width: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .headerM .header-inner {
    height: 50px;
  }
  .headerM .logo {
    max-width: 40px;
  }
  .headerM .header-inner .action_item {
    width: 25px;
    height: 18px;
    margin-left: 20px;
  }
  .headerM .header-inner .action_item .action_item_span_line {
    width: 24px;
  }
}

@media only screen and (max-width: 521px) {
  .sidefixedM .sideitem1 .sideins {
    left: -50%;
  }
  .sidefixedM .sideitem1 .sideins img {
    width: 50px;
    height: 50px;
  }
  .headerM .header-inner .langBtn .langBtnA {
    font-size: 16px;
  }
}

@media only screen and (max-width: 431px) {
  .top_nav .proMenu-a {
    font-size: 14px;
  }
  .top_nav .proMenu-a .proMenu-icon {
    width: 16px;
  }
  .top_nav .logo img {
    max-width: 40px;
  }
  .top_nav .top_nav_close svg {
    width: 20px;
    height: 20px;
  }
  .top_nav .nav .li .menu .name {
    font-size: 14px;
  }
  .top_nav .nav .li .menu2 .item_val a {
    margin-bottom: 5px;
    padding: 5px 0;
  }
  .top_nav .nav .li .menu {
    margin-bottom: 10px;
  }
  .top_nav .nav .li .menu2 .item_val a p {
    font-size: 12px;
  }
  .headerM .header-inner .action_item {
    width: 22px;
    height: 18px;
    margin-left: 15px;
  }
}

@media only screen and (max-width: 321px) {
  .headerM .logo {
    max-width: 30px;
  }
  .headerM .header-inner .langBtn .langBtnA {
    font-size: 14px;
  }
}
