* {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑", arial;
}
#header{
	height: 60px;
}
li {
	list-style: none;
}

a {
	text-decoration: none;
}
.blue {
    color: #659ffd;
}
body,
html {
	width: 100%;
	height: 100%;
}
.clearfix:after{
	content: '';
	display: block;
	clear: both;
	overflow: hidden;
	height: 0;
	visibility: hidden;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.nav-wrap {
	z-index: 999;
	position: fixed;
	top: 0px;
	width: 100%;
	height: 60px;
	background: #030e20;
}

.nav {
    position: fixed;
    margin: auto;
    width: 1200px;
	top: 0;
	left: 50%;
	margin-left: -590px;
	z-index: 1000;
}
@media (max-width: 1200px){
	.nav{
		left: 0px;
		margin-left: 0px;
	}
}
.nav-logo {
    float: left;
    margin: 8px;
    width: 260px;
}

.nav-l {
    float: left;
    margin-left: 30px;
}
.nav-l ul li,.nav-r ul li{
    float: left;
    cursor: pointer;
}

.gray{
    color: #c9c9c9 !important;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
/*.nav-l ul li:hover a,.nav-r ul li:hover a{
    *//*background: #00c5ff;*//*
    color: #00c5ff;

}*/
/*.nav-l ul li a.hover-color,.nav-r ul li a.hover-color {
    !*color: #00c5ff;*!
    color: #ee842f;
}*/
.hover-color {
    color: #00c5ff !important;
}
.btn-hover-color{
	color: #fff !important;
}
.nav-l ul li:hover a,.nav-r ul li:hover a{
    text-decoration: none;
}

.nav-l a {
    display: inline-block;
    padding: 0 19px;
    font-size: 14px;
    color: #fff;
    height: 60px;
    line-height: 60px;
}
/*按钮*/
.nav-r{
	margin-left: 115px;
}
.nav-r a{
    display: block;
    font-size: 14px;
    /*color: #fff;*/
    line-height: 60px;
}
.nav-r ul li a{
    border-radius: 0 !important;
    text-align: center;
    font-family: "微软雅黑";
    color: #fff;
    border: none;
}
.nav-r ul li .cutting-line{
	padding: 4px 6px;
	text-align: center;
	margin: 17px 10px;
	font-size: 16px;
	display: inline-block;
	color: #fff;
}
.nav-r ul li a:hover {
    color: #00c5ff !important;
}
.nav-r ul li #login:hover{
	color:#FFFFFF!important;
}
/*.nav-r ul li .btn.btn-outline.btn-warning:hover {
    color: #fff !important;
}*/
.nav-r a i {
    font-size: 20px;
    color: #ff9c00;
    line-height: 20px;
}
.nav-l ul li .active {
	color: #00c5ff!important;
    border-bottom: solid 1px #00c5ff;
}
.code-img {
	display: none;
	position: absolute;
	top: 80px;
	right: -30px;
	z-index: 10;
}

.new-box {
	margin-top: 80px;
}

/*.new-box img {
	width: 100%;
}*/

.map-box {
	position: relative;
	width: 1200px;
	margin: 0 auto 0;
}
/*水波样式*/
#container1 {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 320px;
	right: 325px;
}

#container2 {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 456px;
	right: 482px;
}

#container3 {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 500px;
	right: 377px;
}

#container4 {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 571px;
	right: 424px;
}

#container5 {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 646px;
	right: 629px;
}

#container6 {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 666px;
	right: 438px;
}

#container7 {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 748px;
	right: 502px;
}

.point {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	width: 18px;
	height: 18px;
	margin: auto;
	-webkit-border-radius: 50%;
	-webkit-background-clip: padding-box;
	-moz-border-radius: 50%;
	-moz-background-clip: padding;
	border-radius: 50%;
	background-clip: padding-box;
	background: transparent;
	cursor: pointer;
}

