.top_bar {
  width: 100%;
  height: 50px;
  background: url(../images/topbar-bg.png) no-repeat center;
}
.top_bar .tb-left {
  float: left;
  color: #808080;
  font-size: 16px;
  line-height: 40px;
}
.top_bar .tb-rig {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  float: right;
  width: 350px;
  height: 50px;
}
.top_bar .tb-rig i {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/tel-icon.png) no-repeat center;
  margin-right: 5px;
}
.top_bar .tb-rig p {
  color: #fff;
  font-size: 16px;
}
.top_bar .tb-rig p strong {
  color: #fff;
}
.nav-bar {
  width: 100%;
  height: 120px;
}
.nav-bar .nav-left {
  float: left;
  width: 400px;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.nav-bar .nav-left .logo-box {
  width: 80px;
  height: 60px;
  overflow: hidden;
  margin-right: 10px;
}
.nav-bar .nav-left .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-bar .nav-left .logo-info p:nth-child(1) {
  font-size: 30px;
  font-family: "sanghang";
  color: #333;
}
.nav-bar .nav-left .logo-info p:nth-child(1) b {
  color: #1e5595;
  font-family: "sanghang";
}
.nav-bar .nav-left .logo-info p:nth-child(2) {
  font-size: 16px;
  color: #727272;
}
.nav-bar .nav-right {
  float: right;
  width: 640px;
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nav-bar .nav-right > li {
  height: 120px;
  line-height: 120px;
  position: relative;
}
.nav-bar .nav-right > li > a {
  display: block;
  color: #333;
  width: 100%;
  height: 100%;
  font-size: 16px;
  position: relative;
  transition: all 350ms;
}
.nav-bar .nav-right > li > a:after {
  display: block;
  content: "";
  width: 16px;
  height: 0px;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  bottom: 0;
  transition: all 350ms;
  background: url(../images/nav-icon.png) no-repeat center;
}
.nav-bar .nav-right > li > a:hover {
  color: #1e5595;
}
.nav-bar .nav-right > li > a:hover:after {
  height: 34px;
}
.nav-bar .nav-right > li.active a {
  color: #1e5595;
}
.nav-bar .nav-right > li.active a:after {
  height: 34px;
}
.nav-bar .nav-right > li .sub-nav {
  position: absolute;
  width: 150px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: 50%;
  margin-left: -75px;
  background: #ffffff;
  box-shadow: 2px 2px 10px #333;
  transition: all 350ms;
  z-index: 99;
}
.nav-bar .nav-right > li .sub-nav > li {
  width: 100%;
  height: 50px;
}
.nav-bar .nav-right > li .sub-nav > li > a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-align: center;
  color: #333;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}
.nav-bar .nav-right > li .sub-nav > li > a:hover {
  background: #1e5595;
  color: #fff;
}
.nav-bar .nav-right > li.has-sub:hover .sub-nav {
  opacity: 1;
  height: 350px;
  visibility: visible;
}
.banner {
  width: 100%;
  height: 700px;
}
.banner .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
}
.banner .swiper-container .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  border: 1px solid #fff;
  z-index: 99;
}
.banner .swiper-container .btn:hover {
  cursor: pointer;
}
.banner .swiper-container .btn.prev-btn {
  background: url(../images/prev-icon.png) no-repeat center;
  right: 85%;
}
.banner .swiper-container .btn.prev-btn:hover {
  background: #fff url(../images/prev-icon-hover.png) no-repeat center;
}
.banner .swiper-container .btn.next-btn {
  background: url(../images/next-icon.png) no-repeat center;
  left: 85%;
}
.banner .swiper-container .btn.next-btn:hover {
  background: #fff url(../images/next-icon-hover.png) no-repeat center;
}
.search-box {
  width: 100%;
  height: 72px;
  border-bottom: 1px solid #efefef;
}
.search-box .search-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  float: left;
  width: 600px;
  height: 72px;
  color: #b5b5b5;
  font-size: 14px;
}
.search-box .search-left .label {
  color: #1e5595;
  font-size: 14px;
}
.search-box .search-left a {
  color: #b5b5b5;
  font-size: 14px;
  padding: 0 10px;
  line-height: 1;
}
.search-box .search-left a:not(:nth-child(2)) {
  border-left: 1px solid #b5b5b5;
}
.search-box .search-left a:hover {
  color: #1e5595;
}
.search-box .search-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  float: right;
  width: 330px;
  height: 72px;
}
.search-box .search-right .search-box {
  width: 320px;
  height: 40px;
  border: 1px solid #eaeaea;
  position: relative;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.search-box .search-right .search-box i {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/search-icon.png) no-repeat center;
}
.search-box .search-right .search-box .search-i {
  width: 210px;
  height: 20px;
  border-left: 1px solid #eaeaea;
  position: absolute;
  left: 40px;
  top: 50%;
  margin-top: -10px;
  font-size: 14px;
  color: #333;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.search-box .search-right .search-box .search-btn {
  background: #0656a9;
  width: 60px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 14px;
  right: 0;
  top: 0;
  position: absolute;
  text-align: center;
}
.search-box .search-right .search-box .search-btn:hover {
  cursor: pointer;
}
.common-box {
  margin-top: 60px;
}
.common-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.common-title .title {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}
.common-title .title strong {
  font-weight: bold;
}
.common-title .tips {
  font-size: 14px;
  color: #777777;
  margin-bottom: 20px;
}
.common-title i {
  width: 16px;
  height: 25px;
  background: url(../images/title-icon.png) no-repeat center;
}
.product .prolist {
  position: relative;
  height: 1030px;
}
.product .prolist .swiper-container {
  width: 100%;
  height: 1030px;
}
.product .prolist .swiper-container .pro-item {
  float: left;
  width: 380px !important;
  height: 450px;
  border: 2px solid #e5e5e5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 60px;
}
.product .prolist .swiper-container .pro-item .img-box {
  width: 100%;
  height: 320px;
  overflow: hidden;
  padding: 25px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.product .prolist .swiper-container .pro-item .img-box .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.product .prolist .swiper-container .pro-item .img-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .prolist .swiper-container .pro-item .img-box .img .img-shade {
  width: 100%;
  height: 100%;
  background: rgba(55, 55, 55, 0.5);
  position: absolute;
  left: 0;
  top: 100%;
  transition: all 350ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product .prolist .swiper-container .pro-item .img-box .img .img-shade p {
  font-size: 18px;
  color: #fff;
}
.product .prolist .swiper-container .pro-item .img-box .img .img-shade i {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
  background: url(../images/detail-icon.png) no-repeat center;
  margin-top: 10px;
}
.product .prolist .swiper-container .pro-item .case-text {
  width: 100%;
  height: 129px;
  padding: 15px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.product .prolist .swiper-container .pro-item .case-text p {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}
.product .prolist .swiper-container .pro-item .case-text small {
  font-size: 14px;
  color: #959595;
}
.product .prolist .swiper-container .pro-item .case-text:before {
  left: 0px;
  height: 2px;
  bottom: 0;
  width: 0;
  display: block;
  content: '';
  position: absolute;
  background: #1e5595;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.product .prolist .swiper-container .pro-item .case-text:after {
  display: block;
  background: #fff url(../images/casejt.png) no-repeat center;
  width: 60px;
  height: 60px;
  content: '';
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  position: absolute;
  right: 30px;
  bottom: -31px;
  -webkit-transition: 350ms 0s all ease;
  -moz-transition: 350ms 0s all ease;
  -ms-transition: 350ms 0s all ease;
  -o-transition: 350ms 0s all ease;
  transition: 350ms 0s all ease;
}
.product .prolist .swiper-container .pro-item:hover {
  box-shadow: 2px 2px 10px #33333329;
}
.product .prolist .swiper-container .pro-item:hover .img-box .img-shade {
  top: 0;
}
.product .prolist .swiper-container .pro-item:hover .case-text:before {
  width: 100%;
}
.product .prolist .swiper-container .pro-item:hover .case-text:after {
  border: 2px solid #1e5595;
  background: #fff url(../images/casejt-hover.png) no-repeat center;
}
.product .prolist .btn {
  position: absolute;
  top: 454px;
  width: 33px;
  height: 62px;
  z-index: 99;
}
.product .prolist .btn:hover {
  cursor: pointer;
}
.product .prolist .btn.pro-prev-btn {
  right: 85%;
  background: url(../images/left-arrow.png) no-repeat center;
}
.product .prolist .btn.pro-prev-btn:hover {
  background: url(../images/left-arrow-hover.png) no-repeat center;
}
.product .prolist .btn.pro-next-btn {
  left: 85%;
  background: url(../images/right-arrow.png) no-repeat center;
}
.product .prolist .btn.pro-next-btn:hover {
  background: url(../images/right-arrow-hover.png) no-repeat center;
}
.product .btn-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.product .btn-list .btn-box {
  width: 210px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.product .btn-list .btn-box:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: -100%;
  top: 0;
  transition: all 350ms;
  z-index: 1;
}
.product .btn-list .btn-box.more {
  background: #1e5595;
  margin-right: 20px;
}
.product .btn-list .btn-box.more:after {
  background: #333;
}
.product .btn-list .btn-box.more:hover:after {
  left: 0;
}
.product .btn-list .btn-box.contact {
  background: #808080;
}
.product .btn-list .btn-box.contact:after {
  background: #1e5595;
}
.product .btn-list .btn-box.contact:hover:after {
  left: 0;
}
.product .btn-list .btn-box i {
  width: 25px;
  height: 25px;
  z-index: 10;
}
.product .btn-list .btn-box i.m-icon {
  background: url(../images/more-icon.png) no-repeat center;
}
.product .btn-list .btn-box i.c-icon {
  background: url(../images/contact-icon.png) no-repeat center;
}
.product .btn-list .btn-box p {
  z-index: 10;
  color: #fff;
}
.youshi .youshi-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.youshi .youshi-list .youshi-item {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 226px;
  height: 104px;
  border: 1px solid #efefef;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.youshi .youshi-list .youshi-item i {
  width: 50px;
  height: 50px;
}
.youshi .youshi-list .youshi-item i.y1 {
  background: url(../images/y1.png) no-repeat center;
}
.youshi .youshi-list .youshi-item i.y2 {
  background: url(../images/y2.png) no-repeat center;
}
.youshi .youshi-list .youshi-item i.y3 {
  background: url(../images/y3.png) no-repeat center;
}
.youshi .youshi-list .youshi-item i.y4 {
  background: url(../images/y4.png) no-repeat center;
}
.youshi .youshi-list .youshi-item i.y5 {
  background: url(../images/y5.png) no-repeat center;
}
.youshi .youshi-list .youshi-item p {
  color: #333;
  font-size: 16px;
}
.youshi .youshi-list .youshi-item.swiper-slide-thumb-active {
  background: #1e5595;
  border: none;
}
.youshi .youshi-list .youshi-item.swiper-slide-thumb-active i.y1 {
  background: url(../images/y1-hover.png) no-repeat center;
}
.youshi .youshi-list .youshi-item.swiper-slide-thumb-active i.y2 {
  background: url(../images/y2-hover.png) no-repeat center;
}
.youshi .youshi-list .youshi-item.swiper-slide-thumb-active i.y3 {
  background: url(../images/y3-hover.png) no-repeat center;
}
.youshi .youshi-list .youshi-item.swiper-slide-thumb-active i.y4 {
  background: url(../images/y4-hover.png) no-repeat center;
}
.youshi .youshi-list .youshi-item.swiper-slide-thumb-active i.y5 {
  background: url(../images/y5-hover.png) no-repeat center;
}
.youshi .youshi-list .youshi-item.swiper-slide-thumb-active p {
  color: #fff;
  font-weight: bold;
}
.youshi .youshi-img {
  width: 100%;
  height: 586px;
}
.youshi .youshi-img .swiper-container {
  width: 100%;
  height: 100%;
}
.youshi .youshi-img .swiper-container .swiper-slide {
  position: relative;
}
.youshi .youshi-img .swiper-container .swiper-slide .youshi-content {
  width: 600px;
  height: 250px;
  background: #fff;
  right: 380px;
  top: 174px;
  position: absolute;
  padding-left: 120px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.youshi .youshi-img .swiper-container .swiper-slide .youshi-content .no {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 54px;
  height: 115px;
  position: absolute;
  left: 40px;
  top: -25px;
  background: #1e5595;
  color: #fff;
  font-size: 36px;
  font-family: "Impact";
}
.youshi .youshi-img .swiper-container .swiper-slide .youshi-content .youshi-detail-box {
  padding: 40px 40px 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.youshi .youshi-img .swiper-container .swiper-slide .youshi-content .youshi-detail-box .youshi-title {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}
.youshi .youshi-img .swiper-container .swiper-slide .youshi-content .youshi-detail-box .youshi-title strong {
  color: #1e5595;
}
.youshi .youshi-img .swiper-container .swiper-slide .youshi-content .youshi-detail-box .youshi-detail {
  font-size: 16px;
  color: #69696b;
}
.company {
  width: 100%;
  height: 787px;
  background: url(../images/company-bg.jpg) no-repeat center;
}
.company .company-box {
  width: 100%;
  height: 512px;
  padding-left: 110px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.company .company-box .img-box {
  width: 720px;
  height: 512px;
  overflow: hidden;
}
.company .company-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company .company-box .company-list {
  display: flex;
  width: 350px;
  height: 512px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.company .company-box .company-list .company-item {
  width: 350px;
  height: 160px;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 350ms;
}
.company .company-box .company-list .company-item i {
  display: block;
  width: 76px;
  height: 76px;
  border: 1px solid #868686;
  border-radius: 50%;
  margin-right: 20px;
}
.company .company-box .company-list .company-item i.c1 {
  background: url(../images/c1.png) no-repeat center;
}
.company .company-box .company-list .company-item i.c2 {
  background: url(../images/c2.png) no-repeat center;
}
.company .company-box .company-list .company-item i.c3 {
  background: url(../images/c3.png) no-repeat center;
}
.company .company-box .company-list .company-item .item-cn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 120px;
}
.company .company-box .company-list .company-item .item-cn p:nth-child(1) {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.company .company-box .company-list .company-item .item-cn p:nth-child(2) {
  font-size: 12px;
  color: #999999;
}
.company .company-box .company-list .company-item:hover {
  background: #1e5595;
}
.company .company-box .company-list .company-item:hover i {
  border: 1px solid #fff;
}
.company .company-box .company-list .company-item:hover i.c1 {
  background: url(../images/c1-hover.png) no-repeat center;
}
.company .company-box .company-list .company-item:hover i.c2 {
  background: url(../images/c2-hover.png) no-repeat center;
}
.company .company-box .company-list .company-item:hover i.c3 {
  background: url(../images/c3-hover.png) no-repeat center;
}
.company .company-box .company-list .company-item:hover .item-cn p {
  color: #fff;
}
.company .company-content-box {
  width: 290px;
  height: 340px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -170px;
  padding: 60px 30px  0 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 500ms;
}
.company .company-content-box p:nth-child(1) {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
}
.company .company-content-box p:nth-child(2) {
  font-size: 16px;
  color: #adadad;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px dashed #adadad;
}
.company .company-content-box .company-content {
  margin-top: 15px;
  font-size: 16px;
  color: #666666;
  height: auto;
  display: -webkit-box;
  overflow: hidden;
  /*超出隐藏*/
  text-overflow: ellipsis;
  /*隐藏后添加省略号*/
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.company .company-content-box .company-btn {
  display: block;
  position: absolute;
  right: -34px;
  top: 50%;
  margin-top: -48px;
  width: 34px;
  height: 96px;
  background: #1e5595 url(../images/company-btn.png) no-repeat center;
}
.company .company-content-box.active {
  width: 700px;
}
.case .case-box {
  width: 100%;
  height: 430px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #d6d6d6;
  border-left: 15px solid #1e5595;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.case .case-box .case-info {
  float: left;
  width: 510px;
  height: 430px;
  background: #fff;
  padding: 40px 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.case .case-box .case-info .case-title {
  font-size: 24px;
  color: #1e5595;
  font-weight: bold;
}
.case .case-box .case-info .case-en {
  font-size: 18px;
  color: #999999;
}
.case .case-box .case-info .case-des {
  font-size: 14px;
  color: #333;
  margin-top: 30px;
  line-height: 1.5;
}
.case .case-box .case-info a {
  display: block;
  width: 130px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  margin-top: 60px;
  border-radius: 46px;
  border: 1px dashed #ddd;
  color: #333;
  font-size: 16px;
  position: relative;
  transition: all 350ms;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
}
.case .case-box .case-info a:hover {
  color: #fff;
  border: none;
  background: #1e5595;
}
.case .case-box .img-box {
  width: 674px;
  height: 430px;
  overflow: hidden;
  float: left;
}
.case .case-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case .case-box .btn {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 30px;
  z-index: 99;
}
.case .case-box .btn:hover {
  cursor: pointer;
}
.case .case-box .btn.case-prev-btn {
  left: 460px;
  background: #1e5595 url(../images/case-left-hover.png) no-repeat center;
}
.case .case-box .btn.case-next-btn {
  left: 510px;
  background: #fff url(../images/case-right.png) no-repeat center;
}
.case .case-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}
.case .case-list .case-item {
  width: 376px;
  height: 300px;
  overflow: hidden;
  transition: all 350ms;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.case .case-list .case-item .img-box {
  width: 376px;
  height: 240px;
  overflow: hidden;
}
.case .case-list .case-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 350ms;
}
.case .case-list .case-item .case-item-title {
  width: 376px;
  height: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.case .case-list .case-item .case-item-title p {
  font-size: 16px;
  color: #333;
}
.case .case-list .case-item .case-item-title i {
  width: 24px;
  height: 11px;
  background: url(../images/case-arrow.png) no-repeat center;
}
.case .case-list .case-item:hover .img-box img {
  transform: scale(1.1);
}
.case .case-list .case-item:hover .case-item-title {
  background: #1e5595;
}
.case .case-list .case-item:hover .case-item-title p {
  color: #fff;
}
.case .case-list .case-item:hover .case-item-title i {
  background: url(../images/case-arrow-hover.png) no-repeat center;
}
.news {
  margin-bottom: 60px;
}
.news .news-box .news-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}
.news .news-box.news-left {
  width: 790px;
  float: left;
}
.news .news-box.news-left .news-list-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.news .news-box.news-left .news-list-box .top-news {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 110px;
  padding: 30px 0;
  border-bottom: 1px dashed #ddd;
}
.news .news-box.news-left .news-list-box .top-news .img-box {
  width: 152px;
  height: 110px;
}
.news .news-box.news-left .news-list-box .top-news .img-box img {
  width: 100%;
  heihgt: 100%;
  object-fit: cover;
}
.news .news-box.news-left .news-list-box .top-news .news-info {
  width: 620px;
}
.news .news-box.news-left .news-list-box .top-news .news-info .t {
  font-size: 18px;
  color: #333;
}
.news .news-box.news-left .news-list-box .top-news .news-info .time {
  font-size: 12px;
  color: #989898;
}
.news .news-box.news-left .news-list-box .top-news .news-info .news-content {
  margin-top: 20px;
  font-size: 15px;
  color: #666666;
  height: auto;
  display: -webkit-box;
  overflow: hidden;
  /*超出隐藏*/
  text-overflow: ellipsis;
  /*隐藏后添加省略号*/
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .news-box.news-left .news-list-box .top-news:hover .news-info .t {
  color: #1e5595;
}
.news .news-box.news-left .news-list-box .news-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .news-box.news-left .news-list-box .news-main .news-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 370px;
  border-bottom: 1px dashed #ddd;
  padding: 26px 0;
}
.news .news-box.news-left .news-list-box .news-main .news-item .b {
  width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #474747;
  font-size: 14px;
  line-height: 1;
}
.news .news-box.news-left .news-list-box .news-main .news-item .time {
  color: #c5c5c5;
  font-size: 12px;
  width: 40px;
  line-height: 1;
}
.news .news-box.news-left .news-list-box .news-main .news-item:hover .b {
  color: #1e5595;
}
.news .news-box.news-right {
  width: 360px;
  float: right;
}
.news .news-box.news-right .q-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 360px;
  height: 100%;
  margin-top: 20px;
}
.news .news-box.news-right .q-list .q-item {
  width: 360px;
  height: 64px;
  border-radius: 64px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: #eeeff4;
  margin-bottom: 10px;
}
.news .news-box.news-right .q-list .q-item i {
  width: 30px;
  height: 30px;
  margin-left: 15px;
  margin-right: 30px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff url(../images/q-icon.png) no-repeat center;
}
.news .news-box.news-right .q-list .q-item p {
  font-size: 16px;
  color: #7b7b7f;
  overflow: hidden;
  width: 240px;
}
.news .news-box.news-right .q-list .q-item:hover {
  background: #1e5595;
}
.news .news-box.news-right .q-list .q-item:hover i {
  background: #fff url(../images/q-icon-hover.png) no-repeat center;
}
.news .news-box.news-right .q-list .q-item:hover p {
  color: #fff;
}
.foot {
  width: 100%;
  height: 424px;
  position: relative;
  background: #0d3983;
}
.foot .foot-nav {
  width: 100%;
  height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.foot .foot-nav .navlist {
  display: flex;
  width: 850px;
  height: 86px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  float: left;
}
.foot .foot-nav .navlist a {
  color: #fff;
  font-size: 16px;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 1;
}
.foot .foot-nav .navlist a:first-child {
  padding-left: 0;
  border-left: none;
}
.foot .foot-nav .logo {
  float: right;
  width: 310px;
  height: 86px;
  line-height: 86px;
  color: #fff;
  font-size: 30px;
  font-family: "sanghang";
  text-align: right;
}
.foot .foot-info {
  width: 100%;
  height: 260px;
  padding-top: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.foot .foot-info .foot-left {
  float: left;
  width: 1000px;
  height: 200px;
}
.foot .foot-info .foot-left .foot-pro {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
}
.foot .foot-info .foot-left .foot-pro p {
  padding-left: 5px;
  color: #feb903;
  font-size: 20px;
  height: 20px;
  border-left: 1px solid #feb903;
  line-height: 20px;
}
.foot .foot-info .foot-left .foot-pro a {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 10px;
  height: 20px;
  line-height: 20px;
  font-size: 16px;
}
.foot .foot-info .foot-left .foot-contact {
  margin-top: 40px;
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.foot .foot-info .foot-left .foot-contact .contact-item {
  width: 260px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.foot .foot-info .foot-left .foot-contact .contact-item i {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.foot .foot-info .foot-left .foot-contact .contact-item i.f1 {
  background: url(../images/f1.png) no-repeat center;
}
.foot .foot-info .foot-left .foot-contact .contact-item i.f2 {
  background: url(../images/f2.png) no-repeat center;
}
.foot .foot-info .foot-left .foot-contact .contact-item i.f3 {
  background: url(../images/f3.png) no-repeat center;
}
.foot .foot-info .foot-left .foot-contact .contact-item .contact-info {
  width: 200px;
}
.foot .foot-info .foot-left .foot-contact .contact-item .contact-info p:nth-child(1) {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}
.foot .foot-info .foot-left .foot-contact .contact-item .contact-info p:nth-child(2) {
  font-size: 16px;
  color: #fff;
  text-align: left;
}
.foot .foot-info .foot-right {
  float: right;
  width: 200px;
  height: 260px;
  padding-top: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.foot .foot-info .foot-right .img-box {
  float: right;
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-bottom: 10px;
}
.foot .foot-info .foot-right .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foot .foot-info .foot-right p {
  float: right;
  width: 120px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}
.foot .foot-b {
  width: 100%;
  height: 68px;
  left: 0;
  bottom: 0;
  position: absolute;
  background: #0c3376;
}
.foot .foot-b p {
  color: #fff;
  height: 68px;
  line-height: 68px;
  font-size: 14px;
}
.foot .foot-b p a {
  color: #fff;
  font-size: 14px;
}
.foot .foot-b p:nth-child(1) {
  float: left;
  width: 600px;
  text-align: left;
  text-transform: uppercase;
}
.foot .foot-b p:nth-child(2) {
  float: right;
  width: 300px;
  text-align: right;
}
/*# sourceMappingURL=style.css.map */