:root {
  --primary-color: #0d58b3;
}
body {
  min-width: 1200px;
  margin: 0;
  padding: 0;
  font-size: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  background-color: #fff;
  font-family: 'SF Pro SC', 'SF Pro Display', 'SF Pro Icons', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
a {
  color: #000000;
  text-decoration: none;
}
img {
  object-fit: cover;
}
input,
textarea {
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
}
form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 8px 4px rgba(0, 178, 171, 0.15);
}
.thinSCroll {
  /* 滚动条样式 */
  /* 滑块样式 */
  /* 滚动条轨道样式 */
}
.thinSCroll ::-webkit-scrollbar {
  width: 2px;
}
.thinSCroll ::-webkit-scrollbar-thumb {
  background-color: #e1e2e8;
  opacity: 0.7;
  border-radius: 2px;
}
.thinSCroll ::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-radius: 2px;
}
.sm-display-b {
  display: none;
}
.sm-display-nib {
  display: inline-block;
}
.sm-display-n {
  display: block;
}
.displayn {
  display: none !important;
}
#header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  z-index: 9988;
  height: 100px;
  /* 固定高度，防止切换时布局变化 */
  transition: background-color 0.4s ease, border 0.4s ease, color 0.4s ease;
}
#header .header-pc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
#header .header-pc .hd-b {
  width: 1360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header-pc .hd-b .hd-b-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
#header .header-pc .hd-b .hd-b-logo img {
  width: 70px;
  margin-right: 8px;
  transition: all 0.4s cubic-bezier(0, 0.49, 0.58, 1);
}
#header .header-pc .hd-b .hd-b-logo span {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 2px;
}
#header .header-pc .hd-b .hd-b-nav {
  height: 100px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0, 0.49, 0.58, 1);
}
#header .header-pc .hd-b .hd-b-nav li {
  height: 100px;
  line-height: 100px;
  margin: 0 12px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0, 0.49, 0.58, 1);
}
#header .header-pc .hd-b .hd-b-nav li a {
  display: inline-block;
  color: #fff;
  transition: all 0.2s cubic-bezier(0, 0.49, 0.58, 1);
}
#header .header-pc .hd-b .hd-b-nav li:hover {
  color: var(--primary-color);
}
#header .header-pc .hd-b .hd-b-nav li:hover a {
  color: var(--primary-color);
  transform: scale(1.03);
}
#header .header-pc .hd-b .hd-b-nav .active {
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 4px solid var(--primary-color);
}
#header .header-pc .hd-b .hd-b-nav .active a {
  color: var(--primary-color);
  font-weight: 600;
}
#header .header-pc .hd-b .hd-b-nav .hvr-underline-from-center::before {
  height: 4px;
  background: var(--primary-color);
}
#header .header-pc .hd-b .hd-b-nav .active.hvr-underline-from-center::before {
  display: none;
}
#header .header-pc .hd-b .hd-b-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header-pc .hd-b .hd-b-btn .hd-search-btn {
  width: 24px;
  margin-right: 24px;
  cursor: pointer;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn:hover .hd-lb-drop {
  transform: scaleY(1);
  opacity: 1;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-i {
  width: 24px;
  margin-right: 6px;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-t {
  font-size: 16px;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-drop {
  position: absolute;
  top: 24px;
  left: -14px;
  padding: 12px 0 0;
  transition: all 0.4s cubic-bezier(0, 0.49, 0.58, 1);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-drop ul {
  border-radius: 8px;
  color: #333333;
  background-color: #ffffff;
  box-shadow: 0 0 10px #c8c8c8 !important;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-drop ul li {
  border-radius: 8px;
  overflow: hidden;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-drop ul li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-drop ul li a img {
  width: 25px;
  margin-right: 4px;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-drop ul li a span {
  font-size: 14px;
}
#header .header-pc .hd-b .hd-b-btn .hd-lang-btn .hd-lb-drop ul li a:hover {
  background-color: #eaeaea;
}
#header .header-pc-scrolled {
  color: #333333;
  background-color: #fff;
  border: 1px solid #ececec;
  height: 72px;
  /* 对应hd-b-nav的高度 */
  transition: all 0.4s ease;
  /* 确保所有属性都平滑过渡 */
}
#header .header-pc-scrolled .hd-b .hd-b-logo img {
  width: 42px;
}
#header .header-pc-scrolled .hd-b .hd-b-logo span {
  font-size: 26px;
  color: #333333;
}
#header .header-pc-scrolled .hd-b .hd-b-nav {
  height: 72px;
}
#header .header-pc-scrolled .hd-b .hd-b-nav li {
  height: 72px;
  line-height: 72px;
}
#header .header-pc-scrolled .hd-b .hd-b-nav li a {
  color: #333333;
}
#header .header-pc-wtl {
  color: #333333;
  background-color: #fff;
  border: 1px solid #ececec;
}
#header .header-pc-wtl .hd-b .hd-b-logo span {
  color: #333333;
}
#header .header-pc-wtl .hd-b .hd-b-nav li a {
  color: #333333;
}
#header .header-pc-search-hover {
  color: #333333;
  background-color: #fff;
}
#header .header-pc-search-hover .hd-b .hd-b-logo span {
  color: #333333;
}
#header .header-pc-search-hover .hd-b .hd-b-nav li a {
  color: #333333;
}
#header .search-drop {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: 152px;
  left: 0;
  padding: 24px;
  color: #000000;
  background-color: #ffffff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(10px);
  transition: all 0.6s cubic-bezier(0, 0.49, 0.58, 1);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  z-index: 3008;
}
#header .search-drop .nav-rshd-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#header .search-drop .nav-rshd-box .search-input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 0 16px 0 44px;
  font-size: 22px;
}
#header .search-drop .nav-rshd-box .search-img {
  width: 24px;
  position: absolute;
  top: 19px;
  left: 12px;
}
#header .search-drop .nav-rshd-box .srarch-drop-title {
  font-size: 14px;
  margin: 24px 0 8px;
}
#header .search-drop .nav-rshd-box ul li {
  padding: 8px 0;
  cursor: pointer;
}
#header .search-drop .nav-rshd-box ul li a {
  color: #000000;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#header .search-drop .nav-rshd-box ul li a img {
  width: 20px;
  margin: 0 8px 0 4px;
}
#header .search-drop .nav-rshd-box ul li:hover {
  background-color: #f5f6f7;
}
#header .inquiryDialog .modal-dialog {
  max-width: 600px;
}
#header .inquiryDialog .modal-dialog .modal-content {
  width: 600px;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-header {
  padding-bottom: 0;
  border: 0;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-header .btn-close {
  margin: 4px 4px 0 auto;
  font-size: 22px;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body {
  padding-top: 0;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body .dialog-content-t {
  font-size: 28px;
  font-weight: 600;
  padding: 8px 16px 16px;
  text-align: center;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body .dialog-content-c {
  font-size: 14px;
  line-height: 24px;
  padding: 0 16px 16px;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body form {
  padding: 0 16px 64px;
  font-size: 14px;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body form > div {
  margin: 16px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body form > div span {
  margin: 8px 0;
  font-size: 14px;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body form > div input {
  width: auto;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: Arial, sans-serif;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body form > div textarea {
  width: auto;
  height: 112px;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: none;
  font-family: Arial, sans-serif;
}
#header .inquiryDialog .modal-dialog .modal-content .modal-body form button {
  height: 42px;
  margin: 0 32px;
  border: 0;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: #fefefe;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
}
#footer {
  padding: 64px 0 0;
  background-color: #191919;
  color: #d1d1d1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer .footer-box .footer-t {
  width: 1360px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-bottom: 24px;
}
#footer .footer-box .footer-t .footer-t-l {
  width: 30%;
}
#footer .footer-box .footer-t .footer-t-l .footer-t-l-a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}
#footer .footer-box .footer-t .footer-t-l .footer-t-l-a img {
  width: 46px;
  margin-right: 8px;
}
#footer .footer-box .footer-t .footer-t-l .footer-t-l-a span {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}
#footer .footer-box .footer-t .footer-t-l .footer-t-l-b {
  margin-bottom: 32px;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
#footer .footer-box .footer-t .footer-t-l .footer-t-l-c a img {
  width: 48px;
  padding: 12px;
  background-color: #222222;
  border-radius: 4px;
  transition: all 0.4s ease;
}
#footer .footer-box .footer-t .footer-t-l .footer-t-l-c a img:hover {
  background-color: var(--primary-color);
}
#footer .footer-box .footer-t .footer-t-r {
  width: 60%;
  display: flex;
  position: relative;
}
#footer .footer-box .footer-t .footer-t-r > div {
  flex: 1;
  padding-right: 5%;
}
#footer .footer-box .footer-t .footer-t-r > div:last-child {
  padding-right: 0;
}
#footer .footer-box .footer-t .footer-t-r > div .footer-tr-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding: 0 0 16px;
  margin: 8px 0 24px;
  color: #fff;
}
#footer .footer-box .footer-t .footer-t-r > div .footer-tr-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  height: 2px;
  background-color: var(--primary-color);
}
#footer .footer-box .footer-t .footer-t-r > div .footer-tr-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 2px;
  background-color: #5d5d5d;
}
#footer .footer-box .footer-t .footer-t-r > div ul {
  padding: 0;
  margin: 0;
}
#footer .footer-box .footer-t .footer-t-r > div ul li {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#footer .footer-box .footer-t .footer-t-r > div ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #d1d1d1;
  line-height: 26px;
}
#footer .footer-box .footer-t .footer-t-r > div ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer .footer-box .footer-t .footer-t-r > div ul li img {
  width: 18px;
  height: 18px;
  margin: 5px 8px 0 0;
}
#footer .footer-box .footer-t .footer-t-r > div ul li span {
  color: #d1d1d1;
  font-size: 14px;
  line-height: 26px;
}
#footer .footer-box .footer-t .footer-t-r > div .footer-tr-c .footer-trc-t {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 24px;
}
#footer .footer-box .footer-t .footer-t-r > div .footer-tr-c .footer-trc-b {
  position: relative;
  cursor: pointer;
}
#footer .footer-box .footer-t .footer-t-r > div .footer-tr-c .footer-trc-b input {
  width: 100%;
  height: 50px;
  padding: 12px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
}
#footer .footer-box .footer-t .footer-t-r > div .footer-tr-c .footer-trc-b img {
  height: 50px;
  padding: 12px;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