.point:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	border: 2px solid #00cdec;/*00c5ff*/
	/*00cdec*/
	opacity: 0;
	-webkit-animation: ripple 6000ms ease-out 0ms infinite;
	-moz-animation: ripple 6000ms ease-out 0ms infinite;
	-o-animation: ripple 6000ms ease-out 0ms infinite;
	animation: ripple 6000ms ease-out 0ms infinite;
}

@keyframes ripple {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
	}
	5% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.point-area {
	width: 100%;
	height: 100%;
	position: absolute;
}

.point-dot {
	background-color: #00cdec;
	/*6AD7E9*/
	border: 1px solid rgba(244, 208, 0, 0.37);
	/*rgba(0, 205, 236, 0.37)*/
}

.point-menu {
	display: none;
	background: #fff;
	border: 1px solid #00c5ff;
	padding: 20px 15px;
	border-radius: 4px;
	width: 220px;
	position: absolute;
	bottom: 100%;
}

.point-menu img {
	width: 140px;
}

.menu-line {
	margin: 10px 0;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #dbdbdb;
}


/*图片轮播*/

.banner {
	position: relative;
}

.banner-p1 {
	position: absolute;
	top: 0;
	left: 0;
}

.carousel-indicators li {
	display: inline-block;
	width: 80px;
	height: 6px;
	margin: 0px !important;
	margin:0px 6px !important;
	text-indent: -999px;
	cursor: pointer;
	background-color: #BFBFBF;
	border: 1px solid #BFBFBF;
	border-radius: 0 !important;
}

.carousel-indicators .active {
	width: 80px;
	height: 6px;
	margin: 0 !important;
	margin:0px 6px !important;
	background-color: #00c5ff;
	border: 1px solid #00c5ff;
}

.carousel-indicators {
	bottom: 30px;
}
.p2-box-width{
	width: 100%;
}
.p2-box {
	margin: 50px auto 80px auto;
	width: 80%;
	height: 200px;
	line-height: 25px;
	text-align: center;
}

.p2-box-img {
	cursor: pointer;
	width: 50% !important;
}

.p2-box-title {
	font-weight: 600;
}

.p2-box-text {
	color: #999;
	font-size: 12px;
}

.p2-icon-line {
	margin: 25px auto 10px;
	width: 5px;
	height: 2px;
	background: #000;
}

.p2-box-block {
	padding: 15px 0;
}

.p2-box-block:hover {
	border: 2px solid #00c5ff;
}


/*阿里云客服*/

.module-wrap .tel-box {
	position: relative;
	display: block;
	z-index: 0;
}

.module-wrap .tel-box .white {
	display: inline-block;
}

.module-wrap .tel-box .blue {
	display: block;
}

.module-wrap .tel-box:hover .white {
	display: block;
}

.module-wrap .tel-box:hover .blue {
	display: inline-block;
}

.module-wrap .tel-box:hover .showTel {
	display: inline-block !important;
}

.module-wrap .tel-box .showTel {
	position: absolute;
	top: 0;
	/*right: 44px;*/
	right: 64px;
}

.module-wrap .tel-box .showTel .tel-hover-panel {
	width: 260px;
	height: 119px;
	background: #fff;
	border: 1px solid #c5d8db;
	padding: 0 20px;
	border-top: 5px solid #00c5ff;
	-webkit-box-shadow: 0 0 7.5px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0 7.5px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 7.5px rgba(0, 0, 0, 0.15);
}

.module-wrap .tel-box .showTel .tel-hover-panel .top-area {
	position: relative;
	width: 100%;
	padding: 25px 0;
}

.module-wrap .tel-box .showTel .tel-hover-panel .top-area .top-left-icon {
	width: 50px;
	float: left;
	padding-top: 10px;
}

.module-wrap .tel-box .showTel .tel-hover-panel .top-area .top-right-text {
	padding-left: 75px;
	height: 54px;
	color: #373D41;
}

