/* 巨幕 */
.bannerBox {
  width: 100%;
  min-width: 1200px;
  display: block;
}
/* 巨幕 end */

/* 介绍 */
.introduceBox {
  background: #f1f1f1;
  overflow: hidden;
}
.introduceBox-container {
  width: 100%;
  margin: 30px auto;
  overflow: hidden;
}
.introduceBox-iconBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.iconBox-model {
	width: 200px;
  min-width: 100px;
  background: white;
  overflow: hidden;
  margin: 20px;
}
.iconBox-model:hover .iconBox-text{
	color: #82CCCB;
}
.iconBox-model:hover .iconBox-image{
	animation: iconModel 1s ease;
}
@keyframes iconModel
{
	from {transform: translateX(0);}
	50% {transform: translateX(-20px);}
	to {transform: translateX(0);}
}
.iconBox-modelContain {
  width: 90%;
  margin: 20px auto;
  text-align: center;
}
.iconBox-image {
  width: 50px;
  height: 50px;
}
.iconBox-text {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
  transition: all ease 0.3s;
}
.introduceBox-mainBox {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.mainBox-title {
  margin: 15px auto;
  text-align: center;
  font-size: 22px;
}
.mainBox-titleSpan {
  color: #3b7992;
}
.mainBox-tip {
  font-size: 14px;
  text-align: center;
}
.mainBox-inputBox {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.inputBox-one {
  width: 500px;
}
.inputBox-two,
.inputBox-three {
  width: 200px;
}
.inputBox-one,
.inputBox-two,
.inputBox-three {
  font-size: 14px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  margin: 10px;
}
.inputBox-btn {
  margin: 10px;
  background: #121723;
  color: white;
  font-size: 14px;
  padding: 12px;
  border: 0;
  border-radius: 4px;
}
/* 介绍 end */
/* 核心业务 */
.businessBox {
  overflow: hidden;
  margin: 40px auto;
}
.businessBox-englishTitle,
.businessBox-title {
  font-weight: bold;
  text-align: center;
}
.businessBox-englishTitle {
  font-size: 36px;
}
.businessBox-title {
  font-size: 26px;
  margin: 5px 0;
}
.businessBox-tip {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.businessBox-mainBox {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.businessBox-mainBox-model {
  width: 380px;
  overflow: hidden;
}
.businessBox-mainBox-model:hover a{
    text-decoration: none;
}
.businessBox-mainBox-model:hover .businessBox-mainBox-text{
	background: #82CCCB;
}
.businessBox-mainBox-model:hover .businessBox-textContain-tip{
	color: black;
}
.businessBox-mainBox-img {
  width: 100%;
  height: 180px;
}
.businessBox-mainBox-text {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  transition: all ease 0.6s;
}
.businessBox-mainBox-textContain {
  width: 220px;
}
.businessBox-textContain-title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}
.businessBox-textContain-tip {
  width: 100%;
  font-size: 14px;
  margin-top: 10px;
  line-height: 22px;
  transition: all ease 0.6s;
}
/* 核心业务 end */
/* 解决方案 */
.caseBox {
  width: 100%;
  overflow: hidden;
  background: url("../../../../uploads/ueditor/20200216/1-2002161R13V59.png") no-repeat fixed;
  background-size: 100% 100%;
}
.caseBox-englishTitle,
.caseBox-title {
  font-weight: bold;
  text-align: center;
  color: white;
}
.caseBox-englishTitle {
  font-size: 36px;
  margin: 30px auto 0;
}
.caseBox-title {
  font-size: 26px;
  margin: 5px auto;
}
.caseBox-tip {
  font-size: 14px;
  text-align: center;
  margin: 10px auto 0;
  color: white;
}
.caseBox-mainBox {
  margin: 30px auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.caseBox-mainBox-model {
  width: 260px;
  height: 310px;
  margin: 80px 20px 0;
  position: relative;
  text-decoration: none;
}
.caseBox-mainBox-top {
  width: 100%;
  height: 200px;
  border-radius: 15px 15px 0 0;
  background: #434761;
  position: relative;
  transition: all ease 0.3s;
}
.caseBox-mainBox-model:hover{
    text-decoration: none;
}
.caseBox-mainBox-model:hover .caseBox-mainBox-model-hoverBox{
	opacity: 1;
}
.caseBox-mainBox-model:hover .caseBox-mainBox-bottomIcon{
	background: #82CCCB;
	transform: rotate(360deg);
	bottom: 310px;
}
.caseBox-mainBox-model:hover .caseBox-mainBox-img{
	/*transform: translateY(-200px);*/
	opacity: 0;
	transition: all ease 0.3s;
}
.caseBox-mainBox-img {
  width: 120px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  margin-left: -60px;
  animation: caseModel 2s infinite linear alternate;
}
@keyframes caseModel
{
	from {bottom:20px;}
	to {bottom:30px;}
}

.caseBox-mainBox-bottom {
  width: 100%;
  height: 110px;
  background: white;
  border-radius: 0 0 15px 15px;
  position: relative;
}
.caseBox-mainBox-bottomText {
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding-top: 15px;
}
.caseBox-mainBox-bottomIcon {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -30px;
  margin-bottom: -30px;
  text-align: center;
  background: #82CCCB;
  border-radius: 50%;
  z-index: 99;
  transition: all ease 0.3s;
}
.caseBox-mainBox-bottomIcon-iconUrl {
  width: 30px;
  height: 30px;
  margin-top: 15px;
}
.caseBox-mainBox-model-hoverBox{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;top: 0;
	background: #82CCCB;
	opacity: 0;
	border-radius: 15px;
	transition: all ease 0.3s;
	padding: 0 20px;
}
.caseBox-mainBox-model-hoverBox-title{
	font-size: 20px;
	font-weight: bold;
	margin: 40px 0 0;
	text-align: center;
}
.caseBox-mainBox-model-hoverBox-content{
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}
.caseBox-mainBox-model-hoverBox-more{
    width: 80px;
    padding: 5px 0;
    text-align: center;
    font-size: 12px;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    margin: 10px auto 0;
}
.caseBox-mainBox-model-hoverBox-more:hover{
    border-color: #337ab7;
    color: #337ab7;
}

/* 解决方案 end */
/* 推荐案例 */
.recommendCaseBox {
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 0;
  /*background: #f1f1f1;*/
}
.recommendCaseBox-englishTitle,
.recommendCaseBox-title {
  font-weight: bold;
  text-align: center;
}
.recommendCaseBox-englishTitle {
  font-size: 36px;
  margin-top: 30px;
}
.recommendCaseBox-title {
  font-size: 26px;
  margin: 5px 0;
}
.recommendCaseBox-tip {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.recommendCaseBox-mainBox-container{
	width: 80%;
	margin: 50px auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.recommendCaseBox-mainBox-leftIcon{
	width: 80px;
	height: 80px;
}
.recommendCaseBox-mainBox-rightIcon{
	width: 80px;
	height: 80px;
}
.recommendCaseBox-mainBox {
	width: 80%;
	margin: 0 auto;
  overflow-x: scroll;
  display: flex;
  white-space: nowrap;
  position: relative;
}
.recommendCaseBox-mainBox-model {
  width: 440px;
  height: 200px;
  margin: 100px 50px;
  border-radius: 20px;
  background: #447596;
  position: relative;
}
.recommendCaseBox-mainBox-model:hover .recommendCaseBox-mainBox-textTitle {
  color: #82CCCB;
}
.recommendCaseBox-mainBox-model:hover .recommendCaseBox-mainBox-textTip {
  color: #82CCCB;
}
.recommendCaseBox-mainBox-modelContain {
  width: 400px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.recommendCaseBox-mainBox-image {
  width: 200px;
}
.recommendCaseBox-mainBox-imageStyle {
  width: 200px;
  height: 400px;
  position: absolute;
  left: 0;
  top: -120px;
  border-radius: 20px;
}
.recommendCaseBox-mainBox-imageStyle2 {
  width: 200px;
  height: 400px;
  position: absolute;
  right: 0;
  top: -120px;
}
.recommendCaseBox-mainBox-text {
  width: 190px;
  height: 200px;
}
.recommendCaseBox-mainBox-textTitle,
.recommendCaseBox-mainBox-textTip {
  width: 100%;
  
  color: white;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommendCaseBox-mainBox-textTitle {
  font-size: 16px;
  margin-top: 25px;
}
.recommendCaseBox-mainBox-textTip{
    font-size: 14px;
}
.recommendCaseBox-mainBox-textContent {
  width: 100%;
  font-size: 12px;
  line-height: 20px;
  color: white;
  margin-top: 20px;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.recommendCaseBox-circleBox {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #82CCCB;
  position: absolute;
  right: -20px;
  top: -20px;
}
.recommendCaseBox-circleBox2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #82CCCB;
  position: absolute;
  left: -30px;
  bottom: -30px;
}
.recommendCaseBox-moreBtn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.recommendCaseBox-moreBtn-href {
  font-size: 14px;
  border: 1px solid #2f2f2f;
  border-radius: 4px;
  padding: 12px 18px;
}
.recommendCaseBox-moreBtn-href:hover {
  color: #82CCCB;
  border: 1px solid #82CCCB;
}
.recommendCaseBox-checkImg-Box{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;top: 0;
	background: rgba(0,0,0,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.recommendCaseBox-checkImg-Box>img{
	height: 90%;
}
/* 推荐案例 end */
/* 服务过程 */
.serviceProcessBox {
  /*width: 100%;*/
  overflow: hidden;
  margin: 0 auto;
}
.serviceProcessBox-englishTitle,
.serviceProcessBox-title {
  font-weight: bold;
  text-align: center;
}
.serviceProcessBox-englishTitle {
  font-size: 36px;
  margin-top: 30px;
}
.serviceProcessBox-title {
  font-size: 26px;
  margin: 5px 0;
}
.serviceProcessBox-tip {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.serviceProcessBox-mainBox {
  /*width: 70%;*/
  margin: 30px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.serviceProcessBox-mainBox-model {
  display: flex;
  align-items: center;
  margin: 20px 15px;
}
.serviceProcessBox-mainBox-model:hover .serviceProcessBox-mainBox-textTitle{
	color: #82CCCB;
}
.serviceProcessBox-mainBox-model:hover .serviceProcessBox-mainBox-iconBox{
	background: #82CCCB;
	border: 2px solid #82CCCB;
}
.serviceProcessBox-mainBox-model:hover .serviceProcessBox-mainBox-icon{
	display: none;
}
.serviceProcessBox-mainBox-model:hover .serviceProcessBox-mainBox-iconHover{
	display: block;
	
}
.serviceProcessBox-mainBox-text {
  width: 150px;
  overflow: hidden;
}
.serviceProcessBox-mainBox-textTitle {
  font-size: 16px;
  transition: all ease 0.3s;
}
.serviceProcessBox-mainBox-textContent {
  font-size: 12px;
  margin-top: 10px;
  line-height: 20px;
}
.serviceProcessBox-mainBox-iconBox{
	padding: 6px;
	border: 2px solid #2F2F2F;
  border-radius: 50%;
  text-align: center;
  margin-left: 20px;
  transition: all ease 0.3s;
}
.serviceProcessBox-mainBox-icon {
  width: 15px;
  height: 15px;
  display: block;
}
.serviceProcessBox-mainBox-iconHover{
	width: 15px;
  height: 15px;
  display: none;
}
/* 服务过程 end */
/* 客户口碑 */
.publicPraiseBox {
  width: 100%;
  overflow: hidden;
  background: url("../../../../uploads/ueditor/20200216/1-2002161R13R61.png") no-repeat fixed;
  background-size: 100% 100%;
}
.publicPraiseBox-englishTitle,
.publicPraiseBox-title {
  font-weight: bold;
  text-align: center;
  color: white;
}
.publicPraiseBox-englishTitle {
  font-size: 36px;
  margin: 30px auto 0;
}
.publicPraiseBox-title {
  font-size: 26px;
  margin: 5px auto 0;
}
.publicPraiseBox-tip {
  font-size: 14px;
  text-align: center;
  margin: 10px auto 0;
  color: white;
}
.publicPraiseBox-mainBox {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.publicPraiseBox-mainBox-model {
  width: 560px;
  height: 250px;
  background: white;
  border-radius: 20px;
  margin: 20px;
}
.publicPraiseBox-mainBox-model:hover .publicPraiseBox-mainBox-hr{
	width: 100%;
	background: #82CCCB;
}
.publicPraiseBox-mainBox-container {
  width: 420px;
  margin: 30px auto;
}
.publicPraiseBox-mainBox-topBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.publicPraiseBox-topBox-name,
.publicPraiseBox-topBox-time {
  font-size: 20px;
  font-weight: bold;
}
.publicPraiseBox-mainBox-hr {
  width: 40px;
  height: 10px;
  background: #191b28;
  margin: 10px 0 20px;
  transition: all ease 0.6s;
}
.publicPraiseBox-mainBox-content {
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.publicPraiseBox-mainBox-byUser {
  width: 80px;
  text-align: center;
  font-size: 16px;
  color: white;
  background: #191b28;
  padding: 5px 0;
  border-radius: 50px;
  margin-top: 10px;
}
.publicPraiseBox-mainBox-byUser-float{
	float: right;
}
/* 客户口碑 end */
/* 合作伙伴 */
.partnerBox {
  overflow: hidden;
  margin: 0 auto;
}
.partnerBox-englishTitle,
.partnerBox-title {
  font-weight: bold;
  text-align: center;
}
.partnerBox-englishTitle {
  font-size: 36px;
  margin-top: 30px;
}
.partnerBox-title {
  font-size: 26px;
  margin: 5px 0;
}
.partnerBox-tip {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.partnerBox-mainBox {
  width: 100%;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hexagon {
    width: 160px;
    height: 100px;
    background-color: #ededed;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 50px 5px;
    transition: all ease 0.3s;
}
.hexagon:before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 40px solid #ededed;
    transition: all ease 0.3s;
}
.hexagon:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 40px solid #ededed;
    transition: all ease 0.3s;
}
.hexagon2 {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 150px;
    height: 93px;
    background-color: #fff;
    position: relative;
    text-align: center;
    transition: all ease 0.3s;
}
  .hexagon2:before {
    content: "";
    position: absolute;
    top: -37.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 37.5px solid #fff;
    transition: all ease 0.3s;
}
  .hexagon2:after {
    content: "";
    position: absolute;
    bottom: -37.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-top: 38px solid #fff;
    z-index: 2;
    transition: all ease 0.3s;
}
.hexagon2-container{
    overflow: hidden;
}
.hexagon2-container>img{
	width: auto;
	height: 55px;
}
.hexagon2-container>div{
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    font-family: Microsoft JhengHei;
    margin-top: 5px;
    color: #333;
}
  .hexagon:hover{
    background-color: #2F2F2F;
}
  .hexagon:hover:before {
    border-bottom: 40px solid #2F2F2F;
}
  .hexagon:hover:after {
    border-top: 40px solid #2F2F2F;
}
  .hexagon:hover .hexagon2{
    background-color: #82CCCB;
}
  .hexagon:hover .hexagon2:before {
    border-bottom: 37.5px solid #82CCCB;
}
  .hexagon:hover .hexagon2:after {
    border-top: 37.5px solid #82CCCB;
}
/* 合作伙伴 end */
/* 新闻中心 */
.newsBox {
  overflow: hidden;
  margin: 0 auto 50px;
}
.newsBox-englishTitle,
.newsBox-title {
  font-weight: bold;
  text-align: center;
}
.newsBox-englishTitle {
  font-size: 36px;
  margin-top: 30px;
}
.newsBox-title {
  font-size: 26px;
  margin: 5px 0;
}
.newsBox-tip {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.newsBox-mainBox {
  width: 100%;
  overflow: hidden;
  margin: 30px auto 0;
}
.newsBox-mainBox-model {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsBox-mainBox-model:hover .newsBox-contentBox-title{
	color:#82CCCB;
}
/*.newsBox-mainBox-model:hover .newsBox-mainBox-imgUrl{*/
/*	animation: newsModel 1s infinite linear alternate;*/
/*}*/
/*@keyframes newsModel*/
/*{*/
/*	from {transform: translateY(0);}*/
/*	to {transform: translateY(15px);}*/
/*}*/
.newsBox-mainBox-imgUrl-box{
    width: 300px;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 0;
    border-radius: 100px 0 0 100px;
    border-left: 1px dashed #A8A8A8;
    border-top: 1px dashed #A8A8A8;
    border-bottom: 1px dashed #A8A8A8;
}
.newsBox-mainBox-imgUrl-box2{
    width: 300px;
    min-width: 300px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-radius: 0 100px 100px 0;
    border-right: 1px dashed #A8A8A8;
    border-top: 1px dashed #A8A8A8;
    border-bottom: 1px dashed #A8A8A8;
}
.newsBox-mainBox-imgUrl {
    width: 200px;
    margin: 0 10px;
    height: 120px;
}
.newsBox-mainBox-contentBox {
    width: 100%;
    margin: 0 20px;
}
.newsBox-contentBox-title {
    font-size: 20px;
    font-weight: 600;
}
.newsBox-contentBox-text {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 10px 0;
  line-height: 30px;
}
.newsBox-contentBox-time {
  font-size: 14px;
}
.newsBox-moreBtn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.newsBox-moreBtn-href {
  font-size: 14px;
  border: 1px solid #2f2f2f;
  border-radius: 4px;
  padding: 12px 18px;
  margin-bottom:30px;
}
.newsBox-moreBtn-href:hover {
  color: #82CCCB;
  border: 1px solid #82CCCB;
}
/* 新闻中心 end */