#footer #statement {
  width: 100%;
  height: 56px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  background-color: #202020;
}
#footer #statement a {
  color: #fff;
  text-decoration: none;
}
#footer #statement a:hover {
  text-decoration: underline;
}
#pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 40px;
}
#home .home-a {
  width: 100%;
}
#home .home-a .homea-swiper {
  width: 100%;
  height: 100vh;
}
#home .home-a .homea-swiper .swiper-wrapper {
  height: 100%;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  filter: brightness(0.8);
  object-fit: cover;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c {
  max-width: 660px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-35%);
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-t {
  font-size: 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-t .homea-ct-text {
  margin: 0 6px;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-t .colorb {
  color: var(--primary-color);
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-d {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 24px;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-c {
  font-size: 24px;
  margin-bottom: 48px;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-b a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-b a > div {
  font-weight: 600;
  padding: 12px 40px;
  background-color: var(--primary-color);
  border-radius: 4px;
}
#home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-b a > div:hover {
  animation: pulse;
  animation-duration: 0.6s;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyLeft .homea-c {
  position: absolute;
  top: 50%;
  left: 220px;
  transform: translateY(-50%);
  text-align: left;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyLeft .homea-c .homea-c-b a {
  justify-content: flex-start;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyCenter .homea-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyCenter .homea-c .homea-c-t {
  justify-content: center;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyCenter .homea-c .homea-c-b a {
  justify-content: center;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyRight .homea-c {
  position: absolute;
  top: 50%;
  left: auto;
  right: 220px;
  transform: translateY(-50%);
  text-align: right;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyRight .homea-c .homea-c-t {
  justify-content: flex-end;
}
#home .home-a .homea-swiper .swiper-wrapper .justifyRight .homea-c .homea-c-b a {
  justify-content: flex-end;
}
#home .home-a .homea-swiper .swiper-pagination {
  bottom: 16px;
}
#home .home-a .homea-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 8px;
  background-color: #fff;
}
#home .home-a .homea-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
#home .home-b .home-b-box {
  margin: 80px 18%;
}
@media screen and (max-width: 1720px) {
  #home .home-b .home-b-box {
    margin: 80px 11%;
  }
}
#home .home-b .home-b-box .home-b-t {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
#home .home-b .home-b-box .home-b-t::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
}
#home .home-b .home-b-box .home-b-c {
  height: 660px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#home .home-b .home-b-box .home-b-c .home-bc-item {
  width: 32%;
  overflow: hidden;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item {
  position: relative;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item .lg-item-content {
  width: 75%;
  height: 85%;
  position: absolute;
  top: 10%;
  left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3008;
  transform: translateY(94%);
  transition: transform 0.3s ease-in-out;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item .lg-item-content .lg-item-content-t {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item .lg-item-content .lg-item-content-d {
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item .lg-item-content .lg-item-content-d img {
  width: 16px;
  margin-left: 6px;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 80%, #000 100%);
  pointer-events: none;
  border-radius: 4px;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 88, 179, 0.45) 0%, rgba(13, 88, 179, 0.75) 100%);
  pointer-events: none;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item:hover::after {
  opacity: 0;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item:hover::before {
  opacity: 1;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.lg-item:hover .lg-item-content {
  transform: translateY(0);
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit {
  width: 100%;
  height: 48%;
  position: relative;
  overflow: hidden;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit .sm-item-content {
  width: 75%;
  height: 82%;
  position: absolute;
  top: 10%;
  left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3008;
  transform: translateY(86%);
  transition: transform 0.3s ease-in-out;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit .sm-item-content .sm-item-content-t {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit .sm-item-content .sm-item-content-d {
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit .sm-item-content .sm-item-content-d img {
  width: 16px;
  margin-left: 6px;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 65%, #000 100%);
  pointer-events: none;
  border-radius: 4px;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 88, 179, 0.45) 0%, rgba(13, 88, 179, 0.75) 100%);
  pointer-events: none;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit:hover::after {
  opacity: 0;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit:hover::before {
  opacity: 1;
}
#home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit:hover .sm-item-content {
  transform: translateY(0);
}
#home .home-c {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#home .home-c .home-c-bg img {
  width: 100%;
}
#home .home-c .homec-box {
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 3008;
}
#home .home-c .homec-box .homec-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 18% 0 0;
}
@media screen and (max-width: 1720px) {
  #home .home-c .homec-box .homec-content {
    margin: 0 11% 0 0;
  }
}
#home .home-c .homec-box .homec-content .homec-l {
  width: 52%;
  height: 100%;
  position: relative;
}
#home .home-c .homec-box .homec-content .homec-l .homec-l-bg {
  width: 100%;
}
#home .home-c .homec-box .homec-content .homec-l .homec-l-content {
  width: 60%;
  height: 76%;
  position: absolute;
  top: 12%;
  right: 8%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item img {
  width: 104px;
  padding: 24px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 16px;
}
#home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item .homec-li-text {
  color: #fff;
}
#home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item .homec-li-text .homec-lit-t {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
#home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item .homec-li-text .homec-lit-c {
  font-size: 16px;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#home .home-c .homec-box .homec-content .homec-r {
  width: 44%;
  height: 100%;
}
#home .home-c .homec-box .homec-content .homec-r .homec-r-t {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
}
#home .home-c .homec-box .homec-content .homec-r .homec-r-t::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px 0 0;
}
#home .home-c .homec-box .homec-content .homec-r .homec-r-c {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 32px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}
@media screen and (max-width: 1720px) {
  #home .home-c .homec-box .homec-content .homec-r .homec-r-c {
    -webkit-line-clamp: 7;
  }
}
#home .home-c .homec-box .homec-content .homec-r .homec-r-i img {
  width: 100%;
}
#home .home-e {
  position: relative;
  z-index: 1;
  padding: 120px 0 120px;
}
#home .home-e .home-e-bg {
  background-image: url('https://d2rw3gkhyve63g.cloudfront.net/tongda-assets/img/hm5289650317.png');
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-attachment: fixed;
}
#home .home-e .home-e-bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
}
#home .home-e .home-e-t {
  width: 1110px;
  margin: 0 auto 24px;
  font-size: 64px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
