/* 已经整合到component.css,这里时备份 */
@charset "UTF-8";
@font-face {
  font-family: 'HarmonyOS_Sans_SC';
  src: url('../fonts/HarmonyOS_Sans_SC.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Bold';
  src: url('https://ctmon-file.ctmon.com.cn/fonts/HarmonyOS_Sans_SC_Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ranybold_italic';
  src: url('../fonts/rany-bold_italic-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'RanyBold';
  src: url('../fonts/rany-bold-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'RanyRegular';
  src: url('../fonts/rany-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RanyLight';
  src: url('../fonts/rany-light-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
/* 公共样式文件 */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

img {
	max-width: 100%;
	width: 100%;
	border: none;
	max-height: 100%;
	object-fit: cover;
}

.pcbanner{
	display: block;
}
.phonebanner{
	display: none;
}
@media screen and (max-width: 768px) {
	.pcbanner{
		display: none;
	}
	.phonebanner{
		display: block;
	}
}

ul li {
	list-style-type: none;
}

ul,
form,
p,
a,
img,
table,
tr,
td,
li,
dd,
dt,
dl,
span {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
	outline: none;
}

/* input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
} */

button {
	border-radius: 0px;
	-webkit-border-radius: 0px;
}

/*reset css*/
html {
	font-size: max(calc(100vw / 19.2), 50px) !important; /* 适配1920px宽度 */
	/* 适配1920px宽度 */
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font: var(--font-size-16) 'HarmonyOS_SansSC_Regular', 'Microsoft YaHei', 'sans-serif';
	--theme-color: #086a67;
	--primary-color: #c1dedd;
	--font-bold: 'wixmadefordisplay_BOLD';
	--font-regular: 'wixmadefordisplay_REGULAR';

	/* 主题色 */
	--color-primary: #086a67;
	/* 文本色 */
	--color-text: #222;
	--color-link: #18266a;
	--color-vi: #086a67;
	/* 导航高度 */
	--header-height: 0.98rem;

	line-height: 1.5;
	--font-size-72: max(0.72rem, 24px);
	--font-size-60: max(0.6rem, 26px);
	--font-size-48: max(0.48rem, 24px);
	--font-size-40: max(0.4rem, 24px);
	--font-size-36: max(0.36rem, 24px);
	--font-size-34: max(0.34rem, 24px);
	--font-size-32: max(0.32rem, 22px);
	--font-size-30: max(0.3rem, 22px);
	--font-size-28: max(0.28rem, 22px);
	--font-size-26: max(0.26rem, 20px);
	--font-size-24: max(0.24rem, 16px);
	--font-size-22: max(0.22rem, 16px);
	--font-size-20: max(0.2rem, 16px);
	--font-size-18: max(0.18rem, 14px);
	--font-size-16: max(0.16rem, 14px);
	--font-size-14: max(0.14rem, 12px);
	--font-size-12: max(0.12rem, 12px);
	margin: 0 auto;
	width: 100%;
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main{
	display: block;
	flex: 1;
}

*[id] {
	scroll-margin-top: 1rem;
	/* 避免锚点内容被 fixed header 遮挡 */
	scroll-behavior: smooth;
}

html, body {
	font-family: 'HarmonyOS_Sans_SC', 'Microsoft YaHei', 'sans-serif';
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0px;
  padding: 0px;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: #333;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

svg:not(:root) {
  overflow: hidden;
}

pre {
  overflow: auto;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
}

button {
  overflow: visible;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

button,
select {
  text-transform: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  /* line-height: normal; */
  /* -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none; */
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  display: none;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 400;
  color: inherit;
}

a {
  color: #333;
}

.section {
  width: 100%;
  position: relative;
}

.pull-right {
  float: right;
}

.dis-table {
  display: table;
  width: 100%;
  height: 100%;
}

.dis-cell {
  display: table-cell;
  vertical-align: middle;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

em {
  font-style: normal;
}

html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  border: none;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* 单行文本省略号 */
.dot {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dot2, .dot3, .dot4, .dot5, .dot6, .dot7, .dot8, .dot9 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
}

/* 多行文本省略号 */
.dot2 {
  -webkit-line-clamp: 2;
}

.dot3 {
  -webkit-line-clamp: 3;
}

.dot4 {
  -webkit-line-clamp: 4;
}

.dot5 {
  -webkit-line-clamp: 5;
}

.dot6 {
  -webkit-line-clamp: 6;
}

.dot7 {
  -webkit-line-clamp: 7;
}

.dot8 {
  -webkit-line-clamp: 8;
}

.dot9 {
  -webkit-line-clamp: 9;
}

/* 盒子布局 */
.flexsb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

.flexsa {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
}

.flexlf {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: left;
}

.flexed {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
}

.flexce {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}

.cflexce {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.flexace {
  align-items: center;
}

/* scrollbar */
.scrollbar::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.popcont .pbot .pcont.scrollbar::-webkit-scrollbar,
.pcba5 .pcba5_tbBox.scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar::-webkit-scrollbar-button:vertical {
  display: none;
}

.scrollbar::-webkit-scrollbar-track {
  background: #eaeaea;
}

.scrollbar::-webkit-scrollbar-corner {
  background-color: #ffffff;
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #0da7fc;
}

.scrollbar::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #0da7fc;
}

.scrollbar::-webkit-scrollbar-thumb:vertical:active {
  background-color: #0da7fc;
}

@media screen and (max-width: 767px) {
  .scrollbar::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .popcont .pbot .pcont.scrollbar::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
}

/* placeholder */
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  font-size: 16px;
  color: #222222;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  font-size: 16px;
  color: #222222;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  font-size: 16px;
  color: #5a5f74;
}

.input1::-webkit-input-placeholder,
.textarea1::-webkit-input-placeholder {
  font-size: 16px;
  color: #5a5f74;
}

.input1::-moz-placeholder,
.textarea1::-moz-placeholder {
  font-size: 16px;
  color: #5a5f74;
}

.input1:-ms-input-placeholder,
.textarea1:-ms-input-placeholder {
  font-size: 16px;
  color: #5a5f74;
}

.inpBox .ipt::-webkit-input-placeholder,
.iptBox .input::-webkit-input-placeholder {
  font-size: 16px;
  color: #999999;
}

.inpBox .ipt::-moz-placeholder,
.iptBox .input::-moz-placeholder {
  color: #999999;
}

.inpBox .ipt:-ms-input-placeholder,
.iptBox .input:-ms-input-placeholder {
  font-size: 16px;
  color: #999999;
}

.blog1 .semenu .input1::-webkit-input-placeholder {
  font-size: 16px;
  color: #1090f0;
}

.blog1 .semenu .input1::-moz-placeholder {
  color: #1090f0;
}

.blog1 .semenu .input1:-ms-input-placeholder {
  font-size: 16px;
  color: #1090f0;
}

@media screen and (max-width: 980px) {
  .blog1 .semenu .input1::-webkit-input-placeholder {
    font-size: 13px;
  }
  .blog1 .semenu .input1::-moz-placeholder {
    font-size: 13px;
  }
  .blog1 .semenu .input1:-ms-input-placeholder {
    font-size: 13px;
  }
  .input1::-webkit-input-placeholder {
    font-size: 13px;
  }
  .input1::-moz-placeholder {
    font-size: 13px;
  }
  .input1:-ms-input-placeholder {
    font-size: 13px;
  }
  .input1::-webkit-input-placeholder,
  .textarea1::-webkit-input-placeholder {
    font-size: 13px;
  }
  .input1::-moz-placeholder,
  .textarea1::-moz-placeholder {
    font-size: 13px;
  }
  .input1:-ms-input-placeholder,
  .textarea1:-ms-input-placeholder {
    font-size: 13px;
  }
  .input::-webkit-input-placeholder,
  .textarea::-webkit-input-placeholder {
    font-size: 13px;
  }
  .input::-moz-placeholder,
  .textarea::-moz-placeholder {
    font-size: 13px;
  }
  .input:-ms-input-placeholder,
  .textarea:-ms-input-placeholder {
    font-size: 13px;
  }
  .inpBox .ipt::-webkit-input-placeholder {
    font-size: 13px;
  }
  .inpBox .ipt::-moz-placeholder {
    font-size: 13px;
  }
  .inpBox .ipt:-ms-input-placeholder {
    font-size: 13px;
  }
  .iptBox .input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .iptBox .input::-moz-placeholder {
    font-size: 13px;
  }
  .iptBox .input:-ms-input-placeholder {
    font-size: 13px;
  }
}

.padt-90 {
  padding-top: 85px;
}

.padt-80 {
  padding-top: 75px;
}

.padt-100 {
  padding-top: 110px;
}

.padb-100 {
  padding-bottom: 120px;
}

.padb-90 {
  padding-bottom: 90px;
}

.pad-100 {
  padding: 120px 0;
}

.padt-40 {
  padding-top: 40px;
}

.marb-100 {
  margin-bottom: 110px;
}

.mart-100 {
  margin-top: 110px;
}

.mart-70 {
  margin-top: 70px;
}

.mart-50 {
  margin-top: 50px;
}

.mart-40 {
  margin-top: 40px;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

@media screen and (max-width: 1459px) {
  .padt-90 {
    padding-top: 65px;
  }
  .padt-80 {
    padding-top: 55px;
  }
  .padt-100 {
    padding-top: 70px;
  }
  .padb-100 {
    padding-bottom: 80px;
  }
  .marb-100 {
    margin-bottom: 70px;
  }
  .mart-100 {
    margin-top: 70px;
  }
  .padb-90 {
    padding-bottom: 65px;
  }
  .pad-100 {
    padding: 80px 0;
  }
  .mart-60 {
    margin-top: 30px;
  }
  .mart-50 {
    margin-top: 30px;
  }
  .f16 {
    font-size: 14px;
  }
}

@media screen and (max-width: 1366px) {
  .padt-90 {
    padding-top: 55px;
  }
  .padt-80 {
    padding-top: 45px;
  }
  .padt-100 {
    padding-top: 60px;
  }
  .padb-100 {
    padding-bottom: 70px;
  }
  .marb-100 {
    margin-bottom: 60px;
  }
  .mart-100 {
    margin-top: 60px;
  }
  .padb-90 {
    padding-bottom: 55px;
  }
  .pad-100 {
    padding: 70px 0;
  }
  .mart-60 {
    margin-top: 30px;
  }
  .mart-50 {
    margin-top: 20px;
  }
  .f16 {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .padt-90 {
    padding-top: 45px;
  }
  .padt-80 {
    padding-top: 35px;
  }
  .padt-100 {
    padding-top: 40px;
  }
  .padb-100 {
    padding-bottom: 50px;
  }
  .padb-90 {
    padding-bottom: 45px;
  }
  .pad-100 {
    padding: 50px 0;
  }
  .padt-40 {
    padding-top: 30px;
  }
  .mart-40 {
    margin-top: 30px;
  }
  .marb-100 {
    margin-bottom: 50px;
  }
  .mart-100 {
    margin-top: 50px;
  }
}

a,
img,
.swiper-button-next, .swiper-button-prev {
  -webkit-transition: 0.8s;
  -ms-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
.pic img,
.pic,
.section2 .imgBox,
.section2 .imgBox img,
.section3 .imgBox img,
.section4 .imgBox,
.section4 .imgBox img,
.section5 .rimg img,
.product6 .imgBox,
.product6 .imgBox img,
.promag3 .imgBox img,
.promag6 .left img,
.promag7 .imgBox img,
.promag3 .imgBox,
.promag3 .imgBox img,
.markets1 .imgBox img,
.markets2 .swiper-slide .imgBox,
.markets2 .swiper-slide .imgBox img,
.aicenter3 .imgBox,
.aicenter3 .imgBox img,
.contact2 .imgBox img,
.blog1 .imgBox img,
.about3 .imgBox img,
.about7 .imgBox .img img,
.about9 .swiper-slide .imgBox,
.about9 .swiper-slide .imgBox img{
 overflow: hidden;
  width: 100%;
  transition: all 0.6s;
}
.pic:hover img,
.menu_list .pro_mctli:hover .pro_mcimg img,
.section2 .swiper-slide:hover .imgBox img,
.section3 .imgBox:hover img,
.section4 .swiper-slide:hover .imgBox img,
.section5 .rimg:hover img,
.section7 .imgBox:hover img,
.product3 .simg:hover img,
.product3 .bimg:hover img,
.product6 .li:hover .imgBox img,
.promag3 .imgBox:hover img,
.promag6 .list .left:hover img,
.promag7 .swiper-slide:hover .imgBox img,
.promag3 .swiper-slide:hover .imgBox img,
.markets1 .swiper-slide:hover .imgBox img,
.markets2 .swiper-slide:hover .imgBox img,
.aicenter2 .swiper-slide:hover .imgBox img,
.aicenter3 .swiper-slide:hover .imgBox img,
.contact2 .li:hover .imgBox img,
.blog1 .rli:hover .imgBox img,
.about3 .imgBox:hover img,
.about7 .swiper-slide:hover .imgBox img,
.about8 .swiper-slide:hover .imgBox .img img,
.about9 .swiper-slide:hover .imgBox img,
.service2 .swiper-slide:hover .bimg img{
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.solution2 .right:hover img{
  transform: scale(0.95);
  -ms-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -o-transform: scale(0.95);
}
.menu_list .pro_mctli:hover .pro_mcft,
.product6 .li:hover .stit,
.markets1 .swiper-slide:hover .font .tit,
.contact1 .li:hover .dec,
.about7 .swiper-slide:hover .ctit,
.about8 .swiper-slide:hover .ctit,
.service2 .swiper-slide:hover .btit{
  color: #0e99f5;
}
.section1 .right .link:hover .font .tit{
  font-weight: bold;
}
.icon img,
.section4 .left .limg img,
.section3 .iconBox img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section3 .rli:hover .iconBox img,
.promag1 .li:hover .iconBox img,
.proqsf1 .li:hover .iconBox img{
  animation: swing 1s;
}
.numBox .nli:hover .iconBox,
.section2 .li:hover .iconBox,
.zbanner .swiper_tag .tag:hover::before,
.ems1 .li:hover .iconBox,
.about3 .li:hover .iconBox img,
.ma1 .sli:hover .iconBox img{
  transform: translateY(-8px);
}

