* {
	margin: 0;
	padding: 0;
}

/* 按钮样式 */
.more_view{
	display: flex;
    align-items: center;
	justify-content: center;
    column-gap: 0.29rem;
    width: 2.4rem;
	height: 0.65rem;
	border-radius: 0.37rem;
	background: #163681;
    font-family: Sans-SemiBold;
    font-weight: 600;
    font-size: 0.18rem;
    color: #FFFFFF;
}
.more_view i{
    display: block;
    width: 0.25rem;
    height: 0.25rem;
    background: url(../img/more.png) center center / 100% 100%;
    filter: brightness(0) invert(1);
    position: relative;
}



/* 栏目样式 */
.class_name .class_title{
	text-align: center;
	font-family: Sans-Bold;
	font-weight: bold;
	font-size: 0.5rem;
	color: #000000;
	margin-bottom: 0.17rem;
	text-transform: uppercase;
}
.class_name .class_info{
	text-align: center;
	font-family: Sans-Regular;
	font-weight: 400;
	font-size: 0.16rem;
	color: #929292;
}






/* banner */
.banner{
    width: 100%;
    height: 10.8rem;
    max-height: 10.8rem;
    overflow: hidden;
    position: relative;
}
.banner .swiper-container {
    width: 100%;
    height: 100%;
	position: relative;
}
.banner .swiper-slide {
    overflow: hidden;
    background: #fff;
	padding-top: 2.1rem;
	box-sizing: border-box;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.banner .banner_title {
    text-align: center;
    font-family: Humnst777 Blk BT, Humnst777 Blk BT;
    font-weight: bolder;
    font-size: 0.55rem;
    color: #FFFFFF;
    text-transform: uppercase;
    font-style: italic;
	letter-spacing: 0.01rem;
    transition: all .5s;
    opacity: 0;
    transform: translateY(40px);
}
.banner .banner_info{
	margin-top: 0.24rem;
	text-align: center;
    font-family: Open Sans, Open Sans;
	font-weight: 400;
	font-size: 0.26rem;
	color: #ffffff;

	opacity: 0;
    transform: translateY(40px);
	transition: all .5s;
}

.banner .more_button {
    display: flex;
    align-items: center;
	justify-content: center;
    column-gap: 0.37rem;
    margin: 0.77rem auto 0;
    width: 2.4rem;
	height: 0.65rem;
	border-radius: 0.37rem;
	border: 0.01rem solid #FFFFFF;
    font-family: Sans-SemiBold;
    font-weight: 600;
    font-size: 0.18rem;
    color: #FFFFFF;

    opacity: 0;
    transform: translateY(40px);
    transition: all .5s;
}
.banner .more_button i{
    display: block;
    width: 0.25rem;
    height: 0.25rem;
    background: url(../img/more.png) center center / 100% 100%;
    filter: brightness(0) invert(1);
    position: relative;
}
.banner .style .banner_title{
	color: #000000;
}
.banner .style .banner_info{
	color: #3F434D;
}
.banner .style .more_button{
	border: 0.01rem solid #222430;
	color: #222430;
}
.banner .style .more_button i{
    filter: brightness(1) invert(0);
}

.banner .swiper-slide-active .banner_title,
.banner .swiper-slide-active .banner_info,
.banner .swiper-slide-active .more_button{
    opacity: 1;
    transform: translateY(0px)
}
.banner .more_button:hover {
	border: 0.01rem solid #163681;
    background: #163681;
    color: #fff;
}
.banner .more_button:hover i{
    filter: brightness(0) invert(1);
}


.banner .btn_next,
.banner .btn_prev {
    width: 0.54rem;
	height: 0.54rem;
	background: rgba(255,255,255,0.2);
	border: 0.01rem solid rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0;
	top: auto;
	bottom: 0.58rem;
	left: auto;
}
.banner .btn_prev{
	right: 2.23rem;
}
.banner .btn_next{
	right: 1.6rem;
}
.banner .btn_next::after,
.banner .btn_prev::after {
    display: none;
}
.banner .btn_next img,
.banner .btn_prev img{
    width: 0.08rem;
    height: 0.15rem;
    filter: brightness(0) invert(1);
}
.banner .btn_next:hover,
.banner .btn_prev:hover {
    background: rgba(255,255,255);
    border: 1px solid rgba(255,255,255)
}
.banner .btn_next:hover img,
.banner .btn_prev:hover img {
    filter: brightness(1) invert(0);
}
.banner .p_scrool {
    position: absolute;
    left: calc((100% - 90px) / 2);
    bottom: 0.49rem;
    color: #fff;
    width: 90px;
    z-index: 10
}

.banner .p_scrool i {
    display: block;
    width: 0.24rem;
    height: 0.35rem;
    margin: 0 auto;
    border-radius: 0.12rem;
    border: 2px #fff solid;
    position: relative
}

.banner .p_scrool i:before {
    content: "";
    display: block;
    width: 0.03rem;
    height: 0.1rem;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    top: 3px;
    animation: scrollmouse 2s linear infinite
}
@keyframes scrollmouse {
    from {
        transform: translate(-50%,0);
        opacity: 1
    }

    to {
        transform: translate(-50%,10px);
        opacity: 0
    }
}





/* 关于 */
.about{
	padding: 1.5rem 0 0.96rem;
	box-sizing: border-box;
	background: linear-gradient( 180deg, #F6F8FB 0%, #F6F8FB 74.46%, #DAEDFE 100%, #CBE7FF 100%);
}
.about .about_box{
	display: flex;
	justify-content: space-between;
}
.about .about_box .about_litpic{
	width: 8.28rem;
	height: 4.66rem;
	border-radius: 0.2rem;
	position: relative;
	overflow: hidden;
	margin-top: 0.12rem;
}
.about .about_box .about_txt{
	width: 6.38rem;
	height: auto;
}
.about .about_box .about_txt .about_title{
	font-family: Sans-Bold;
	font-weight: bold;
	font-size: 0.5rem;
	color: #000000;
	text-transform: uppercase;
	margin-bottom: 0.42rem;
	position: relative;
}
.about .about_box .about_txt .about_title::before{
	content: "";
	display: block;
	width: 6.66rem;
	height: 0.81rem;
	background: url(../img/about_bg.png) center center / 100% 100%;
	position: absolute;
	left: -0.14rem;
	top: -0.4rem;
	pointer-events: none;
}
.about .about_box .about_txt .about_info{
	font-family: Open Sans, Open Sans;
	font-weight: 500;
	font-size: 0.18rem;
	color: #000000;
	line-height: 1.66;
	margin-bottom: 0.64rem;
	text-align: justify;
}
.about .about-container{
	display: flex;
	justify-content: space-between;
	margin-top: 1.5rem;
}
.about .about-container .about_num{
	width: 25%;
	position: relative;
}
.about .about-container .about_num::before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 0.01rem;
	height: 1.64rem;
	background: #D4D4D4;
}
.about .about-container .about_num:first-child::before{
	display: none;
}
.about .about-container .num{
	display: flex;
	justify-content: center;
	font-family: Sans-Bold;
	font-weight: bold;
	font-size: 0.3rem;
	color: #222430;
	column-gap: 0.08rem;
}
.about .about-container .scroll_num{
	font-family: Poppins-SemiBold;
	font-weight: 600;
	font-size: 0.6rem;
	color: #222430;
	margin-top: -0.08rem;
}
.about .about-container .about_info{
	text-align: center;
	font-family: Sans-SemiBold;
	font-weight: 600;
	font-size: 0.2rem;
	color: #222430;
	margin: 0.08rem 0 0.2rem;
}
.about .about-container .about_icon{
	width: 0.6rem;
	height: 0.6rem;
	margin: 0 auto;
}






/* 产品 */
.product{
	padding: 0.84rem 0 2.07rem;
	box-sizing: border-box;
}
.product_box{
	margin-top: 0.92rem;
	overflow: hidden;
	height: fit-content;
	display: flex;
	justify-content: space-between;
	column-gap: 0.1rem;
}
.product_box .product_item{
	width: 3.86rem;
	height: 5.9rem;
	background: linear-gradient( 0deg, #F1F4F8 0%, #BACBE3 100%);
	border-radius: 0.2rem;
	overflow: hidden;
	position: relative;
	padding: 0.41rem 0.32rem;
	box-sizing: border-box;
}
.product_box .product_item>img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.product_box .product_item .product_title{
	display: flex;
	align-items: center;
	column-gap: 0.1rem;
	font-family: Sans-Bold;
	font-weight: bold;
	font-size: 0.24rem;
	color: #222430;
	position: relative;
	z-index: 22;
}
.product_box .product_item .product_title img{
	width: 0.38rem;
	height: 0.38rem;
	object-fit: contain;
}




/* 热门产品 */
.popular{
	height: 100vh;
	max-height: 10.8rem;
	background: url(../img/popular_bg.jpg) center top no-repeat;
	background-size: cover;
	padding-top: 0.93rem;
}
.popular .class_name .class_title,
.popular .class_name .class_info{
	color: #fff;
}
.popular_box{
	margin-top: 1.34rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.popular_box .popular_text{
	width: 4.3rem;
	position: relative;
	overflow: hidden;
}
.popular_box .popular_text .swiper-slide{
	opacity: 0 !important;
	position: relative;
	margin-top: 0.4rem;
	transition: all 1.5s ease-in-out;
}
.popular_box .popular_text .swiper-slide-active{
	opacity: 1 !important;
	margin-top: 0;
}
.popular_box .popular_text .popular_title{
	font-family: Sans-Bold;
	font-weight: bold;
	font-size: 0.38rem;
	color: #FFFFFF;
	padding-left: 0.14rem;
	position: relative;
}
.popular_box .popular_text .popular_title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.08rem;
	height: 0.08rem;
	background: #FFFFFF;
	border-radius: 50%;
}
.popular_box .popular_text .popular_info{
	font-family: Sans-Regular;
	font-weight: 400;
	font-size: 0.3rem;
	color: #FFFFFF;
	margin: 0.46rem 0 0.2rem;
}
.popular_box .popular_text .popular_content{
	margin-bottom: 0.8rem;
	font-family: Sans-Regular;
	font-weight: 400;
	font-size: 0.16rem;
	color: #FFFFFF;
	line-height: 2;
}
.popular_box .popular_litpic{
	width: 4.36rem;
	height: 5.18rem;
	position: relative;
	margin-right: 2.34rem;
}
.popular_box .popular_litpic .swiper-button-next,
.popular_box .popular_litpic .swiper-button-prev{
	width: 0.37rem;
	height: 0.37rem;
	position: absolute;
	top: 2.31rem;
	filter: brightness(0) invert(1);
}
.popular_box .popular_litpic .swiper-button-next::after,
.popular_box .popular_litpic .swiper-button-prev::after{
	display: none;
}
.popular_box .popular_litpic .swiper-button-next{
	right: -0.98rem;
}
.popular_box .popular_litpic .swiper-button-prev{
	left: -0.98rem;
	transform: rotate(180deg);
}
.popular_box .popular_litpic .popular_img{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.popular_box .popular_litpic .popular_img .swiper-slide{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.popular_box .popular_litpic .popular_img .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}



/* 解决方案 */
.solution{
	padding: 0.7rem 0 1.74rem 0 ;
	overflow: hidden;
}
.home-platform-inner {
    width: 14.7rem;
    margin: 0.74rem auto 0;
}
.home-platform-inner .cloud-platform-panel {
    width: 100%;
    height: 7.6rem;
    position: relative;
}

.home-platform-inner .cloud-platform-panel .home-screen-card {
    width: 100%;
    height: 5.69rem;
    border-radius: 0.3rem;
    box-shadow: 0rem 0.05rem 0.4rem 0.01rem rgba(0,0,0,0.55);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: absolute;
    display: flex;
    justify-content: space-between;
    padding: 0.25rem;
    background:#163681 url(../img/card-icon.png) 0.19rem 0.16rem no-repeat;
    background-size: 6.62rem 0.8rem;
	overflow: hidden;
}
.home-platform-inner .cloud-platform-panel .home-screen-card .card-text{
	width: calc(100% - 7.34rem);
	height: auto;
	padding-top: 0.82rem;
	padding-left: 0.24rem;
	position: relative;
}
.home-platform-inner .cloud-platform-panel .home-screen-card .card-title {
    display: flex;
    align-items: center;
    cursor: pointer;
	column-gap: 0.24rem;
	font-family: Sans-SemiBold;
	font-weight: 600;
	font-size: 0.4rem;
	color: #FFFFFF;
	height: auto;
}
.home-platform-inner .cloud-platform-panel .home-screen-card .card-title img{
	width: 0.32rem;
	height: 0.32rem;
	object-fit: contain;
}
.home-platform-inner .cloud-platform-panel .home-screen-card .card-text .card-descript {
    margin-top: 0.45rem;
	padding-left: 0.62rem;
	max-width: 5.1rem;
	height: auto;
	font-family: Sans-Medium;
	font-weight: 500;
	font-size: 0.18rem;
	color: #FFFFFF;
	line-height: 1.888;
}
.home-platform-inner .cloud-platform-panel .card_btn{
	width: 90%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 0.33rem;
}
.home-platform-inner .cloud-platform-panel .card_btn .btn1{
	width: 0.23rem;
	height: 0.24rem;
	background: url(../img/down.png) center no-repeat;
	background-size: contain;
	cursor: pointer;
}
.home-platform-inner .cloud-platform-panel .card_btn .btn2{
	width: 0.38rem;
	height: 0.38rem;
	background: url(../img/right.png) center no-repeat;
	background-size: 0.13rem 0.11rem; 
	border: 0.02rem solid #FFFFFF;
	border-radius: 50%;
}
.home-platform-inner .cloud-platform-panel .home-screen-card .card-img {
    width: 7.34rem;
	height: 5.15rem;
    border-radius: 0.2rem;
    overflow: hidden;
}

.home-platform-inner .cloud-platform-panel .home-screen-card .card-img img {
    width: 100%;
    height: 100%
}


.home-platform-inner .cloud-platform-panel #home-screen-card1 {
    z-index: 2
}

.home-platform-inner .cloud-platform-panel #home-screen-card2 {
    z-index: 1;
    top: 0.72rem;
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.home-platform-inner .cloud-platform-panel #home-screen-card3 {
    z-index: 0;
    top: 1.48rem;
    -webkit-transform: scale(.8);
    transform: scale(.8)
}













/* 新闻 */
.news{
	padding: 0.96rem 0 1.03rem;
	box-sizing: border-box;
	background: #E5EBF9;
}
.news .news_list{
	display: flex;
	margin-top: 0.92rem;
	column-gap: 0.75rem;
}
.news .news_list .news_item{
	width: calc(33.33% - 0.5rem);
	height: auto;
	background: #fff;
	border-radius: 0.1rem;
	overflow: hidden;
}
.news .news_list .news_item .news_img{
	width: 100%;
	height: 3.4rem;
	overflow: hidden;
	border-radius: 0.1rem;
}
.news .news_list .news_item .news_img img{
	transition: all 0.5s ease-in-out;
}
.news .news_list .news_item:hover .news_img img{
	transform: scale(1.1);
}
.news .news_list .news_item .news_text{
	width: 100%;
	height: 2.26rem;
	padding: 0.19rem 0.37rem 1.09rem 0.31rem;
	box-sizing: border-box;
	position: relative;
}
.news .news_list .news_item .news_text .news_title{
	font-family: Sans-SemiBold;
	font-weight: 600;
	font-size: 0.22rem;
	color: #000000;
	line-height: 1.54;
}
.news .news_list .news_item .news_text .news_time{
	font-family: Sans-SemiBold;
	font-weight: 600;
	font-size: 0.18rem;
	color: #163681;
	position: absolute;
	bottom: 0.33rem;
}
.news .news_list .news_item:hover{
	box-shadow: 0rem 0rem 0.2rem 0.01rem rgba(0,0,0,0.1);
}
.news .news_list .news_item:hover .news_title{
	color: #163681;
}
.news .more_view{
	margin: 0.56rem auto 0;
}





/* 联系 */
.contact{
	padding: 0.93rem 0 1.52rem;
	box-sizing: border-box;
}
.contact .main{
	display: flex;
	justify-content: space-between;
}
.contact .contact_box{
	width: 6.02rem;
	height: auto;
	padding-top: 0.39rem;
}
.contact .contact_box .contact_name{
	font-family: Sans-Bold;
	font-weight: bold;
	font-size: 0.5rem;
	color: #163681;
}
.contact .contact_box .contact_title{
	margin: 0.2rem 0 0.3rem;
	font-family: Sans-Bold;
	font-weight: bold;
	font-size: 0.3rem;
	color: #163681;
}
.contact .contact_box .contact_info{
	font-family: Sans-Medium;
	font-weight: 500;
	font-size: 0.18rem;
	color: #222430;
	line-height: 1.8;
}
.contact .contact_form{
	width: 50%;
} 
.contact .contact_form form{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	column-gap: 0.25rem;
	row-gap: 0.21rem;
}
.contact .contact_form form input[type="text"]{
	width: calc(50% - 0.125rem);
	height: 0.52rem;
	padding: 0 0.18rem;
	box-sizing: border-box;
	background: #F2F5F8;
	border-radius: 0.1rem;
	font-family: Sans-Medium;
	font-weight: 500;
	font-size: 0.18rem;
	color: #000000;
}
.contact .contact_form form input[type="text"]::placeholder{
	color: #55596E;
}
.contact .contact_form form textarea{
	margin-top: 0.04rem;
	width: 100%;
	height: 1.8rem;
	background: #F2F5F8;
	border-radius: 0.1rem;
	font-family: Sans-Medium;
	font-weight: 500;
	font-size: 0.18rem;
	color: #000000;
	padding: 0.15rem 0.18rem;
	box-sizing: border-box;
}
.contact .contact_form form textarea::placeholder{
	color: #55596E;
}
.contact .contact_form form button{
	margin: 0.17rem auto 0;
	width: 2.4rem;
	height: 0.65rem;
	background: #163681;
	border: none;
	border-radius: 0.37rem;
	font-family: Sans-SemiBold;
	font-weight: 600;
	font-size: 0.18rem;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.27rem;
	transition: all 0.5s;
}
.contact .contact_form form button i{
	width: 0.23rem;
	height: 0.23rem;
	display: block;
	background: url(../img/submit.png) no-repeat center center;
	background-size: contain;
}
.contact .contact_form form button:hover{
	column-gap: 0.4rem;
}