#home .home-e .home-e-d {
  width: 1000px;
  margin: 0 auto 80px;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  color: #fff;
}
#home .home-e .home-e-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
#home .home-e .home-e-content .homee-c-item {
  max-width: 15%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 40px;
}
#home .home-e .home-e-content .homee-c-item img {
  width: 80px;
  margin-bottom: 24px;
}
#home .home-e .home-e-content .homee-c-item > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#home .home-e .home-e-content .homee-c-item > div .homee-ci-num {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #fff;
}
#home .home-e .home-e-content .homee-c-item > div .homee-ci-text {
  font-size: 14px;
  color: #fff;
}
#home .home-o {
  padding: 80px 0;
  background: url('https://d2rw3gkhyve63g.cloudfront.net/tongda-assets/img/hm6937687958.png') no-repeat center center / cover;
}
#home .home-o .homeo-t {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
#home .home-o .homeo-t::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto;
}
#home .home-o .homeo-c .homeo-swiper {
  width: 1200px;
  margin: 0 auto;
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  cursor: pointer;
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide:hover .slide-bg {
  filter: brightness(0.55);
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide .slide-bg {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  filter: brightness(0.35);
  transition: all 0.6s ease-in-out;
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide .slide-content {
  width: 80%;
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide .slide-content .slide-c-icon {
  width: 40px;
  margin-bottom: 32px;
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide .slide-content .slide-c-text {
  height: 78%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide .slide-content .slide-c-text .slide-ct-t {
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
#home .home-o .homeo-c .homeo-swiper .swiper-wrapper .swiper-slide .slide-content .slide-c-text .slide-ct-b {
  font-size: 16px;
}
#home .home-f {
  padding: 80px 0 40px;
}
#home .home-f .homef-t {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
#home .home-f .homef-t::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
}
#home .home-f .homef-c .homef-swiper {
  width: 1200px;
  padding-bottom: 64px;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide .slide-bg {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide .slide-item-content {
  width: 80%;
  position: absolute;
  bottom: 8%;
  left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 3008;
  transform: translateY(80px);
  transition: transform 0.3s ease-in-out;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide .slide-item-content .slide-item-content-t {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide .slide-item-content .slide-item-content-t .slide-ict-t {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  position: relative;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide .slide-item-content .slide-item-content-t .slide-ict-b {
  font-size: 14px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 2px solid #fff;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide .slide-item-content .slide-item-content-d {
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide .slide-item-content .slide-item-content-d img {
  width: 16px;
  margin-left: 6px;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, #000 100%);
  pointer-events: none;
  border-radius: 4px;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 88, 179, 0.45) 0%, rgba(13, 88, 179, 0.75) 100%);
  pointer-events: none;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide:hover::after {
  opacity: 0;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide:hover::before {
  opacity: 1;
}
#home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide:hover .slide-item-content {
  transform: translateY(0);
}
#home .home-f .homef-c .homef-swiper .swiper-pagination .swiper-pagination-bullet {
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: 0 8px;
}
#home .home-f .homef-c .homef-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
#home .home-g {
  background-color: #fafafa;
}
#home .home-g .home-g-box {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}
#home .home-g .home-g-box .homeg-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#home .home-g .home-g-box .homeg-title .homeg-t-t {
  font-size: 36px;
  font-weight: 600;
}
#home .home-g .home-g-box .homeg-title .homeg-t-t::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px 0 0;
}
#home .home-g .home-g-box .homeg-title .homeg-t-m {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .home-g .home-g-box .homeg-title .homeg-t-m img {
  width: 16px;
  margin-left: 6px;
}
#home .home-g .home-g-box .homeg-title .homeg-t-m:hover {
  color: var(--primary-color);
}
#home .home-g .home-g-box .homeg-content {
  padding: 40px 0 16px;
  position: relative;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper {
  height: 470px;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper {
  height: 410px;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide {
  background-color: #f0f4f8;
  padding: 40px 40px 0;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-l {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-l .slide-tl-t {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-l .slide-tl-t .slide-tlt-t {
  aspect-ratio: 1;
  font-size: 24px;
  font-weight: 600;
  padding: 6px;
  background-color: #e2e7ee;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 8px;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-l .slide-tl-t .slide-tlt-b {
  font-size: 16px;
  color: #666666;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-l .slide-tl-b .slide-tlb-t {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-l .slide-tl-b .slide-tlb-b {
  font-size: 18px;
  color: #666666;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-tl-line {
  width: 64px;
  border-bottom: 2px solid #dbdfe3;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-r {
  width: 65%;
  height: 100%;
  position: relative;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-r img {
  width: 100%;
  height: 220px;
  border-radius: 4px;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-r span {
  padding: 8px 24px;
  background-color: #e2e7ee;
  border-top-left-radius: 2px;
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease-in-out;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-b {
  height: 108px;
  padding: 24px 40px 0;
  margin: 40px -40px 0;
  border-top: 1px solid #dbdfe3;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-b .slide-b-t {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.4s ease-in-out;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-b .slide-b-d {
  padding: 24px 0 0;
  font-size: 14px;
  transform: translateY(-45px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide .slide-b .slide-b-d img {
  width: 16px;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide:hover .slide-t .slide-t-r span {
  background-color: var(--primary-color);
  color: #fff;
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide:hover .slide-b {
  height: 152px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide:hover .slide-b .slide-b-t {
  color: var(--primary-color);
}
#home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide:hover .slide-b-d {
  transform: translateY(0);
  opacity: 1;
}
#home .home-g .home-g-box .homeg-content .custom-nav {
  width: 100%;
  position: absolute;
  bottom: 0;
}
#home .home-g .home-g-box .homeg-content .custom-nav .custom-prev,
#home .home-g .home-g-box .homeg-content .custom-nav .custom-next {
  width: 100px;
  height: 44px;
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}
#home .home-g .home-g-box .homeg-content .custom-nav .custom-prev::after,
#home .home-g .home-g-box .homeg-content .custom-nav .custom-next::after,
#home .home-g .home-g-box .homeg-content .custom-nav .custom-prev::before,
#home .home-g .home-g-box .homeg-content .custom-nav .custom-next::before {
  font-size: 14px;
  font-weight: 600;
  font-family: swiper-icons;
  color: var(--primary-color);
}
#home .home-g .home-g-box .homeg-content .custom-nav .custom-prev:hover,
#home .home-g .home-g-box .homeg-content .custom-nav .custom-next:hover {
  color: var(--primary-color);
}
#home .home-g .home-g-box .homeg-content .custom-nav .custom-prev {
  left: 42%;
}
#home .home-g .home-g-box .homeg-content .custom-nav .custom-prev::before {
  content: 'prev';
  margin-right: 8px;
}
#home .home-g .home-g-box .homeg-content .custom-nav .custom-next {
  right: 42%;
}
#home .home-g .home-g-box .homeg-content .custom-nav .custom-next::after {
  content: 'next';
  margin-left: 8px;
}
#product .product-a {
  position: relative;
}
#product .product-a .product-a-banner {
  width: 100%;
  filter: brightness(0.65);
}
#product .product-a .product-a-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#product .product-a .product-a-content .producta-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#product .product-a .product-a-content > div {
  margin-top: 24px;
}
#product .product-a .product-a-content > div span {
  font-size: 14px;
  color: #acacac;
}
#product .product-a .product-a-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#product .product-a .product-a-content > div span a {
  color: #fff;
}
#product .product-b .productb-content {
  width: 1200px;
  padding: 80px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#product .product-b .productb-content .productb-c-l {
  width: 25%;
}
#product .product-b .productb-content .productb-c-l .productb-cl-t {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item {
  border: 0;
  background-color: transparent;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-header .accordion-button {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  background-color: transparent;
  border-bottom: 1px solid #333333;
  box-shadow: none;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-button-active {
  color: var(--primary-color) !important;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-button-active::after {
  filter: invert(30%) sepia(100%) saturate(10000%) hue-rotate(200deg);
  color: var(--primary-color) !important;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 16px 0;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-collapse .accordion-body ul li {
  font-size: 14px;
  line-height: 36px;
  color: #666666;
  cursor: pointer;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-collapse .accordion-body ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  border-radius: 50%;
  margin-right: 12px;
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-collapse .accordion-body ul li:hover {
  color: var(--primary-color);
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-collapse .accordion-body ul li:hover::before {
  border: 2px solid var(--primary-color);
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-collapse .accordion-body ul .active {
  color: var(--primary-color);
}
#product .product-b .productb-content .productb-c-l .accordion .accordion-item .accordion-collapse .accordion-body ul .active::before {
  background-color: var(--primary-color);
}
#product .product-b .productb-content .productb-c-r {
  width: 73%;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item {
  width: calc(33.33% - 24px);
  height: 268px;
  margin: 0 12px 12px;
  position: relative;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow {
  width: 100%;
  height: 236px;
  border-radius: 12px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow .productb-cri-i {
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 16px;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow .productb-cri-i img {
  width: 100%;
  height: 164px;
  border-radius: 8px;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow .productb-cri-t {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow .productb-cri-t .productb-crit-t {
  font-size: 18px;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all 0.4s ease-in-out;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow .productb-cri-t .productb-crit-b {
  font-size: 14px;
  transform: translateY(-32px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  display: flex;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow .productb-cri-t .productb-crit-b .productb-critb-icon {
  width: 14px;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item:hover .productb-cri-shadow {
  height: 268px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item:hover .productb-cri-shadow .productb-cri-t .productb-crit-t {
  color: var(--primary-color);
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item:hover .productb-cri-shadow .productb-cri-t .productb-crit-b {
  transform: translateY(0);
  opacity: 1;
}
#product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item:hover .productb-cri-shadow .productb-cri-t .productb-crit-b .productb-critb-icon {
  transform: translateX(4px);
}
#product-details .details-a {
  position: relative;
}
#product-details .details-a .details-a-banner {
  width: 100%;
  filter: brightness(0.65);
}
#product-details .details-a .details-a-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#product-details .details-a .details-a-content .details-a-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#product-details .details-a .details-a-content > div {
  margin-top: 24px;
}
#product-details .details-a .details-a-content > div span {
  font-size: 14px;
  color: #acacac;
}
#product-details .details-a .details-a-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#product-details .details-a .details-a-content > div span a {
  color: #fff;
}
#product-details .details-b {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#product-details .details-b .detailsb-l {
  width: 48%;
}
#product-details .details-b .detailsb-l img {
  width: 100%;
  border-radius: 16px;
}
#product-details .details-b .detailsb-r {
  width: 48%;
}
#product-details .details-b .detailsb-r .detailsb-r-t {
  margin-bottom: 24px;
}
#product-details .details-b .detailsb-r .detailsb-r-t .detailsb-rt-t {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#product-details .details-b .detailsb-r .detailsb-r-b .detailsb-rb-t {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
#product-details .details-b .detailsb-r .detailsb-r-b .detailsb-rb-c {
  font-size: 16px;
  color: #666666;
}
#product-details .details-c {
  background-color: #f9f9f9;
}
#product-details .details-c .details-c-box {
  width: 1200px;
  padding: 40px 0;
  margin: 0 auto;
}
#product-details .details-c .details-c-box .detailsc-t {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
#product-details .details-c .details-c-box .detailsc-c {
  position: relative;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper {
  width: 1200px;
  padding-bottom: 16px;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide {
  padding-bottom: 16px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide .slide-i {
  width: 100%;
  margin-bottom: 16px;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide .slide-i img {
  width: 100%;
  height: 282px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide .slide-t {
  width: 88%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-t {
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide:hover .slide-t {
  color: #fff;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide:hover .slide-t .slide-t-t {
  color: #fff;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-pagination {
  bottom: 0;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background-color: #666666;
}
#product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev,
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next {
  width: 44px;
  height: 44px;
  text-align: center;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev::after,
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next::after {
  font-size: 16px;
  font-family: swiper-icons;
  color: var(--primary-color);
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev:hover,
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next:hover {
  background-color: var(--primary-color);
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev:hover::after,
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next:hover::after {
  color: #fff;
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev {
  left: -64px;
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev::after {
  content: 'prev';
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next {
  right: -64px;
}
#product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next::after {
  content: 'next';
}
#about .about-a {
  position: relative;
}
#about .about-a .about-a-banner {
  width: 100%;
  filter: brightness(0.65);
}
#about .about-a .about-a-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#about .about-a .about-a-content .abouta-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#about .about-a .about-a-content > div {
  margin-top: 24px;
}
#about .about-a .about-a-content > div span {
  font-size: 14px;
  color: #acacac;
}
#about .about-a .about-a-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#about .about-a .about-a-content > div span a {
  color: #fff;
}
#about .about-b {
  position: relative;
}
#about .about-b .about-b-bg {
  width: 100%;
  height: 1080px;
}
#about .about-b .aboutb-box {
  width: 1200px;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about .about-b .aboutb-box .aboutb-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
}
#about .about-b .aboutb-box .aboutb-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  margin-top: 12px;
}
#about .about-b .aboutb-box .aboutb-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#about .about-b .aboutb-box .aboutb-content .aboutb-item {
  width: 46%;
  font-size: 14px;
}
#about .about-b .aboutb-box .aboutb-content .aboutb-item span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}
#about .about-b .aboutb-box .aboutb-content .aboutb-item img {
  width: 100%;
  border-radius: 4px;
}
#about .about-b .aboutb-box .aboutb-content .aboutb-item-l img {
  margin-top: 24px;
}
#about .about-b .aboutb-box .aboutb-content .aboutb-item-r img {
  margin-bottom: 24px;
}
#about .about-c {
  position: relative;
  z-index: 1;
  padding: 120px 0 120px;
}
#about .about-c .about-c-bg {
  background-image: url('https://d2rw3gkhyve63g.cloudfront.net/tongda-assets/img/hm5289650317.png');
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-attachment: fixed;
}
#about .about-c .about-c-bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
}
#about .about-c .about-c-t {
  width: 1110px;
  margin: 0 auto;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  color: #fff;
}
#about .about-c .about-c-d {
  width: 1000px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 80px;
  text-align: center;
  color: #fff;
}
#about .about-c .about-c-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
#about .about-c .about-c-content .aboutc-c-item {
  max-width: 15%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 40px;
}
#about .about-c .about-c-content .aboutc-c-item img {
  width: 80px;
  margin-bottom: 24px;
}
#about .about-c .about-c-content .aboutc-c-item > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#about .about-c .about-c-content .aboutc-c-item > div .aboutc-ci-num {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #fff;
}
#about .about-c .about-c-content .aboutc-c-item > div .aboutc-ci-text {
  font-size: 14px;
  color: #fff;
}
#about .about-d {
  position: relative;
}
#about .about-d .about-d-bg {
  width: 100%;
  height: 1350px;
}
#about .about-d .about-d-content {
  width: 1000px;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about .about-d .about-d-content .aboutd-t {
  margin-bottom: 40px;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}
