*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'HarmonyOS'; /* 你可以给字体取一个容易记忆的名字 */
    src: url('../font/HarmonyOS_Sans_SC_Regular.ttf') format('truetype'); /* 路径根据你的文件放置位置调整 */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'HarmonyOSBold'; /* 你可以给字体取一个容易记忆的名字 */
    src: url('../font/HarmonyOS_Sans_SC_Bold.ttf') format('truetype'); /* 路径根据你的文件放置位置调整 */
    font-weight: normal;
    font-style: normal;
}
body{
	font-family: HarmonyOS,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
    background-color: #FBFBFB;
}
.fontBold{
    font-family: HarmonyOSBold,sans-serif;
}
ul,li{
	list-style: none;
    margin: 0;
}
div{
	font-size: 14px;
}
p {
    margin-bottom: 0;
}
.red{
    color: red;
}
.acea-row {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-o-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
/* 辅助类 */
}
.acea-row.nowrap{
	width: 100%;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
  .acea-row.row-start {
	-webkit-box-align: flex-start;
	-moz-box-align: flex-start;
	-o-box-align: flex-start;
	-ms-flex-align: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
  }
  .acea-row.row-middle {
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
  }
  .acea-row.row-bottom {
	-webkit-box-align: end;
	-moz-box-align: end;
	-o-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
  }
  .acea-row.row-center {
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-o-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
  }
  .acea-row.row-right {
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-o-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
  }
  .acea-row.row-between {
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-o-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  }
    /* 上下两边居中对齐 */
	.acea-row.row-evenly {
		-webkit-box-pack: justify;
		-moz-box-pack: justify;
		-o-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: space-evenly;
		justify-content: space-evenly;
  }
  .acea-row.row-column {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-o-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
  }
  /* 竖排组合 */
  .acea-row.row-column-all {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-o-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-o-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  }
  /* 横排组合 */
  .acea-row.row-wrap-all {
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-o-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  }
  /* 上下左右垂直居中 */
  .acea-row.row-center-wrapper {
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-o-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
  }
  /* 上下两边居中对齐 */
  .acea-row.row-between-wrapper {
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-o-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.move {
    cursor: move;
}
.ml{
	margin-left: 20px;
}
.mr{
	margin-right: 20px;
}
.mt{
	margin-top: 20px;
}
.mb{
	margin-bottom: 20px;
}
.ml5{
	margin-left: 5px;
}
.mr5{
	margin-right: 5px;
}
.mt5{
	margin-top: 5px;
}
.mb5{
	margin-bottom: 5px;
}
.ml10{
	margin-left: 10px;
}
.mr10{
	margin-right: 10px;
}
.mt10{
	margin-top: 10px;
}
.mb10{
	margin-bottom: 10px;
}
.pl{
	padding-left: 20px;
}
.pr{
	padding-right: 20px;
}
.pt{
	padding-top: 20px;
}
.pb{
	padding-bottom: 20px;
}
.pl5{
	padding-left: 5px;
}
.pr5{
	padding-right: 5px;
}
.pt5{
	padding-top: 5px;
}
.pb5{
	padding-bottom: 5px;
}
.pl10{
	padding-left: 10px;
}
.pr10{
	padding-right: 10px;
}
.pt10{
	padding-top: 10px;
}
.pb10{
	padding-bottom: 10px;
}
.hide{
    display: none;
}
.show{
    display: block;
}
img{
    max-width: 100%;
    display: block;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1170px;
}
.head{
    padding: 5px 0;
    border-bottom: 3px solid #1370CB;
}
.head .logo{
    max-width: 200px;
    max-height: 90px;
    padding-right: 30px;
}
.head .logo img{
    max-width: 100%;
    max-height: 100%;
}
.head .menu{
    padding: 15px 0;
}
.head .menu ul{
    height: 60px;
}
.head .menu li{
    font-size: 16px;
    padding: 0 20px;
}
.head .menu li a{
    padding: 5px 20px;
    line-height: 30px;
    color: #000;
}
.head .menu li:hover a,
.head .menu li.actived a{
    color: #0173D4;
    
}

.box .title{
    text-align: center;
    color: #fff;
    padding: 25px 0;
    margin-bottom: 30px;
}
.box .title .tit{
    font-family: HarmonyOSBold,sans-serif;
    font-size: 38px;
}
.box .title p{
    font-size: 26px;
    font-weight: normal;
}
.index-box .box .title{
    background-color: #0073D3;
}

.index-box .box .con{
    margin:0 -40px;
}
.index-box .box1 .con .list{
    background-color: #fff;
    border-radius: 35px;
    margin: 10px;
    margin-bottom: 30px;
}
.index-box .box .con .list .text{
    padding: 20px;
}
.index-box .box .con .list .text p{
    min-height: 42px;
}

.index-box .box2 .tips{
    text-align: center;
    font-size: 30px;
    padding: 20px 0 40px;
}
.index-box .box2 .con .list{
    height: 400px;
    position: relative;
}
.index-box .box2 .con .list:hover .con{
    display: block;
}
.index-box .box2 .con .list .con{
    background-color: rgba(238, 77, 45, 0.7);
    color: #fff;
    padding: 20px;
    position: absolute;
    left: 20%;
    right: 20%;
    top: 0;
    height: 100%;
    display: none;
}
.index-box .box2 .con .list .con p{
    font-size: 20px;
}
.index-box .box2 .con .list img{
    max-width:200px ;
}

.index-box .box3{
    background-image: url('../images/index/index-boxBg.jpg');
}
.index-box .box3 .title{
    background: none;
}
.index-box .box3 .tips{
    text-align: center;
    color: #FFF9F2;
    font-size: 18px;
    line-height: 36px;
}

.about-box .box1{
    padding: 20px 0 80px;
    background-size: 100%;
}
.about-box .box1 .img{
    max-width: 400px;
    position: relative;
    z-index: 100;
}  
.about-box .box1 .text{
    background-color: #fff;
    width: calc(100% - 400px);
    position: relative;
    z-index: 99;
    height: 360px;
    margin-top: 35px;
    padding: 40px 30px;
    padding-left: 40px;
    margin-left: -20px;
    font-size: 20px;
    line-height: 40px;
    color: #1872CA;
    text-indent: 3ch;
} 
.about-box .box2{
    background-size: cover;
}

.about-box .box3{
    background-color: #fff;
    padding-bottom: 80px;
}
.about-box .box3 .img{
    padding-bottom: 50px;
}
.about-box .box3 .list{
    margin: 0 -15px;
}
.about-box .box3 .con{
   background-color: #1872CA;
   border-radius: 10px;
   padding: 15px;
}
.about-box .box3 .name{
    line-height: 40px;
    color: #fff;
    font-size: 20px;
    padding-bottom: 15px;
}
.about-box .box3 .icon{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.about-box .box3 p{
    color: #fff;
    padding-bottom: 5px;
    padding-left: 10px;
    font-size: 15px;
}
.about-box .box4{
    background-color: #1872CA;
    padding-top: 30px;
}


.contactus .box1{
    padding: 30px 0;
}
.contactus .box1 .title{
    color: #1872CA;
}
.contactus .box1 .list{
    padding-bottom: 50px;
}
.contactus .box1 .icon{
    width: 100px;
    height: 100px;
    margin-right: 50px;
}
.contactus .box1 .link{
    height: 100px;
    line-height: 100px;
    width: 800px;
    border-radius: 50px;
    background-color: #EE4D2D;
    color: #fff;
    text-align: center;
}
.contactus .box1 .link a{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}
.contactus .box1 .lazada{
    background: linear-gradient(to right, #F86A17, #F5137D);
}
.contactus .box1 .tik{
    background-color: #000;
}
.contactus .box1 .tik a{
    color: #26F3ED;
}
.contactus .box2{
    height: 800px;
    background-size: cover;
}
.contactus .box2 .text{
    padding-top: 430px;
    color: #fff;
    font-weight: bold;
}
.contactus .box2 .text div{
    font-size: 40px;
}
.contactus .box2 .text p{
    font-size: 40px;
}
.contactus .box3{
    padding-top: 80px;
    background-color: #fff;
}
.contactus .box3 .container{
    width: 1000px;
}
.contactus .box3 .input{
    border-bottom: 1px solid #676767;
    width: 45%;
    padding: 15px 0;
    font-size: 16px;
    color: #676767;
    margin-bottom: 15px;
}
.contactus .box3 .message{
    width: 100%;
}
.contactus .box3 .input input{
    border: none;
    outline: none;
    margin-left: 5px;
    width: 70%;
    background: none;
}
.contactus .box3 button{
    color: #1872CA;
    font-size: 18px;
    padding: 10px 40px 10px 15px;
    border-radius: 30px;
    border: #1872CA 2px solid;
    background: none;
    background-image: url('../images/contactus/icon.png');
    background-size: 18px;
    background-position: 55px 15px;
    background-repeat: no-repeat;
    margin-top: 20px;
}


.footer{
    padding: 80px 0;
}
.footer .code>div{
    padding: 0 20px;
}
.footer .code .img{
    width: 150px;
}
.footer .code .name{
    padding-top: 10px;
    text-align: center;
}
.footer .contact{
    padding: 0 60px;
}
.footer .tit{
    font-size: 20px;
    padding-bottom: 10px;
}
.footer .con p{
    padding: 5px 0;
}
.footer .con img{
    height: 35px;
}