.module-wrap .tel-box .showTel .tel-hover-panel .top-area .top-right-text .desc {
	font-size: 14px!important;
	line-height: 22px;
	margin-bottom: 4px;
}

.module-wrap .tel-box .showTel .tel-hover-panel .top-area .top-right-text .phone {
	font-size: 18px!important;
	line-height: 28px;
}

.module-wrap .tel-box .showTel .tel-hover-panel .top-area .panel-close {
	color: #D0D0D0;
	position: absolute;
	right: 0;
	top: 17px;
	font-size: 14px !important;
	cursor: pointer;
}

.module-wrap .tel-box .showTel .tel-hover-panel .bottom-area {
	width: 100%;
}

.module-wrap .tel-box .showTel .tel-hover-panel .bottom-area .bottom-li {
	padding: 20px;
}

.module-wrap .tel-box .showTel .tel-hover-panel .bottom-area .bottom-li li {
	float: left;
	width: 50%;
	list-style: circle;
	color: #A9B0B4;
	font-size: 14px!important;
	line-height: 24px;
	height: 24px;
	list-style-position: inside;
	margin-bottom: 5px;
}

.module-wrap .tel-box .showTel .tel-hover-panel .bottom-area .bottom-li li a {
	text-decoration: none;
	color: inherit;
}

.module-wrap .tel-box .showTel .tel-hover-panel .bottom-area .bottom-li li a:hover {
	color: #00c1de;
}


/*二维码*/
.big {
	display: none;
}

#xiaoyun_app:hover .big {
	display: block;
}

.float-tool {
	margin-top: -76px;
	position: fixed;
	top: 50%;
	right: .1%;
	z-index: 250;
}

.p2-box-line {
	border-right: 1px solid #eee;
}


/*foot*/

.new-foot {
	padding: 70px 30px;
	background: #2f3232;
	min-width: 1200px;
}

.new-foot-box {
	min-width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
}
.new-foot-link-clg{
	color: #474848;
}
.new-foot-link-clg a{
	margin: 0px 46px;
	color: #999999;
	font-weight: bold;
}
.new-foot-link-clg a:focus,.new-foot-link-clg a:hover{
	text-decoration: none;
	color: #00c5ff;
}

/*.new-foot p,
.new-foot-link {
	height: 34px;
	line-height: 34px;
	color: #999;
}
.new-foot-link {
	margin-top: 15px;
	margin-bottom: 30px;
}
.new-foot .new-foot-link a {
	width: 160px;
	height: 55px;
	border-radius: 22px 22px 22px 22px;
	border: solid 1px rgba(153, 153, 153, 1);
	color: rgba(153, 153, 153, 1);
	padding:10px 40px;
	margin-left: 20px;
}
.new-foot .new-foot-link a:hover {
	border: solid 1px rgba(244, 208, 0, 1);
	color: rgba(244, 208, 0, 1);
}
.new-foot-link a {
	font-weight: bold;
}
.new-foot .new-foot-link a:hover {
	text-decoration: none;
}*/
/*社区 start*/
.content-wrap {
    margin: 20px auto 20px;
    width: 1200px;
}
.banner-box {
    margin: 0 auto;
    padding: 30px 0;
    width: 1200px;
}
.banner-box .banner-pic1,.banner-box .banner-pic2 a {
    position: relative;
}
.banner-box .banner-pic1,.banner-box .banner-pic2 a{
    display:block;
    overflow: hidden;
}
.banner-box .banner-pic1 img,.banner-box .banner-pic2 img{
    width: 100%;
    transition: all .6s ease;transition: all .6s ease;
}
.banner-box .banner-pic1 img:hover,.banner-box .banner-pic2 img:hover {
	transform: scale(1.1);
}
.banner-box .banner-pic1 span,.banner-box .banner-pic2 span {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: block;
    line-height: 28px;
    height: 28px;
    text-indent: 1em;
    color: #fff;
}
.banner-box .banner-pic1,.banner-box .banner-pic1 img {
    width: 900px;
    height: 360px;
}
.banner-box .banner-pic2 a,.banner-box .banner-pic2 a img{
    width: 290px;
    height: 175px;
}
.article-wrap {
    width: 900px;
}
.article {
    padding-left: 40px;
    width: 900px;
    position: relative;
}
.articlelt {
    position: absolute;
    left: 0;
    width: 29px;
    text-align: center;
    height: 350px;
    background: #fff8d0;
    vertical-align: middle;
    font-size:16px;
    word-wrap:break-word;
    word-break:normal;
    padding: 120px 0;
}
.article .article-list .article-content {
    display: block;
    padding: 10px 0;
}
.article .article-list .article-content img {
    width: 250px;
    height: 160px;
    display: block;
}
.article-content-text {
    width: 600px;
    height: 160px;
    line-height: 30px;
    color: #999;
    font-size: 14px;
}
.article .article-list .article-link {
    padding: 20px 0;
    border-top: 1px solid #dbdbdb;
}
.article .article-list .article-link ul{
    width: 600px;
}
.article-list .article-link .article-more {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #fff8d0;
    font-size: 18px;
}
.article .article-list .article-link ul a:hover {
    color: #4d90fd ;
    text-decoration: none;
}
 .panel {
    width: 290px;
}
 .panel .panel-list {
     margin: 20px 0;
     padding: 15px 10px;
     border: 1px solid #dbdbdb;
 }