#about .about-d .about-d-content .aboutd-t::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
}
#about .about-d .about-d-content .aboutd-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
#about .about-d .about-d-content .aboutd-c img {
  width: calc(33.33% - 80px);
  margin: 0 40px 40px;
  cursor: pointer;
  transition: all 0.8s ease-in-out;
}
#about .about-d .about-d-content .aboutd-c img:hover {
  transform: scale(2);
}
#about .about-e {
  padding: 80px 0 0;
}
#about .about-e .about-e-ttile {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
#about .about-e .about-e-ttile::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
}
#about .about-e .about-e-content .aboute-swiper {
  padding: 40px 0;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide .slide-i {
  width: 100%;
  margin-bottom: 16px;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide .slide-i img {
  width: 100%;
  aspect-ratio: 1.5384;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide .slide-t {
  width: 85%;
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide .slide-t .slide-t-t {
  font-size: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide:hover .slide-t {
  color: #fff;
}
#about .about-e .about-e-content .aboute-swiper .swiper-wrapper .swiper-slide:hover .slide-t .slide-t-t {
  color: #fff;
}
#about .about-f {
  padding: 40px 0 72px;
}
#about .about-f .about-f-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
#about .about-f .about-f-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
}
#about .about-f .about-f-content {
  padding: 8px 0;
}
#about .about-f .about-f-content .aboutf-a-swiper,
#about .about-f .about-f-content .aboutf-b-swiper {
  margin-top: 32px;
}
#about .about-f .about-f-content .aboutf-a-swiper .swiper-wrapper,
#about .about-f .about-f-content .aboutf-b-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
#about .about-f .about-f-content .aboutf-a-swiper .swiper-wrapper .swiper-slide img,
#about .about-f .about-f-content .aboutf-b-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#case .case-a {
  position: relative;
}
#case .case-a .case-a-banner {
  width: 100%;
  filter: brightness(0.65);
}
#case .case-a .case-a-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#case .case-a .case-a-content .casea-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#case .case-a .case-a-content > div {
  margin-top: 24px;
}
#case .case-a .case-a-content > div span {
  font-size: 14px;
  color: #acacac;
}
#case .case-a .case-a-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#case .case-a .case-a-content > div span a {
  color: #fff;
}
#case .case-b .caseb-content {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
#case .case-b .caseb-content .caseb-item {
  width: calc(33.33% - 24px);
  margin: 0 12px 24px;
  position: relative;
  overflow: hidden;
}
#case .case-b .caseb-content .caseb-item .caseb-item-bg {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}
#case .case-b .caseb-content .caseb-item .caseb-item-content {
  width: 80%;
  position: absolute;
  bottom: 8%;
  left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 3008;
  transform: translateY(80px);
  transition: transform 0.3s ease-in-out;
}
#case .case-b .caseb-content .caseb-item .caseb-item-content .caseb-item-content-t {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
}
#case .case-b .caseb-content .caseb-item .caseb-item-content .caseb-item-content-t .caseb-ict-t {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  position: relative;
}
#case .case-b .caseb-content .caseb-item .caseb-item-content .caseb-item-content-t .caseb-ict-b {
  font-size: 14px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 2px solid #fff;
}
#case .case-b .caseb-content .caseb-item .caseb-item-content .caseb-item-content-d {
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#case .case-b .caseb-content .caseb-item .caseb-item-content .caseb-item-content-d img {
  width: 16px;
  margin-left: 6px;
}
#case .case-b .caseb-content .caseb-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, #000 100%);
  pointer-events: none;
  border-radius: 4px;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
