/* 首页css */

.main {
  padding: 20px 0 40px 0;
}

.service {
  padding-top: 20px;
}

.title-en {
  color: #6D94B2;
  text-align: center;
  font-size: 22px;
}

.title-cn {
  color: #5683A6;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}

.col-mid-nine {
  float: left;
  padding: 0 20px;
  text-align: center;
}

.top-1 {
  width: 675px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.top-2 {
  width: 810px;
  margin: 0 auto;
}

.col-mid-nine>a>p {
  text-align: center;
  color: #28292D;
  text-decoration: none;
}

.main-bot {
  background: #F2F3F3;
}

.title-color {
  color: #3F6697;
}

.service .thumbnail {
  text-decoration: none;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  -moz-box-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  border: none;
  transition: all .3s;
}

.service .thumbnail:hover {
  -webkit-box-shadow: 0 5px 10px #c8c8c8;
  -moz-box-shadow: 0 5px 10px #c8c8c8;
  box-shadow: 0 5px 10px #c8c8c8;
  cursor: pointer;
  border-color: #ddd;
  transform: translateY(-5px);
}



#nav_user_bar {
  max-width: 100px;
}

.service-title {
  font-size: 18px;
  line-height: 30px;
  color: #3F6697;
}

.service-intro {
  color: #666;
  font-size: 12px;
  line-height: 1.5em;
  height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

/*** 图片宽高自适应 **************/
.img-wrapper {
  position: relative;
  /* 宽高比4:3 padding-bottom 是相对宽度的.也就是整个Wrapper的高度等于padding-bottom 的高度,Wrapper 没有内容高度*/
  padding-bottom: 75%;
}

.img-wrapper .img-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.img-wrapper .img-inner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
}

/*** 首页tab *****************************/
.home-tab-title {
  margin-bottom: 30px;
  text-align: center;
}

.home-tab-title li {
  display: inline-block;
  padding: 20px;
  font-size: 24px;
  color: #6a6c6d;
  line-height: 1;
  cursor: pointer;
  position: relative;
}

.home-tab-title li.active {
  color: #2559D2;
  border-bottom: 2px solid #2559D2;
}