﻿@charset "utf-8";
/* CSS Document */
*{
	padding:0; 
	margin:0;
}
body,html{
	overflow-x:hidden
}
body{
	font-family:"Microsoft Yahei";
	font-size: 16px;
}
a{ 
	text-decoration:none;
}
.clear{
	clear:both;
}
ul,li{ 
	list-style:none;
}
input,select,textarea{
	border:none;outline:none;
	font-family:"Microsoft Yahei";
}
em{ 
	font-style:normal;
}
i{
	font-style:normal;
}
img{
	border:none;
	
}
p,h1,h2,h3,h4,i{
	margin:0;padding:0;
}

.content{
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding:0 40px;
	min-width: 768px;
}
.top{
	width: 100%;
	height: 60px;
	background: #FFFFFF;
	box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15);
	position: fixed;
	top:0;
	left:0;
	z-index:99;
}
.top .content{
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top .nav ul{
	display: flex;
}
.top ul li{
	position: relative;
	width: 87px;
	text-align: center;
}
.top ul li a{
	color: #000;
	display: block;
	line-height: 60px;
}
.top ul li a:hover{
	color: #2D79FD;
}
.top ul .active:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 50%;
	height: 2px;
	margin: auto;
	background-color:#2D79FD;
}
.top ul .active a{
	color: #2D79FD;
}
.top #doc{
	position: relative;
}
.top #doc ul{
	display: none;
	background: #fff;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
	flex-wrap: wrap;
	position: absolute;
	padding:10px 0;
}
.top #doc:hover ul{
	display: block;
}
.top #doc ul li{
	margin-left: 0;
	width: 120px;
	text-align: center;
}
.top #doc ul li a{
	line-height: 40px;
	color: #000;
	font-size: 14px;
}
.top #doc ul li a:hover{
	color: #2D79FD;
}
.banner a{
	display: block;
	margin-top: 60px;
	height: 700px;
	min-width: 768px;
	background: url(../images/banner_bg.jpg) center;
	overflow: hidden;
}
.banner .content{
	padding:0;
	width: 1185px;
	margin:0 auto;
}
.banner .title h1{
	font-size: 63px;
	color: #333333;
	margin-top: 110px;
}
.banner .title span{
	color: #2D79FD;
	line-height: 75px;
	background: linear-gradient(144deg, #2D79FD 30%, #39BFFB 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.banner .title p{
	font-size: 28px;
	color: #666666;
	margin-top: 8px;
}
.banner ul{
	display: flex;
	margin-left: -29px;
	margin-top: 40px;
}
.banner ul li{
	border-right: 1px solid rgba(0,0,0,0.3);
	padding:0 29px;
}
.banner ul li:last-child{
	border: none;
}
.banner ul li h3{
	font-size: 30px;
	color: #333333;
}
.banner ul li p{
	font-size: 18px;
	color: #333333;
}
.banner ul li em{
	font-size: 22px;
}

.banner .button  img{
	-webkit-animation: myfirst 5s both infinite;
	-moz-animation: myfirst 5s both infinite;
	-ms-animation: myfirst 5s both infinite;
	animation: myfirst 5s both infinite;
	margin-top: 43px;
}
/**相关动画**/
@keyframes buyBtnAnimation {
    /**抖动第一下**/
    0%{transform:scale(1);}
    3%{transform:scale(1.2);}
    6%{transform:scale(0.9);}
    8%{transform:scale(1);}

    /**抖动第二下**/
    10%{transform:scale(1);}
    13%{transform:scale(1.2);}
    16%{transform:scale(0.9);}
    18%{transform:scale(1);}
}

/* 立即购买抖动动画 */
@keyframes myfirst
{
    0%,69% {
        transform: scale(1);
        transform: scale(1)
    }
    70%,73%{
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
    77%,83%,90%,97%  {
        transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    80%,87%,93%{
        transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@-moz-keyframes myfirst /* Firefox */
{
    0%,69% {
        transform: scale(1);
        transform: scale(1)
    }
    70%,73%{
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
    77%,83%,90%,97%  {
        transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    80%,87%,93%{
        transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes myfirst /* Safari 和 Chrome */
{
    0%,69% {
        transform: scale(1);
        transform: scale(1)
    }
    70%,73%{
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
    77%,83%,90%,97%  {
        transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    80%,87%,93%{
        transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@-o-keyframes myfirst /* Opera */
{
    0%,69% {
        transform: scale(1);
        transform: scale(1)
    }
    70%,73%{
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
    77%,83%,90%,97%  {
        transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    80%,87%,93%{
        transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}




.title_main{
	text-align: center;
}
.title_main h1{
	font-size: 42px;
}
.title_main p{
	font-size: 24px;
	color: #666666;
	margin-top: 11px;
}
.intro{
	text-align: center;
	margin-top: 76px;
}
.intro img{
	margin-top: 43px;
	max-width:100%;
}
.function{
	width: 100%;
	height: auto;
	background: url(../images/bg1.jpg) center;
	margin-top: 100px;
	overflow: hidden;
}
.function .title_main{
	margin-top: 61px;
}
.function ul{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	margin:50px 0 80px 0;
}
.function ul li{
	background: #FFFFFF;
	border-radius: 4px;
	text-align: center;
	width: calc(33.3% - 20px);
	padding: 25px 20px 40px 20px;
	box-sizing: border-box;
	transition: all 0.3s;
}
.function ul li:hover{
	box-shadow: 0px 0px 20px 0px rgba(0,60,165,0.2);
	transition: all 0.3s;
}
.function ul li:hover h3{
	color: #2D79FD;
}
.function ul li h3{
	font-size: 24px;
	color: #3D3D3D;
	line-height: 0;
}
.function ul li p{
	font-size: 16px;
	color: #666666;
	margin-top: 25px;
}
/* 场景切换 */
@font-face {
            font-family: "HelveticaNow";
            src: url(https://assets.codepen.io/5286152/HelveticaNowText-Regular.ttf);
        }

        .introcontainer {
            width: 100%;
            height: 100%;
            margin: auto;
        }

        .swiper-container {
            width: 100%;
           height: 50vh;
        }

        .swiper-slide {
            display: flex;
            margin: auto;
            align-items: center;
            justify-content: center;
			border-radius: 12px;
			overflow: hidden;
        }
		.card{
			display: flex;
		}
        .cards {
            width: 100%;
            height: auto;
            display: flex;
            position: relative;
            align-items: center;
            justify-content: center;
			overflow: hidden;
			top:0;
			border-radius: 12px;
        }

        .card img {
            object-fit: cover;
            width: 1173px;
            border-radius: 5px;
            height: 450px;
            padding: 0;
            margin: 0;
        }

        .card.two img {
            /* filter: sepia(100%) hue-rotate(190deg) saturate(300%); */
        }

        .card.three img {
            /* height: 50vh; */
        }

        .card.four img {
            filter: invert(4%) sepia(75%) saturate(500%) hue-rotate(356deg) brightness(70%) contrast(103%);
        }

        .introcontainer .text {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 0px;
            max-width: 100%;
            width: 500px;
        }

        .introcontainer .title-box {
            display: flex;
            text-align: left;
            max-width: 100%;
            flex-direction: column;
            flex-wrap: nowrap;
            position: absolute;
            top: 0;
            left: 5%;
			right: 5%;
            bottom: 0;
            justify-content: center;
            color: #fff;
            opacity: 0;
            z-index: 15;
        }

        .introcontainer .title-box h1 {
            display: block;
            line-height: normal;
            max-width: 100%;
            font-size: 36px;
        }
		.introcontainer .title-box h2 {
		    display: block;
		    line-height: normal;
		    max-width: 100%;
		    font-size: 24px;
			margin-top: 5%;
			margin-bottom: 1%;
		}
        .introcontainer .title-box p {
            font-size: 16px;
            padding-top: 0;
            margin: 0;
            max-width: 100%;
			line-height: 26px;
			margin-top: 2%;
        }
		.introcontainer .title-box ul li{
			font-size: 16px;
			line-height: 36px;
			background: url(../images/g.png) no-repeat left;
			padding-left: 20px;
		}


        .swiper-slide .title-box {
            transform: translateX(-50%);
            transition: all .7s ease .3s;
        }

        .swiper-slide-active .title-box {
            transform: translateX(0%);
            opacity: 1;
            transition: all .7s ease;
        }

        .swiper-scrollbar {
            background: white;
        }

        .swiper-slide .card img {
            transition: filter .7s ease;
            opacity: 0.6;
        }

        .swiper-slide-active .card img {
            filter: grayscale(0%) brightness(60%);
			opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: white !important;
            width: 25px !important;
            height: 5px !important;
            border-radius: 0 !important;
        }

        .swiper-pagination-bullet {
            background: whitesmoke !important;
            width: 25px !important;
            height: 5px !important;
            border-radius: 0 !important;
        }

        .swiper-arrows {
            width: 100%;
            height: 80px;
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            bottom: 50%;
			margin-bottom: -32px;
        }

        .swiper-button-prev,
        .swiper-button-next {
            width: 64px !important;
            height: 64px !important;
            background-image: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 0;
            bottom: 0;
            margin: 0;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .swiper-button-prev {
            left: 0px !important;
            right: auto !important;
            background-color: rgba(255, 255, 255, 0.7);
        }

        .swiper-button-next {
            right: 0px !important;
            background-color: rgba(255, 255, 255, 0.8);
        }

        .swiper-button-prev span,
        .swiper-button-next span {
            width: 10px;
            height: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            position: absolute;
            border: solid 2px #666;
            border-left: 0;
            border-bottom: 0;
            transition: all 0.1s ease;
        }

        .swiper-button-prev span {
            transform: rotate(-135deg);
            left: 49%;
        }

        .swiper-button-next span {
            transform: rotate(45deg);
            right: 49%;
        }

        .swiper-button-prev:hover span,
        .swiper-button-next:hover span {
            width: 10px;
            height: 10px;
        }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            width: 0px;
            height: inherit;
            content: "";
            position: absolute;
            border-radius: 50%;
            background-color: white;
            transition: all 0.4s ease-in-out;
            z-index: -1;
            opacity: 0.8;
        }

        .swiper-button-prev:after {
            right: 0;
        }

        .swiper-button-next:after {
            left: 0;
        }

        .swiper-button-prev:hover:after,
        .swiper-button-next:hover:after {
            width: inherit;
        }

        .swiper-button-disabled {
            opacity: 1 !important;
        }

        .swiper-button-disabled.swiper-button-prev span,
        .swiper-button-disabled.swiper-button-next span {
            opacity: 0.2;
        }

        @media screen and (max-width: 512px) {
            .swiper-button-prev,
            .swiper-button-next {
                width: 60px;
                height: 60px;
                bottom: 0;
            }

            .swiper-arrows {
                height: 60px;
            }

            .swiper-button-prev {
                right: 60px;
            }

            .swiper-button-prev span {
                left: 45%;
            }

            .swiper-button-next span {
                right: 45%;
            }
        }

        .swiper-button-next::after, .swiper-container-rtl .swiper-button-prev::after {
            content: "attr" !important;
        }

        .swiper-button-prev::after, .swiper-container-rtl .swiper-button-prev::after {
            content: "attr" !important;
        }

        /* Tab styles */
        .tabs {
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 10;
            background-color: #fff; 
			margin-top: 40px;
        }

        .tab {
			padding-bottom: 10px;
            cursor: pointer;
            margin: 0 1.8rem;
            border-radius: 5px;
			position: relative;
			font-size: 18px;
        }

        .tab.active::after {
			content: "";
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			height: 3px;
			border-radius: 3px;
			background-color:#2D79FD;
        }
		 .tab.active{
			color: #2D79FD;
		 }
.scene{
	margin-top: 65px;
}
/* 场景切换 end*/
.adv{
	width: 100%;
	height: auto;
	background: url(../images/bg2.jpg) center;
	margin-top: 100px;
	overflow: hidden;
}
.adv .title_main{
	margin-top: 61px;
}
.adv ul{
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin:50px 0 100px 0;
}
.adv ul li{
	background: #f9fbff;
	border-radius: 8px;
	text-align: center;
	width: calc(25% - 23px);
	padding: 20px 20px 40px 20px;
	box-sizing: border-box;
	transition: all 0.3s;
}
.adv ul li img{
	max-width: 100%;
}
.adv ul li:hover{
	box-shadow: 0px 0px 20px 0px rgba(0,60,165,0.2);
	transition: all 0.3s;
}
.adv ul li:hover h3{
	color: #2D79FD;
}
.adv ul li h3{
	font-size: 24px;
	color: #3D3D3D;
	line-height: 0;
}
.adv ul li p{
	font-size: 16px;
	color: #888c95;
	margin-top: 35px;
	text-align: left;
	line-height: 26px;
}

.case{
	width: 100%;
	height: auto;
	background: url(../images/bg3.jpg) center;
	overflow: hidden;
}
.case .title{
	text-align: center;
	display: flex;
	justify-content: center;
	margin-top: 100px;
}
.case .title p{
	font-size: 28px;
	font-weight: bold;
	padding:0 40px;
}
.case .title p span{
	font-size: 50px;
	color: #2D79FD;
	margin-right: 5px;
}
.case ul{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	margin:80px 0 110px 0;
}
.case ul li{
	background: #fff;
	border-radius: 8px;
	text-align: center;
	align-items: center;
	width: calc(20% - 25px);
	padding: 20px;
	box-sizing: border-box;
	transition: all 0.3s;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.1);
}
.case ul li:hover{
	box-shadow: 0px 0px 20px 0px rgba(0,60,165,0.2);
	transition: all 0.3s;
}
.case ul li img{
	max-width: 100%;
}
.adv ul li:hover{
	box-shadow: 0px 0px 20px 0px rgba(0,60,165,0.2);
	transition: all 0.3s;
}
.footer {
	width: 100%;
	background: #2f383d;
	overflow: hidden;
	position: absolute;
	z-index: 9;
}

.footer .link {
	border-bottom: 1px solid #444c51;
	overflow: hidden;
	margin-top: 35px;
	height: 75px;
	font-size: 14px;
}

.footer .link .title {
	overflow: hidden;
}

.footer .link .title h3 {
	color: #fff;
	font-size: 14px;
	float: left;
	font-weight: 400;
}
.footer .link .item {
	width: 100%;
	overflow: hidden;
}

.footer .link .item ul li {
	float: left;
	margin-left: 55px;
	line-height: 45px;
}

.footer .link .item ul li:first-child {
	margin-left: 0;
}

.footer .link .item ul li a {
	color: #787e82;
}

.footer .link .item ul li a:hover {
	color: #fff;
}

.footer .b {
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}

.footer .b .box_l {
	color: #787e82;
	font-size: 14px;
	margin-left: -12px;
}

.footer .b .box_l .c a {
	color: #787E82;
	margin: 0 12px;
	line-height: 38px;
}

.footer .b .box_l .c a:hover {
	color: #fff;
}

.footer .b .box_l p {
	margin-left: 12px;
	margin-top: 3px;
}
.footer .b .box_l p a{
	color: #787e82;
}
.footer .b .box_l p a:hover{
	color: #fff;
}
.footer .b .box_c {
	width: 260px;
	display: flex;
	align-items: center;
}

.footer .b .box_c .telicon{
	margin-right: 12px;
	width: 62px;
	height: 56px;
}

.footer .b .box_c p {
	color: #fff;
	font-size: 24px;
	display: flex;
	align-items: center;
}
.footer .b .box_c p img{
	padding: 0 8px;
}

.footer .b .box_c span {
	color: #787e82;
	font-size: 14px;
}

.footer .b .box_r {
	width: 220px;
	display: flex;
	justify-content: space-between;
	color: #787E82;
	margin-top: 22px;
}
.footer .b .box_r div{
	text-align: center;
}
.footer .b .box_r img{
	width: 98px;
	height: 98px;
}
.footer .b .box_r p {
	line-height: 30px;
	font-size: 14px;
}

/* 右侧悬浮窗 */

.side {
	position: fixed;
	width: 73px;
	right: 10px;
	bottom:10%;
	z-index: 100;
	background: #fff;
	box-shadow: 0 4px 20px rgb(0, 0, 0, 15%);
}
.side ul li {
	width: 73px;
	height: 73px;
	float: left;
	position: relative;
	border-bottom: 1px solid #eaeaea;
	color: #666;
	font-size: 13px;
	line-height: 30px;
	text-align: center;
	transition: all .3s;
	cursor: pointer
}
.side ul li:last-child{
	border: none;
}
.side ul li a {
	color: #666;
}

.side ul li:hover {
	background: #2d79fd;
	color: #fff
}

.side ul li:hover a {
	color: #fff
}

.side ul li i {
	height: 22px;
	margin-bottom: 1px;
	display: block;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	margin-top: 14px;
	transition: all .3s
}

.side ul li i.bgs3 {
	background-image: url(../images/kef1.png);
}
.side ul li:hover i.bgs3 {
	background-image: url(../images/kef2.png);
}
.side ul li i.bgs5 {
	background-image: url(../images/zixun1.png);
}
.side ul li:hover i.bgs5 {
	background-image: url(../images/zixun2.png);
}

.side ul li i.bgs6 {
	background-image: url(../images/go_top.png);
}
.side ul li:hover i.bgs6 {
	background-image: url(../images/go_top_in.png);
}

.side ul li.sideewm .ewBox.son {
	width: 280px;
	display: none;
	text-align: center;
	padding-top: 170px;
	position: absolute;
	left: -285px;
	top: 0;
	background-image: url(../images/official_accounts.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	box-shadow: 0 4px 20px rgb(0, 0, 0, 15%);
}

.side ul #yuyueshow .tel.son {
	display: none;
	width: 190px;
	text-align: center;
	position: absolute;
	left: -195px;
	top: 20px;
	box-shadow: 0 4px 20px rgb(0, 0, 0, 15%);
	background: #fff;
}
.side ul #yuyueshow .tel h3{
	display: flex;
	height: 41px;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	color: #2d79fd;
}
.side ul #yuyueshow .tel h3 img{
	padding:0 10px
}
.side ul .sideewm:hover .son {
	display: block !important;
	animation: fadein 1s
}

.side ul #yuyueshow:hover .son {
	display: block !important;
	animation: fadein 1s
}


/* 右侧悬浮窗 */

/* 下载软件 */
.main{
	min-height: 500px;
	margin-top: 60px;
}
.download{
	width: 100%;
	height: 100%;
	background: url(../images/bg4.jpg) center;
	padding-bottom: 40px;
}
.download .item1{
	text-align: center;
}
.download .item1 h1{
	font-size: 50px;
	margin-bottom: 5px;
	padding-top: 10vh;
}
.download .item1 h2{
	font-size: 24px;
	color: #3D3D3D;
	font-weight: normal;
	line-height: 40px;
	margin-bottom: 5.2vh;
}
.download .item2{
	display: flex;
	justify-content: center;
	padding:50px 0;
}
.download .item2 .btn{
	margin:0 23px;
}
.download .item2 .btn a{
	display: block;
	width: 250px;
	height: 78px;
	background: #0271EF;
	color: #fff;
	padding: 12px 20px 12px 18px;
	box-sizing: border-box;
	border-radius: 4px;
	transition: all 0.3s;
}
.download .item2 .btn a:hover{
	box-shadow: 0px 2px 10px 0px rgba(0,60,165,0.5);
	transition: all 0.3s;
	background: #2D79FD;
}
.download .item2 .btn a i{
	display: block;
	width: 56px;
	height: 56px;
	background: url(../images/t33.png) no-repeat center;
	float: left;
	margin-right: 10px;
}
.download .item2 .btn a p{
	font-size: 24px;
}
.download .item2 .btn a span{
	font-size: 14px;
}
.download .item2 .btn2{
	position: relative;
}
.download .item2 .btn2 a i{
	background: url(../images/t34.png) no-repeat center;
}
.download .item2 .btn2 img{
	display: none;
	position:absolute;
	bottom:90px;
	left:0px;
	width: 250px;
	height: 250px;
	transition: all 0.1s;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.3);
	border-radius:4px;
}
.download .item2 .btn2:hover img{
	display: block;
	transition: all 0.1s;
}

/* 联系我们 */
.contact{
	width: 100%;
	background: url(../images/banner2.jpg) center top no-repeat;
	overflow: hidden;
}
.banner_contact .title{
	text-align: center;
	margin-top: 15vh;
}
.banner_contact h1{
	font-size: 36px;
}
.banner_contact span{
	width: 78px;
	height: 3px;
	background: #1775EF;
	display: inline-block;
}
.contact .wrap{
	background: #fff;
	padding:42px 7% 5% 7%;
	box-sizing: border-box;
	box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.15);
	margin-bottom: 10vh;
	margin-top: 10vh;
}
.contact .content{
	width: 1200px;
}
.contact .bt{
	color: #3D3D3D;
	text-align: center;
}
.contact .bt h2{
	font-weight: normal;
	font-size: 20px;
}
.contact .lianxi{
	display: flex;
	justify-content: space-between;
	width: 700px;
	margin:0 auto;
	margin-top: 20px;
}
.contact .lianxi .item1 ul li{
	width: 365px;
	height: 227px;
	background: #F6F6F6;
	border-radius: 8px;
	margin:22px 0;
	text-align: center;
}
.contact .lianxi .item1 ul li img{
	margin-top: 45px;
}
.contact .lianxi .item1 ul li p{
	margin:14px 0 16px 0;
}
.contact .lianxi .item1 ul li h3{
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact .lianxi .item1 ul li h3 .dianhua{
	margin:0;
	padding: 0 6px
}

.contact .lianxi .item2{
	width: 312px;
	height: 475px;
	background: #F6F6F6;
	border-radius: 8px;
	text-align: center;
	margin-top: 22px;
}
.contact .lianxi .item2 .icon{
	margin-top: 28px;
}
.contact .lianxi .item2 p{
	margin:14px 0 16px 0;
}
.contact .lianxi .item2 .ewm{
	width: 120px;
	box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1);
	border-radius: 3px;
	margin-top: 25px;
}













/* 文档 */
.wd .content{

}
.wd .left{
	width: 17%;
	height: calc(100vh - 4rem);
	overflow-y: auto;
	border-right: 1px solid #D8D8D8;
	padding-bottom: 30px;
	position: fixed;
	background: #fff;
	z-index: 3;
}
/* 修改滚动条的样式 */
.wd .left::-webkit-scrollbar {
	width: 8px !important;
	/* 设置滚动条的宽度 */
	height: 15px;
}
 
/* 滚动条的轨道 */
.wd .left::-webkit-scrollbar-track {
  background-color: #fff;
/* 设置滚动条轨道的背景色 */
}
  
/* 滚动条的滑块 */
.wd .left::-webkit-scrollbar-thumb {
  background-color: #C2C2C2;
}
 
/* 鼠标悬停在滚动条上的样式 */
/* 设置鼠标悬停时滚动条滑块的背景色 */
.wd .left::-webkit-scrollbar-thumb:hover {
  background-color: #969696;
}
 
/* 滚动条的按钮（上下按钮） */
.wd .left::-webkit-scrollbar-button {
  display: none;
}
.wd .left p{
	line-height: 400px;
}
.wd .right{
	width: 75%;
	margin-bottom: 5%;
	margin-left: 25%;
}
.wd .right .box1 .title{
	padding:60px 0 10px 0;
}
.wd .right .box1 .title h1{
	font-size: 1.5em;
	border-bottom: #f0f2f5 1px solid;
	padding-bottom: 10px;
}
.wd .right .box1 p{
	line-height:26px;
	margin-top: 15px;
}


.search {
	width: 90%;
	height: 50px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	border-bottom: 1px solid #D8D8D8;
}

.search .text3 {
	height: 50px;
	line-height: 50px;
	color: #999;
	background: none;
	font-size: 16px;
}

.search .button {
	width: 26px;
	height: 26px;
	background: url(../images/search.png) no-repeat center;
	cursor: pointer;
	margin-right: 10px;
}



.menu {
	background: #ffffff;
	margin: 0 auto;
	overflow: hidden;
	margin-top: 20px;
}

.menu ul li {
	display: block;
	width: 90%;
	padding-top: 2px;
	margin-bottom: 5px;
	background: url(../images/zakladka.png) top left no-repeat;
	list-style: none;
	overflow: visible;
	border-bottom: 1px solid #D8D8D8;
}
.menu ul li:last-child{
	border: none;
}
.menu ul li a {
	display: block;
	width: 90%;
	margin-top: -2px;
	padding-top: 10px;
	padding-left: 35px;
	font-size: 16px;
	color: #000;
	outline: none;
	margin-bottom: 15px;
}
.menu ul li a:hover{
	color: #666;
}

.menu ul li .active {
	background: url(../images/on.png) top right no-repeat;
}

.menu ul li .inactive {
	background: url(../images/off.png) top right no-repeat;
}

.menu ul li ul {
	display: none;
	margin-top: -4px;
	margin-bottom: 20px;
}

.menu ul li ul li ul {
	margin-bottom: 5px;
}

.menu ul li ul li {
	display: block;
	background: none;
	font-size: 12px;
	list-style: circle;
	color: #2D79FD;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 1px;
	margin-left: 35px;
	border: navajowhite;
}

.menu ul li ul li a {
	background: none;
	font-size: 14px;
	min-height: 19px;
	color: #2D79FD;
	padding-left: 0px;
	margin-bottom: 5px;
}
.box2 .title{
	text-align: center;
	font-size: 24px;
	line-height: 60px;
	margin-top: 30px;
}
.box2 ul li{
	border-bottom: 1px solid #D8D8D8;
	margin-top: 20px;
}
.box2 ul li a h1{
	font-size: 20px;
	color: #333333;
	
}
.box2 ul li a h1 span{
	color: #1778FF;
}
.box2 ul li a p{
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding:10px 0 15px 0;
}
.box3{
	text-align: center;
	margin-top: 10%;
}
.box3 p{
	color: #666;
	margin-top: 20px;
}

.scheme .banner2{
	width: 100%;
	height: 470px;
	background: url(../images/banner3.jpg) center;
}
.scheme .banner2 .content{
	height: 470px;
	display: flex;
	align-items: center;
}
.scheme .banner2 .text .item1{
	width: 640px;
}
.scheme .banner2 .text .item1 h1{
	font-size: 42px;
	color: #000;
	font-weight: normal;
}
.scheme .banner2 .text .item1 p{
	color: #2C2C2C;
	line-height: 28px;
	margin-top: 20px;
}
.scheme .banner2 .text .item2{
	position:relative;
	margin-top: 45px;
	width: 120px;
}
.scheme .banner2 .text .item2 .button{
	width: 119px;
	height: 42px;
	background: #2D79FD;
	box-shadow: 0px 3px 2px 0px rgba(40,102,208,0.13);
	border-radius: 3px 3px 3px 3px;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	line-height: 42px;
}
.scheme .banner2 .text .item2 img{
	display: none;
	position: absolute;
	bottom: 52px;
	left: 0;
	width: 120px;
}
.scheme .banner2 .text .item2:hover img{
	display: block;
}
.scheme .title{
	text-align: center;
	margin-top: 50px;
}
.scheme .title h1{
	font-size: 32px;
	color: #000;
	line-height: 38px;
}
.scheme .tx{
	padding-top: 20px;
	background: #F8F9FF;
	padding-bottom: 80px;
}
.scheme .tx ul{
	display: flex;
	justify-content: space-between;
	margin-top: 54px;
}
.scheme .tx ul li{
	width: 23%;
	background: #FFFFFF;
	box-shadow: 0px 4px 14px 0px rgba(0,0,0,0.03);
	border-radius: 9px;
	overflow: hidden;
}
.scheme .tx ul li h3{
	font-size: 20px;
	color: #2D79FD;
	margin:25px 0 5px 25px;
}
.scheme .tx ul li p{
	color: #707070;
	line-height: 28px;
	text-align: left;
	padding:10px 25px 25px 25px;
}
.scheme .tx ul li img{
	max-width: 100%;
}
.scheme .scene{
	width: 100%;
	height: auto;
	background: url(../images/image6.jpg) #000 no-repeat center top;
	padding:15px 0 65px 0;
	color: #4B4E4F;
	margin:0;
	background-size: cover;
}
.scheme .scene .box {
	width: 100%;
}
.scheme .scene .title h1{
	color: #fff;
}
.scheme .scene .box_bt ul{
	display: flex;
	justify-content: center;
}
.scheme .scene .box_bt li {
	font-size: 20px;
	margin:30px 30px 0px 30px;
}
.scheme .scene .box_bt li a {
	display: block;
	color: #FFFFFF;
	line-height: 48px;
}
.scheme .scene .box_bt li.hover {
	border-bottom: 3px solid  #2D79FD;
}
.scheme .scene .box_bt li.hover a{
	font-weight: bold;
}
.scheme .scene .item{
	display: flex;
	background: rgba(255,255,255,0.94);
	border-radius: 10px;
	margin-top: 40px;
	overflow: hidden;
}
.scheme .scene .item .pic{
	width: 70%;
	margin-right: 45px;
}
.scheme .scene .item .pic img{
	width:100%;
	height: 450px;
	object-fit: cover;
	display: block;
}
.scheme .scene .title-box{
	margin-top: 40px;
	margin-right: 45px;
	width: 70%;
}
.scheme .scene .title-box h1 {
	display: block;
	line-height: normal;
	max-width: 100%;
	font-size: 30px;
	color: #2D79FD;
	padding-left: 35px;
	background: url(../images/icon1.png) no-repeat left top;
	line-height: 60px;
}
.scheme .scene .title-box h2 {
	display: block;
	line-height: normal;
	max-width: 100%;
	font-size: 20px;
	margin-top: 5%;
	margin-bottom: 1%;
	padding-left: 35px;
	color: #000;
}
.scheme .scene .title-box p {
	font-size: 16px;
	padding-top: 0;
	margin: 0;
	max-width: 100%;
	line-height: 26px;
	margin-top: 2%;
	padding-left: 35px;
}
.scheme .scene .title-box ul li{
	font-size: 16px;
	line-height: 36px;
	padding-left: 35px;
}
.scheme .hz .title{
	margin-top: 65px;
}
.scheme .hz ul{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	margin:70px 0 90px 0;
}
.scheme .hz ul li{
	background: #fff;
	border-radius: 8px;
	text-align: center;
	align-items: center;
	width: calc(20% - 25px);
	padding: 20px;
	box-sizing: border-box;
	transition: all 0.3s;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.1);
}
.scheme .hz ul li:hover{
	box-shadow: 0px 0px 20px 0px rgba(0,60,165,0.2);
	transition: all 0.3s;
}
.scheme .hz ul li img{
	max-width: 100%;
}
.scheme .lianxi ul{
	display: flex;
	justify-content: space-between;
	margin:60px 0 80px 0;
}
.scheme .lianxi ul li{
	width: 32%;
	background: #F6F6F6;
	border-radius: 8px;
	text-align: center;
	padding-bottom: 20px;
}
.scheme .lianxi ul li .dk{
	display: flex;
	justify-content: center;
}
.scheme .lianxi ul li .dk div{
	padding:0 15px;
}
.scheme .lianxi ul li .dk div h5{
	margin-top: -10px;
	font-weight: normal;
	font-size: 14px;
}
.scheme .lianxi ul li img{
	margin-top: 28px;
}
.scheme .lianxi ul li h3 .dianhua{
	margin:0;
	padding: 0 6px
}
.scheme .lianxi ul li p{
	margin: 14px 0 16px 0;
	font-size: 18px;
}
.scheme .lianxi ul li h3{
	font-size: 18px;
	margin-bottom: 10px;
}
.scheme .lianxi ul li .ewm{
	width: 100px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	margin:0 0 15px 0;
}
.scheme .lianxi ul li .tel{
	margin-top: 60px;
}





