#case .case-b .caseb-content .caseb-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 88, 179, 0.45) 0%, rgba(13, 88, 179, 0.75) 100%);
  pointer-events: none;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
#case .case-b .caseb-content .caseb-item:hover::after {
  opacity: 0;
}
#case .case-b .caseb-content .caseb-item:hover::before {
  opacity: 1;
}
#case .case-b .caseb-content .caseb-item:hover .caseb-item-content {
  transform: translateY(0);
}
#case-details .case-details-a {
  position: relative;
}
#case-details .case-details-a .case-da-banner {
  width: 100%;
  filter: brightness(0.65);
}
#case-details .case-details-a .case-da-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#case-details .case-details-a .case-da-content .case-da-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#case-details .case-details-a .case-da-content > div {
  margin-top: 24px;
}
#case-details .case-details-a .case-da-content > div span {
  font-size: 14px;
  color: #acacac;
}
#case-details .case-details-a .case-da-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#case-details .case-details-a .case-da-content > div span a {
  color: #fff;
}
#case-details .case-details-b {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#case-details .case-details-b .case-db-l {
  width: 72%;
  font-size: 16px;
}
#case-details .case-details-b .case-db-r {
  width: 25%;
  font-size: 16px;
}
#case-details .case-details-b .case-db-r .case-dbr-t {
  padding: 0 24px 1px;
  margin-bottom: 24px;
  background-color: #f9f9fc;
  border-radius: 8px;
}
#case-details .case-details-b .case-db-r .case-dbr-t .case-dbrt-title {
  padding: 24px;
  margin: 0 -24px 24px;
  border-bottom: 1px solid #e5e5e5;
}
#case-details .case-details-b .case-db-r .case-dbr-t .case-dbrt-title span {
  font-size: 20px;
  font-weight: 600;
  padding-left: 12px;
  border-left: 4px solid var(--primary-color);
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li {
  margin-bottom: 24px;
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li .case-dbrt-li-l {
  width: 60%;
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li .case-dbrt-li-l img {
  width: 100%;
  height: 96px;
  border-radius: 4px;
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li .case-dbrt-li-r {
  width: 35%;
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li .case-dbrt-li-r .case-dbrtlr-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li .case-dbrt-li-r .case-dbrtlr-desc {
  font-size: 14px;
  color: var(--primary-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#case-details .case-details-b .case-db-r .case-dbr-t ul li .case-dbrt-li-r .case-dbrtlr-desc img {
  width: 16px;
  margin-left: 4px;
}
#case-details .case-details-b .case-db-r .case-dbr-b {
  padding: 0 24px 1px;
  margin-bottom: 24px;
  background-color: #f9f9fc;
  border-radius: 8px;
}
#case-details .case-details-b .case-db-r .case-dbr-b .case-dbrb-title {
  padding: 24px;
  margin: 0 -24px 24px;
  border-bottom: 1px solid #e5e5e5;
}
#case-details .case-details-b .case-db-r .case-dbr-b .case-dbrb-title span {
  font-size: 20px;
  font-weight: 600;
  padding-left: 12px;
  border-left: 4px solid var(--primary-color);
}
#case-details .case-details-b .case-db-r .case-dbr-b ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}
#case-details .case-details-b .case-db-r .case-dbr-b ul li .case-dbrb-li-l {
  margin-right: 16px;
}
#case-details .case-details-b .case-db-r .case-dbr-b ul li .case-dbrb-li-l img {
  width: 56px;
  padding: 16px;
  background-color: #fff;
  border-radius: 50%;
}
#case-details .case-details-b .case-db-r .case-dbr-b ul li .case-dbrb-li-r {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#case-details .case-details-b .case-db-r .case-dbr-b ul li .case-dbrb-li-r .case-dbrblr-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
#case-details .case-details-b .case-db-r .case-dbr-b ul li .case-dbrb-li-r .case-dbrblr-cont {
  font-size: 14px;
  color: #666666;
}
#news .news-a {
  position: relative;
}
#news .news-a .news-a-banner {
  width: 100%;
  filter: brightness(0.65);
}
#news .news-a .news-a-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#news .news-a .news-a-content .newsa-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#news .news-a .news-a-content > div {
  margin-top: 24px;
}
#news .news-a .news-a-content > div span {
  font-size: 14px;
  color: #acacac;
}
#news .news-a .news-a-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#news .news-a .news-a-content > div span a {
  color: #fff;
}
#news .news-b .newsb-content {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 0;
}
#news .news-b .newsb-content .newsb-item {
  background-color: #f0f4f8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.4s ease-in-out;
}
#news .news-b .newsb-content .newsb-item:hover {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
#news .news-b .newsb-content .newsb-item:hover .newsb-i-l .newsb-il-tips {
  background-color: var(--primary-color);
  color: #fff;
}
#news .news-b .newsb-content .newsb-item:hover .newsb-i-r .newsb-ir-t {
  color: var(--primary-color);
}
#news .news-b .newsb-content .newsb-item a {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-l {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-l .newsb-ill-t {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-l .newsb-ill-t .newsb-illt-t {
  aspect-ratio: 1;
  font-size: 24px;
  font-weight: 600;
  padding: 6px;
  background-color: #e2e7ee;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 8px;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-l .newsb-ill-t .newsb-illt-b {
  font-size: 16px;
  color: #666666;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-l .newsb-ill-line {
  width: 64px;
  border-bottom: 2px solid #dbdfe3;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-l .newsb-ill-b .newsb-illb-t {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-l .newsb-ill-b .newsb-illb-b {
  font-size: 18px;
  color: #666666;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-r {
  width: 65%;
  border-radius: 8px;
}
#news .news-b .newsb-content .newsb-item .newsb-i-l .newsb-il-tips {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  padding: 6px 22px;
  background-color: #e2e7ee;
  border-top-left-radius: 4px;
  transition: all 0.4s ease-in-out;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r {
  width: 55%;
  padding: 16px 24px;
  position: relative;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r .newsb-ir-i {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r .newsb-ir-i img {
  width: 16px;
  margin-right: 4px;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r .newsb-ir-i span {
  font-size: 14px;
  color: #666666;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r .newsb-ir-t {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.4s ease-in-out;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r .newsb-ir-c {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r .newsb-ir-b {
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 0;
}
#news .news-b .newsb-content .newsb-item .newsb-i-r .newsb-ir-b img {
  width: 16px;
  margin-left: 4px;
}
#news-details .news-details-a {
  position: relative;
}
#news-details .news-details-a .news-da-banner {
  width: 100%;
  filter: brightness(0.65);
}
#news-details .news-details-a .news-da-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#news-details .news-details-a .news-da-content .news-da-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#news-details .news-details-a .news-da-content > div {
  margin-top: 24px;
}
#news-details .news-details-a .news-da-content > div span {
  font-size: 14px;
  color: #acacac;
}
#news-details .news-details-a .news-da-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#news-details .news-details-a .news-da-content > div span a {
  color: #fff;
}
#news-details .news-details-b {
  width: 1200px;
  margin: 80px auto;
  font-size: 16px;
}
#news-details .news-details-b .news-db-a {
  width: 100%;
  max-height: 560px;
  margin-bottom: 24px;
  border-radius: 8px;
}
#news-details .news-details-b .news-db-b {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
#news-details .news-details-b .news-db-c {
  width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
