body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #595959;
  background-color: #fff;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1240px;
}
.text-truncate-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-truncate-3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.link {
  display: block;
  background-color: #4a71b2;
  color: #fff;
  border: none;
  text-decoration: none;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
}
.wide-gray {
  width: 100%;
  background-color: #f5f5f7;
}

/* =====  头部主菜单  ===== */
.header {
  min-height: 99px;
  padding: 0;
  background-color: #fff;
  text-align: left;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.9;
  z-index: 99;
  box-shadow: 0 1px 10px grey;
}
.header .logo {
  width: 19.5%;
  float: left;
}
.header .logo > img {
  width: 99px;
  height: 99px;
}
.header .nav {
  line-height: 50px;
  padding-top: 25px;
}
.header .nav > .nav-item a {
  padding: 0 25px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: #000;
  font-size: 16px;
}
.header .nav > .nav-item a:hover {
  color: rgb(107, 150, 52);
}
.header .m-nav button {
  margin-top: 30px;
}
.header .m-nav .m-nav-panel {
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 99;
  background: rgba(50, 114, 179, 1);
  transition: 1s;
}
.header .m-nav .m-nav-panel .m-nav-panel-close {
  padding: 10px 20px;
  text-align: right;
}
.header .m-nav .m-nav-panel .nav-item {
  border-bottom: 1px solid #fff;
}
.header .m-nav .m-nav-panel a {
  color: #fff;
}
.header .m-nav .m-nav-panel.show {
  width: 100%;
  opacity: 0.8;
  overflow: scroll;
  transition: 1s;
}

/* =====  Footer  ===== */
.footer {
  margin: 30px 0;
  color: #D3D3D3;
  margin-bottom: -10px;
}
.footer a {
  color: #D3D3D3;
}
.footer-main {
  padding: 45px 0;
  background-color: rgba(84, 84, 84, 1);
}
.footer-main .section {
  margin: 10px 0;
}
.footer h6 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-main .tel {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 4px;
  margin-top: -12px;
}
.footer-main .contact > p {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 8px;
}
.footer-main .wap {
  text-align: center;
}
.footer-main .wap p {
  margin-top: 12px;
}
.footer-info {
  text-align: center;
  background-color: rgba(49, 49, 49, 1);
  padding: 14px 0;
}
.footer-info span, .footer-info a {
  display: inline-block;
  padding-right: 15px;
}


