@charset "UTF-8";

/* 
* 基础
* Body 内部 body-inner
* 模拟滚动条 tt-smooth-scroll
* 页面头部 tt-header
* 页面主体 tt-section
* 菜单导航 tt-main-menu
* 页面 header page-header 
* 页面底部 tt-footer
* 块标题 tt-heading
* 全屏banner滚动 Portfolio slider
* 分块滚动 content-carousel 
* tabs切换 tt-Tabs
* 翻页 tt-pagination
* 背景图 tt-bg
* 区块特点
* 首页 index
* 社会责任 social
* 联系我们 contact
* 新闻资讯 news
* 企业介绍 about us
* 业务矩阵 business
*/
/* ------------------------------------------------------------- *
 * 基础
/* --------------*/
* {
  box-sizing: border-box;
}

/* 选择 */
::selection {
  color: #fff;
  text-shadow: none;
  background: var(--primary);
}

::-moz-selection {
  color: #fff;
  text-shadow: none;
  background: var(--primary);
  /* Firefox */
}

::-webkit-selection {
  color: #fff;
  text-shadow: none;
  background: var(--primary);
  /* Safari */
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  width: 100%;
  height: 0;
  border: none;
  border-bottom: 1px solid rgb(144 144 144 / 30%);
}

.bg-light {
  background-color: #f5f5f5 !important;
}

/* box背景 */
.boxbg {
  box-shadow: rgba(149, 157, 165, .15) 0px 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);

}

.img-fluid {
  position: relative;
}

.img-fluid img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: 50% 50%;
}

/*普通按钮*/
.btn i {
  position: relative;
  top: 2px;
  font-size: 1.2rem;
  margin-left: 1.5rem;
}

.btn {
  display: inline-flex;
}

.btn-other img {
  height: .5rem;
  margin-left: .5rem;
  margin-top: -.2rem;
}

@media (max-width: 561px) {

  .btn:not(.btn-other)::after,
  .btn:not(.btn-other)::before {
    top: .4rem;
  }

  .btn-other img {
    height: .35rem;
    margin-left: .5rem;
    margin-top: -.2rem;
  }

  .btn i {
    font-size: 1rem;
  }
}

/*渐变背景*/
.gradient-bg *,
.gradient-bg::after,
.item-img img {
  transition: 0.5s all;
}

.gradient-bg::after {
  position: absolute;
  content: '';
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 2;
  pointer-events: none;
  background: rgb(19, 19, 19);
  background: -moz-linear-gradient(0deg, rgba(19, 19, 19, .8) 0%, rgba(19, 19, 19, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(19, 19, 19, .8) 0%, rgba(19, 19, 19, 0) 100%);
  background: linear-gradient(0deg, rgba(19, 19, 19, .8) 0%, rgba(19, 19, 19, 0) 100%);
}

.gradient-bg:hover::after {
  height: 150%;
}

.gradient-bg:hover img,
.item-img:hover img {
  transform: scale(1.05);
}

/*文字超出省略号*/
.text-ellipsis-1,
.text-ellipsis-2,
.text-ellipsis-3,
.text-ellipsis-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.text-ellipsis-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.text-ellipsis-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.text-ellipsis-4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

/*topto*/
#back-to-top {
  position: fixed;
  word-wrap: break-word;
  z-index: 100;
  bottom: 3rem;
  right: 1.5rem;
  color: #fff;
  width: 3rem;
  height: 3rem;
  line-height: 3.2rem;
  font-weight: 400;
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  background: #000;
  transition: 0.5s all;
}

#back-to-top:hover {
  background: var(--primary);
}

@media (max-width: 561px) {
  #back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    line-height: 43px;
  }
}

/* 列表 */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}

.list-inline>li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

/* ------------------------------------------------------------- *
 * 	Body 内部
/* ------------------------------------------------------------- */
#body-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
}

#content-wrap {
  position: relative;
  overflow: hidden;
}

/* ------------------------------------------------------------- *
 * 模拟滚动条
/* ------------------------------------------------------------- */
/* 隐藏默认滚动条 */
body:not(.is-mobile).tt-smooth-scroll {
  overflow: hidden;
}

body:not(.is-mobile).tt-smooth-scroll #scroll-container {
  width: auto;
  height: 100vh;
  overflow: auto;
  margin: 0;
}

/* 滚动条样式 */
.scrollbar-track {
  background: transparent !important;
  z-index: 99999 !important;
}

.scrollbar-track:hover {
  background: rgba(0, 0, 0, .1) !important;
}

.scrollbar-thumb {
  background: rgba(0, 0, 0, .5) !important;
  opacity: .25;
  transition: opacity 0.2s ease-in-out;
}

.scrollbar-track:hover .scrollbar-thumb {
  opacity: .5;
}

/* ------------------------------------------------------------- *
 * Header头部
/* ------------------------------------------------------------- */
#tt-header {
  width: 100%;
  background: rgba(255, 255, 255, 1);
  pointer-events: none;
  transition: 0.5s all;
}

#tt-header.sticky-on,
.full-light-on #tt-header {
  background: rgba(255, 255, 255, 1);
}

#tt-header.tt-header-fixed {
  position: fixed;
}

@media (max-width: 1200px) {
  #tt-header {
    height: 70px;
  }
}

@media (max-width: 561px) {
  #tt-header {
    height: 60px;
  }
}

/* Header logo 
=============== */
.tt-logo {
  line-height: 1;
  pointer-events: initial;
}

.tt-logo img {
  height: 3.5rem;
}

/*企业咨询热线*/
.menu-hotPhone {
  text-align: center;
  font-size: .913rem;
  margin-left: 2.5rem;
}

.menu-hotPhone i {
  font-size: .9rem;
  border-radius: 5px;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--primary);
  color: #fff;
  margin-right: .3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-hotPhone h5 {
  font-size: 1.1rem;
  padding-left: .1rem;
  margin-bottom: 0;
  margin-top: .2rem;
}

@media (max-width: 1200px) {
  .tt-logo img {
    height: 2.2rem;
  }

  .tt-logo {
    margin-right: 0;
  }
}

/* ------------------------------------------------------------- *
 * 页面主体
/* ------------------------------------------------------------- */
.tt-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  /* overflow: hidden */
}

@media (max-width: 1200px) {
  .tt-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 561px) {
  .tt-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* ------------------------------------------------------------- *
 * 菜单导航
/* ------------------------------------------------------------- */
/* PC menu */
@media (min-width: 1200px) {
  .tt-main-menu {
    pointer-events: initial;
  }

  .tt-main-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
  }

  .tt-main-menu-list>li {
    display: inline-block;
    font-size: inherit;
    padding: 0 .8rem;
    transition: opacity 0.2s;
  }

  .tt-main-menu-list>li>a,
  .tt-main-menu-list>li>.tt-submenu-trigger>a {
    display: block;
    padding: 2.5rem .5rem;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s, opacity 0.3s;
    position: relative;
  }


  .tt-main-menu-list.tt-mm-hover>li>a:hover,
  .tt-main-menu-list.tt-mm-hover>li>.tt-submenu-trigger>a:hover,
  .tt-main-menu-list.tt-mm-hover>li.active>a,
  .tt-main-menu-list.tt-mm-hover>li.active>.tt-submenu-trigger>a,
  .tt-main-menu-list.tt-mm-hover>li.tt-submenu-open>.tt-submenu-trigger>a {
    opacity: 1;
    color: var(--primary);
  }

  .tt-main-menu-list.tt-mm-hover>li>a:hover,
  .tt-main-menu-list.tt-mm-hover>li>.tt-submenu-trigger>a:hover,
  .tt-main-menu-list>li.active>a,
  .tt-main-menu-list>li.active .tt-submenu-trigger a,
  .tt-main-menu-list.tt-mm-hover>li.tt-submenu-open.active>.tt-submenu-trigger>a {
    color: var(--primary);
  }

  .tt-main-menu-list>li.active>a::before,
  .tt-main-menu-list>li.active>.tt-submenu-trigger>a::before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: var(--primary);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  /* 子导航  */
  .tt-submenu-wrap {
    position: relative;
  }

  .tt-submenu {
    position: absolute;
    display: block !important;
    top: 90%;
    left: -10px;
    width: 12rem;
    background-color: #FFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    text-align: left;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
    border-radius: 5px;
    transform: translate3d(0, 10px, 0);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  /* 悬停时打开子菜单 */
  .tt-submenu-wrap.tt-submenu-open>.tt-submenu,
  .tt-submenu-wrap-other.tt-submenu-open>.tt-submenu {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.1s;
  }

  .tt-submenu-list {
    margin: 0;
    padding: 15px 0;
    list-style: none;
  }

  .tt-submenu-list li {
    width: 100%;
  }

  .tt-submenu-list li a {
    position: relative;
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #111;
    transition: all 0.5s;
  }

  .tt-submenu-list li a::before {
    font-family: "boxicons";
    content: "\ea55";
    color: var(--primary);
    position: absolute;
    left: 15px;
    top: 8px;
    line-height: 25px;
    font-size: 17px;
    font-weight: 400;
    transition: .5s;
    opacity: 0;
  }

  .tt-submenu-list>li a:hover,
  .tt-submenu-list>li>.tt-submenu-trigger:hover a,
  .tt-submenu-list>li.active>a,
  .tt-submenu-list>li.active>.tt-submenu-trigger a {
    color: var(--primary);
  }

  .tt-submenu-list>li a:hover,
  .tt-submenu-list>li>.tt-submenu-trigger:hover a {
    padding-left: 35px
  }

  .tt-submenu-list>li a:hover::before,
  .tt-submenu-list>li>.tt-submenu-trigger:hover a::before {
    opacity: 1;
  }

  /* 子菜单样式 */
  .tt-submenu .tt-submenu-wrap>.tt-submenu {
    left: 100%;
    right: auto;
    margin-top: -50px;
    margin-left: 0;
  }

  .tt-submenu-trigger>a::after {
    margin-left: 2px;
    font-size: 16px;
    line-height: 0;
    font-family: "boxicons";
    content: "\ea4a";
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: relative;
    top: 0;
    transition: 0.2s all;
  }

  .tt-submenu-trigger>a:hover::after {
    transform: rotate(180deg);
  }

  /* 在子菜单中插入光标 */
  .tt-submenu-wrap .tt-submenu-wrap .tt-submenu-trigger>a::after {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translate3d(0, -50%, 0) rotate(-90deg);
  }

  .tt-submenu-trigger .tt-submenu-trigger-m {
    display: none;
  }
}


@media (min-width: 1200px) and (max-width: 1350px) {

  .tt-main-menu-list>li>a,
  .tt-main-menu-list>li>.tt-submenu-trigger>a {
    font-size: .913rem;
  }

  .tt-main-menu-list>li {
    padding: 0 .6rem;
  }
}

/* Mobile menu */
@media (min-width: 1200px) {
  #tt-m-menu-toggle-btn-wrap {
    /* Hide on desktop */
    display: none;
  }
}

