@charset "utf-8";
/* CSS Document */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    transition: .5s;
}






.swiper-box1 {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.swiper-box1 .swiper-wrapper .swiper-slide .img {
    position: absolute;
    width: 100%;
	height: 100vh;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 10s;
    transform: scale(1.1);
}
.swiper-box1 .swiper-wrapper .swiper-slide .img video{
    width:100%;
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext {
    position: absolute;
    left: 9.3%;
    bottom: 25.5%;
    flex-direction: column;
    z-index: 1;
}
.splitbox {
    overflow: hidden;
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext h5 {
    font-size: 40px;
    color: white;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'p';
    transition: .4s;
    opacity: 1;
    /* transform: translateY(100%); */
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext h6 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    display: inline-block;
    transition: .4s;
    opacity: 1;
    /* transform: translateY(100%); */
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext .timer {
    margin-top: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext .timer .nums {
    font-size: 14px;
    color: white;
    line-height: 1;
    margin-right: 14px;
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext .timer span {
    flex: 1;
    height: 1px;
    position: relative;
    background: white;
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext .timer span::after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #05519d;
    transition: 10s;
    transition-timing-function: linear;
}
.swiper-box1 .swiper-wrapper .swiper-slide .hometext.active .timer span:after {
    width: 100%;
}
.swiper-box1 .numbox {
    position: absolute;
    right: 9.3%;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}
.swiper-box1 .numbox .num {
    display:none;
}
.swiper-box1 .numbox .prev, .swiper-box1 .numbox .next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    background: white;
    cursor: pointer;
    transition: .4s;
    color: #05519d;
}
.swiper-box1 .numbox .prev {
    margin-left: 20px;
}
.randomdots {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.randomdots .randomdot {
    cursor: pointer;
    width: 0;
    height: 0;
    padding-top: 0;
    position: absolute;
    background: #05519d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.randomdots .randomdot.active {
    width: 100%;
    padding-top: 100%;
    transform: translate(-50%, -50%) scale(3);
    transition: .5s;
    transition-timing-function: linear;
}

.swiper-box1 .numbox .prev:hover, .swiper-box1 .numbox .next:hover {
    transition-delay: .1s;
    color: white;
}

/*共用样式*/
.com_title{
	font-size:36px;
	color:#121212;
	position:relative;
	margin-bottom: 50px;
	font-weight:800;
}
.home-btn{
	display: block;
    position: relative;
    height: 59px;
    width: 225px;
	color:#fff;
	font-size:16px;
    line-height: 59px;
	background: #05519d;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
	margin-top: 30px;
}
.home-btn:before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #0058dd;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    transition: .6s;
}
.home-btn:hover:before {
    left: 0;
    right: auto;
    width: 100%;
}
.home-btn span{
    position: relative;
}
/*****简介******/
.about{
	position: relative;
	padding:120px 0 100px 0;
}
.about:after{
	position:absolute;
	background: #f5f5f5;
	top:0;
	right: 0;
	height:100%;
	content: '';
	width:34%;
	z-index: -1;
}
.word{
	width:45%;
	float:left;
}
.about .img{
	width:40%;
	float:right;
}
.word p{
	font-size:16px;
	color:#666;
	line-height: 30px;
}
.word .video{
	margin-top: 30px;
}
/**************二***************/
.left-img{
	width:50%;
	float:left;
}

.right-img{
	width:50%;
	float:right;
}

.sugg-pro{
	position: relative;
	background:#f5f5f5;
	padding:100px 0;
	overflow: hidden;
	min-height: 690px;
}
.sugg-pro .container{
	position:absolute;
	z-index: 1;
	top:100px;
	left:50%;
	transform: translateX(-50%);
}
#pDevelop{
	max-height: 200px;
	position: absolute;
	bottom:300px;
}
.square{
	position:absolute;
	left:5%;
	top:30px;
	animation: zhuan 10s linear infinite;
    -webkit-animation: zhuan 10s linear infinite;
}

@-webkit-keyframes zhuan {
	0% {transform: rotate(0deg);}
	50% {transform: rotate(180deg);}
	100% {transform: rotate(360deg);}
}

@keyframes zhuan {
	0% {transform: rotate(0deg);}
	50% {transform: rotate(180deg);}
	100% {transform: rotate(360deg);}
}

/***********三*************/
.point {
	padding-top:100px;
	overflow: hidden;
	position: relative;
}
.point_de{
    position: absolute;
    width: 100%;
    z-index: 100;
    height: 1px;
	top: 600px;
}
.hpk-circle {
    width: 790px;
    height: 750px;
    margin: 0 auto;
    position: relative;
    border: 1px dashed #c0c0c0;
    border-radius: 50%;
    position: absolute;
    margin-left: -397px;
    left: 50%;
    top: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}
.animate .hpk-circle {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}
.hpk-circle{
	display:flex;
	align-items: center;
	justify-content: center;
}

.hpk {
    height: 680px;
    position: relative;
	margin-top: 10px;
}
.knob {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    text-align: center;
    z-index: 10;
    margin-left: 24px;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
}
.user{
    left: 0%;
    bottom: 70%;
    color: #83b444;
}
.safe{
    left: 20%;
    bottom: 70%;
    color: #ffbc31;
}
.high{
    left: 40%;
    bottom: 70%;
    color: #db5f9b;
}
.peform {
    left: 60%;
    bottom: 70%;
    color: #00c9cc;
}
.ip65 {
    left: 80%;
    bottom: 70%;
    color: #7eabf5;
}


.animate .knob {
    width: 120px;
    height: 120px;
    margin-left: 0;
}
.animate .user{
    left: 17.5%;
    bottom: 15.5%;
}
.animate .safe{
    left: 22%;
    bottom: 59.7%;
}
.animate .high{
    left: 45%;
    bottom: 85.8%;
}
.animate .peform{
    left: 68%;
    bottom: 59.7%;
}
.animate .ip65{
    left: 73.8%;
    bottom: 15.5%;
}
.knob .des{
    position: absolute;
    display: block;
	width:298px;
    font-weight: normal;
    opacity: 0;
	text-align: left;
	word-break: keep-all
}
.knob .des h2{
	font-size:20px;
	color:#121212;
}
.knob .des p{
	font-size:16px;
	color:#888;
	line-height: 26px;
	margin-top: 10px;
}
.animate .icon1{
    margin-left: 0;
    width: 120px;
    height: 120px;
    left: 0;
}
.icon1{
	position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    text-align: center;
    left: 0;
}
.animate .knob .des{
    -webkit-animation: knobtitle 2s ease;
    -moz-animation: knobtitle 2s ease;
    opacity: 1;
}
.hpk .user .des{
    right: 143px;
    text-align: right;
    top: 20px;
}
.hpk .safe .des{
    right: 135px;
    text-align: right;
    top: 19px;
}
.hpk .high .des{
    left: -85px;
    top: -71px;
	text-align: center;
}
.hpk .peform .des{
    left: 132px;
    text-align: left;
    top: 19px;
}
.hpk .ip65 .des{
    left: 133px;
    text-align: left;
    top: 20px;
}

/***********四*************/
.app{
    position: relative;
    display: flex;
    width: 100%;
    height:100vh;
}
.app .container{
    padding: 90px 0 115px;
}
.app-content{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.app-banner__col{
    width: 65%;
}
.h2{
    font-size: 60px;
    line-height:84px;
    text-transform: none;
    letter-spacing: .02em;
	color:#fff;
}
.finished-project-banner__description {
    margin-top: 15px;
    margin-bottom: 20px;
    color: #f5f5f5;
	font-size:16px;
}
.app-banner__col_right{
	width:25%;
    display: flex;
    align-items: flex-end;
}
.h4{
    font-size: 48px;
    line-height: 60px;
    text-transform: none;
    letter-spacing: .016em;
	color:#fff;
}
.finished-project-banner__sub-title {
    margin-bottom: 70px;
}
.app-button{
    position: relative;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    transition: .5s;
	margin-right: 30px;
}
.button__icon_chevron {
    width: 15px;
	margin-right: 10px;
}
.app-btn .button__icon path {
    fill: #05519d;
}
.button__text {
    color: #fff;
	font-size:18px;
}

/***********五*************/

.contact .inner-wrap {
    max-width: 100%;
    position: relative;
    float: left;
    width: 100%;
	background: #f3f3f3;
}
.contact .imagebox {
    height: 100%;
    position: absolute;
    left: 0;
	top: 0;
}
.imagebox {
    width: 48%;
    margin-right: 2%;
    background-size: cover!important;
    height: 500px;
    float: left;
}
.contact .textbox {
    width: 60%;
    z-index: 2;
    position: relative;
    background: #fff;
    margin: 80px 0;
    padding: 40px 8%;
	float: right;
}
.contact .textbox h2 {
    margin-top: 0;
	font-size: 34px;
    font-weight: 700!important;
	color:#121212;
}
.contact .textbox p {
    color: #666;
	margin:15px 0;
}
.home-form form{
	display:flex;
	justify-content: space-between;
	flex-flow: row wrap;
}
.home-form input{
	display:block;
	width:49%;
	padding:15px;
	color: #000;
    border: 1px solid #e2e2e2;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s ease all;
    border-radius: 0;
    background: #fff;
	font-size: 15px;
    margin-bottom: 15px;
    margin-top: 0;
}
.home-form textarea{
	width: 100%;
	height: 96px;
	font-size: 15px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 8px;
	border: 1px solid #e2e2e2;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s ease all;
    border-radius: 0;
    background: #fff;
	margin-bottom: 15px;
}


/*******************首页产品*******************/
.tit{
    font-size: 30px;
    line-height: 30px;
    color: #121212;
    text-align: center;
    font-weight: bold;
    margin-bottom: 60px;
	margin-top: 60px;
}
.tit span {
    display: inline-block;
    padding: 0px 40px 26px;
    position: relative;
    border-bottom: 1px solid #d3d8dc;
}
.tit span:before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #05519d;
    left: 50%;
    margin-left: -30px;
    bottom: -1px;
    position: absolute;
}
.tit p{
    font-size: 18px;
    color: #3c3c3c;
    font-weight: normal;
    line-height: 18px;
    margin-top: 30px;
}
.home-product{ margin-bottom: 60px;}
.home-product .item {
    position: relative;
    width:calc(33.3333% - 10px);
    cursor: pointer;
	float:left;
}
.home-product .items{
	margin:0 10px;
}
.home-product .imgs {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}
.home-product .item .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 70px 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
.home-product .item .text i {
    font-size: 45px;
    color: #fff;
    line-height: 1;
}
.home-product .item .text h5 {
    font-size: 24px;
    color: #fff;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 6px;
}
.home-product .item .text h6 {
    font-family: Arial;
    font-size: 16px;
    color: #fff;
    line-height: normal;
    margin-bottom: 25px;
}
.home-product .item .text .line {
	display:block;
	background: #fff;
    width: 30px;
    height: 2px;
}
.home-product .item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: circle(20%);
    clip-path: circle(20%);
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
    background: rgba(32, 100, 167, 0.95);
    -webkit-transition-timing-function: var(--ease-in-out-a);
    transition-timing-function: var(--ease-in-out-a);
    z-index: 3;
    padding-top: 85px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.home-product .item .bg h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.home-product .item .bg h2 {
    font-size: 16px;
    color: #fff;
    line-height: normal;
    margin-bottom: 100px;
}
.home-product .item .bg i {
    font-size: 45px;
    color: #fff;
    line-height: 1;
}
.home-product .item .bg i img{
	margin:0 auto;
}
.home-product .item .bg h5 {
    font-size: 24px;
    color: #fff;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 6px;
}
.home-product .item .bg h6 {
    font-family: Arial;
    font-size: 16px;
    color: #fff;
    line-height: normal;
    margin-bottom: 25px;
}
.home-product .item .bg .line {
    width: 30px;
    height: 2px;
    margin: 0 auto;
}
.home-product .item .bg ul li a{
	font-size:14px;
	color:#fff;
	line-height: 30px;
}
.home-product .item:hover .bg {
    -webkit-clip-path: circle(100%);
    clip-path: circle(100%);
    opacity: 1;
}