/* =====  宽幅Banner  ===== */
.wide-banner {
  width: 100%;
  min-height: 350px;
  background-repeat: no-repeat;
  background-position: center center;
}
.wide-banner.height-auto {
  min-height: calc(18rem + 1.5vw);
}
.wide-banner .banner-main {
  padding-top: 80px;
  padding-left: 10%;
}
.banner-main > .title, .banner-main > .subtitle {
  color: #2b59a6;
  font-weight: bold;
  text-align: left;
  text-shadow: 0px 2px 1px rgb(0 0 0 / 20%);
  
}
.banner-main > .title {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.banner-main > .subtitle {
  margin-top: 20px;
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 1.2s;
  animation-fill-mode: both;
}

/* =====  二级菜单  ===== */
.subnav {
  min-height: 50px;
  line-height: 48px;
  background-color: rgba(238, 238, 238, 1);
  overflow: visible;
}
.subnav ul.subnav-items > li {
  display: inline-block;
  position: relative;
}
.subnav ul.subnav-items > li.active {
  background-color: #2b5aa6;
}
.subnav ul.subnav-items > li.active a {
  color: #fff;
}
.subnav ul.subnav-items > li:after {
	content: '';
	display: block;
	margin: auto;
	height: 2px;
	width: 0px;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
.subnav ul.subnav-items > li:hover:after {
	width: 100%;
	background: #2b5aa6;
}
.subnav ul.subnav-items > li a {
  display: block;
  width: 100%;
  padding: 0 30px;
  color: #707070;
}
.subnav ul.subnav-items > li a:hover {
  color: #2b5aa6;
}
.subnav ul.subnav-items > li.active a:hover {
  color: #fff;
}
.m-subnav {
  margin-left: -12px;
}
.m-subnav > a {
  display: inline-block;
  min-height: 50px;
  line-height: 48px;
  background-color: #081c69;
  color: #fff;
  padding: 0 20px;
}
.m-subnav .m-subnav-panel {
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 99;
  background: #eee;
  transition: 0.5s;
}
.m-subnav .m-subnav-panel.show {
  width: 100%;
  overflow: scroll;
  transition: 0.5s;
}
.m-subnav .m-subnav-panel .m-subnav-panel-left {
  float: left;
  width: 10%;
  height: 100%;
  background-color: #bfbfbf;
}
.m-subnav .m-subnav-panel .m-subnav-panel-right {
  width: 90%;
  height: 100%;
  padding-top: 15px;
}
.m-subnav .m-subnav-panel .m-subnav-panel-left a {
  display: block;
  margin-top: 100px;
  text-align: center;
  line-height: 40px;
  background-color: #686868;
}
.m-subnav .m-subnav-panel .m-subnav-panel-right .nav-item a {
  display: block;
  min-height: 50px;
  line-height: 30px;
  padding-left: 30px;
  color: #707070;
}

/* =====  首页  ===== */
#fullpage .fp-arrow {
  opacity: 0.5 !important;
}
#fullpage .section .slide {
  position: relative;
  background-size: cover;
}
#fullpage .section .slide .full-width-img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#fullpage .section2 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/picture/400200564_banner.jpg) center center no-repeat;
}
#fullpage .section2 .title > span {
  font-size: 50px;
  font-weight: bold;
}
#fullpage .section2 .title > span:first {
  color: #444444;
}
#fullpage .section2 .title > span:last-child {
  color: #005bac;
}
#fullpage .section2 .sub-title {
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  color: #005bac;
  border-bottom: 3px solid #005bac;
  padding-bottom: 10px;
}
#fullpage .section2 .content {
  line-height: 2.7;
  font-size: 14px;
  color: #333333;
  text-indent: 2rem;
}
#fullpage .section2 .link,  #fullpage .section4 .link{
  display: block;
  background-color: #4a71b2;
  color: #fff;
  border: none;
  text-decoration: none;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
}
#fullpage .section2 img {
  width: 100%;
  display: inline-block;
  padding-left: 10%;
}
#fullpage .section3 .title, #fullpage .section4 .title {
  font-family: arial,helvetica,sans-serif;
  color: #2b59a5;
  font-size: 50px;
  font-weight: bold;
}
#fullpage .section3 .divide, #fullpage .section4 .divide {
  width: 4%;
  margin: 0 48%;
  border-bottom: 2px solid #2b59a5;
}
#fullpage .section3 .subtitle, #fullpage .section4 .subtitle {
  font-size: 32px;
  color: #000;
  font-weight: bold;
}
#fullpage .touch-icon {
  display: block;
  padding: 10px;
  width: 100%;
  height: 216px;
}
#fullpage .touch-icon.icon1 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_03.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon1:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_21.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon2 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_05.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon2:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_22.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon3 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_07.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon3:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_23.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon4 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/sj.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon4:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/sj2.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon5 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_12.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon5:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_28.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon6 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_01.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon6:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_20.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon7 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/bingdu.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon7:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/bingdu2.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon8 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_13.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon8:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_29.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon9 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_14.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon9:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_30.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon10 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_15.jpg) center center no-repeat;
}
#fullpage .touch-icon.icon10:hover {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/product_31.jpg) center center no-repeat;
}
#fullpage .swiper-slide {
  height: 216px;
}

#fullpage .section5 {
  background: url(/themes/website/1/zh/tongyuan_zh/static/image/bg6.jpg) center center no-repeat;
}
#fullpage .section5 .title {
  font-size: 36px;
  color: #444444;
  font-weight: bold;
}
#fullpage .section5 img {
  display: inline-block;
}
#fullpage .section5 .info {
  font-size: 28px;
  color: #444444;
}

/* =====  新闻页  ===== */
.news {
  margin-top: 4rem;
}
.news h2 {
  padding: 0 10%;
  color: #262626;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
}
.news .info {
  text-align: center;
}
.news .info span {
  display: inline-block;
  margin: 0 10px;
}
.news .info span > a {
  color: #595959;
}
.news .info span > a:hover {
  color: #2b5aa6;
}
.news .content {
  margin-top: 40px;
  line-height: 2;
  font-size: 16px;
}
.news .content p {
  line-height: 2;
  font-size: 16px;
}