@media (max-width: 1200px) {
  .tt-main-menu {
    pointer-events: initial;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0a0a0a;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    z-index: 998
  }

  .tt-main-menu-holder {
    position: relative;
    height: 100%;
    width: calc(100% + 17px);
    overflow-y: scroll;
    z-index: 2;
  }

  body.is-mobile .tt-main-menu-holder {
    padding-right: 17px;
  }

  .tt-main-menu-inner {
    display: table;
    width: 100%;
    height: 100%;
    padding: 15% 7%;
  }

  .tt-main-menu-content {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 3rem;
  }

  .tt-main-menu-list {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .tt-main-menu-list>li {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .tt-main-menu-list>li:first-child {
    margin-top: 0;
  }

  .tt-main-menu-list>li:last-child {
    margin-bottom: 0;
  }

  .tt-main-menu-list>li a {
    position: relative;
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
    color: #eaeaea;
  }

  @media (max-width: 767px) {
    .tt-main-menu-inner {
      padding-top: 10%;
      padding-bottom: 10%;
    }

    .tt-main-menu-list>li a {
      font-size: 18px;
      line-height: 1.5
    }
  }

  /*  menu list hover/active */
  .tt-main-menu-list>li a:hover,
  .tt-main-menu-list>li>.tt-submenu-trigger:hover a,
  .tt-main-menu-list>li>.tt-submenu-trigger:hover .tt-m-caret,
  .tt-main-menu-list>li.active>a,
  .tt-main-menu-list>li.active>.tt-submenu-trigger a,
  .tt-main-menu-list>li.active>.tt-submenu-trigger .tt-m-caret {
    color: #FFF;
  }

  /* Mobile submenu */
  .tt-submenu-wrap {
    position: relative;
  }

  .tt-submenu-trigger {
    position: relative;
    display: inline-block;
  }

  .tt-submenu-trigger>a {
    position: relative;
    z-index: 1;
  }

  .tt-submenu-trigger .tt-submenu-trigger-m {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
  }

  .tt-submenu {
    display: none;
    position: relative;
    top: auto;
    left: 0 !important;
    min-width: 100%;
    background-color: transparent;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #a9a9a9;
  }

  .tt-submenu-list {
    margin: 0 0 0 20px;
    padding: 0;
    list-style: none;
  }

  .tt-submenu-list .tt-submenu {
    margin-top: 10px;
  }

  .tt-submenu-list>li a {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: normal;
    color: #AAA;
    -webkit-text-stroke: 0;
  }

  /* Mobile submenu list hover/active */
  .tt-submenu-list>li a:hover,
  .tt-submenu-list>li>.tt-submenu-trigger:hover a,
  .tt-submenu-list>li>.tt-submenu-trigger:hover .tt-m-caret,
  .tt-submenu-list>li>.tt-submenu-trigger.tt-m-submenu-open a,
  .tt-submenu-list>li>.tt-submenu-trigger.tt-m-submenu-open .tt-m-caret,
  .tt-submenu-list>li.active>a,
  .tt-submenu-list>li.active>.tt-submenu-trigger a,
  .tt-submenu-list>li.active>.tt-submenu-trigger .tt-m-caret {
    color: #FFF;
  }

  .tt-m-caret {
    position: absolute;
    top: 50%;
    right: -32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #eaeaea;
    cursor: pointer;
    z-index: 9;
    border-radius: 100%;
    transform: translate3d(0, -50%, 0);
  }

  .tt-m-caret::after {
    font-family: "boxicons";
    content: "\ea4a";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transition: all 0.2s ease-in-out;
  }

  .tt-submenu-list>li>.tt-submenu-trigger .tt-m-caret {
    color: #8a8a8a;
  }

  /* Mobile menu 切换按钮 */
  #tt-m-menu-toggle-btn-wrap {
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: initial;
    cursor: pointer;
    z-index: 999;
  }

  .tt-m-menu-toggle-btn-holder {
    float: left;
  }

  .tt-m-menu-toggle-btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    margin-right: -.8rem
  }

  .tt-m-menu-toggle-btn span {
    position: absolute;
    display: block;
    top: 52%;
    left: 50%;
    height: 2px;
    width: 24px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
  }

  .tt-m-menu-toggle-btn span::before,
  .tt-m-menu-toggle-btn span::after {
    position: absolute;
    display: block;
    content: '';
    height: 2px;
    width: 24px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
  }

  .tt-m-menu-toggle-btn span::before {
    top: -4px;
    width: 24px;
  }

  .tt-m-menu-toggle-btn span::after {
    top: auto;
    bottom: -4px;
    width: 18px;
  }

  .tt-m-menu-toggle-btn-text {
    float: left;
    padding-right: 5px;
    overflow: hidden;
    text-align: right;
    font-size: 16px;
  }

  body.tt-m-menu-open .tt-m-menu-toggle-btn-text .tt-m-menu-text-menu {
    display: none;
  }

  /* 关闭切换按钮 */
  body.tt-m-menu-open .tt-m-menu-toggle-btn span {
    width: 20px;
  }

  body.tt-m-menu-open .tt-m-menu-toggle-btn span::before {
    top: 0;
    width: 20px;
    transform: rotate(45deg);
    background-color: #fff;
  }

  body.tt-m-menu-open .tt-m-menu-toggle-btn span::after {
    bottom: 0;
    width: 20px;
    transform: rotate(-45deg);
    background-color: #fff;
  }

  .tt-m-menu-toggle-btn-text .tt-m-menu-text-close {
    display: none;
  }

  body.tt-m-menu-open .tt-m-menu-toggle-btn-text .tt-m-menu-text-close {
    display: block;
  }

  /* 禁用菜单切换按钮单击，直到动画结束 */
  body.tt-m-menu-toggle-no-click #tt-m-menu-toggle-btn-wrap {
    pointer-events: none;
  }

  /* 将 mobile menu 对齐到中心 */
  .tt-main-menu.tt-m-menu-center .tt-main-menu-content {
    text-align: center;
  }

  .tt-main-menu.tt-m-menu-center .tt-submenu-list {
    margin: 0;
  }
}

/* ------------------------------------------------------------- *
 * 页面 header
/* ------------------------------------------------------------- */
#page-header {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  height: 60vh;
}

#page-header.ph-column {
  height: 45vh;
}

#page-header .page-header-inner {
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