#news-details .news-details-b .news-db-c .news-dbc-l {
  max-width: 45%;
  font-size: 18px;
}
#news-details .news-details-b .news-db-c .news-dbc-l .news-dbc-t {
  color: #A5AAB0;
  margin-bottom: 8px;
}
#news-details .news-details-b .news-db-c .news-dbc-r {
  max-width: 45%;
  font-size: 18px;
}
#news-details .news-details-b .news-db-c .news-dbc-r .news-dbc-t {
  color: #A5AAB0;
  margin-bottom: 8px;
}
#news-details .news-details-b .news-db-c .news-dbc-line {
  height: 60px;
  border-right: 1px solid #DBDFE3;
}
#contact .contact-a {
  position: relative;
}
#contact .contact-a .contact-a-banner {
  width: 100%;
  filter: brightness(0.65);
}
#contact .contact-a .contact-a-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#contact .contact-a .contact-a-content .contacta-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#contact .contact-a .contact-a-content > div {
  margin-top: 24px;
}
#contact .contact-a .contact-a-content > div span {
  font-size: 14px;
  color: #acacac;
}
#contact .contact-a .contact-a-content > div span .banner-line {
  margin: 0 8px;
  color: #fff;
}
#contact .contact-a .contact-a-content > div span a {
  color: #fff;
}
#contact .contact-b .contactb-content {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#contact .contact-b .contactb-content .contactb-item {
  width: 31%;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contact .contact-b .contactb-content .contactb-item .contactb-t-l {
  margin-bottom: 12px;
}
#contact .contact-b .contactb-content .contactb-item .contactb-t-l img {
  width: 86px;
}
#contact .contact-b .contactb-content .contactb-item .contactb-t-r .contactb-tr-t {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}
#contact .contact-b .contactb-content .contactb-item .contactb-t-r .contactb-tr-c {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}
#contact .contact-b .contactb-content .contactb-item .contactb-t-r .contactb-tr-c span {
  display: block;
}
#contact .contact-c {
  position: relative;
}
#contact .contact-c .contact-c-bg {
  width: 100%;
  height: 640px;
}
#contact .contact-c .contactc-content {
  width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#contact .contact-c .contactc-content .contactc-c-t {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}