.news-list {
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.news-list-item {
  background-color: #f5f5f5;
  margin-bottom: 20px;
}
.news-list-item .img-content {
  max-height: 200px;
  overflow: hidden;
}
.news-list-item .news-list-item-main {
  padding: 20px;
}
.news-list-item img {
  width: 100%;
}
.news-list-item-main .title {
  margin-bottom: 14px;
}
.news-list-item-main .title a {
  font-weight: bold;
  color: #000;
}
.news-list-item-main .desc, .news-list-item-main .date {
  color: #8c8c8c;
}
.news-list-item-main .desc{
  height: 40px;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-pagination a {
  color: rgb(108,117,125);
}

/* =====  HR页  ===== */
.job-list {
  margin-top: 40px;
  margin-bottom: 20px;
  overflow: hidden;
}
.job-list-item {
  padding: 15px 15px 10px;
  margin-bottom: 20px;
  border: 1px solid #eaecee;
  background-color: rgb(248, 248, 248);
}
.job-list-item .title {
  font-size: 20px;
  line-height: 30px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.job-list-item .breadcrumb-item {
  color: #999;
}
.job-list-item .price {
  font-size: 20px;
  line-height: 30px;
  color: #ff5959;
}
.job-list-item .address {
  color: #999;
}

.job {
  margin-top: 80px;
}
.job .date {
  color: #666;
  font-size: 1rem;
}
.job .title {
  font-size: 2.25rem;
  color: #333;
}
.job .department, .job .info > span {
  font-size: 0.875rem;
  color: #999;
  margin-top: 10px;
}
.job .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff5959;
}
.job .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff5959;
}
.job .info > span {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #999;
}
.job .info > span:last-child {
  border: none;
}
.job .content {
  margin-top: 20px;
}
.job > h5 {
  font-size: 1rem;
  color: #333;
  margin-top: 50px;
}
.job .line {
  width: 21px;
  height: 2px;
  background-color: #04abf4;
  margin-top: 15px;
}
.job .info_long p {
  font-size: 16px;
  line-height: 2.5;
}
.job .content p {
  font-size: 16px;
  line-height: 2.5;
  margin: 0;
}

/* =====  产品  ===== */
.product-nav .nav-item {
  height: 50px;
  padding-left: 20px;
  border-bottom: 1px solid #e8e8e8;
  border-left: 2px solid rgb(74, 113, 178, 0);
}
.product-nav .nav-item > a {
  font-size: 14px;
  line-height: 34px;
  color: #7b8a96;
  transition: all .5s ease;
}
.product-nav .nav-item:hover {
  background-color: #f5f8fa;
  border-left: 2px solid rgb(74, 113, 178);
}
.m-product-nav .m-subnav-btn {
  margin: 20px;
  line-height: 34px;
  min-height: 34px;
  border-radius: 5px;
  background-color: #1890ff;
  border: 1px solid #329cff;
}
.m-product-nav .m-subnav-panel .m-subnav-panel-left {
  background-color: rgb(229 229 229);
}
.m-product-nav .m-subnav-panel .m-subnav-panel-right {
  background-color: #fff;
}
.product-wrap h6 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
  color: #666;
}
.product-wrap .divide {
  margin-top: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-list {
  margin-bottom: 50px;
}
.product-list .product-item {
  text-align: center;
}
.product-list .product-item .figure-caption {
  font-size: 1rem;
  color: #262626;
  min-height: 3rem;
}
.product-list .product-item figure {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid #d9d9d9;
}
.product-list .product-item figure:hover {
  border: 2px solid rgb(74, 113, 178);
}
.link-btn-primary-big {
  background-color: rgb(74, 113, 178);
  border: rgb(74, 113, 178);
}
.product > h2 {
  color: #0e397d;
  font-size: 1.8rem;
}
.product .picture img {
  border: 1px solid #d9d9d9;
  width: 100%;
}
.divide {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.divide.dashed {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.product .tab-pane {
  padding: 20px;
}
.product .content h6 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 3rem;
}
.product .content p {
  font-size: 1rem;
  line-height: 1.6rem;
}
.product .content img {
  width: 100%;
}
.product .nav-tabs .nav-item > button {
  background-color: #0e397d;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 0.8rem 2rem;
}
.product .nav-tabs .nav-item > button:hover {
  background-color: #031c44;
}

/**  单页  **/
.page > h1 {
  font-size: 36px;
  font-weight: bold;
  color: #2b5aa6;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .page > h1 {
    font-size: 30px;
  }
}
.page p {
  font-size: 16px;
  line-height: 2;
  color: #595959;
  text-indent: 2rem;
  margin-bottom: 10px;
}
.combination1 {
  text-align: center;
}
.combination1 > img {
  display: inline-block;
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
}
.combination1 > h4 {
  font-size: 22px;
  color: #000;
  margin-bottom: 20px;
}
.combination1 p {
  text-align: left;
}
.page h2 {
  font-size: 30px;
  font-weight: bold;
  color: #2b5aa6;
  margin-bottom: 1.4rem;
}
@media (max-width: 768px) {
  .page h2 {
    font-size: 26px;
  }
}
.fs-7 {
  font-size: 14px !important;
}
.count-container {
  position: relative;
  text-align: center;
  font-size: 16px;
}
.count-container .count-num {
  font-size: 6rem;
  line-height: 60px;
  color: #434343;
  font-weight: lighter;
  font-family: Roboto;
}
.count-container .superscript {
  /* font-size: 16px; */
  /* vertical-align: text-top; */
}
.count-container .title {
  font-weight: bold;
  color: #2b5aa6;
}
.swiper-certificate {
  height: 800px;
  padding-bottom: 300px;
}
.swiper-certificate .swiper-slide {
  width: 520px;
  height: 408px;
  background: #fff;
  box-shadow: 0 8px 30px #ddd;
}
.swiper-certificate .swiper-slide img {
  display: block;
  width: 520px !important;
}
.swiper-leadership-photos {
  height: 500px;
  padding-bottom: 300px;
}
.swiper-leadership-photos .swiper-slide {
  width: 520px;
  height: 408px;
  background: #fff;
  box-shadow: 0 8px 30px #ddd;
}
.swiper-leadership-photos .swiper-slide img {
  display: block;
  width: 520px !important;
}
.swiper-overview-company {
  margin-bottom: 100px;
  margin-top: 80px;
}
.swiper-overview-company .swiper-slide {
  width: 300px;
  height: 180px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.history .year {
  font-family: georgia,serif;
  font-size: 22px;
  line-height: 22px;
  color: #000;
}
.history .history-list {
  position: relative;
  border-left: 2px solid #d4d4d4;
  padding: 0 0 0 30px;
}
.history .history-list li {
  font-size: 16px;
  line-height: 2;
  color: #696969;
}
.history .history-list ul {
  padding-bottom: 20px;
}
.history .history-list ul:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-55%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 5px solid #00ffff;
}
.num-title-component .num {
  display: inline-block;
  width: 90px;
  height: 90px;
  background: url('/themes/website/1/zh/tongyuan_zh/static/image/circle2.png') center center no-repeat;
  font-family: arial,helvetica,sans-serif;
  font-size: 24px;
  line-height: 90px;
  text-align: center;
  color: #fff;
}
.num-title-component .title {
  font-size: 18px;
  font-weight: bold;
  font-family: 微软雅黑;
  color: #333;
}
.combination2 .item {
  padding: 10px;
  transition: .5s ease
}
.combination2 .item:hover {
  transform: translate(0, -8px);
  transition-duration: 0.6s;
}
.combination2 .item img {
  width: 100%;
}
.combination2 .item .title {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}
.combination2 .item .desc {
  font-size: 14px;
  color: #838792;
  line-height: 2;
  text-indent: 0;
  margin-bottom: 20px;
  height: 56px;
}
.combination2 .item .content:after {
  content: '';
  display: block;
	height: 3px;
	width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}
.combination2 .item:hover .content:after {
  width: 100%;
  background: #2b5aa6;
}
.combination3 .item {
  overflow: hidden;
  position: relative;
  /* padding: 0; */
}
.combination3 img {
  width: 100%;
  transition: 2s ease;
}
.combination3 .title {
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  line-height: 2.5;
  font-size: 14px;
  margin: 0;
  padding: 0 20px;
  transition: 1.5s ease;
}
.combination3 .title.big {
  font-size: 16px;
}
.combination3 .item:hover .title {
  height: 35px;
  width: 100%;
  left: 0;
}
.combination3 .item:hover .title.big {
  height: 40px;
}
.combination3 .item:hover img {
  transform: scale(120%);
}
@media (max-width: 768px) {
  .combination3 .item {
    padding-left: 5%;
    padding-right: 5%;
  }
  .combination3 .item .title {
    width: 90%;
    height: 35px;
    left: 5%;
  }
  .combination3 .item .title.big {
    height: 40px;
  }
}
.swiper-trade, .m-swiper-trade {
  height: 260px;
}
.swiper-trade .swiper-slide img, .m-swiper-trade .swiper-slide img {
  height: 100%;
  width: 100%;
}
.p-contact p {
  font-size: 14px;
  text-indent: 0;
}
.p-contact h6 {
  color: #333;
  font-weight: bold;
  font-size: 14px;
}
.p-contact .map {
  width: 100%;
  height: 250px;
}
.swiper-enterprise-honor img {
  width: 100%;
  height: 264px;
}<!--耗时1774278846.1868秒-->