#page-header.align-center {
  align-items: center;
}

@media (max-width: 1200px) {
  #page-header {
    height: 450px;
  }

  #page-header.ph-column {
    height: 300px;
  }
}

@media (max-width: 992px) {
  #page-header {
    height: 350px;
  }

  #page-header.ph-column {
    height: 260px;
  }
}

@media (max-width: 561px) {
  #page-header {
    height: 25vh;
  }

  #page-header.ph-column {
    height: 180px;
  }
}

/* 页面banner图像 
===================== */
.ph-image {
  position: absolute;
  top: 160px;
  right: 18vw;
  width: clamp(340px, 18vw, 800px);
  z-index: 2;
  line-height: 0;
}

.ph-image-inner {
  position: relative;
  width: 100%;
}

.ph-hire-bg img {
  width: 80%;
}

@media (max-width: 561px) {
  .ph-hire-bg img {
    width: 100%;
  }
}

/* 将BANNER图像转换为背景图像 */
#page-header.ph-bg-image .ph-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  z-index: -1;
  transform: none;
  overflow: hidden;
}

#page-header.ph-bg-image.ph-image-shadow:after {
  position: absolute;
  content: '';
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 35vh;
  z-index: 3;
  pointer-events: none;
  background: rgb(32, 35, 39);
  background: -moz-linear-gradient(0deg, rgba(32, 35, 39, 1) 0%, rgba(32, 35, 39, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(32, 35, 39, 1) 0%, rgba(32, 35, 39, 0) 100%);
  background: linear-gradient(0deg, rgba(32, 35, 39, 1) 0%, rgba(32, 35, 39, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#21252c", endColorstr="#21252c", GradientType=1);
}

#page-header.ph-bg-image.ph-image-shadow.page-header-warranty:after {
  display: none;
}

#page-header.ph-bg-image .ph-image-inner {
  width: 100%;
  height: 100%;
}

#page-header.ph-bg-image .ph-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* 页面BANNER标题  */
.ph-caption {
  background-color: rgba(0, 0, 0, 0.3);
  min-width: 20rem;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ph-caption-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 5px;
  padding-left: 10px;
  position: relative;
}

.ph-caption-en {
  font-size: .913rem;
  color: #fff;
  padding: .5rem 0;
  letter-spacing: 2px;
  padding-left: 2px;
}

.ph-caption-subtitle {
  width: 50%;
  margin-top: 2rem;
  font-weight: 400;
  line-height: 2;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .9);
}

@media (max-width: 1200px) {
  .ph-caption-subtitle {
    width: 80%;
  }

  .ph-caption-title {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }

  .ph-caption {
    padding: 1rem;
  }
}

@media (max-width: 992px) {
  .ph-caption-title {
    font-size: 2rem;
  }

  .ph-caption-en {
    letter-spacing: 1px;
  }
}

@media (max-width: 561px) {
  .ph-caption {
    min-width: 100%;
    padding: 1rem 0;
  }

  .ph-caption-title {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  .ph-caption-subtitle {
    width: 90%;
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .ph-caption-en {
    font-size: .7rem;
  }
}

/* 页面 banner 封面不透明 */
[class*="ph-image-cover-"] .ph-image-inner::before,
[class*="cover-opacity-"]::before {
  position: absolute;
  display: block;
  content: "";
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: #040404;
  z-index: 1;
  opacity: 0;
}

.ph-image-cover-4 .ph-image-inner::before,
.cover-opacity-4::before {
  opacity: .4;
}

.ph-image-cover-6 .ph-image-inner::before,
.cover-opacity-6::before {
  opacity: .6;
}

.ph-image-cover-8 .ph-image-inner::before,
.cover-opacity-8::before {
  opacity: .8;
}

/* 页面 banner 位置 */
#page-header.text-center .ph-caption,
#page-header.text-center .ph-caption-title,
#page-header.text-center .ph-caption-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#page-header.text-center .ph-caption-description,
#page-header.text-center .ph-caption>p {
  margin-left: auto;
  margin-right: auto;
}

#page-header.text-center:not(.ph-bg-image) .ph-image {
  right: 50%;
  transform: translate(50%, 0);
}

/* ------------------------------------------------------------- *
 * 区块标题
/* ------------------------------------------------------------- */
.tt-heading {
  margin-bottom: 3rem;
}

.tt-heading .tt-heading-title {
  font-size: 2.2rem;
  font-weight: bold;
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  line-height: 1.6;
}

.tt-heading .tt-heading-subtitle {
  color: #87898b;
  font-weight: 400;
}

.tt-heading-tag {
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  margin: 0 auto;
  display: block;
  margin-top: 1rem;
  position: relative;
}

.tt-heading-tag::after,
.tt-heading-tag::before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 14rem;
  background: var(--primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.tt-heading-tag::after {
  left: 1.5rem;
}

.tt-heading-tag::before {
  right: 1.5rem;
}

.tt-heading-light .tt-heading-tag,
.tt-heading-light .tt-heading-tag::after,
.tt-heading-light .tt-heading-tag::before {
  background: #fff;
}

.tt-heading-light .tt-heading-title {
  color: #fff;
}

.tt-heading-intro {
  width: 70%;
  margin: 1.2rem auto 0;
}

.tt-heading-light .tt-heading-subtitle,
.tt-heading-light .tt-heading-intro {
  color: rgb(255, 255, 255, 0.8);
}

.tt-font {
  font-size: 1.1rem;
  line-height: 2;
  text-align: justify
}

@media (max-width: 1200px) {
  .tt-heading {
    margin-bottom: 2rem;
  }

  .tt-heading .tt-heading-title {
    font-size: 2rem
  }

  .tt-heading .tt-heading-subtitle {
    margin: 0 auto;
    font-size: .913rem;
    line-height: 1.6;
  }

  .tt-font {
    font-size: 1.1rem;
  }

}

@media (max-width:992px) {
  .tt-heading {
    margin-bottom: 1.5rem;
  }

  .tt-heading .tt-heading-title {
    font-size: 1.8rem
  }

  .tt-heading-intro {
    width: 85%;
  }

  .tt-font {
    line-height: 1.8;
  }

}

@media (max-width: 561px) {
  .tt-heading {
    margin-bottom: 1.5rem;
  }

  .tt-heading .tt-heading-title {
    font-size: 1.6rem;
    letter-spacing: 0;
    margin-top: .5rem !important;
    margin-bottom: 0 !important
  }

  .tt-heading-tag {
    width: 6px;
    height: 6px;
  }

  .tt-heading-tag::after,
  .tt-heading-tag::before {
    width: 8rem;
  }

  .tt-heading-intro {
    width: 100%;
  }
}

/* ------------------------------------------------------------- *
 * Portfolio slider (项目banner滚动)
/* ------------------------------------------------------------- */
.tt-portfolio-slider {
  position: relative;
  width: 100%;
}

.tt-portfolio-slider .swiper-container {
  height: 65vh;
}

@media (max-width: 1200px) {
  .tt-portfolio-slider .swiper-container {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .tt-portfolio-slider .swiper-container {
    height: 350px;
  }
}

@media (max-width: 561px) {
  .tt-portfolio-slider .swiper-container {
    height: 25vh;
  }
}

/* Portfolio slider slide */
.tt-portfolio-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Portfolio slider item 
========================= */
.tt-portfolio-slider-item {
  position: relative;
  height: 100%;
}

img.tt-psi-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Slide opasity cover (for prev/next slides) */
.tt-portfolio-slider-item::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  transition: 0.5s ease-in-out;
}

.swiper-slide-prev .tt-portfolio-slider-item::after,
.swiper-slide-next .tt-portfolio-slider-item::after {
  opacity: .7;
  visibility: visible;
}

@media (max-width: 561px) {
  .tt-portfolio-slider img.tt-psi-image {
    object-position: 65% 50%;
  }
}

/* Portfolio slider navigation 
=============================== */
.tt-portfolio-slider-navigation {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12rem;
  height: 3.5rem;
  z-index: 1;
  color: #fff;
}

@media (max-width: 1200px) {
  .tt-portfolio-slider-navigation {
    bottom: 3rem;
  }
}

@media (max-width: 561px) {
  .tt-portfolio-slider-navigation {
    bottom: 1rem;
  }
}

.tt-ps-nav-prev,
.tt-ps-nav-next {
  position: absolute;
  top: 0;
  z-index: 20;
}

.tt-ps-nav-prev {
  left: 0;
}

.tt-ps-nav-next {
  right: 0;
}

.tt-ps-nav-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.4rem;
  cursor: pointer;
  outline: none;
}

body:not(.tt-magic-cursor) .tt-ps-nav-arrow:hover {
  opacity: .5;
}