.panel-list .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.panel-list .row .col-sm-6{
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.panel .panel-list .panel-list-ti {
    border-bottom: 1px solid #000;
    line-height: 30px;
}
.panel .panel-list .panel-list-ti a:hover {
    text-decoration: none;
}
.panel .panel-list ul {
    padding: 15px 0;
}
.panel .panel-list ul li,.article .article-list ul li {
    text-overflow:ellipsis;
    -o-text-overflow:ellipsis;
    white-space:nowrap;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    text-indent: 2em;
    transition: all .3s ease;
    /*background: url("../images/indexPic.png") no-repeat;*/
    transition: all .3s ease;

}
.panel .panel-list ul li {
	font-size: 14px;
}
.panel .panel-list ul li a span {
	color: #999;
}
.panel .panel-list ul li a:hover span {
	color: #4d90fd;
}
.article .article-list ul li {
	font-size: 16px;
}
.article .article-list ul li a span {
	color: #999;
}
.article .article-list ul li a:hover span {
	color: #4d90fd;
}
.article .article-list .article-time {
	color: #999;
}
/*.panel .panel-list ul li:nth-child(1),.article .article-list ul li:nth-child(1) {
	background-position: -440px 6px;
}
.panel .panel-list ul li:nth-child(2),.article .article-list ul li:nth-child(2) {
	background-position: -440px -196px;
}
.panel .panel-list ul li:nth-child(3),.article .article-list ul li:nth-child(3) {
	background-position: -440px -36px;
}
.panel .panel-list ul li:nth-child(4),.article .article-list ul li:nth-child(4) {
	background-position: -440px -236px;
}
.panel .panel-list ul li:nth-child(5),.article .article-list ul li:nth-child(5) {
	background-position: -440px -76px;
}
.panel .panel-list ul li a span,.article .article-list ul li a span {
	color: #999;
}*/
.panel .panel-list ul li:hover,.article .article-list ul li:hover {
	margin-left: 10px;
}
/*.panel .panel-list ul li i,.article .article-list ul li i {
    font-size: 6px !important;
    color: #999;
}*/
.article .article-banner {
    margin-bottom: 15px;
    width: 100%;
}
/*文章详情*/
.forum-main {
    margin: 110px auto 20px;
    width: 900px;
}
.forum-main .blog-title{
    font-size: 28px;
    line-height: 38px;
    color: #000;
    margin: 0;
}
.forum-main .blog-o-info {
    padding: 12px 0;
    font-size: 12px;
    color: #999;
}
.forum-main .content-detail {
    padding: 20px 0;
    font-size: 16px;
    line-height: 32px;
    position: relative;
    word-wrap: break-word;
    overflow: hidden;
}
.p-index {
    text-indent: 2em;
    padding-bottom: 5px;
}
.content-detail p {
    text-indent: 2em;
    margin-bottom: 20px;
}
.content-detail-img{
	text-align: center;
}
.content-detail img {
	text-indent: 2em;
	margin-bottom: 20px;
}
.font-weight{
	color: #000;
	margin: 20px 0;
	font-weight: 500;
}
.breadcrumb > li + li:before {
    color: #666;
    content: " > ";
    padding: 0 5px;
}
.noticel {
    width: 1200px;
    margin: 110px auto 10px;
}
.noticel-content {
    width: 1000px;
    margin: 10px auto 10px;
    line-height: 28px;
}
.noticel-foot {
    margin-top: 15px;
}
.panel-list ul li a:hover {
    text-decoration: none;
   color: #4d90fd;
}
.article-more:hover {
    text-decoration: none;
}
/*物联网卡*/
.cards {
    margin: 80px auto 20px;
}
.cards .cards-banner {
    width: 100%;
    display: block;
}
.cards-box {
    width: 1200px;
    margin: 20px auto;
}
.cards .cards-box .cards-icon {
    padding: 10px 0;
}
.cards .cards-box .cards-icon .cards-icon-row {
    padding: 20px 0;
}
.cards .cards-box .cards-icon .cards-icon-row .cards-icon-col {
    cursor: pointer;
    border: 1px solid #eee;
    padding: 15px;
}
.cards .cards-box .cards-icon .cards-icon-row .cards-icon-col:hover {
    border: 1px solid #00c5ff;
}
.cards .cards-box .cards-icon .cards-icon-row .cards-icon-col .cards-iconr  {
    padding: 5px 0 5px 20px;
}
.cards .cards-box .cards-icon .cards-icon-row .cards-icon-col .cards-iconr span {
    color: #666;
}
.cards-model-ti {
    margin: 40px auto 100px;
    display: block;
}
.cards-model-content a{
    margin-bottom: 25px;
    width: 100%;
    display: block;
    position: relative;
}
.cards-model-content a:hover .cards-model-bg {
    background: rgba(244,208,0,0.8);
}
.cards-model-content a:hover .cards-model-text {
    color: #000;
}
.cards-model-content a img {
    width: 100%;
}
.cards-model-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
    line-height: 30px;
    z-index: 99999;
}
.cards-model-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99;
    transition: all .6s ease;
}
/**/
.flow {
    margin: 80px auto 0;
    width: 100%;
    position: relative;
}
.flow-banner {
    width: 100%;
}
.flow-banner5 {
    position: relative;
    width: 100%;
}
.flow-banner5-text {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -360px;
    width: 720px;
    transition: all 1s ease;
}
.flow-banner5l {
    padding: 60px 0;
    width: 30%;
    text-align: right;
}
.flow-banner5l span {
    margin-top: 30px;
    line-height: 50px;
    font-size: 16px;
    display: block;
}
.flow-banner5r {
    padding-left: 30px;
    width: 70%;
}
.flow-banner5r ul li {
    margin: 15px;
    float: left;
    border: 1px solid #000;
    padding: 10px 20px 30px 20px;
    width: 40%;
    height: 130px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
}
.flow-banner5r ul li h2 {
    color: #555555;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}


.business-body{
    margin: 80px auto 0;
    width: 100%;
}
.business-body .business-bodyimg {
    width: 100%;
    margin: 0 auto;
}
.business-body .business-icon {
    width: 1200px;
    margin: 60px auto 50px;
    overflow: hidden;
}
.business-body .business-item {
    padding: 15px;
    border: 1px solid #dbdbdb;
    margin: 0 10px;
    text-align: center;
    width: 380px;
}
.business-body .business-item label {
    font-size: 16px;
}
.business-body .business-item:hover {
    border: 1px solid #00c5ff;
}
.business-itemimg {
    float: left;
    width: 200px;
    height: 120px;
}
.business-itemtext {
    float: left;
    width: 146px;
    line-height: 120px;
}
.business-body .business-item .business-itemimg img {
    transition: all .6s ease;
}
.business-body .business-item:hover .business-itemimg img{
    margin-left: -20px;
}
/**********************托管开放平台***********************/
.trusteeship-body{
	margin: 80px auto 0;
	width: 100%;
}
.trusteeship-body .trusteeship-pic {
	width: 100%;
	margin: 0 auto;
}
.trusteeship-p2,.trusteeship-p3,.trusteeship-p4,.trusteeship-p5,.trusteeship-p6,.trusteeship-p7{
	position: relative;
}
.tr-p2-text,.tr-p3-text,.tr-p4-text,.tr-p5-text,.tr-p6-text{
	display: none;
	font-size: 24px;
	color: rgb( 51, 51, 51 );
	font-weight: bold;
}
.tr-p2-text-sm,.tr-p3-text-sm,.tr-p4-text-sm,.tr-p5-text-sm,.tr-p6-text-sm{
	font-size: 20px;
	color: #333;
	font-weight: 500;
	display: none;
}
.tr-down,.tr-p3-phone,.tr-p5-com,.tr-p6-icon,.tr-p7-icon,.tr-p7-text,.tr-p7-text-sm{
	display: none;
}
.tr-p2-text {
	margin:30px auto 5px auto;
}
.tr-down{
	width: 2%;
	margin-top: 25px;
}
.tr-p2-text-sm{
	margin:5px auto;
}
.tr-p3-text {
	margin-bottom: 0;
}
.tr-p3-phone{
	width: 24%;
	top: 5%;
	left: 59%;
	position: absolute;
}
.tr-p4-text {
	margin-bottom: 0;
}
.tr-p5-text {
	margin-bottom: 0;
}
.tr-p5-com{
	width: 35%;
	top: 19%;
	left: 54.5%;
	position: absolute;
}
.tr-p6-text {
	margin-bottom: 0;
}
.tr-p6-icon{
	width: 27%;
	top: 10%;
	left: 21%;
	position: absolute;
}
.tr-p7-text {
	margin:15px auto 8px auto;
	font-size: 22px;
	color: #fff;
	font-weight: 600;
}
.tr-p7-text-sm{
	margin:8px auto;
	font-size: 19px;
	color: #fff;
	font-weight: 500;
}
.tr-p7-icon{
	margin-top: 30px;
}
.floor-3-box{
	margin-top: 160px;
	text-align: end;
	height: 150px;
	width: 40%;
	position: absolute;
}
.floor-4-box{
	margin-top: 110px;
	margin-left: 53%;
	text-align: start;
	height: 150px;
	width: 50%;
	position: absolute;
}
.floor-5-box{
	margin-top: 160px;
	text-align: end;
	height: 150px;
	width: 40%;
	position: absolute;
}
.floor-6-box{
	margin-top: 170px;
	margin-left: 59%;
	text-align: start;
	height: 150px;
	width: 50%;
	position: absolute;
}
.floor-7-box,.floor-2-box{
	text-align: center;
	height: 150px;
	width: 100%;
	position: absolute;
}

/*****************软加密**************/
.encryption-body{
	margin: 80px auto 0;
	width: 100%;
}
.encryption-body .encryption-pic {
	width: 100%;
	margin: 0 auto;
}
.encryption-p2,.encryption-p3,.encryption-p4,.encryption-p5,.encryption-p6,.encryption-p7{
	position: relative;
}
.encryption-p2{
	margin: 80px auto 0;
}
.en-p2-text,.en-p3-text,.en-p4-text,.en-p5-text,.en-p6-text,.en-p7-text{
	display: none;
	font-size: 24px;
	margin-bottom: 20px;
	color: rgb( 51, 51, 51 );
	font-weight: bold;
}
.en-p2-text-sm,.en-p3-text-sm,.en-p4-text-sm,.en-p5-text-sm,.en-p6-text-sm,.en-p7-text-sm{
	font-size: 20px;
	color: #333;
	font-weight: 500;
	display: none;
}
.en-down,.en-floor4-down,.en-p2,.en-p5-com,.en-p6-icon{
	display: none;
}
.en-p2-text {
	margin:30px auto 5px auto;
}
.en-down{
	width: 22%;
	margin-top: 25%;
}
.en-floor4-down{
	width: 80%;
	margin-left: -160%;
	margin-top: 13%;
 }
.en-p2-text-sm{
	margin:5px auto;
}

.en-p2{
	 width: 50%;
	 top: 30%;
	 left: 25%;
	 position: absolute;
 }
.en-p4-text {
	float: left;
	margin:27% 0 20px 0;
}
.en-p4-text-sm {
	float: left;

}
.en-p5-text {
	margin-bottom: 0;
}
.en-p5-com{
	width: 35%;
	top: 19%;
	left: 54.5%;
	position: absolute;
}
.en-p6-text {
	margin-bottom: 22px;
}
.en-p6-icon{
	width: 39%;
	top: 18%;
	left: 14%;
	position: absolute;
}
.en-p7-text {
	margin:4% auto 20px auto;
	font-size: 22px;
	color: #fff;
	font-weight: 600;
}
.en-p7-text-sm{
	margin:8px auto;
	font-size: 19px;
	color: #fff;
	font-weight: 500;
}
.en-p7-icon{
	margin-top: 30px;
}
.floor-3-enbox{
	text-align: center;
	margin-top: 3.5%;
	height: 150px;
	width: 100%;
	position: absolute;
}
.floor-6-enbox{
	margin-top: 14%;
	margin-left: 55%;
	text-align: start;
	height: 150px;
	width: 50%;
	position: absolute;
}
.floor-7-enbox{
	text-align: center;
	height: 150px;
	width: 100%;
	position: absolute;
}

/***********通信模组*************/
.module-banner{
	width: 100%;
	margin-top: 80px;
}
.module-box{
	margin-top: 80px;
	margin-bottom: 30px;
}
.module-model-content a{
	margin-bottom: 25px;
	width: 100%;
	display: block;
	position: relative;
}
.module-model-content a:hover .module-model-bg {
	background: rgba(244,208,0,0.8);
}
.module-model-content a:hover .module-model-text {
	color: #000;
}
.module-model-content a img {
	width: 100%;
}
.module-model-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 60px 30px;
	text-align: center;
	line-height: 30px;
	z-index: 99999;
}
.module-model-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 99;
	transition: all .6s ease;
}
 /*轮播图*/
