.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;
    border-bottom: 3px #ccc solid;
    margin-bottom: 15px;
}

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

.ui-cuticle {
  background-color: #064ebc;
  position: absolute;
  bottom: -3px;
  height: 3px;
  width: 100%;
}

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

.ui-content {
  position: absolute;
  max-width: 665px;
  width: 100%;
    left: 0;
    top: 145px;
    z-index: 100;
}

.ui-articles {
  background: rgba(255, 255, 255,1);
  color: white;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.ui-article {
  padding: 40px;
  width: 100%;
  margin-right: -100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ui-article .solve-more{
  z-index: 99;
  margin-top: 15px;
}
.ui-article .solve-more a{
  background-color: #064ebc;
  color: #fff;
  border-radius: 2px;
  padding: 10px 15px;
  display: inline-block;
}

.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: #D4A12D;
  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: 24px;
  font-weight: normal;
  color: #333;
  font-weight: 600;
}


/* ---------------------------------- */
.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: 540px;
}

.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: #fff;
  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 35px;
}
.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;
}
.left-content{
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 65px 65px;
}
.right-content{
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 30px 40px;
}
.casebanner-bg{
    height: 400px;
    display: flex;
    vertical-align: middle;
    align-items: center;
}
.c-text{
    vertical-align: middle;
    width: 60%;
    font-size: 52px;
}
.case-desc{
    line-height: 30px;
    font-size: 24px;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
}
.rc-title{
    display: flex;
    font-size: 20px;
    margin-top: 30px;
}
.rc-title img{
    margin-right: 10px;
}
.e-link-box{
    margin-top: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
}
.e-link-box p{
    line-height: 30px;
}
.e-link-box p a .text{
    font-size: 16px;
    color: #666;
}
.e-link-box p a .glyphicon-menu-right{
    font-size: 14px;
    color: #c7000b;
    display: inline-block;
    width: 0;
    vertical-align: middle;
    height: 20px;
    position: relative;
    padding-left: 10px;
}
.e-link-box p a:hover .glyphicon-menu-right{
    padding-left: 20px;
    transition: .4s
}
.rc-top{
    padding-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
}
.rc-top span{
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    margin-top: 10px;
}
.crow{
		margin-bottom: 30px;
	}
	
.crow p{
	position: absolute;
    bottom: 0;
    background: rgba(100, 100, 110, 0.61);
    left: 15px;
	right: 15px;
    height: 60px;
    overflow: hidden;
    text-align: center;
    line-height: 60px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
	}
.hoverDiv{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	right: 15px;
	background: rgba(100, 100, 110, 0.61);
	display: none;
	border-radius: 10px;
    
}
.hoverDiv h4{
	padding-top: 60px;
	/*padding-bottom: 20px;*/
	text-align: center;
	color: #fff;
}
.hoverDiv div{
	text-align: center;
	padding: 0 15px;
	color: #fff;
	margin-bottom: 20px;
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.5;
}
.hoverDiv a{
	border: 1px #fff solid;
	color: #fff;
	padding: 5px 15px;
	display: block;
	margin: 10px auto;
	text-align: center;
	height: 36px;
	font-size: 16px;
	width: 100px;
 }
 .crow:hover{
 	cursor: pointer;
 }
 .crow:hover .hoverDiv{
	display: block;
 }
 .crow:hover>p{
 	display: none;
 }
 .crow .hoverDiv a:hover {
 	background: #064ebc;
 	color: #fff;
 	border: 1px #064ebc solid;
 }
 .sovle_icon{
     margin-right: 10px;
 }
 .sovle_icon img{
     height: 60px;
 }
a.case-relation{
    display: flex;
    background: #fff;
    margin-bottom: 30px;
}
.cr-left{
    width: 45%;
}
.cr-left img{
    height: 195px;
    object-fit: cover;
}
.cr-right{
    width: 55%;
    padding: 30px;
}
.cr-right .crr-title{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
}
.cr-right .crr-desc{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -.02em;
    margin-top: 16px;
    color: #666;
}
.cr-right .crr-more{
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -.02em;
    margin-top: 16px;
    color: #064ebc;
}
a.case-relation:hover .crr-desc{
    color: #666;
}