.tt-ps-nav-arrow-prev::after,
.tt-ps-nav-arrow-next::after {
  line-height: 0;
  font-family: boxicons;
  font-weight: 400;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.tt-ps-nav-arrow-prev::after {
  content: "\ed38";
}

.tt-ps-nav-arrow-next::after {
  content: "\ed3b";
}

.tt-ps-nav-arrow.tt-ps-nav-arrow-disabled {
  /* opacity: .5; */
  cursor: auto;
  pointer-events: none;
}

.tt-portfolio-slider .swiper-button-lock {
  display: none;
}

/* Portfolio slider pagination 
=============================== */
.tt-portfolio-slider .swiper-pagination-lock {
  display: none;
}

/* Portfolio slider pagination bullets */
.tt-ps-nav-pagination-bullets {
  font-size: 0;
}

.tt-ps-nav-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: transparent;
  margin: 8px;
  opacity: 1;
  border-radius: 100%;
  border: 2px solid #fff;
}

.tt-ps-nav-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Portfolio slider pagination dynamic bullets */
.tt-ps-nav-pagination-bullets-dynamic {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
}

.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(.33);
  position: relative;
  transition: .2s transform, .2s left;
}

.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

/* Portfolio slider pagination fraction */
.tt-ps-nav-pagination-fraction {
  position: relative;
  font-size: .913rem;
  font-weight: bold;
  line-height: 1;
  font-style: italic;
}

.tt-ps-nav-pagination-fraction .swiper-pagination-current {
  position: relative;
  top: -4px;
}

.tt-ps-nav-pagination-fraction .swiper-pagination-total {
  position: relative;
  bottom: -4px;
}

/* Portfolio slider pagination progressbar */
.tt-ps-nav-pagination-progressbar {
  position: absolute;
  left: 4.5rem;
  right: 4.5rem;
  width: auto;
  max-width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.tt-ps-nav-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  transform-origin: left top;
}

/* ------------------------------------------------------------- *
 * content-carousel 左右分块滚动 
/* ------------------------------------------------------------- */
.tt-content-carousel {
  position: relative;
}

.tt-content-carousel-item {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 1;
}

@media (min-width: 1200px) {
  .tt-content-carousel .swiper-slide {
    height: 100%;
    width: auto;
  }
}

@media (max-width: 1200px) {
  .tt-content-carousel .swiper-slide .tt-cc-video {
    position: relative;
    width: 100%;
    height: 60vw;
    object-fit: cover;
    object-position: 50% 50%;
  }
}

/* navigation */
.tt-cc-nav-prev,
.tt-cc-nav-next {
  position: absolute;
  top: 45%;
  z-index: 20;
  transform: translateY(-50%);
}

.tt-cc-nav-prev {
  left: -5%;
}

.tt-cc-nav-next {
  right: -5%;
}

.tt-cc-nav-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
  outline: none;
  color: #333;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.tt-cc-nav-arrow:hover {
  background: #111;
  color: #fff
}

.tt-cc-nav-prev .tt-cc-nav-arrow::after,
.tt-cc-nav-next .tt-cc-nav-arrow::after {
  position: relative;
  line-height: 0;
  font-family: "boxicons";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.tt-cc-nav-prev .tt-cc-nav-arrow::after {
  content: "\ea4d";
}

.tt-cc-nav-next .tt-cc-nav-arrow::after {
  content: "\ea50";
}

.tt-cc-nav-prev.tt-cc-nav-arrow-disabled .tt-cc-nav-arrow,
.tt-cc-nav-next.tt-cc-nav-arrow-disabled .tt-cc-nav-arrow {
  opacity: .3;
  cursor: auto;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .tt-cc-nav-arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}

/*  分页  */
.tt-cc-pagination-innovation {
  height: 4rem;
  position: relative
}

.tt-cc-pagination,
.tt-li-pagination,
.grid-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate3d(-50%, 0, 0);
}

.tt-cc-pagination-other .tt-cc-pagination,
.tt-cc-pagination-other .tt-li-pagination,
.tt-cc-pagination-other .grid-pagination {
  bottom: 1rem;
}

/* 分页 bllets */
.tt-cc-pagination-bullets,
.tt-li-pagination-bullets {
  font-size: 0;
}

.tt-cc-pagination-bullets .swiper-pagination-bullet,
.tt-li-pagination-bullets .swiper-pagination-bullet,
.grid-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
  display: inline-block;
  width: 15px;
  height: 4px;
  background-color: var(--primary);
  margin: 3px;
  opacity: .4;
  border-radius: 20px;
}

.tt-cc-pagination-white .tt-cc-pagination-bullets .swiper-pagination-bullet,
.tt-cc-pagination-white .tt-li-pagination-bullets .swiper-pagination-bullet {
  background: #FFF;
}

.tt-cc-pagination-bullets .swiper-pagination-bullet-active,
.tt-li-pagination-bullets .swiper-pagination-bullet-active,
.tt-cc-pagination-white .tt-cc-pagination-bullets .swiper-pagination-bullet-active,
.tt-cc-pagination-white .tt-li-pagination-bullets .swiper-pagination-bullet-active,
.grid-pagination.swiper-pagination-clickable .swiper-pagination-bullet-active {
  width: 30px;
  opacity: 1;
}


/* 分页数 */
.tt-cc-pagination-height {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  letter-spacing: 2px;
  /* height: 4rem; */
}

swiper-pagination-current .tt-cc-pagination-white .tt-cc-pagination-fraction {
  color: #fff;
}

.tt-cc-pagination-fraction .swiper-pagination-current {
  position: relative;
  top: -4px;
}

.tt-cc-pagination-fraction .swiper-pagination-total {
  position: relative;
  bottom: -4px;
}

/* 分页进度条 */
.tt-cc-pagination-progressbar {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}

.tt-cc-pagination-white.tt-cc-pagination-progressbar {
  background-color: rgba(255, 255, 255, 0.3);
}


@media (max-width: 768px) {
  .tt-cc-pagination-progressbar {
    max-width: 60%;
  }

}


.tt-cc-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transform: scale(0);
  transform-origin: left top;
}

.tt-cc-pagination-white.tt-cc-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #fff;
}

/* 分页位置在外部 */
.tt-content-carousel.cc-pagination-outside {
  overflow: visible;
}

/* -------------------------------------------------------------------- *
 * 背景
 * 父元素上的位置需要 "relative" or "absolute" 
/* -------------------------------------------------------------------- */
.tt-bg-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

video.tt-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video.tt-bg-video-01 {
  width: 60%;
  height: 100%;
  object-fit: cover;
  margin-left: 40%;
  position: relative;
}

.tt-bg-video-01-before {
  content: "";
  position: absolute;
  top: 0;
  left: 38%;
  width: 25%;
  height: 100%;
  display: block;
  z-index: 10;
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {}

/* ------------------------------------------------------------- *
 *tabs切换
/* ------------------------------------------------------------- */
.tt-tabs {
  position: relative;
}

/* tt-Tabs tag */
.tt-tabs-buttons {
  border-radius: 3px;
  overflow: hidden;
}

.tt-tabs-buttons ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-tab-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background-color: #f5f5f5;
  padding: 10px 40px;
  text-align: center;
  font-size: 1.2rem;
  color: #111;
  cursor: pointer;
  border: none;
  outline: none;
  transition: .2s ease-in-out;
}

.tt-tab-btn:hover {
  background-color: #ff5e69;
  color: #FFF;
}

.tt-tab-btn.active {
  background-color: var(--primary);
  color: #FFF;
}

.tt-tab-content {
  display: none;
  padding-top: 50px;
}

.tt-tab-content.active {
  display: block;
}

@media (max-width: 1200px) {
  .tt-tab-btn {
    height: 55px;
    font-size: 1.1rem
  }

  .tt-tab-content {
    padding-top: 30px;
  }
}

@media (max-width: 561px) {
  .tt-tab-btn {
    font-size: 1rem
  }

  .tt-tab-content {
    padding-top: 20px;
  }
}

/* tt-Tabs 居中*/
.tt-tabs.tt-tabs-center .tt-tabs-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (min-width: 992px) {
  .tt-tabs.tt-tabs-justified .tt-tabs-buttons ul {
    flex-wrap: nowrap;
  }

  .tt-tabs.tt-tabs-justified .tt-tabs-buttons>ul>li {
    width: 100%;
    margin: 0 2px 0 0;
  }

  .tt-tabs.tt-tabs-justified .tt-tab-btn {
    padding: 10px 0;
  }
}

/* ------------------------------------------------------------- *
 *翻页
/* ------------------------------------------------------------- */
.tt-pagination {
  display: flex;
  padding: 2rem 0 0;
}

