img{
	max-width: 100%;
}
.case-index{
	background-color: #f5f5f7;
	/* padding-bottom: 90px; */
}
#app {
  /* width: 90%;
  height: 85%; */
  overflow: hidden;
  position: relative;
}

.ui-big-images {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.ui-big-image {
  width: 100%;
  margin-right: -100%;
}
.ui-big-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-height: 600px) {
  .ui-big-image img {
    -o-object-position: center center;
       object-position: center center;
  }
}

.ui-thumbnails {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  /* padding-right: 45%;
  padding-right: calc( 45% + .5rem ); */
  border-bottom: 1px #ccc solid;
  margin-bottom: 15px;
}

.ui-thumbnail {
  display: block;
  margin-right: 5px;
  padding:10px 0;
  cursor: pointer;
  position: relative;
}

.ui-cuticle {
  background-color: #007fff;
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}

.ui-thumbnail > img {
  width: auto;
}

.ui-content {
  position: absolute;
  width: 40%;
  left: 25%;
  top: 35%;
}

.ui-articles {
  background: rgba(255, 255, 255, 0.8);
  color: white;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 10px;
}

.ui-article {
  padding: 40px;
  width: 100%;
  margin-right: -100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ui-paragraph {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

.ui-nav {
  position: absolute;
  right: 0;
  bottom: 100%;
  background: inherit;
}
.ui-nav button {
  background: #02327c;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: .5em;
  width: 2em;
  color: #FFF;
  font-family: monospace;
  transition: inherit;
  transition-duration: 300ms;
}
.ui-nav button:hover, .ui-nav button:focus {
  background: #02327c;
  outline: none;
}
.ui-nav button:active {
  outline: none;
  -webkit-transform: translateY(0.25em);
          transform: translateY(0.25em);
  transition-duration: 100ms;
}

.ui-heading {
  margin: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: normal;
  color: #333;
  font-weight: 600;
}

.prod-title{
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	color: #3D3D3D;
	text-transform: uppercase;
	margin: 50px 0 10px;
}
.prod-desc{
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	color: rgba(102, 102, 102, 0.6);
	margin-top: 10px;
	margin-bottom: 30px;
}
.mt90{
	margin-top: 90px;
}
.mb90{
	margin-bottom: 90px;
	margin-top: 30px;
}
.prod-ewm{
	text-align: center;
	margin-top: 25%;
}
.prod-bottom{
	display: inline-block;
	margin: 0 50px;
}
.prod-bottom span{
	display: block;
	margin-top: 20px;
	color: #5c5c5c;
	font-size: 16px;
}

/* ---------------------------------- */
.ui-big-image {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.ui-big-image img {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
		  height: 650px;
}

.ui-big-image[data-active] ~ .ui-big-image {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.ui-big-image[data-active] {
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.ui-big-image[data-active] img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ---------------------------------- */
.ui-article {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.ui-article:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #02327c;
  opacity: 1;
  transition-duration: 0.35s;
  z-index: 1;
}

.ui-article[data-active] ~ .ui-article {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.ui-article[data-active] {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.ui-article[data-active]:before {
  opacity: 0;
}

/* ---------------------------------- */
.ui-thumbnail > img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  transition-duration: 0.35s;
  padding: 0 15px;
}
.ui-thumbnail:active > img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  transition-duration: 100ms;
}
.ui-thumbnail:focus {
  outline: none;
}

.ui-cuticle {
  display: none;
}

.ui-thumbnail[data-active] > img, .ui-thumbnail:hover > img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.ui-thumbnail[data-active] .ui-cuticle {
  display: block;
}





/*新闻*/
.column_tab {
	padding: 30px 0;
}

.column_nav {
	margin-bottom: 35px;
	margin-top: 30px;
	padding-left: 0;
}

.column_nav li {
	display: inline-block;
	margin: 0 30px;
}

.column_nav li.active,
.column_nav li:hover {
	background-color: #007fff;
	border-radius: 30px;
	
}

.column_nav li.active a,
.column_nav li:hover a {
	color: #fff;
}

.column_nav li a {
	font-size: 16px;
	display: block;
	color: #666;
	padding: 10px 20px;
	
}
.column_nav li a:hover,.column_nav li a:active,.column_nav li a:focus{
	text-decoration: none;
}
.mtb50{
	margin: 50px 0;
}
.prod-tab-cname{
	font-size: 20px;
	color: #000000;
}
.prod-tab-cname img{
	margin-right: 10px;
}
.prod-tab-title{
	color: #007fff;
	font-size: 36px;
	font-weight: bold;
	margin: 20px 0;
}
.prod-tab-desc1{
	padding-left: 10px;
	border-left: 2px #007fff solid;
}
.prod-tab-text1{
	color: #5f5f5f;
	font-size: 18px;
	font-weight: bold;
}
.prod-tab-text2{
	font-size: 16px;
	color: #595757;
}
.prod-tab-desc2{
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 18px;
	color: #007fff;
	line-height: 30px;
	display: flex;
	margin-left: -8px;
	font-weight: bold;
}
.prod-tab-desc2 b{
	font-size: 30px;
}
.prod-tab-text3{
	padding-left: 10px;
	border-left: 2px #007fff solid;
	font-size: 16px;
	color: #595757;
}

/****/
.prod-video{
	/* background: #f5f6f7; */
	padding: 90px 0px;
}
.prod-video-box{
	display: flex;
}
.prod-video-left{
	width: 50%;
}
.prod-video-right{
	width: 50%;
}
.prod-video-title{
	font-size: 44px;
}
.prod-video-desc{
	line-height: 30px;
	font-size: 18px;
	margin-top: 15px;
}
.prod-video-icon{
	display: flex;
}
.prod-video-icon .pvi{
	margin-top: 50px;
	text-align: center;
	margin-right: 60px;
}
.prod-video-icon .pvi span{
	display: block;
	margin-top: 10px;
}
.floor_img {
	position: absolute;
	background-size: cover;
	background-position: 50%;
	top: -20px;
	bottom: -20px;
	left: 0px;
	right: 0px;
}
.rsBtnCenterer {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    z-index: 3;
}
.rsPlayBtn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
    width: 64px;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    cursor: pointer;
}


/*更全面的智能巡检器*/
.xjq {
	padding: 30px 0 90px 0 ;
	background-color: #f5f6f7;
}
.xjq .mt60{
	margin-top: 60px;
}
.xjq .user-img {
	text-align: center;
}

.xjq .user-img img {}

.xjq .user-title {
	margin-top: 20px;
	font-size: 16px;
	color: #000;
	padding: 3px 10px;
	text-align: center;
	line-height: 24px;
	background-color: #ededed;
	border-radius: 3px;
	display: inline-block;
}
.xjq-list{
	text-align: center;
}
.xjq-list .col-md-2{
	width: 20%;
}

/****/
.prod-zzzy{
	text-align: center;
	margin: 50px 0;
}
.prod-zz-desc{
	font-size: 18px;
	line-height: 35px;
	color: #898989;
}

/****/
.prod-solve{
	background-color: #f5f6f7;
	padding: 30px 0 70px 0;
}
.prod-solve-pic{
	margin: 50px 0 0 0;
}


/****/
.prod-yingyong{
	height: 761px;
	
}
.prod-yy-text{
	float: right;
	margin-top: 100px;
}


#example5 .sp-thumbnail-image-container {
	width: 100px;
	height: 80px;
	overflow: hidden;
	float: left;
}

#example5 .sp-thumbnail-image {
	height: 100%;
}

#example5 .sp-thumbnail-text {
	width: 290px;
    float: right;
    padding: 18px;
    background-color: #F0F0F0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#example5 .sp-thumbnail-title {
	margin-bottom: 5px;
	text-transform: uppercase;
	color: #333;
	font-size: 18px;
}
.sp-selected-thumbnail .sp-thumbnail .sp-thumbnail-text .sp-thumbnail-title{
	color: #1F3F99 !important;
}
#example5 .sp-thumbnail-description {
	font-size: 14px;
	color: #333;
}
.container {
    max-width: 1300px;
}
@media (min-width: 1200px){
	.container {
		width: 1100px;
	}
	
}
@media (min-width: 1400px){
	.container {
		width: 1300px;
	}
	
}
@media (max-width:1400px) {
	.prod-video-title{
		font-size: 36px;
	}
	.prod-video-icon .pvi{
		margin-right: 30px;
	}
}
@media (max-width:991px) {
	.prod-video-title{
		font-size: 24px;
	}
	.prod-video-icon .pvi{
		margin-right: 20px;
	}
	.prod-video-icon .pvi img{
		max-width: 30px;
	}
	.prod-yingyong{
		height: 560px;
	}
	.prod-tab-title{
		font-size: 24px;
	}
	.prod-tab-text3{
		margin-bottom: 30px;
	}
}
@media (max-width: 500px) {
	#example5 .sp-thumbnail {
		text-align: center;
	}

	#example5 .sp-thumbnail-image-container {
		display: none;
	}

	#example5 .sp-thumbnail-text {
		width: 120px;
	}

	#example5 .sp-thumbnail-title {
		font-size: 12px;
		text-transform: uppercase;
	}

	#example5 .sp-thumbnail-description {
		display: none;
	}
}