.carousel-fade .carousel-inner .item{
    opacity:0;
    -webkit-transition-property:opacity ;
    -moz-transition-property:opacity ;
    -ms-transition-property:opacity ;
    -o-transition-property:opacity ;
    transition-property:opacity ;
}
.carousel-fade .carousel-inner .active{
    opacity: 1;
}
.carousel-fade .carousel-inner .active.left,.carousel-fade .carousel-inner .active.right{
    left: 0;
    opacity: 0;
}
.carousel-fade .carousel-inner .next.left,.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-inner .item{

}
.carousel-inner .item .carousel-buy {
    position: absolute;
    left: 50%;
    margin-left: -42px;
    bottom: 46px;
    z-index: 999;
    display: block;

    width: 84px;
    border-radius: 12px;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    line-height: 26px;
    text-decoration: none;
}
.carousel-inner .item .carousel-buy:hover {
    text-decoration: none;
    background: #00c5ff;
    border: 1px solid #00c5ff;
    color: #000;
}

/* 解决方案hover */
#solution{
	position: relative;
}
#solution .solution-hover-list{
	display: none;
	position: absolute;
	top: 60px;
	left: 0px;
	width: 100%;
	background: #000000;
}
#solution:hover .solution-hover-list{
	display: block;
}
#solution .solution-hover-list li{
	width: 100px;
}
#solution .solution-hover-list li a{
	color: #cccccc;
	display: block;
	line-height: 50px;
	height: 50px;
	padding: 0px;
	font-size: 14px;
	padding-left: 10px;
	width: 100%;
}