.cases-title{
    position: relative;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}
.cases-title:after{
    text-align: center;
    content: "";
    background: #007fff;
    width: 64px;
    height: 6px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -20px;
}
.cases-hr{
    background: #d8d8d8;
    height: 1px;
    width: 80%;
    margin: 0px auto;
    margin-top: 17px;
}
.cases-desc{
    text-align: center;
    margin-top: 30px;
    color: #666666;
    line-height: 24px;
    font-size: 18px;
}
.advan-icon{
    text-align: center;
}
.advan-title{
    text-align: center;
    font-size: 20px;
    color: #0d0000;
    margin-top: 15px;
}
.advan-text{
    text-align: center;
    font-size: 16px;
    color: #5c627c;
}
.cases-banner{
  

}
.cases-top{
	padding-top:180px ;
	padding-bottom: 220px;
	background-size: cover !important;
}
.casestop-tag{
    font-size: 46px;
    color: #007fff;
    font-weight: bold;
}
.casestop-title{
    font-size: 60px;
    color: #0d0000;
    font-weight: bold;
}
.casestop-text{
    font-size: 26px;
    color: #0d0000;
    font-weight: bold;
}
.casestop-logo{
    width: 50%;
}
.casestop-btn{
    
}
.casestop-btn a{
    background: linear-gradient(to bottom, #ffdecc, #ea5504);
    border-radius: 6px;
    padding: 10px 33px;
    color: #fff;
    font-size: 16px;
}
.cases-value{
    background:url(../images/fangan01/cases-valuebg.jpg) no-repeat;
    background-size: contain;
    background-position: center bottom;
}
.value-icon{
    text-align: center;
}
.value-title{
    text-align: center;
    font-size: 30px;
    color: #0d0000;
    margin-top: 15px;
}
.value-text{
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    color: #666666;
}
.casevalue-list{
    padding-bottom: 150px;
}
.digit-box{
    display: flex;
    justify-content: space-between;
}
.db-left{
    width: 40%;
}
.dl-title{
    color: #0d0000;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    display: inline;
}
.dl-title:after{
    position: absolute;
    content: "";
    height: 12px;
    background: #007fff;
    bottom: 0px;
    left: 0;
    width: auto;
    right: 0;
    z-index: -1;
}
.dl-subtitle{
    color: #0d0000;
    font-size: 30px;
    font-weight: bold;
}
.dl-desc{
    margin-top: 30px;
}
.dl-desc ul li{
    line-height: 28px;
    font-size: 16px;
    padding-left: 35px;
    background:url(../images/fangan01/dot.png) no-repeat;
    background-position: left 6px;
    margin-top: 15px;
}

.case-products-robot-item {
  margin-bottom: 30px;
  cursor: auto;
}
.case-products-robot-top {
  display: flex;
  width: 100%;
  flex-direction: row;
  background-color: #f7f8fc;
  padding: 85px 60px;
  align-items: center;
  position: relative;
  -webkit-box-shadow: 0 15px 30px rgba(0,0,0,.1);
	box-shadow: 0 15px 30px rgba(0,0,0,.1);
	-webkit-transform: translate3d(0,-2px,0);
	transform: translate3d(0,-2px,0)
  -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.case-products-robot-top:hover{
    z-index: 2;
	
}
.case-products-robot-top .case-robot-more {
  display: flex;
  justify-items: center;
}

.case-products-robot-top .case-products-robot-left {
  width: 70%;
}

.case-products-robot-top .case-products-robot-right {
  text-align: center;
  flex: 1;
  /* 1102 */
  position: absolute;
  right: 0;
  height: 100%;
  width: 30%;
  margin-top: 20px;
  left: 70%;
}

.case-products-robot-top .case-robot-left-title {
  border-left: 9px solid #007fff;
  padding-left: 15px;
}

.case-products-robot-top .case-robot-name {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  padding-top: 10px;
  padding-bottom: 30px;
}



.case-products-robot-top .case-left-title-letter {
  font-size: 18px;
  font-weight: bold;
  color: #5c627c;
}

.case-products-robot-top .case-left-title-num {
  font-size: 30px;
  font-weight: bold;
  color: #000;
}

.case-robot-icon-list {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.case-robot-icon-list .case-icon-item{
  display: flex;
  flex-wrap: nowrap;
  line-height: 20px;
  margin-bottom: 0px;
  /* margin-right: 1.6125rem; */
  margin-right: 8px;
  align-items: center;
}

.case-robot-icon-list .case-icon-item .case-icon-item-img {
  margin-right: 7px;
}

.case-robot-icon-list .case-icon-item .case-icon-item-desc {
  font-size: 14px;
  font-weight: 400;
  color: #007fff;
}
.case-pro-more-btn a {
  display: inline-block;
  border: 1px solid #007fff;
  padding: 5px 24px;
   color: #007fff;
   margin-top: 40px;
   font-size: 16px;
}

.case-pro-more-btn a:hover {
  background-color: #007fff;
  color: #ffffff;
}
.yinhao img{
    width: 50px;
}

@media (max-width: 1199px) {
    .casestop-tag{
        font-size: 26px;
    }
    .casestop-title{
        font-size: 40px;
    }
    .casestop-text,.value-title {
    font-size: 20px;
    }
    .cases-title{
        font-size: 26px;
    }
    .value-text{
        font-size: 14px;
    }
    .case-products-robot-top .case-robot-name{
        font-size: 24px;
    }
    .case-products-robot-top .case-products-robot-right{
        left: 64%;
    }
    
}
@media (max-width: 991px) {
    
    .casestop-text,.value-title {
    font-size: 14px;
    }
}

@media (max-width: 767px) {
    .ui-content {
        width: 90%;
        left: 20px;
        top: 50px;
    }
    .ui-big-image img {
        height: 350px;
    }
        .ui-thumbnail > img {
        padding: 0;
    }
    .ui-thumbnail{
        padding: 0;
    }
    .cr-right .crr-title{
        font-size: 16px;
    }
    .cr-right .crr-desc{
        font-size: 12px;
        margin-top: 10px;
    }
    .cr-right {
    padding: 15px;
    }
    .casebanner-bg{
        height: 100px;
    }
    .c-text{
        font-size: 20px;
    }
    .left-content{
        padding: 20px;
    }
    .case-desc{
        font-size: 18px;
    }
    .yinhao img{
    width: 30px;
    }
    .cases-title {
        font-size: 24px;
    }
    .cases-desc{
        font-size: 14px;
        margin-top: 10px;
    }
    .ui-heading{
        font-size: 18px;
    }
    .ui-paragraph,.advan-title,.advan-text{
        font-size: 12px;
    }
    .ui-article{
        padding: 20px;
    }
     .mt70{
        margin-top: 20px;
    }
    .mb70{
        margin-bottom: 20px;
    }
    .advan-icon img{
        max-height: 50px;
    }
    .case-products-robot-top{
        background-repeat: no-repeat;
        background-size: 100%;
        padding: 20px;
    }
    .case-products-robot-top .case-left-title-num{
        font-size: 22px;
    }
    .case-products-robot-top .case-robot-name {
        font-size: 20px;
    }
    .case-products-robot-top .case-products-robot-right{
        background-size: 100% !important;
    }
    .digit-box{
        display: block;
    }
    .db-left,.db-right{
        width: 100%;
    }
    .dl-title,.dl-subtitle{
       font-size: 20px; 
    }
    .cases-value{
        background-size: auto;
    }
    .cases-top{
        height: 396px;
        padding-top: 30px;
        padding-bottom: 0;
    }
    .casestop-tag{
        font-size: 16px;
    }
    .casestop-title{
        font-size: 20px;
    }
    .casestop-text {
    font-size: 14px;
    width: 50%;
    margin-top: 15px;
    }
    .value-title {
    font-size: 16px;
    margin-top: 15px;
    }
    .value-text{
        font-size: 14px;
    }
    .casestop-btn a {
    padding: 7px 20px;
    font-size: 14px;
    }
    
}