@media (max-width:767px) {
	.prod-tab-title {
		font-size: 18px;
	}
	.ui-thumbnail > img{
		padding: 0;
	}
	.column_tab_main .container>div {
		padding: 0;
		background: none;
	}

	.column_tab_main {
		background: none;
	}

	.column_tab_more {
		margin-top: 30px;
		width: 50%;
		border: 1px #02327c solid;
		font-size: 14px;
		color: #02327c;
	}

	.column_header h2 {
		font-size: 20px;
	}

	.column_nav li a {
		font-size: 12px;
		padding: 7px 15px;
	}

	.honor_pic {
		display: block;
		height: auto;
	}
	.index-dz{
		padding:20px 0px;
	}
	.numCX{
		font-size: 30px;
	}
	.dz-desc{
		font-size: 14px;
	}
	.dz-box{
		padding:20px 15px;
		margin-bottom: 15px;
	}
	.numCount .col-md-4:last-child .dz-box{
		margin-bottom: 0;
	}
	.dz-box img{
		max-width: 60px;
	}
	.prod-video-left,.prod-video-right{
		width: 100%;
	}
	.prod-video-box{
		flex-direction: column;
		
	}
	.floor_img{
		height: 200px;
		position: static;
		margin-top: 30px;
	}
	.prod-video{
		padding: 30px 0;
	}
	.prod-video-icon .pvi {
	        margin-top: 10px;
	    }
	.prod-video-desc,.prod-desc{
		font-size: 14px;
	}
	.prod-video-title{
		font-size: 20px;
	}
	.prod-title{
		font-size: 24px;
	}
	.prod-yingyong{
		height: 300px;
	}
	.column_nav li{
		margin: 0 4px;
	}
	.mtb50 {
	    margin: 10px 0;
	}
	.prod-tab-text1,.prod-zz-desc{
		font-size: 16px;
	}
	.prod-tab-text2{
		font-size: 14px;
	}
	.xjq{
		padding-top: 0;
		padding-bottom: 30px;
	}
	.xjq .mt60{
		margin-top: 30px;
	}
	.prod-bottom {
	    margin: 0 30px;
	}
	.ui-content{
		width: 100%;
		left: 20px;
	}
	.ui-big-image img{
		height: 350px;
	}
	.case-index{
		padding-bottom: 50px;
	}
	.xjq .user-title{
		font-size: 12px;
	}
	.prod-solve{
		padding: 0;
	}
	.prod-solve-pic{
		margin-top: 30px;
		margin-bottom: 50px;
	}
}