#solution:hover .solution-hover-clg{
	display: block;
}
.solution-hover-clg{
	display: none;
	width: 100%;
	min-width: 1200px;
	position: absolute;
	top: 60px;
	left: 0px;
	background: #FFFFFF;
}
.solution-hover-clg ul{
	width: 1200px;
	margin: 0 auto;
	padding-top: 32px;
	padding-bottom: 100px;
}
.solution-hover-clg ul li:hover{
	margin-top: -20px;
}
.solution-hover-clg ul li a:hover{
	text-decoration: none;
}
.nav-l ul li .solution-hover-clg ul li a{
	border: none!important;
	display: inline;
	line-height: 14px;
}
.solution-hover-clg ul li a{
	transition: color 0.3s ease;
}
.solution-hover-clg ul li{
	float: left;
	text-align: center;
	margin-right: 53px;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease /* Firefox 4 */
	-webkit-transition: all 0.3s ease; /* Safari and Chrome */
	-o-transition: all 0.3s ease; /* Opera */
}
.solution-hover-clg ul li{
	 animation: solutionhoverli 1s forwards;
}	 
@-webkit-keyframes solutionhoverli{
	0% {
		transform: translateX(100px);
		-ms-transform: translateX(100px);/* IE 9 */
		-moz-transform: translateX(100px);/* Firefox */
		-webkit-transform: translateX(100px);/* Safari 和 Chrome */
		-o-transform: translateX(100px);/* Opera */
		opacity: 0;
		filter: alpha(opacity=0);
	}
	
	100% {
		transform: translateX(0px);
		-ms-transform: translateX(0px);
		-moz-transform: translateX(0px);
		-webkit-transform: translateX(0px);
		-o-transform: translateX(0px);
		opacity: 1;
		filter: alpha(opacity=100);
	}
}
.solution-hover-clg ul li:nth-of-type(1){
	animation-delay:0s;
	-webkit-animation-delay:0s; /* Safari 和 Chrome */
}
.solution-hover-clg ul li:nth-of-type(2){
	animation-delay:0.3s;
	-webkit-animation-delay:0.3s; /* Safari 和 Chrome */
}
.solution-hover-clg ul li:nth-of-type(3){
	animation-delay:0.6s;
	-webkit-animation-delay:0.6s; /* Safari 和 Chrome */
}
.solution-hover-clg ul li:nth-of-type(4){
	animation-delay:0.9s;
	-webkit-animation-delay:0.9s; /* Safari 和 Chrome */
}
.solution-hover-clg ul li:nth-of-type(5){
	animation-delay:1.2s;
	-webkit-animation-delay:1.2s; /* Safari 和 Chrome */
}
.solution-hover-clg ul li:nth-of-type(6){
	animation-delay:1.5s;
	-webkit-animation-delay:1.5s; /* Safari 和 Chrome */
}
.solution-hover-clg ul li div{
	border: 1px solid #c9c9c9;
	width: 112px;
	margin-bottom: 33px;
}
.solution-hover-clg ul li span{
	font-size: 14px;
	line-height: 14px;
	color: #666666;
}
