/* 公共样式 */

/* 定义一个字体包 */
@font-face {
  font-family: 'HarmonyOS_Sans_SC';
  src: url('../font/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
}

body {
  font-family: 'HarmonyOS_Sans_SC';
  /* 'sans-serif' 是后备字体，如果自定义字体加载失败，将使用它 */
}

* {
  padding: 0;
  margin: 0;
}

img {
  display: block;
}

input {
  display: block;
  outline: none;
  border: none;
}

.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexItem {
  display: flex;
  align-items: center;
}

.flexB {
  display: flex;
  justify-content: space-between;
}

.flexBox {
  display: flex;
}

.flexF {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aNav {
  display: block;
  text-decoration: none;
  /* 去掉下划线 */
}


/* 顶部栏样式 */

/* 顶部栏 */
.headerWhole {
  width: 100%;
  min-height: 90px;
  position: fixed;
  z-index: 97;
  left: 0;
  top: 0;
}

div.header {
  width: 100%;
  height: 90px;
  background-color: rgba(0, 0, 0, .1);
  /* 半透明背景 */
  backdrop-filter: blur(5px) saturate(100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: .3s;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.headerqian {
  width: 100%;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.2);
  /* 半透明背景 */
  backdrop-filter: blur(5px) saturate(100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%) !important;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.3);
  transition: .3;
  border-bottom: none !important;
}

.headerTypeArea {
  width: 1480px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div.headerLeft {
  display: flex;
  align-items: center;
}

img.logo {
  width: 251px;
  height: 24px;
  margin-right: 44px;
  cursor: pointer;
}

div.headerItemBox {
  display: flex;
  align-items: center;
}

div.headerItem {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: normal;
  line-height: 18px;
  margin-left: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 90px;
}

.headerItemIcon1 {
  width: 12px;
  height: 12px;
  margin-left: 5px;
  transition: .3s;
}

div.headerRight {
  display: flex;
  align-items: center;
}

img.headerRight1 {
  margin-right: 16px;
  width: 128px;
  height: 36px;
  cursor: pointer;
}

img.headerRight2 {
  width: 128px;
  height: 36px;
  cursor: pointer;
}

/* .headerActive {
    position: relative;
  }
  
  .headerActive::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 5px;
  } */

/* .headerActive2 {
    position: relative;
  }
  
  .headerActive2::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 5px;
  } */


.headerSolveBox {
  background-color: #000;
  width: 100%;
  min-height: 80px;
  display: none;
}

.headerSolveTypeArea {
  width: 1290px;
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.headerSolveItem {
  font-size: 16px;
  color: #F2F2F2;
  font-weight: normal;
  line-height: 18px;
  margin-left: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 80px;
  margin-left: 100px;
}

.headerSolveItemActive {
  position: relative;
}

.headerSolveItemActive::after {
  content: '';
  display: block;
  position: absolute;
  right: -26px;
  bottom: 34px;
  width: 18px;
  height: 12px;
  background-image: url('../img/headerItemIcon2.png');
  background-repeat: no-repeat;
  background-size: 100%;
}

.headerSolveItemActive2 {
  position: relative;
}

.headerSolveItemActive2::after {
  content: '';
  display: block;
  position: absolute;
  right: -26px;
  bottom: 34px;
  width: 18px;
  height: 12px;
  background-image: url('../img/headerItemIcon2.png');
  background-repeat: no-repeat;
  background-size: 100%;
}


/* 第二个弹窗，每次进入页面都会弹出 */
.showToast2 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 424px;
  height: 200px;
  border-radius: 16px;
  z-index: 98;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #E5F1F1;
  box-shadow: 0px 4px 15px 3px rgba(5, 13, 12, 0.3);
  display: none;
}

.closeIcon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.showToast1closeIcon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.showToast2_logo {
  width: 95px;
  height: 28px;
  margin: 20px auto 24px auto;
}

.showToast2_text {
  color: #2E3333;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  width: 216px;
  margin: auto;
  text-align: center;
}

.showToast2_button {
  width: 216px;
  height: 40px;
  border-radius: 100px;
  background: linear-gradient(90deg, #3DCCC8 0%, #29BBE2 100%, #17E5DF 100%);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 10px 0px rgba(61, 204, 200, 0.3);
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  margin: auto;
  margin-top: 26px;
}

/* 第一个弹框 */
.showToast1Whole {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /* 半透明背景 */
  backdrop-filter: blur(5px) saturate(100%);
  display: none;
}

.showToast1 {
  width: 940px;
  height: 680px;
  border-radius: 24px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #EAF1F1;
  overflow: hidden;
}

.showToast1Left {
  width: 432px;
  box-sizing: border-box;
  height: 100%;
  background-image: url('../img/talkLeftBack.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 72px;
}

.showToast1LeftLogoBox {
  margin: auto;
  width: 280px;
}

.showToast1LeftLogo {
  width: 206px;
  height: 20px;
}

.showToast1LeftText1 {
  width: 280px;
  margin: auto;
  font-size: 16px;
  font-weight: normal;
  line-height: 16px;
  color: #FFFFFF;
  margin: 115px auto 15px auto;
}

.showToast1LeftText2 {
  margin: auto;
  font-size: 32px;
  font-weight: bold;
  line-height: 50px;
  color: #FFFFFF;
  width: 280px;
}

.talkLeftText {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.showToast1LeftText3 {
  width: 280px;
  margin: auto;
  font-size: 14px;
  font-weight: normal;
  line-height: 26px;
  color: #FFFFFF;
  margin-top: 17px;
}

.showToast2Right {
  width: 508px;
  padding-top: 102px;
  box-sizing: border-box;
  height: 100%;
}

.showToast2RightText1 {
  font-size: 28px;
  font-weight: 600;
  color: #1A1A24;
  text-align: center;
}

.showToast2RightText2 {
  font-size: 14px;
  font-weight: normal;
  color: #2E3333;
  text-align: center;
  margin: 15px 0 28px 0;
}

.showToast1_button {
  width: 324px;
  height: 40px;
  border-radius: 100px;
  background: linear-gradient(90deg, #3DCCC8 0%, #29BBE2 100%, #17E5DF 100%);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 10px 0px rgba(61, 204, 200, 0.3);
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  margin: auto;
  margin-top: 76px;
  cursor: pointer;
  transition: all 0.3s;
}

.showToast1Form {
  width: 324px;
  margin: 0 auto;
}

.showToast1Item1 {
  width: 333px;
  height: 28px;
  margin-bottom: 24px;
}

.showToast1Item1Icon {
  font-size: 13px;
  color: #E54645;
  margin-right: 4px;
  margin-bottom: -3px;
}

.showToast1Item1 input {
  width: 100%;
  font-size: 14px;
  height: 28px;
  border-bottom: 1px solid #E0EBEA;
}

.texareaBox {
  box-sizing: border-box;
  border: 1px solid #E0EBEB;
  width: 324px;
  height: 120px;
  border-radius: 8px;
  padding: 5px 12px;
}

.texareaBoxText {
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #888F8F;
}

.texareaBoxElem {
  border: none;
  outline: none;
  width: 220px;
  height: 105px;
  resize: none;
  font-size: 14px;
  line-height: 22px;
  font-family: 'HarmonyOS_Sans_SC' !important;
}


/* 晃动动画 */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-10px);
  }

  40% {
    transform: translateX(10px);
  }

  60% {
    transform: translateX(-8px);
  }

  80% {
    transform: translateX(8px);
  }
}

/* 错误提示样式 */
.input-shake {
  animation: shake 0.3s ease-in-out;
  border-color: #ff4d4f !important;
}

.input-error {
  border-color: #ff4d4f !important;
}






/* 底部栏样式 */

.div_nine_content {
  width: 100%;
  height: 1392px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #4F5C74;
}

#linkDot {
  position: absolute;
  top: -90px;
}

.abouts_down_bg {
  width: 100%;
  height: 1392px;
  position: absolute;
  left: 0;
  top: 0;

}


.div_eight_bgcontent {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 71px;
  /* background-color: firebrick; */
}




.div_nine_txtone {
  font-size: 46px;
  font-weight: bold;
  color: #F8FAFC;
  z-index: 20;
  margin-top: 71px;
  font-weight: 700;

}

.div_ninet_txttwo {
  font-size: 46px;
  color: #4B6378;
  margin-top: -40px;
  z-index: 2;
  font-weight: 700;
}



.pc_two_conteent {
  width: 900px;
  height: 210px;
  margin: 59px auto 0 auto;

}

.pc_two_txtchange_content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.pc_two_contentItem {
  /* width: 220px; */
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  /* background-color: firebrick; */
}

.pc_twoItemleft {
  width: 2px;
  height: 106px;

  background-image: linear-gradient(to top, #425887, #1AF0FB);
}

.pc_twoItemright {
  width: 128px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /* background-color: firebrick; */
}

.pc_twoItemone {
  font-weight: 700;
  font-size: 34px;
  color: #FFFFFF;
}

.pc_twoItemtwo {
  font-size: 16px;
  color: #FFFFFF;
  margin: 10px 0 0 0;
}

.pc_twoItemtwo_span {
  font-weight: 500;
  font-size: 32px;
  color: #212121;
}


.div_eight_service_content {
  width: 1200px;
  height: 728px;
  /* margin-top: 60px; */
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(180deg, rgba(15, 44, 100, 0.41) 0%, rgba(9, 46, 119, 0.00) 97.92%); */
  backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid #EAF1F1;
  overflow: hidden;
  background-image: url('../img/abouts_down_bg_center.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.div_eight_service_content_two {
  width: 100%;
  height: 585px;
  ;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* background-color: #1AF0FB */
  margin-left: 50px;
}

.div_eight_service_leftone {
  font-size: 24px;
  color: #FFFFFF;
  margin-top: 0;
}

.div_eight_service_lefttwo {
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 5px;
  font-weight: 300;
}

.div_eight_service_lefttwo span {
  margin-left: 88px;
  font-weight: 300;
}

.div_eight_service_leftthree {
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 45px;
  font-weight: 300;
}

.div_eight_service_leftfour {
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 20px;
  font-weight: 300;
}

.div_eight_service_leftfive {
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 6px;
  font-weight: 300;
}

.div_eight_service_midele {
  width: 2px;
  height: 585px;
  background-color: #FFFFFF;
  opacity: 0.3;
  margin: 0 51px 0 15px;
}

.div_eight_service_right {
  width: 538px;
  height: 530px;
  /* background-color: firebrick; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 69px;
}




/* 表单 */

.div_eight_service_top {
  width: 100%;
  margin-top: 56px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* background-color: firebrick; */
}

.div_eight_service_topimput {
  width: 153px;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  /* padding-left: 7px; */
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 300;
  /* text-transform: capitalize; */
  /* margin-top:4px; */
}

.div_eight_service_topimput::placeholder {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 300;
}

/* ::-webkit-input-placeholder { 
     font-size: 14px;
     color: #FFFFFF;
     font-weight: 300;
  }
  :-moz-placeholder { 
   font-size: 14px;
   color: #FFFFFF;
   font-weight: 300;
  }
  ::-moz-placeholder { 
   font-size: 14px;
   color: #FFFFFF;
   font-weight: 300;
  }
  :-ms-input-placeholder { 
   font-size: 14px;
   color: #FFFFFF;
   font-weight: 300;
  } */

.div_eight_service_topimputtwo {
  width: 346px;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  /* opacity: 0.3; */
  /* padding-left: 7px; */
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 300;
  /* text-transform: capitalize; */
  /* margin-top:4px; */
}

.div_eight_service_topimputtwo::placeholder {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 300;
}

.div_eight_service_down {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* background-color: firebrick; */
}

.div_eight_service_topimputthree {
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  /* padding-left: 7px; */
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 300;
}


.div_eight_service_rightsubbg {
  width: 100%;
  margin-top: 58px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.div_eight_service_rightsub {
  width: 121px;
  height: 44px;
  border: 1px solid #FFFFFF;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

}

.div_eight_service_rightsub:hover {
  cursor: pointer;
  border: 1px solid #266EF9;
}

.div_eight_service_rightsub:hover .div_eight_service_rightsubtxt {
  color: #266EF9;
}

.div_eight_service_rightsubimg {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.div_eight_service_rightsubtxt {
  font-size: 14px;
  color: #FFFFFF;
  margin-left: 20px;
}

.abouts_botton_txt {
  width: 100%;
  height: 70px;
  font-size: 14px;
  color: #8F9DAA;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* background-color: firebrick; */


}

.abouts_botton_txttwo {
  width: 1220px;
  /* background-color: #3F63F6; */
  position: absolute;

}

.abouts_botton_txttwo span {
  margin-left: 38px;
}

.bottomBarIconRight {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.bottomBarIcon {
  width: 120px;
  height: 48px;
  margin-top: 58px;
  cursor: pointer;
}

.bottomBarIcon2 {
  width: 120px;
  height: 48px;
  margin-top: 58px;
  cursor: pointer;
  border-radius: 30px;
  border: 1px solid #FFFFFF;
  position: relative;
  z-index: 5;
}

.bottomBarIcon2Icon {
  width: 32px;
  height: 32px;
  position: absolute;
  left: 10px;
  top: 8px;
  transition: .3s;
}

.bottomBarIcon2Text {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  margin-left: 25px;
}

.bottomBarIcon2-1 {
  opacity: 0;
  /* transition: .1s; */
  position: absolute;
  z-index: 4;
}

.bottomBarIcon2Text2 {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}

.bottomNumIcon {
  width: 3px;
  height: 210px;
}

.bottomNum1 {
  width: 99px;
  height: 26px;
}

.bottomText1 {
  width: 128px;
  height: 16px;
  margin-top: 39px;
}

.pc_twoItemright {
  margin-left: 21px;
}

.bottomNum2 {
  width: 84px;
  height: 26px;
}

.bottomNum3 {
  width: 76px;
  height: 26px;
}

.bottomText2 {
  width: 95px;
  height: 16px;
  margin-top: 39px;
}

.bottomText3 {
  width: 111px;
  height: 16px;
  margin-top: 39px;
}

.bottomText4 {
  width: 96px;
  height: 16px;
  margin-top: 39px;
}

.bottomRightCodeBox {
  margin-top: 47px;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bottomRightCode {
  width: 150px;
  height: 150px;
}

.bottomRightCodeText {
  text-align: center;
  width: 100%;
  margin-top: 7px;
  font-size: 14px;
  line-height: 18px;
  color: #FFF;
}

.div_eight_service_left {
  width: 492px;
  height: 585px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 21px;
  /* background-color: #3F63F6; */
}

.bottomLogo {
  width: 89px;
  height: 26px;
}

.bottomLeftItem1 {
  width: 449px;
  height: 46px;
  margin: 26px 0 61px 0;
}

.bottomLeftItem2 {
  width: 492px;
  height: 383px;
}



/* 版权声明 */
.banquan {
  width: 100%;
  background-color: #000;
  height: 90px;
}

.banquanTypeArea {
  width: 1200px;
  height: 90px;
  margin: auto;
  display: flex;
  align-items: center;
}

.banquanText1 {
  font-size: 15px;
  color: #F2F2F2;
  margin-right: 50px;
}

.banquanText2 {
  font-size: 15px;
  color: #F2F2F2;
}


.bottomBarTitle {
  width: 626px;
  height: 135px;
  margin: 0 auto;
}


.bottomRightCodeTexttext {
  width: 120px;
}




/* 通用选择器 */
::placeholder,
textarea::placeholder {
  font-family: 'HarmonyOS_Sans_SC', sans-serif !important;
  /* 备用字体保险 */
}

/* 浏览器兼容性处理 */
::-webkit-input-placeholder {
  font-family: 'HarmonyOS_Sans_SC', sans-serif;
}

::-moz-placeholder {
  font-family: 'HarmonyOS_Sans_SC', sans-serif;
}

:-ms-input-placeholder {
  font-family: 'HarmonyOS_Sans_SC', sans-serif;
}



/* 新增代码 */
.headerItemBox {
  position: relative;
  display: flex;
  gap: 20px;
}

/* 动态横条容器 */
#activeIndicator {
  position: absolute;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  bottom: 0;
  height: 3px;
  background: #FFFFFF;
  border-radius: 5px;
}

/* .headerItem {
  position: relative;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.3s;
} */

a{
    text-decoration:none !important;
}






.cebianBoxBar{
    position: fixed;
    z-index: 10;
    right: 40px;
    bottom: 40px;
    width: 48px;
    height: auto;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #3DCCC8;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 20px 0px rgba(19, 69, 67, 0.2);
}

.cebianBox{
    width: 100%;
    height: 48px;
    cursor: pointer;
}

.cebianItemIcon{
    width: 24px;
    height: 24px;
    display: block;
}

.cebianLine{
    width: 40px;
    height: 1px;
    background-color:rgba(255,255,255,0.5);
}

#cebianTop{
    display: none;
    transition: opacity 0.3s;
}

.oneHide{
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 显示省略符号来代表被修剪的文本 */
}