.pagination-wrap {
  padding: 0;
  margin: 0;
}

.pagination-wrap li {
  display: inline-block;
  margin: 0 6px;
}

.pagination-wrap li a,
.pagination-wrap li span {
  background-color: #f5f5f5;
  display: inline-block;
  min-width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  color: #101010;
  padding: 0;
  margin: 0;
  font-weight: 400;
  border-radius: 5px;
  transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
  transform-style: preserve-3d;
}

.pagination-wrap .page-item.disabled .page-link {
  min-width: 1.5rem;
  background-color: transparent;
  border: 0px;
  box-shadow: 0 0 0 0 #fff;
}

.pagination-wrap li i {
  font-size: 1.5rem;
  position: relative;
  top: .4rem;
}

.pagination-wrap li a:hover {
  opacity: 1;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
}

.pagination-wrap li a.active,
.pagination-wrap li.active span,
.pagination-wrap li span.active {
  background-color: var(--primary);
  color: var(--white);
}

.pagination-wrap li.disabled span {
  color: #999;
}

/* center */
.tt-pagination.tt-pagin-center {
  justify-content: center;
  text-align: center;
}

/* left */
.tt-pagination.tt-pagin-left {
  justify-content: left;
  text-align: center;
}

@media (max-width: 1200px) {
  .tt-pagination {
    padding: 1rem 0 0;
  }
}

@media (max-width: 561px) {
  .tt-pagination {
    padding: .5rem 0;
  }

  .pagination-wrap li {
    display: none;
  }

  .pagination-wrap li:first-child,
  .pagination-wrap li:last-child {
    display: inline-block;
  }

  .pagination-wrap li a,
  .pagination-wrap li span {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/* ------------------------------------------------------------- *
 * 底部 tt-footer
/* ------------------------------------------------------------- */
#tt-footer {
  position: relative;
  background-color: #2a2a2a;
  color: rgba(255, 255, 255, .8);
  position: relative;
  padding-top: 4rem;
  overflow: hidden;
}

#tt-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: var(--primary);
}


#tt-footer .tt-footer-left .tt-footer-text {
  color: #fff;
  font-size: 1.5rem;
  margin: 1rem 0 2rem;
  line-height: 1.8;
  font-style: italic;
}

#tt-footer .tt-footer-left ul li,
.contact-box ul li {
  color: #fff;
  padding: .25rem 0;
}

#tt-footer .tt-footer-left ul li.phone,
.contact-box ul li.phone {
  font-weight: bold;
  font-size: 1.2rem;
  font-style: italic;
  font-family: "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
}

#tt-footer .tt-footer-left ul li .icon,
.contact-box ul li .icon {
  flex: 0 0 1.5rem;
  max-width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
}

#tt-footer .tt-footer-left ul li .icon i,
.contact-box ul li .icon i {
  font-size: .913rem;
}

#tt-footer h5 {
  font-size: 1.2rem;
  position: relative;
}

#tt-footer .tt-footer-ul {
  line-height: 1.8;
}

#tt-footer .tt-footer-ul ul {
  display: flex;
  flex-wrap: wrap;
}

#tt-footer .tt-footer-ul li {
  width: 50%;
  padding: .2rem 0;
}

#tt-footer .tt-footer-ul li a {
  color: rgba(255, 255, 255, .8);
}

#tt-footer .tt-footer-ul li a:hover {
  color: var(--primary);
}

#tt-footer .tt-footer-ul .code-box {
  width: 115px;
  height: 115px;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 1rem;
}

#tt-footer .copyright {
  background-color: #111;
  line-height: 4rem;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

#tt-footer .copyright,
#tt-footer .copyright a {
  color: rgba(255, 255, 255, .6);
}

@media (max-width: 1200px) {
  #tt-footer {
    font-size: .913rem;
  }

}

@media (max-width: 992px) {
  #tt-footer {
    padding-top: 3rem;
  }

  #tt-footer .copyright {
    margin-top: 3rem;
  }

  #tt-footer .tt-footer-left .tt-footer-text {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  #tt-footer::before {
    width: 30%;
  }
}

@media (max-width: 767px) {
  #tt-footer {
    padding-top: 2rem;
  }

  #tt-footer .copyright {
    margin-top: 2rem;
  }

}

@media (max-width: 561px) {
  #tt-footer {
    padding-top: 2.2rem;
  }

  #tt-footer .copyright {
    line-height: 3rem;
  }

  #tt-footer::before {
    display: none;
  }

  #tt-footer .tt-logo img {
    height: 3rem;
  }
}

/* ------------------------------------------------------------- *
 * 背景 tt-bg
/* ------------------------------------------------------------- */
.tt-bg {
  background-position: center;
  background-repeat: no-repeat
}

.tt-bg-about {
  background-image: url("../img/bg-1.png");
  background-position: right bottom;
  background-size: 60%;
}

.tt-bg-message {
  background-image: url("../img/bg-2.png");
  background-position: center;
  background-size: cover;
}

.tt-bg-business-01 {
  background-image: url("../img/bg-5.png");
  background-position: center;
  background-size: cover;
}

.tt-bg-business-03 {
  background-image: url("../img/bg-6.png");
  background-position: center;
  background-size: cover;
}

.tt-bg-business-08 {
  background-image: url("../img/bg-10.png");
  background-position: right 10rem;
  background-size: 90%;
}

.tt-bg-business-10 {
  background-color: var(--primary);
  background-image: url("../img/bg-11.png");
  background-position: center;
  background-size: cover;
}

/* ------------------------------------------------------------- *
 * 首页 index
/* ------------------------------------------------------------- */
/* 数据统计 */
.statistics {
  padding: 2.5rem 2rem;
  text-align: center;
  top: -4.5rem;
  margin-bottom: -4.5rem;
  position: relative;
  z-index: 10;
}

.statistics-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.statistics-item h1 {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.statistics-item h1 span {
  font-size: 1.2rem;
  margin-left: .3rem;
}

@media (max-width: 1200px) {
  .statistics {
    top: -2.5rem;
    margin-bottom: -2.5rem;
    padding: 2rem;
  }

  .statistics-item h1 {
    font-size: 2rem;
    margin-bottom: .5rem;
  }
}

@media (max-width: 992px) {
  .statistics-item h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 561px) {
  .statistics {
    top: -1.5rem;
    margin-bottom: -1.5rem;
    padding: 1.5rem;
  }

  .statistics .col-3 {
    padding: 0 !important;
  }

  .statistics-item h6 {
    font-size: .875rem;
  }

  .statistics-item h1 {
    font-size: 1.4rem;
    margin-left: .5rem;
  }
}

/* 关于我们 */
.aboutUs {
  position: relative;
}

.aboutUs-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-image: url("../img/bg-1.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-color: var(--primary);
  z-index: -1;
}

.aboutUs-content {
  height: 100%;
  padding-left: 3rem;
}

.aboutUs-img {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .aboutUs-content {
    padding-left: 1rem;
  }
}

@media (max-width: 767px) {
  .aboutUs {
    margin-top: 2rem;
  }

  .aboutUs-content {
    padding-left: 0;
  }

  .aboutUs-bg {
    width: 100%;
  }

  .aboutUs-img {
    height: 280px;
    margin-top: 2rem;
  }
}

@media (max-width: 561px) {
  .aboutUs {
    margin-top: 1.5rem;
  }

  .aboutUs-img {
    height: 200px;
    margin-top: 2rem;
  }
}

/* 荣誉 */
.honor-container .swiper-slide {
  text-align: center;
  padding: 2rem 0;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.8);
}

.honor-container .swiper-slide-active,
.honor-container .swiper-slide-duplicate-active {
  transform: scale(1.1);
  position: relative;
  z-index: 10;
}

@media (max-width: 1200px) {
  .honor-container .swiper-slide {
    padding: 1rem 0;
  }
}

@media (max-width: 561px) {
  .honor-container .swiper-slide {
    padding: 0;
  }
}

/* 新闻 */
.newslist {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.newslist:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.newslist a {
  color: #111;
}

.newslist .newslist-item-img {
  flex: 0 0 10rem;
  max-width: 10rem;
  height: 7.5rem;
  overflow: hidden;
}

.newslist .newslist-item-content {
  margin-left: 1.5rem;
}

.newslist .introduction {
  font-size: .913rem;
}

.newslist .iconfont,
.newslist-02 .iconfont {
  line-height: 1;
}

.newslist .iconfont i,
.newslist-02 .iconfont i {
  position: relative;
  top: 1px;
}

.newslist-02 {
  height: 100%;
  overflow: hidden;
}

.newslist-02 .newslist-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  width: 100%;
  z-index: 10;
}