#contact .contact-c .contactc-content .contactc-c-t::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
}
#contact .contact-c .contactc-content .contactc-c-b form .contactc-c-item {
  margin-bottom: 24px;
  font-size: 14px;
}
#contact .contact-c .contactc-content .contactc-c-b form .contactc-c-item input {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  background-color: #fafafa;
  border: 1px solid #dbdfe3;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  transition: all 0.4s ease-in-out;
}
#contact .contact-c .contactc-content .contactc-c-b form .contactc-c-item input:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0px 0px 12px 0px rgba(13, 88, 179, 0.25);
}
#contact .contact-c .contactc-content .contactc-c-b form .contactc-c-item textarea {
  width: 100%;
  height: 112px;
  padding: 12px;
  background-color: #fafafa;
  border: 1px solid #dbdfe3;
  border-radius: 4px;
  resize: none;
  font-family: Arial, sans-serif;
  transition: all 0.4s ease-in-out;
}
#contact .contact-c .contactc-content .contactc-c-b form .contactc-c-item textarea:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0px 0px 20px 0px rgba(13, 88, 179, 0.1);
}
#contact .contact-c .contactc-content .contactc-c-b form .two-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contact .contact-c .contactc-content .contactc-c-b form .two-col input {
  width: 48%;
}
#contact .contact-c .contactc-content .contactc-c-b form .contactc-c-sub button {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--primary-color);
  padding: 12px 80px;
  border: 0;
  border-radius: 24px;
}
#contact .contact-d {
  position: relative;
}
#thanks .thanks-a .thanks-a-banner {
  width: 100%;
  filter: brightness(0.65);
}
#thanks .thanks-b {
  margin: 0 auto;
  padding: 120px 0;
  font-size: 64px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  body {
    min-width: 100%;
  }
  .sm-display-b {
    display: block;
  }
  .sm-display-nib {
    display: none !important;
  }
  .sm-display-n {
    display: none !important;
  }
  #header .header-mb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    transition: all 0.4s ease-in-out;
  }
  #header .header-mb .header-mb-l {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header .header-mb .header-mb-l .header-mb-menu {
    width: 30px;
    margin-right: 16px;
  }
  #header .header-mb .header-mb-l a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  #header .header-mb .header-mb-l .header-mb-logo {
    width: 34px;
    margin-right: 8px;
  }
  #header .header-mb .header-mb-l span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  #header .header-mb .header-mb-r {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header .header-mb .header-mb-r .header-mb-search {
    width: 24px;
  }
  #header .header-mb .header-mb-r .header-mb-lang {
    width: 24px;
    margin-left: 16px;
  }
  #header .header-mb-scrolled {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
  }
  #header .header-mb-scrolled .header-mb-l a {
    color: #333;
  }
  #header #offcanvasMenu,
  #header #offcanvasLang {
    width: 65%;
    font-size: 16px;
  }
  #header #offcanvasMenu .offcanvas-header,
  #header #offcanvasLang .offcanvas-header {
    font-size: 18px;
  }
  #header #offcanvasMenu .offcanvas-body ul li,
  #header #offcanvasLang .offcanvas-body ul li {
    padding: 8px 0;
  }
  #header #offcanvasMenu .offcanvas-body ul li img,
  #header #offcanvasLang .offcanvas-body ul li img {
    width: 25px;
    margin-right: 4px;
  }
  #header #offcanvasMenu .offcanvas-body ul .active,
  #header #offcanvasLang .offcanvas-body ul .active {
    font-weight: 600;
  }
  #header #offcanvasSearch {
    height: max-content;
    font-size: 16px;
  }
  #header #offcanvasSearch .sm-search-box {
    position: relative;
  }
  #header #offcanvasSearch .sm-search-box .search-icon {
    width: 20px;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  #header #offcanvasSearch .sm-search-box .search-input {
    width: 100%;
    padding: 0 32px 0 0;
    border-bottom: 1px solid #dddddd;
  }
  #header #offcanvasSearch .sm-search-box .srarch-drop-title {
    font-size: 14px;
    margin: 24px 0 8px;
  }
  #header #offcanvasSearch .sm-search-box ul li {
    padding: 8px 0;
  }
  #header #offcanvasSearch .sm-search-box ul li img {
    width: 16px;
  }
  #footer {
    padding: 32px 0 4px;
    margin-top: -1px;
  }
  #footer .footer-box {
    padding: 0 24px 24px;
    margin: 0;
  }
  #footer .footer-box .footer-t {
    width: 100%;
    flex-direction: column;
    padding: 0;
  }
  #footer .footer-box .footer-t .footer-t-l {
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }
  #footer .footer-box .footer-t .footer-t-l .footer-t-l-a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
  }
  #footer .footer-box .footer-t .footer-t-l .footer-t-l-b {
    margin-bottom: 16px;
  }
  #footer .footer-box .footer-t .footer-t-l .footer-t-l-c a img {
    width: 40px;
    padding: 8px;
  }
  #footer .footer-box .footer-t .footer-t-l .footer-t-l-c a img:hover {
    transform: none;
  }
  #footer .footer-box .footer-t .footer-t-r {
    width: 100%;
    padding-left: 0;
    flex-direction: column;
  }
  #footer .footer-box .footer-t .footer-t-r > div .footer-tr-title {
    margin: 8px 0 0;
  }
  #footer .footer-box .footer-t .footer-t-r > div .footer-tr-title::after {
    height: 0;
  }
  #footer .footer-box .footer-t .footer-t-r > div .footer-tr-title::before {
    height: 0;
  }
  #footer .footer-box .footer-t .footer-t-r > div ul li {
    margin-bottom: 12px;
  }
  #footer #statement {
    height: 48px;
    line-height: 48px;
  }
  #pagination {
    padding: 8px 0 24px;
  }
  #pagination ul li a {
    font-size: 14px;
  }
  #pagination ul li span {
    font-size: 14px;
  }
  #home {
    padding-top: 0;
  }
  #home .home-a .homea-swiper .swiper-wrapper .swiper-slide img {
    height: 100vh;
  }
  #home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c {
    width: 75%;
  }
  #home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-t {
    font-size: 16px;
    line-height: 36px;
  }
  #home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-d {
    font-size: 32px;
  }
  #home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-c {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
  }
  #home .home-a .homea-swiper .swiper-wrapper .swiper-slide .homea-c .homea-c-b a > div {
    padding: 8px 24px;
  }
  #home .home-a .homea-swiper .swiper-wrapper .justifyLeft .homea-c {
    left: 16px;
    transform: translateY(-50%);
  }
  #home .home-a .homea-swiper .swiper-wrapper .justifyCenter .homea-c {
    transform: translateX(-50%) translateY(-50%);
  }
  #home .home-a .homea-swiper .swiper-wrapper .justifyRight .homea-c {
    right: 16px;
    transform: translateY(-50%);
  }
  #home .home-b .home-b-box {
    width: 100%;
    margin: 24px 0;
  }
  #home .home-b .home-b-box .home-b-t {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #home .home-b .home-b-box .home-b-t::after {
    width: 32px;
  }
  #home .home-b .home-b-box .home-b-c {
    height: auto;
    padding: 0 16px;
    flex-direction: column;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item {
    width: 100%;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.lg-item {
    margin-bottom: 24px;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.lg-item img {
    height: 320px;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.lg-item .lg-item-content {
    width: 90%;
    height: auto;
    top: auto;
    bottom: 16px;
    left: 5%;
    transform: translateY(0);
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.lg-item .lg-item-content .lg-item-content-t {
    -webkit-line-clamp: 3;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.lg-item:hover::before {
    opacity: 0;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.lg-item:hover::after {
    opacity: 1;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit {
    margin-bottom: 24px;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit img {
    height: 320px;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit .sm-item-content {
    width: 90%;
    height: auto;
    top: auto;
    bottom: 16px;
    left: 5%;
    transform: translateY(0);
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit .sm-item-content .sm-item-content-t {
    -webkit-line-clamp: 3;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit:hover::before {
    opacity: 0;
  }
  #home .home-b .home-b-box .home-b-c .home-bc-item.sm-item .sm-item-unit:hover::after {
    opacity: 1;
  }
  #home .home-c .home-c-bg {
    height: 520px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  #home .home-c .home-c-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  #home .home-c .homec-box {
    position: static;
  }
  #home .home-c .homec-box .homec-content {
    margin: 0;
    flex-direction: column;
  }
  #home .home-c .homec-box .homec-content .homec-l {
    width: 100%;
  }
  #home .home-c .homec-box .homec-content .homec-l .homec-l-bg {
    height: 580px;
  }
  #home .home-c .homec-box .homec-content .homec-l .homec-l-content {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    justify-content: space-evenly;
  }
  #home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item img {
    width: 80px;
    padding: 20px;
  }
  #home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item .homec-li-text .homec-lit-t {
    font-size: 18px;
    margin-bottom: 8px;
  }
  #home .home-c .homec-box .homec-content .homec-l .homec-l-content .homec-l-item .homec-li-text .homec-lit-c {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }
  #home .home-c .homec-box .homec-content .homec-r {
    width: 100%;
    padding: 0 16px;
    transform: translateY(24px);
  }
  #home .home-c .homec-box .homec-content .homec-r .homec-r-t {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #home .home-c .homec-box .homec-content .homec-r .homec-r-t::after {
    width: 32px;
  }
  #home .home-c .homec-box .homec-content .homec-r .homec-r-c {
    -webkit-line-clamp: none;
  }
  #home .home-e {
    padding: 40px 0;
  }
  #home .home-e .home-e-t {
    width: 92%;
    font-size: 32px;
    margin: 24px auto;
  }
  #home .home-e .home-e-d {
    width: 82%;
    margin: 0 auto 40px;
  }
  #home .home-e .home-e-content {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
  #home .home-e .home-e-content .homee-c-item {
    max-width: 90%;
    width: 90%;
    margin: 0 auto 40px;
  }
  #home .home-e .home-e-content .homee-c-item img {
    width: 56px;
    margin-bottom: 8px;
  }
  #home .home-o {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
  }
  #home .home-o .homeo-t {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #home .home-o .homeo-t::after {
    width: 32px;
    margin-top: 12px;
  }
  #home .home-o .homeo-c .homeo-swiper {
    width: 100%;
    padding: 0 16px;
  }
  #home .home-f {
    padding: 40px 0;
  }
  #home .home-f .homef-t {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #home .home-f .homef-t::after {
    width: 32px;
  }
  #home .home-f .homef-c .homef-swiper {
    width: 100%;
  }
  #home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide {
    width: 90% !important;
    margin: 0 5% !important;
  }
  #home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide a .slide-item-content {
    transform: translateY(0);
    bottom: 16px;
  }
  #home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide a .slide-item-content .slide-item-content-t {
    margin: 0;
  }
  #home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide:hover::before {
    opacity: 0;
  }
  #home .home-f .homef-c .homef-swiper .swiper-wrapper .swiper-slide:hover::after {
    opacity: 1;
  }
  #home .home-g .home-g-box {
    width: 100%;
    padding: 24px 0 48px;
  }
  #home .home-g .home-g-box .homeg-title {
    padding: 0 16px;
  }
  #home .home-g .home-g-box .homeg-title .homeg-t-t {
    font-size: 24px;
  }
  #home .home-g .home-g-box .homeg-title .homeg-t-t::after {
    width: 32px;
  }
  #home .home-g .home-g-box .homeg-content {
    padding: 40px 16px;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper {
    height: auto;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper {
    height: auto;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide {
    padding: 24px 24px 8px;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide a .slide-t {
    flex-direction: column;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide a .slide-t .slide-t-l {
    width: 100%;
    height: 192px;
    margin-bottom: 24px;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide a .slide-t .slide-t-r {
    width: 100%;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide a .slide-b .slide-b-t {
    font-size: 18px;
    -webkit-line-clamp: 3;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide:hover .slide-b {
    height: 108px;
    background-color: transparent;
    box-shadow: none;
  }
  #home .home-g .home-g-box .homeg-content .homeg-swiper .swiper-wrapper .swiper-slide:hover .slide-b .slide-b-t {
    color: #333;
  }
  #home .home-g .home-g-box .homeg-content .custom-nav {
    left: 0;
  }
  #home .home-g .home-g-box .homeg-content .custom-nav .custom-prev {
    left: 26%;
  }
  #home .home-g .home-g-box .homeg-content .custom-nav .custom-next {
    right: 26%;
  }
  #product .product-a .product-a-banner {
    height: 380px;
  }
  #product .product-a .product-a-content {
    transform: translate(-50%, -40%);
  }
  #product .product-a .product-a-content .producta-title {
    font-size: 36px;
  }
  #product .product-a .product-a-content > div {
    margin-top: 16px;
  }
  #product .product-b .productb-content {
    width: 100%;
    padding: 24px 16px;
    flex-direction: column;
  }
  #product .product-b .productb-content .productb-c-l {
    width: 100%;
    margin-bottom: 24px;
  }
  #product .product-b .productb-content .productb-c-r {
    width: 100%;
  }
  #product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item {
    width: 100%;
    height: auto;
    margin: 0 0 16px;
  }
  #product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow {
    height: auto;
  }
  #product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow a .productb-cri-i img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.4457;
  }
  #product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item .productb-cri-shadow a .productb-cri-t .productb-crit-t {
    margin-bottom: 0;
  }
  #product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item:hover .productb-cri-shadow {
    height: auto;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  }
  #product .product-b .productb-content .productb-c-r .productb-cr-list .productb-cr-item:hover .productb-cri-shadow .productb-cri-t .productb-crit-t {
    color: #333;
  }
  #product-details .details-a .details-a-banner {
    height: 380px;
  }
  #product-details .details-a .details-a-content {
    transform: translate(-50%, -40%);
  }
  #product-details .details-a .details-a-content .details-a-title {
    font-size: 36px;
  }
  #product-details .details-a .details-a-content > div {
    margin-top: 16px;
  }
  #product-details .details-b {
    width: 100%;
    padding: 24px 16px;
    flex-direction: column;
  }
  #product-details .details-b .detailsb-l {
    width: 100%;
    margin-bottom: 24px;
  }
  #product-details .details-b .detailsb-r {
    width: 100%;
  }
  #product-details .details-b .detailsb-r .detailsb-r-t .detailsb-rt-t {
    font-size: 24px;
  }
  #product-details .details-b .detailsb-r .detailsb-r-b .detailsb-rb-t {
    margin-bottom: 16px;
  }
  #product-details .details-c .details-c-box {
    width: 100%;
    padding: 24px 0 40px;
  }
  #product-details .details-c .details-c-box .detailsc-t {
    font-size: 20px;
    margin-bottom: 24px;
  }
  #product-details .details-c .details-c-box .detailsc-c {
    padding: 0 24px 40px;
  }
  #product-details .details-c .details-c-box .detailsc-c .detailsc-swiper {
    width: 100%;
  }
  #product-details .details-c .details-c-box .detailsc-c .detailsc-swiper .swiper-wrapper .swiper-slide .slide-i img {
    height: 306px;
  }
  #product-details .details-c .details-c-box .detailsc-c .custom-nav {
    width: calc(100% - 48px);
    top: auto;
    bottom: 16px;
    transform: none;
  }
  #product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev {
    left: 128px;
    bottom: 0;
  }
  #product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next {
    right: 128px;
    bottom: 0;
  }
  #about .about-a .about-a-banner {
    height: 380px;
  }
  #about .about-a .about-a-content {
    transform: translate(-50%, -40%);
  }
  #about .about-a .about-a-content .abouta-title {
    font-size: 36px;
  }
  #about .about-a .about-a-content > div {
    margin-top: 16px;
  }
  #about .about-b .about-b-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #about .about-b .aboutb-box {
    width: 100%;
    padding: 24px 16px;
    position: static;
    transform: none;
  }
  #about .about-b .aboutb-box .aboutb-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  #about .about-b .aboutb-box .aboutb-title::after {
    width: 32px;
    margin: 12px auto 0;
  }
  #about .about-b .aboutb-box .aboutb-content {
    flex-direction: column;
  }
  #about .about-b .aboutb-box .aboutb-content .aboutb-item {
    width: 100%;
  }
  #about .about-b .aboutb-box .aboutb-content .aboutb-item-r {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #about .about-b .aboutb-box .aboutb-content .aboutb-item-r img {
    order: 2;
    margin: 0;
  }
  #about .about-b .aboutb-box .aboutb-content .aboutb-item-r span {
    order: 1;
    margin: 24px 0;
  }
  #about .about-c {
    padding: 40px 0;
  }
  #about .about-c .about-c-t {
    width: 92%;
    font-size: 32px;
    margin: 24px auto;
  }
  #about .about-c .about-c-d {
    width: 82%;
    margin: 0 auto 40px;
  }
  #about .about-c .about-c-content {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
  #about .about-c .about-c-content .aboutc-c-item {
    max-width: 90%;
    width: 90%;
    margin: 0 auto 40px;
  }
  #about .about-c .about-c-content .aboutc-c-item img {
    width: 56px;
    margin-bottom: 8px;
  }
  #about .about-d .about-d-bg {
    height: 508px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #about .about-d .about-d-content {
    width: 100%;
    height: 100%;
  }
  #about .about-d .about-d-content .aboutd-t {
    font-size: 24px;
    margin: 40px 16px 24px;
  }
  #about .about-d .about-d-swiper .aboutd-t {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0;
    text-align: center;
  }
  #about .about-d .about-d-swiper .aboutd-t::after {
    content: '';
    display: block;
    width: 32px;
    height: 4px;
    background-color: #000000;
    margin: 12px auto 0;
  }
  #about .about-d .about-d-swiper .aboutd-swiper {
    padding: 0 16px;
  }
  #about .about-d .about-d-swiper .aboutd-swiper .swiper-wrapper .swiper-slide {
    height: 432px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #about .about-d .about-d-swiper .aboutd-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
  #about .about-e {
    padding: 40px 0 0;
  }
  #about .about-e .about-e-ttile {
    font-size: 24px;
  }
  #about .about-e .about-e-ttile::after {
    width: 32px;
  }
  #about .about-e .about-e-content .aboute-swiper {
    padding: 24px 0;
  }
  #about .about-f {
    padding: 24px 0;
  }
  #about .about-f .about-f-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  #about .about-f .about-f-title::after {
    width: 32px;
  }
  #about .about-f .about-f-content {
    padding: 0;
  }
  #about .about-f .about-f-content .aboutf-a-swiper,
  #about .about-f .about-f-content .aboutf-b-swiper {
    margin-top: 24px;
  }
  #case .case-a .case-a-banner {
    height: 380px;
  }
  #case .case-a .case-a-content {
    transform: translate(-50%, -40%);
  }
  #case .case-a .case-a-content .casea-title {
    font-size: 36px;
  }
  #case .case-a .case-a-content > div {
    margin-top: 16px;
  }
  #case .case-b {
    padding: 24px 16px;
  }
  #case .case-b .caseb-content {
    width: 100%;
    padding: 0;
  }
  #case .case-b .caseb-content .caseb-item {
    width: 100%;
    margin: 0 0 16px;
  }
  #case .case-b .caseb-content .caseb-item a .caseb-item-content {
    bottom: 16px;
    transform: translateY(0);
  }
  #case .case-b .caseb-content .caseb-item a .caseb-item-content .caseb-item-content-t {
    margin-bottom: 0;
  }
  #case .case-b .caseb-content .caseb-item:hover::after {
    opacity: 1;
  }
  #case .case-b .caseb-content .caseb-item:hover::before {
    opacity: 0;
  }
  #case-details .case-details-a .case-da-banner {
    height: 380px;
  }
  #case-details .case-details-a .case-da-content {
    transform: translate(-50%, -50%);
  }
  #case-details .case-details-a .case-da-content span {
    font-size: 32px;
  }
  #case-details .case-details-b {
    width: 100%;
    padding: 24px 16px;
    flex-direction: column;
  }
  #case-details .case-details-b .case-db-l {
    width: 100%;
    margin-bottom: 24px;
  }
  #case-details .case-details-b .case-db-r {
    width: 100%;
  }
  #news .news-a .news-a-banner {
    height: 380px;
  }
  #news .news-a .news-a-content {
    transform: translate(-50%, -40%);
  }
  #news .news-a .news-a-content .news-title {
    font-size: 36px;
  }
  #news .news-a .news-a-content > div {
    margin-top: 16px;
  }
  #news .news-b .newsb-content {
    width: 100%;
    padding: 24px 16px;
  }
  #news .news-b .newsb-content .newsb-item {
    padding-bottom: 8px;
  }
  #news .news-b .newsb-content .newsb-item a {
    flex-direction: column;
  }
  #news .news-b .newsb-content .newsb-item a .newsb-i-l {
    width: 100%;
    flex-direction: column;
  }
  #news .news-b .newsb-content .newsb-item a .newsb-i-l .newsb-il-l {
    width: 100%;
    height: 192px;
    margin-bottom: 24px;
  }
  #news .news-b .newsb-content .newsb-item a .newsb-i-l .newsb-il-r {
    width: 100%;
  }
  #news .news-b .newsb-content .newsb-item a .newsb-i-l .newsb-il-tips {
    bottom: -1px;
  }
  #news .news-b .newsb-content .newsb-item a .newsb-i-r {
    width: 100%;
  }
  #news-details .news-details-a .news-da-banner {
    height: 380px;
  }
  #news-details .news-details-a .news-da-content {
    transform: translate(-50%, -40%);
  }
  #news-details .news-details-a .news-da-content .news-da-title {
    font-size: 36px;
  }
  #news-details .news-details-a .news-da-content > div {
    margin-top: 16px;
  }
  #news-details .news-details-b {
    width: 100%;
    padding: 24px 16px;
    margin: 0;
  }
  #news-details .news-details-b .news-db-c {
    width: 280px;
  }
  #news-details .news-details-b .news-db-c .news-dbc-l,
  #news-details .news-details-b .news-db-c .news-dbc-r {
    font-size: 16px;
  }
  #news-details .news-details-b .news-db-c .news-dbc-line {
    height: 56px;
  }
  #contact .contact-a .contact-a-banner {
    height: 380px;
  }
  #contact .contact-a .contact-a-content {
    transform: translate(-50%, -40%);
  }
  #contact .contact-a .contact-a-content .contacta-title {
    font-size: 32px;
  }
  #contact .contact-a .contact-a-content > div {
    margin-top: 16px;
  }
  #contact .contact-b .contactb-content {
    width: 100%;
    padding: 32px 16px 16px;
    flex-direction: column;
  }
  #contact .contact-b .contactb-content .contactb-item {
    width: 100%;
    margin-bottom: 24px;
  }
  #contact .contact-c {
    padding: 0 16px;
  }
  #contact .contact-c .contact-c-bg {
    height: 550px;
  }
  #contact .contact-c .contactc-content {
    width: 100%;
    padding: 0 16px;
    top: 0;
    transform: translate(-50%, 0);
  }
  #contact .contact-c .contactc-content .contactc-c-t {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #contact .contact-c .contactc-content .contactc-c-b form .two-col {
    flex-direction: column;
  }
  #contact .contact-c .contactc-content .contactc-c-b form .two-col input {
    width: 100%;
  }
  #contact .contact-c .contactc-content .contactc-c-b form .two-col input:first-child {
    margin-bottom: 24px;
  }
  #contact .contact-c .contactc-content .contactc-c-b form .contactc-c-sub button {
    padding: 12px 64px;
  }
  #thanks .thanks-a .thanks-a-banner {
    height: 380px;
  }
}
@media (max-width: 992px) and (max-width: 400px) {
  #product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-prev {
    left: 112px;
  }
}
@media (max-width: 992px) and (max-width: 400px) {
  #product-details .details-c .details-c-box .detailsc-c .custom-nav .custom-next {
    right: 112px;
  }
}