@media (max-width: 992px) {
  .newslist .newslist-item-img {
    flex: 0 0 9rem;
    max-width: 9rem;
    height: 6rem;
  }

  .newslist .introduction {
    display: none;
  }

  .newslist-02 .newslist-item-content {
    padding: 1.5rem;
  }
}

@media (max-width: 561px) {
  .newslist-02 {
    height: 220px;
    margin-top: 1.5rem;
  }

  .newslist .newslist-item-content {
    margin-left: 1rem;
  }

  .newslist-02 h5,
  .newslist h5 {
    line-height: 1.4;
    margin-bottom: 0 !important;
  }
}

/* ------------------------------------------------------------- *
 * 区块特点
/* ------------------------------------------------------------- */
.feature-row {
  padding-left: -1.5rem;
  padding-right: -1.5rem;
}

.feature {
  padding: 2.5rem;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.feature .feature_icon {
  display: flex;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  justify-content: flex-end;
}

.feature .feature_icon.center {
  justify-content: center;
}

.feature .feature_icon img {
  height: 3.5rem;
  position: relative;
  z-index: 5
}

.feature .feature_icon-other {
  margin: 3rem 0;
}

.feature .feature_icon-other img {
  height: 5.5rem;
}

.feature .feature_font {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

.feature .feature_font h5 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature .feature_font .text {
  color: rgba(0, 0, 0, .6);
}

.feature-01 {
  padding: 0 2rem;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  border-right: 1px solid rgba(0, 0, 0, .05);
}

.feature-01.noline {
  border-right: none;
}

.feature-01 .feature_font {
  text-align: center;
  max-width: 18rem;
  margin: 0 auto;
}

.feature-01 .feature_icon {
  margin-bottom: 1.5rem;
}

.feature-01 .feature_icon img {
  margin: 0 auto;
}

.feature-02 {
  margin: 1rem;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, .04);
  height: 100%;
  border-bottom: 2px solid var(--primary);
}

.feature-02 .feature_icon {
  background: #f5f5f5;
  justify-content: center;
  padding: 3rem 2rem;
}

.feature-02 .feature_font {
  padding: 1rem 2rem 2rem;
}

@media (max-width: 1200px) {
  .feature:not(.feature-02) {
    padding: 2rem 1.8rem;
  }

  .feature .feature_font .text {
    font-size: 1rem;
  }

  .feature .feature_font h5 {
    margin-bottom: .8rfem;
  }

  .feature .feature_font h5 span {
    font-size: .875rem;
  }

  .feature-01 {
    border: none;
  }

  .feature-02 {
    margin: 0;
  }

  .feature-02 .feature_icon {
    padding: 2rem;
  }

  .feature .feature_icon-other {
    margin: 2rem 0;
  }

  .feature .feature_icon-other img {
    height: 4rem;
  }
}

@media (max-width: 1024px) {

  .feature .feature_font h5,
  .feature .feature_font h4 {
    font-size: 1.4rem;
  }

  .feature .feature_icon {
    margin-bottom: 1.5rem;
  }

  .feature .feature_icon-other {
    margin: 1.5rem 0;
  }

  .feature .feature_icon img {
    height: 3rem;
  }
}

@media (max-width: 992px) {
  .feature {
    font-size: .913rem;
  }

}

@media (max-width: 561px) {
  .feature-contact .feature_icon {
    margin-bottom: 0;
  }

  .feature-02 .feature_font {
    padding: .5rem 2rem 1.5rem;
  }
}

/* ------------------------------------------------------------- *
 * 社会责任 social
/* ------------------------------------------------------------- */
.social-item {
  height: 18rem;
  position: relative;
  overflow: hidden;
}

.social-item .social-item-title {
  width: 100%;
  min-height: 4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 1.4;
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 10;
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease;
}

.social-item:hover .social-item-title {
  min-height: 100%;
}

.employment-item .aboutUs-content {
  padding: 4rem 4rem 4rem 0;
}

.employment-title {
  margin-bottom: 1rem;
}

.employment-title h2,
.employment-title h4 {
  position: relative;
  z-index: 10;
}

.employment-title .employment-title-en {
  position: absolute;
  top: -16px;
  left: 10px;
  font-size: 1.5rem;
  color: var(--primary);
  font-style: italic;
}

.employment-item ul {
  margin-top: 3rem;
}

.employment-item ul li {
  display: inline-flex;
  margin-bottom: 1rem;
  background-color: #f5f5f5;
  padding: .8rem 1.5rem;
}

.employment-item ul li:nth-child(2) {
  margin-left: 2rem;
}

.employment-item ul li:nth-child(3) {
  margin-left: 4rem;
}

.activity-item {
  line-height: 1.8;
}

.activity-item .activity-item-img {
  width: 100%;
  height: 20rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
  .social-item {
    height: 15rem;
  }

  .employment-item .aboutUs-content {
    padding: 1rem 1rem 0 0;
  }

  .employment-item h2 {
    font-size: 1.8rem;
  }

  .activity-item .activity-item-img {
    height: 16rem;
  }
}

@media (max-width: 1024px) {
  .social-item {
    height: 12rem;
  }

  .social-item .social-item-title {
    padding: .8rem;
  }
}

@media (min-width: 562px) and (max-width: 992px) {
  .employment-item ul li {
    margin-left: 0 !important;
  }
}

@media (max-width: 561px) {
  .social-item {
    height: 220px;
  }

  .employment-item .aboutUs-content {
    padding: 1rem 0 0 0;
  }

  .employment-item h2 {
    font-size: 1.5rem;
  }

  .employment-title .employment-title-en {
    font-size: 1.2rem;
    top: -10px;
  }

  .employment-item ul {
    margin-top: .5rem;
  }
}

/* ------------------------------------------------------------- *
 * 联系我们 contact
/* ------------------------------------------------------------- */
.contact-map {
  height: 350px;
  background: #f5f5f5;
}

.contact-box {
  margin: .2rem 0;
}

.contact-box h3 {
  line-height: 1;
}

.contact-box ul {
  margin: 2rem 0;
}

.contact-box ul li {
  color: #111;
  padding: .35rem 0;
}

.contact-box ul li .icon {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.contact-box .code-box {
  width: 110px;
  height: 110px;
  padding: 8px;
  border: 1px solid #eee;
}

.messageForm .form-control {
  background-color: rgba(255, 255, 255, .7);
}

.messageForm textarea.form-control {
  height: 10rem;
}

@media (max-width: 1024px) {
  .contact-box ul {
    margin-top: 1.5rem;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 561px) {
  .contact-box ul {
    margin: 1.5rem 0 !important;
  }

  .contact-map {
    height: 220px;
    margin-top: 2rem;
  }
}

/* ------------------------------------------------------------- *
 * 新闻资讯 news
/* ------------------------------------------------------------- */
.subNav li {
  position: relative;
}

.subNav li a {
  display: block;
  width: 100%;
  line-height: 3rem;
  margin: 0 0 .6rem 0;
  padding: 0 1.5rem;
  background: #f5f5f5;
}

.subNav li a::after {
  content: "\ea50";
  font-family: 'boxicons';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  color: #a0a0a0;
  transition: 0.5s ease;
}

.subNav li.active a,
.subNav li a:hover {
  background: var(--primary);
  color: #fff;
}

.subNav li.active a::after,
.subNav li a:hover::after {
  color: #fff;
}

.subNewslist {
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.subNewslist .newslist-item-img {
  height: 10rem;
  flex: 0 0 14rem;
  max-width: 14rem;
  overflow: hidden;
  margin-right: 1.8rem;
}

.subNewslist .iconfont {
  line-height: 1;
}

@media (max-width: 1024px) {
  .subNewslist .newslist-item-img {
    height: 8.5rem;
  }
}

@media (max-width: 992px) {
  .subNewslist .newslist-item-img {
    flex: 0 0 12rem;
    max-width: 12rem;
  }
}

@media (max-width: 561px) {
  .subNav {
    margin-bottom: .5rem;
  }

  .subNav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.3rem;
  }

  .subNav li {
    flex: 0 0 calc(50% - .6rem);
    max-width: calc(50% - .6rem);
    margin: 0 .3rem .2rem .3rem;
  }

  .subNewslist {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .subNewslist .introduction {
    display: none;
  }

  .subNewslist .newslist-item-img {
    margin-right: 1.2rem;
    flex: 0 0 9rem;
    max-width: 9rem;
    height: 6rem;
  }
}

/* ------------------------------------------------------------- *
 * 企业介绍 aboutus
/* ------------------------------------------------------------- */
.aboutUs-item {
  margin: 0 auto;
  max-width: 80%;
}

.aboutUs-carousel {
  margin: 2rem 10% 0;
}

.aboutUs-carousel .aboutUs-carousel-slide {
  height: 25rem;
}

.values-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s all;
}

.values-item .values-item-img {
  width: 100%;
  height: 16rem;
  overflow: hidden;
}

.values-item .values-item-content {
  padding: 1.5rem;
  text-align: center;
  background-image: url(../img/bg-3.png);
  background-size: 4rem auto;
  background-position: center 1.25rem;
  background-repeat: no-repeat;
}

.values-item:hover {
  color: #fff;
  background-color: var(--primary);
}

.values-item:hover .values-item-content {
  background-image: url(../img/bg-3-1.png);
}

.values-item:hover .values-item-content .text-black-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.advantages-content {
  padding: 4rem 0;
  background: #f5f5f5 url(../img/bg-4.png) no-repeat center center;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}

.advantages-content-other {
  background-color: #fff;
  background-image: url(../img/bg-8.png);
  box-shadow: rgba(149, 157, 165, .15) 0px 0 10px;
}

@media (max-width: 1200px) {
  .aboutUs-item {
    max-width: 100%;
  }

  .aboutUs-carousel .aboutUs-carousel-slide {
    height: 20rem;
  }

  .values-item .values-item-img {
    height: 14rem;
  }

  .advantages-content {
    padding: 1rem 0;
    margin-top: .5rem;
  }
}

@media (max-width: 561px) {
  .aboutUs-carousel {
    margin: 1rem 0 0;
  }

  .aboutUs-carousel .aboutUs-carousel-slide {
    height: 220px;
  }

  .advantages-content-other .feature {
    padding: 1rem 2rem;
  }

  .advantages-content-other .feature .feature_font h5 {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

/*公司大事记*/
.timeline {
  width: 94%;
  margin: 2rem auto 0;
  position: relative;
}

.timeline .swiper-container::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #bdbdbd;
  top: 5.5rem;
  left: 0;
  position: absolute;
  z-index: -1
}

.timeline .dates-box h4 {
  font-size: 1rem;
  position: relative;
  height: 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: 0.5s all;
}

.timeline .swiper-slide.swiper-slide-active h4 {
  font-size: 1.5rem;
}

.timeline .dates-box h4::after {
  display: inline-block;
  content: '';
  width: 3rem;
  height: .3rem;
  background: #bdbdbd;
  border-radius: 5px;
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.timeline .swiper-slide.swiper-slide-active h4::after {
  background: var(--primary);
}

.timeline .dates-box .selected-box {
  width: 40rem;
  text-align: center;
  margin: 3rem auto 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
  padding: 4rem;
  left: -14.5rem;
}

.timeline .dates-box .selected-box .text-content {
  background-color: var(--primary);
  color: #fff;
  min-height: 11rem;
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.timeline .dates-box .selected-box .text-bg {
  font-size: 18rem;
  font-weight: bold;
  color: #eeeeee;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.timeline .dates-box .selected-box h6 {
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0
}

.timeline .swiper-slide.swiper-slide-active .selected-box {
  opacity: 1;
  visibility: visible;
}

.timeline .dates-box .selected-box .text-content h3 {
  font-size: 1.5rem;
}

.timeline .tt-cc-nav-prev,
.timeline .tt-cc-nav-next {
  top: 4.1rem;
  transform: translateY(0);
}

.timeline .tt-cc-nav-prev {
  left: -3rem;
}

.timeline .tt-cc-nav-next {
  right: -3rem
}

.timeline .tt-cc-nav-arrow {
  font-size: 2.5rem;
  background-color: transparent;
  height: 3rem;
  box-shadow: none;
  color: #999;
}

@media (max-width: 1200px) {
  .timeline-box {
    position: relative;
    margin: 0
  }

  .timeline .swiper-slide.swiper-slide-active h4 {
    font-size: 1.6rem;
  }

  .timeline .dates-box .selected-box {
    left: -10.5rem;
  }
}

@media (max-width:991px) {
  .timeline {
    margin: 0 auto 1rem
  }

  .timeline .dates-box h4 {
    font-size: 1.1rem;
  }

  .timeline .swiper-slide.swiper-slide-active h4 {
    font-size: 1.8rem;
  }

  .timeline .dates-box .selected-box {
    left: -8.5rem;
  }
}

@media (max-width:561px) {
  .timeline {
    width: 88%;
  }

  .timeline .dates-box .selected-box {
    margin: 2rem auto 0;
    width: 100%;
    left: 0
  }

  .timeline .dates-box .selected-box .text-content {
    padding: 1.5rem;
    min-height: 8rem;
  }

  .timeline .dates-box .selected-box .text-content h4 {
    font-size: 1.4rem;
  }

  .timeline .dates-box .selected-box .text-bg {
    font-size: 12rem;
  }

  .timeline h4 {
    font-size: 1rem;
    height: 3rem;
  }

  .timeline .swiper-slide.swiper-slide-active h4 {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------------------- *
 * 业务矩阵 business
/* ------------------------------------------------------------- */
.business-02-carousel .swiper-slide {
  margin: 2.5rem auto;
}

@media (min-width: 1201px) {

  .business-02-carousel .swiper-slide-active,
  .business-02-carousel .swiper-slide-duplicate-active {
    transform: scale(1.08);
    position: relative;
    z-index: 10;
  }
}

.business-02-carousel .feature {
  padding-top: 4rem;
  padding-bottom: 4rem;
  height: 30rem;
}

.business-02-carousel .feature .feature_font {
  width: 95%;
  margin: 0 auto;
}

.business-03-carousel .feature .feature_icon-other {
  margin-top: 2rem;
}

.business-04-carousel {
  padding: 2rem;
}

.business-04-carousel .col-lg-auto {
  margin-bottom: 2rem;
}

.business-04-carousel .business-04-item {
  text-align: center;
  padding: 0 10%;
}

.business-04-carousel .business-04-item .icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  margin-bottom: 1rem;
  background-color: var(--primary);
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-04-carousel .business-04-item .icon img {
  height: 2rem;
}

.business-04-carousel .business-04-item-other {
  background-color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary);
  border-radius: 5px;
}

.business-04-carousel .business-04-item-other .icon {
  background-color: transparent;
  border-radius: 1.5rem;
  border: 2px solid var(--primary);
}

@media (min-width: 1201px) {
  .business-05-carousel .col-lg-auto {
    flex: 20%;
    max-width: 20%;
  }
}

.business-05-carousel .business-05-item {
  border-radius: 5px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.6rem;
}

.business-05-carousel .business-05-item .icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-right: .5rem;
  height: 2rem;
}

.business-06-carousel .business-06-item {
  padding: 3rem 2rem;
  background-color: #a1a1a1;
  color: #fff;
  text-align: center;
  height: 100%;
}

.business-06-carousel .business-06-item .title {
  display: inline-block;
  margin: 0 auto;
  background-color: #fff;
  color: #7c7c7c;
  padding: .5rem 2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.business-06-carousel .business-06-item p {
  margin-bottom: 0
}

.business-06-carousel .col-sm-6:nth-child(2) .business-06-item,
.business-06-carousel .col-sm-6:nth-child(3) .business-06-item {
  background-color: var(--primary);
}

.business-06-carousel .col-sm-6:nth-child(2) .business-06-item .title,
.business-06-carousel .col-sm-6:nth-child(3) .business-06-item .title {
  color: var(--primary);
}

.business-07-carousel .business-07-item {
  padding: 2rem 1rem 2rem 3rem;
}

.business-07-carousel .business-07-item ul {
  counter-reset: item-counter;
}

.business-07-carousel .business-07-item ul li {
  padding: .8rem 0;
  line-height: 1.8;
  position: relative;
  padding-left: 2rem;
}

.business-07-carousel .business-07-item ul li::before {
  counter-increment: item-counter;
  content: counter(item-counter);
  position: absolute;
  top: .95rem;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  background-color: var(--primary);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: .913rem;
  color: #fff;
}

.business-07-carousel .business-07-item-img,
.business-11-carousel .business-11-item-img {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.business-08-carousel {
  margin-bottom: 8rem;
  margin-top: 3rem;
}

.business-08-carousel .business-08-item p {
  margin-bottom: 0;
}

.business-08-carousel .business-08-item-img {
  position: relative;
  min-height: 300px;
}

.business-09-carousel {
  margin-bottom: 5rem;
  position: relative;
}

.business-09-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: #f5f5f5;
  z-index: -1;
}

.business-09-carousel:nth-child(2n)::after {
  left: inherit;
  right: 0;
}

.business-09-carousel .business-09-item {
  padding: 4rem 3rem 3rem 4rem;
}

.business-09-carousel:nth-child(2n) .business-09-item {
  padding: 4rem 4rem 3rem 3rem;
}

.business-09-carousel .business-09-item .tt-font {
  margin: 3rem 0;
}

.business-09-carousel .business-09-item .business-09-item-content {
  padding: 2rem 1.5rem 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  color: #7c7c7c;
  margin-top: 2rem;
  position: relative;
  line-height: 1.8;
}

.business-09-carousel .business-09-item .contentTitle {
  background-color: var(--primary);
  position: absolute;
  top: -.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: .2rem 1rem;
  border-radius: 2rem;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: .913rem;
}

.business-09-carousel .business-09-item-img {
  position: relative;
  min-height: 400px;
  margin: 3rem 0 4.5rem;
}

.business-09-carousel .business-09-item-img img {
  z-index: 10;
}

.business-09-carousel .business-09-item-img::after {
  content: '';
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
}

.business-10-carousel {
  padding: 3rem 3rem 2rem 3rem;
  min-height: 10rem;
  margin-top: -4rem;
}

.business-title {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  position: relative;
}

.business-title h5 {
  position: relative;
  z-index: 10;
}

.business-title .title-en {
  width: 100%;
  font-size: 2rem;
  color: #ddd;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.business-10-carousel .business-10-item {
  padding: 3rem 2rem;
}

.business-10-carousel dl,
.business-11-carousel dl {
  display: flex;
}

.business-10-carousel dl dt,
.business-11-carousel dl dt {
  flex: 0 0 100px;
  max-width: 100px;
  border-radius: 2rem;
  line-height: 1.8rem;
  height: 2rem;
  padding: 0 1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-align: center;
}

.business-10-carousel dl dd,
.business-11-carousel dl dd {
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
  margin-bottom: 0;
  line-height: 1.8;
}

.business-10-carousel dl dd span,
.business-11-carousel dl dd span {
  display: inline-block;
  padding: 0 2rem;
  border-right: 1px solid #ddd;
}

.business-10-carousel dl dd span:last-child,
.business-11-carousel dl dd span:last-child {
  border-right: none;
}

.business-11-carousel .business-11-item {
  padding: 0 0 0 3rem;
}

.business-11-carousel .business-11-item-other {
  padding: 0 3rem 0 0;
}

.business-11-carousel .business-11-item-other-01 {
  background-color: #6da3d4;
  padding: 3rem 2rem 2rem 2rem;
  color: #fff;
  margin-right: 3rem;
}

.business-11-carousel .business-11-item-other-01 .business-title .title-en {
  color: rgba(255, 255, 255, 0.2);
}

.business-11-carousel .business-11-item-other-01 dl dt {
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 1200px) {
  .business-02-carousel .swiper-slide {
    margin: 0;
  }

  .business-02-carousel .feature {
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: auto;
  }

  .business-02-carousel .feature .feature_font {
    width: 100%;
  }

  .business-03-carousel .feature .feature_icon-other {
    margin-top: .5rem;
  }

  .business-04-carousel .business-04-item:not(.business-04-item-other) {
    padding: 0;
  }

  .business-08-carousel {
    margin-bottom: 6rem;
    margin-top: 2rem;
  }

  .business-09-carousel {
    margin-bottom: 3rem;
  }

  .business-09-carousel .business-09-item {
    padding: 3rem 1rem 2rem 2.5rem;
  }

  .business-09-carousel:nth-child(2n) .business-09-item {
    padding: 3rem 2rem 2rem 2rem;
  }

  .business-09-carousel .business-09-item-img {
    min-height: 350px;
    margin: 2.5rem 0 4rem;
  }

  .business-09-carousel .business-09-item .tt-font {
    margin: 2rem 0;
  }

  .business-11-carousel .business-11-item {
    padding: 0 0 0 1rem;
  }

  .business-11-carousel .business-11-item-other {
    padding: 0 1rem 0 0;
  }

  .business-11-carousel .business-11-item-other-01 {
    padding: 2.5rem 0rem 1.5rem 2rem;
    margin-right: 1rem;
  }
}

@media (max-width: 1024px) {
  .business-04-carousel {
    padding-bottom: 1rem;
    background-color: transparent;
    box-shadow: none;
    padding: .5rem 0 0 0;
  }

  .business-04-carousel .business-04-item:not(.business-04-item-other) {
    margin-bottom: 1.2rem;
  }

  .business-04-carousel .business-04-item .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
  }

  .business-04-carousel .business-04-item .icon img {
    height: 1.5rem;
  }

  .business-10-carousel dl dd span,
  .business-11-carousel dl dd span {
    padding: 0 1rem;
  }

}

@media (max-width: 992px) {
  .business-04-carousel .business-04-item-other {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .business-08-carousel {
    margin-bottom: 5rem;
    margin-top: 1rem;
  }

  .business-08-carousel .business-08-item-img {
    position: relative;
    min-height: 240px;
  }

  .business-10-carousel {
    margin-top: -2rem;
  }

  .business-11-carousel .business-11-item {
    padding-left: 0;

  }

  .business-11-carousel .business-11-item,
  .business-11-carousel .business-11-item-other {
    padding-right: 0;

  }

  .business-11-carousel .business-11-item-other-01 {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .business-07-carousel .business-07-item {
    padding: 1.5rem;
  }

  .business-07-carousel .business-07-item-img,
  .business-11-carousel .business-11-item-img {
    height: 300px;
  }

  .business-09-carousel {
    margin-bottom: 2rem;
  }

  .business-09-carousel::after {
    width: 100%;
  }

  .business-09-carousel .business-09-item,
  .business-09-carousel:nth-child(2n) .business-09-item {
    padding: 2rem;
  }

  .business-09-carousel .business-09-item-img {
    min-height: 300px;
    margin: 0 0 1.5rem;
  }

  .business-09-carousel .business-09-item .tt-font {
    margin: 1.5rem 0 2rem;
  }

  .business-09-carousel .business-09-item-img::after {
    top: .5rem;
    left: 0;
  }

  .business-11-carousel .business-11-item,
  .business-11-carousel .business-11-item-other {
    margin-top: 2rem;
  }
}

@media (max-width: 561px) {

  .business-05-carousel {
    padding: 0 .5rem;
  }

  .business-05-carousel .business-05-item {
    border-radius: 5px;
    padding: .6rem 1rem;
    margin-bottom: 1rem;
  }

  .business-06-carousel .col-sm-6:nth-child(3) .business-06-item {
    background-color: #a1a1a1;
  }

  .business-06-carousel .col-sm-6:nth-child(4) .business-06-item {
    background-color: var(--primary);
  }

  .business-06-carousel .col-sm-6:nth-child(3) .business-06-item .title {
    color: #a1a1a1;
  }

  .business-06-carousel .col-sm-6:nth-child(4) .business-06-item .title {
    color: var(--primary);
  }

  .business-06-carousel .business-06-item {
    padding: 2rem;
  }

  .business-04-carousel .business-04-item-other {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }

  .business-07-carousel .business-07-item {
    padding: 1rem 1.5rem;
  }

  .business-07-carousel .business-07-item-img,
  .business-11-carousel .business-11-item-img {
    height: 220px;
  }

  .business-08-carousel {
    margin-bottom: 2rem;
    margin-top: 0;
  }

  .business-08-carousel .business-08-item {
    margin-top: 1.5rem;
  }

  .business-08-carousel .business-08-item h4 {
    font-size: 1.4rem;
  }

  .business-08-carousel .business-08-item-img {
    min-height: 220px;
  }

  .business-09-carousel {
    margin-bottom: 1.5rem;
  }

  .business-09-carousel .business-09-item-img {
    min-height: 220px;
    margin: 0 0 1rem;
  }

  .business-11-carousel .business-11-item,
  .business-11-carousel .business-11-item-other {
    margin-top: 1rem;
  }

  .business-11-carousel .business-11-item-other-01 {
    margin-top: 1rem;
    padding: 2rem 0 1rem 1.5rem;
  }

  .business-10-carousel dl dt,
  .business-11-carousel dl dt {
    flex: 0 0 80px;
    max-width: 80px;
    padding: 0;
  }

  .business-10-carousel dl dd,
  .business-11-carousel dl dd {
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
}

/* ------------------------------------------------------------- */
/* 公共样式
/* ------------------------------------------------------------- */
@media (min-width: 2100px) {
  html {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: .913rem;
  }
}

@media (max-width: 561px) {
  html {
    font-size: .813rem;
    line-height: 1.6;
  }

  h3.ph-appear {
    font-size: 1rem
  }
}