@charset "UTF-8";
:root {
  --base-font: "Microsoft YaHei", "微软雅黑", "黑体", "宋体", "Arial", sans-serif;
  --white:hsl(0, 0%, 100%);
  --black:hsl(0, 0%, 0%);
  --color-primary:hsl(147, 99%, 29%);
  --text-title: #3a3a3a;
  --text-base: #6a6a6a;
  --text-secondary: #909399;
  --border-light:#e6e6e6;
  --bg-light:hsl(210, 11%, 96%);
  --bg-gray:hsl(0, 0%, 72%);
  --bg-dark:hsl(0, 0%, 13%);
}

/**
* 溢出省略号
* @param {Number} 行数
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  color: var(--text-base);
  font-size: 16px;
  font-family: var(--base-font);
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:active {
  outline-width: 0;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 90%;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 92%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 94%;
  }
}

@font-face {
  font-family: "icon";
  src: url("../fonts/iconfont.woff2") format("woff2"), url("../fonts/iconfont.woff") format("woff"), url("../fonts/iconfont.ttf") format("truetype");
}
.icon {
  font-family: "icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=" icon-"],
[class^=icon-] {
  font-family: "icon";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
}

.icon-swap-right:before {
  content: "\e8f1";
}

.icon-swap-left:before {
  content: "\e8f2";
}

.icon-back:before {
  content: "\e679";
}

.icon-right:before {
  content: "\e6a3";
}

.icon-erweima:before {
  content: "\e642";
}

.icon-browse:before {
  content: "\e666";
}

.icon-calendar:before {
  content: "\e667";
}

.icon-email:before {
  content: "\e66f";
}

.icon-home:before {
  content: "\e674";
}

.icon-play:before {
  content: "\e67a";
}

.icon-telephone:before {
  content: "\e680";
}

.icon-top:before {
  content: "\e681";
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-7 {
  gap: 28px;
}

.gap-8 {
  gap: 32px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.header {
  --h: 100px;
  width: 100%;
  height: var(--h);
  position: sticky;
  top: 0;
  background-color: var(--white);
  -webkit-box-shadow: 1px 1px 3px hsla(0, 0%, 0%, 0.1);
          box-shadow: 1px 1px 3px hsla(0, 0%, 0%, 0.1);
  z-index: 999;
}
@media (max-width: 1024px) {
  .header {
    --h: 60px;
  }
}
@media (max-width: 1024px) {
  .header-wrapper {
    width: 100%;
  }
}
.header-wrapper .logo {
  height: 50px;
}
@media (max-width: 1024px) {
  .header-wrapper .logo {
    height: 35px;
  }
}
.header-wrapper .logo img {
  height: 100%;
}
.header-wrapper .navbar-toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
}
@media (max-width: 1024px) {
  .header-wrapper .navbar-toggle {
    display: block;
  }
}
.header-wrapper .navbar-toggle.active .line {
  background-color: transparent;
}
.header-wrapper .navbar-toggle.active .line::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}
.header-wrapper .navbar-toggle.active .line::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}
.header-wrapper .navbar-toggle .line {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 10px;
  right: 0;
  background-color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-wrapper .navbar-toggle .line::before, .header-wrapper .navbar-toggle .line::after {
  width: 30px;
  height: 2px;
  content: "";
  position: absolute;
  right: 0;
  background-color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-wrapper .navbar-toggle .line::before {
  top: 10px;
}
.header-wrapper .navbar-toggle .line::after {
  top: -10px;
}
@media (max-width: 1024px) {
  .header-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: var(--h);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: var(--white);
  }
}
@media (max-width: 1024px) {
  .header-menu .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header-menu .menu .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .header-menu .menu .item {
    margin: 0 30px;
  }
}
@media (max-width: 1024px) {
  .header-menu .menu .item {
    width: 100%;
    max-width: 94%;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header-menu .menu .item:first-child {
    border-top: 0;
  }
}
.header-menu .menu .item:hover .link {
  color: var(--color-primary);
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .header-menu .menu .item:hover .dropdown {
    display: block;
  }
}
.header-menu .menu .item.active .link {
  color: var(--color-primary);
}
.header-menu .menu .item .link {
  color: var(--text-base);
  font-size: 16px;
  position: relative;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .header-menu .menu .item .link {
    display: block;
    line-height: var(--h);
  }
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .header-menu .menu .item i {
    display: none;
  }
}
.header-menu .menu .item .dropdown {
  --size: 10px;
  display: none;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .header-menu .menu .item .dropdown {
    width: 220px;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: var(--bg-light);
  }
  .header-menu .menu .item .dropdown::before {
    position: absolute;
    top: calc(0px - var(--size));
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "";
    height: 0;
    width: 0;
    border-bottom: var(--size) solid var(--bg-light);
    border-left: var(--size) dashed transparent;
    border-right: var(--size) dashed transparent;
  }
}
@media (max-width: 1024px) {
  .header-menu .menu .item .dropdown {
    width: 100%;
    padding: 10px 0px 0px 10px;
  }
}
.header-menu .menu .item .dropdown li:hover {
  background-color: var(--color-primary);
}
.header-menu .menu .item .dropdown li:hover a {
  color: var(--white);
}
.header-menu .menu .item .dropdown li:last-child a {
  border-bottom: none;
}
.header-menu .menu .item .dropdown li a {
  color: var(--text-base);
  font-size: 14px;
  line-height: 42px;
  border-bottom: solid 1px var(--white);
  display: block;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .header-menu .menu .item .dropdown li a {
    text-align: center;
  }
}
.header-telephone i {
  color: var(--color-primary);
  font-size: 24px;
}
.header-telephone span {
  color: var(--color-primary);
  font-size: 22px;
  font-family: impact;
  letter-spacing: 2px;
  margin-left: 8px;
}
@media (max-width: 1024px) {
  .header-telephone {
    display: none;
  }
}

.footer {
  width: 100%;
  background-color: var(--bg-dark);
}
@media (max-width: 1024px) {
  .footer {
    display: none;
  }
}
.footer .foot-top {
  --w: 300px;
  padding: 64px 0 52px;
  border-bottom: 1px solid hsl(0, 0%, 22%);
  position: relative;
}
@media (max-width: 1024px) {
  .footer .foot-top {
    --w: 240px;
  }
}
.footer .foot-top .foot-menu {
  width: calc(100% - var(--w));
  color: var(--white);
}
@media (max-width: 1024px) {
  .footer .foot-top .foot-menu {
    display: none;
  }
}
.footer .foot-top .foot-menu dl {
  margin-right: 70px;
}
.footer .foot-top .foot-menu dl dt {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer .foot-top .foot-menu dl dd {
  font-size: 14px;
  line-height: 2;
}
.footer .foot-top .foot-menu dl dd a:hover {
  color: var(--color-primary);
}
.footer .foot-top .foot-wechat {
  width: calc(var(--w) - 100px);
  color: var(--white);
}
.footer .foot-top .foot-wechat h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.footer .foot-top .foot-wechat .qrcode {
  width: 200px;
  height: 200px;
  padding: 10px;
  background-color: hsl(0, 0%, 22%);
  margin-bottom: 10px;
}
.footer .foot-top .foot-wechat p {
  font-size: 16px;
  text-align: center;
}
.footer .foot-copyright {
  padding: 12px 0;
  border-top: 1px solid hsl(0, 0%, 0%);
}
.footer .foot-copyright span {
  color: var(--white);
  font-size: 14px;
}
.footer .foot-copyright span a:hover {
  color: var(--color-primary);
}

.wap-footer {
  --h: 54px;
  width: 100%;
  height: var(--h);
  color: var(--white);
  position: fixed;
  bottom: 0;
  overflow: hidden;
  z-index: 999;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .wap-footer {
    display: none;
  }
}
.wap-footer .item {
  height: var(--h);
  background-color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wap-footer .item i {
  font-size: 24px;
  margin-right: 5px;
}
.wap-footer .item span {
  font-size: 18px;
}

.wap-wechat {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background-color: hsla(0, 0%, 0%, 0.6);
  z-index: 9999;
  display: none;
}
.wap-wechat .box {
  width: 50vw;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 7vw 3vw 3vw;
  margin: auto;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}
.wap-wechat .box .close {
  --size: 30px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: calc(0px - (var(--size) - 20px));
  right: calc(0px - (var(--size) - 20px));
  color: var(--white);
  font-size: 14px;
  text-align: center;
  line-height: var(--size);
  font-weight: bold;
  border-radius: 50%;
  background-color: var(--bg-dark);
  font-style: normal;
  display: block;
  cursor: pointer;
}
.wap-wechat .box img {
  width: 100%;
  display: block;
}
.wap-wechat .box p {
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
}

/**
  * 公共样式
*/
.com-title {
  text-align: center;
}
.com-title h1 {
  color: var(--text-title);
  font-size: 28px;
  margin-bottom: 10px;
}
.com-title p {
  color: var(--text-base);
  font-size: 16px;
  line-height: 1;
}

.btn {
  text-transform: uppercase;
  -webkit-transition: all 1s;
  transition: all 1s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.btn:hover span,
.btn:hover i {
  color: var(--white);
}
.btn-link {
  width: 168px;
  border: 1px solid var(--border-light);
  line-height: 45px;
}
.btn-more {
  width: 168px;
  border: 1px solid var(--border-light);
  line-height: 45px;
  margin: auto;
}
.btn span {
  color: var(--text-base);
  font-size: 15px;
}
.btn i {
  color: var(--text-base);
  font-size: 12px;
  margin-left: 8px;
}

.img-scale {
  width: 100%;
  padding-top: 88%;
  overflow: hidden;
  position: relative;
}
.img-scale:hover img {
  -webkit-transform: scale3d(1.2, 1.2, 1);
          transform: scale3d(1.2, 1.2, 1);
}
.img-scale img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.breadcrumb-area {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.breadcrumb-area .content {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .breadcrumb-area .content {
    height: 160px;
  }
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .breadcrumb-area .content {
    height: 240px;
  }
}
.breadcrumb-area .content h1 {
  color: var(--white);
  font-size: 36px;
  height: 36px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .breadcrumb-area .content h1 {
    font-size: 28px;
    height: 28px;
    margin-bottom: 15px;
  }
}
.breadcrumb-area .content ul li {
  color: var(--white);
  font-size: 14px;
  line-height: 1;
}
.breadcrumb-area .content ul li:last-child::after {
  display: none;
}
.breadcrumb-area .content ul li::after {
  font-family: "icon";
  content: "\e6a3";
  font-size: 10px;
  margin: 0 10px;
  opacity: 0.5;
}

.sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sec-title h1 {
  display: block;
  color: var(--text-title);
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.sec-title h1 span {
  color: var(--color-primary);
}
.sec-title i {
  width: 50px;
  height: 3px;
  display: block;
  margin: 0 auto;
  background-color: var(--color-primary);
}

.sort {
  --h: 70px;
  width: 100%;
  border-bottom: 1px solid var(--border-light);
  background-color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .sort {
    --h: 50px;
    overflow-x: auto;
  }
}
.sort ul {
  height: var(--h);
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}
@media (max-width: 1024px) {
  .sort ul {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.sort ul li.active a, .sort ul li:hover a {
  color: var(--color-primary);
}
.sort ul li.active a::after, .sort ul li:hover a::after {
  width: 100%;
  right: auto;
  left: 0;
}
.sort ul li a {
  color: var(--text-base);
  font-size: 16px;
  line-height: var(--h);
  display: block;
  position: relative;
}
@media (max-width: 1024px) {
  .sort ul li a {
    font-size: 14px;
  }
}
.sort ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.pagination-box {
  margin-top: 50px;
}
.pagination-box .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.pagination-box .pagination li {
  color: var(--text-base);
  font-size: 14px;
  padding: 3px 10px;
  border: 1px solid var(--border-light);
  border-radius: 3px;
}
.pagination-box .pagination li:last-child {
  border: 0;
}
.pagination-box .pagination li:last-child input {
  border: 1px solid var(--border-light);
  padding: 3px 6px;
}
.pagination-box .pagination li.disabled {
  background-color: var(--bg-light);
  cursor: not-allowed;
}
.pagination-box .pagination li.active {
  color: var(--white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.nav-tabs {
  border-bottom: 1px solid var(--border-light);
}
.nav-tabs li {
  color: var(--text-base);
  font-size: 14px;
  padding: 10px 20px;
  margin-right: 1px;
  margin-bottom: -1px;
  border-bottom: none;
  border-top: 3px solid var(--bg-gray);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
}
.nav-tabs li.active {
  border-top: 3px solid var(--color-primary);
}

.nav-content {
  border-radius: 0 0 4px 4px;
  border: 1px solid var(--border-light);
  border-top: 0;
  padding: 15px;
}
.nav-content .tab-pane {
  display: none;
}
.nav-content .tab-pane.active {
  display: block;
}

.banner {
  width: 100%;
  height: auto;
  position: relative;
}
.banner .swiper-slide img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .banner .swiper-slide img.pc {
    display: none;
  }
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .banner .swiper-slide img.wap {
    display: none;
  }
}
.banner-pagination {
  width: 100%;
  position: absolute;
  bottom: 3vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 1024px) {
  .banner-pagination {
    bottom: 10px;
  }
}
.banner-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 2px;
  margin-left: 10px;
  background-color: var(--bg-light);
  display: block;
}
@media (max-width: 1024px) {
  .banner-pagination .swiper-pagination-bullet {
    width: 15px;
  }
}
.banner-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.i-about {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .i-about {
    padding: 50px 0;
  }
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .i-about__wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .i-about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.i-about__wrapper .pic {
  width: 45%;
  position: relative;
}
@media (max-width: 1024px) {
  .i-about__wrapper .pic {
    width: 100%;
  }
}
.i-about__wrapper .pic img {
  width: 100%;
  height: 100%;
}
.i-about__wrapper .info {
  width: 50%;
  padding: 30px 0 15px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .i-about__wrapper .info {
    width: 100%;
  }
}
.i-about__wrapper .info h6 {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  padding-left: 34px;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 36px;
}
@media (max-width: 1024px) {
  .i-about__wrapper .info h6 {
    margin-bottom: 18px;
  }
}
.i-about__wrapper .info h6::before {
  content: "";
  width: 24px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-primary);
}
.i-about__wrapper .info h2 {
  color: var(--text-title);
  font-size: 36px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .i-about__wrapper .info h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.i-about__wrapper .info .desc {
  color: var(--text-base);
  font-size: 16px;
  text-align: justify;
  line-height: 2;
  margin-bottom: 42px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
  .i-about__wrapper .info .desc {
    font-size: 14px;
  }
}
.i-about__wrapper .info .btn {
  border: 1px solid var(--color-primary);
}
.i-about__wrapper .info .btn:hover span,
.i-about__wrapper .info .btn:hover i {
  color: var(--white);
}
.i-about__wrapper .info .btn span,
.i-about__wrapper .info .btn i {
  color: var(--color-primary);
}

.i-product {
  padding: 100px 0;
  background-color: var(--bg-light);
}
@media (max-width: 1024px) {
  .i-product {
    padding: 50px 0;
  }
}
.i-product .list {
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .i-product .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.i-product .list .box {
  width: 100%;
  position: relative;
}
.i-product .list .box .title {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 10px 0;
  background-color: hsla(0, 0%, 0%, 0.35);
}
@media (max-width: 1024px) {
  .i-product .list .box .title {
    padding: 6px 0;
  }
}
.i-product .list .box .title h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}
.i-product .btn {
  margin-top: 30px;
}

.i-case {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .i-case {
    padding: 50px 0;
  }
}
.i-case .list {
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .i-case .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.i-case .list .box {
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .i-case .list .box:first-child {
    grid-row: 1/3;
    grid-column: 1/3;
  }
  .i-case .list .box:hover .mask {
    opacity: 1;
  }
}
.i-case .list .box .mask {
  background-color: hsla(0, 0%, 0%, 0.35);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .i-case .list .box .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .i-case .list .box .mask {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 6px 0;
  }
}
.i-case .list .box .mask .text {
  width: 80%;
  color: var(--white);
  margin: auto;
  text-align: center;
}
.i-case .list .box .mask .text h3 {
  font-size: 20px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .i-case .list .box .mask .text h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .i-case .list .box .mask .text h3 {
    font-size: 16px;
  }
}
.i-case .list .box .mask .text p {
  font-size: 14px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
  .i-case .list .box .mask .text p {
    display: none;
  }
}
.i-case .btn {
  margin-top: 30px;
}

.i-news {
  padding: 100px 0;
  background-color: var(--bg-light);
}
@media (max-width: 1024px) {
  .i-news {
    padding: 50px 0;
  }
}
.i-news__wrapper {
  --h: 480px;
  margin-top: 50px;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .i-news__wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .i-news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.i-news__wrapper .pic {
  width: 48%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .i-news__wrapper .pic {
    width: 100%;
  }
}
.i-news__wrapper .pic .img-scale {
  padding-top: 82.5%;
}
@media (max-width: 1024px) {
  .i-news__wrapper .pic .img-scale {
    padding-top: 65%;
  }
}
.i-news__wrapper .pic .name {
  --w: 120px;
  width: 100%;
  height: 48px;
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: hsla(0, 0%, 0%, 0.35);
}
.i-news__wrapper .pic .name h3 {
  width: calc(100% - var(--w));
  font-size: 16px;
  font-weight: 400;
  padding-left: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.i-news__wrapper .pic .name span {
  width: var(--w);
  height: 100%;
  font-size: 16px;
  background-color: var(--color-primary);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.i-news__wrapper .pic .name span i {
  font-size: 18px;
  padding-left: 10px;
}
.i-news__wrapper .list {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list {
    width: 100%;
    margin-top: 30px;
  }
}
.i-news__wrapper .list .box {
  padding: 24px;
  background-color: var(--white);
  margin-bottom: 20px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list .box {
    padding: 16px;
  }
}
.i-news__wrapper .list .box:hover {
  background-color: var(--color-primary);
}
.i-news__wrapper .list .box:hover .date {
  background-color: var(--white);
}
.i-news__wrapper .list .box:hover .date .d,
.i-news__wrapper .list .box:hover .date .y-m {
  color: var(--color-primary);
}
.i-news__wrapper .list .box:hover .text h3,
.i-news__wrapper .list .box:hover .text p {
  color: var(--white);
}
.i-news__wrapper .list .box:last-child {
  margin-bottom: 0;
}
.i-news__wrapper .list .box .date {
  width: 90px;
  text-align: center;
  padding: 10px 0;
  overflow: hidden;
  border-radius: 4px 0 4px 0;
  background-color: var(--bg-gray);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list .box .date {
    width: 70px;
    padding: 6px 0;
  }
}
.i-news__wrapper .list .box .date .d {
  color: var(--white);
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list .box .date .d {
    font-size: 18px;
  }
}
.i-news__wrapper .list .box .date .y-m {
  color: var(--white);
  font-size: 14px;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list .box .date .y-m {
    font-size: 12px;
  }
}
.i-news__wrapper .list .box .text {
  width: calc(100% - 90px);
  padding-left: 12px;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list .box .text {
    padding-left: 10px;
  }
}
.i-news__wrapper .list .box .text h3 {
  color: var(--text-title);
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list .box .text h3 {
    font-size: 16px;
  }
}
.i-news__wrapper .list .box .text p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 5px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
  .i-news__wrapper .list .box .text p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.3;
  }
}
.i-news .btn {
  margin-top: 30px;
}

.page .company {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .page .company {
    padding: 40px 0;
  }
}
.page .company .sec-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 24px;
}
.page .company .sec-title i {
  margin: 0;
}
@media (max-width: 1024px) {
  .page .company .company-wp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page .company-info {
  width: 50%;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .page .company-info {
    margin-right: 4%;
  }
}
@media (max-width: 1024px) {
  .page .company-info {
    width: 100%;
  }
}
.page .company-info .text {
  color: var(--text-base);
  text-align: justify;
  font-size: 16px;
  line-height: 30px;
}
.page .company-pic {
  width: 46%;
}
@media (max-width: 1024px) {
  .page .company-pic {
    width: 100%;
    margin-top: 20px;
  }
}
.page .company-pic img {
  width: 100%;
  display: block;
}
.page .honor {
  padding: 80px 0;
  position: relative;
  background-color: var(--bg-light);
}
@media (max-width: 1024px) {
  .page .honor {
    padding: 40px 0;
  }
}
.page .honor-list {
  margin-top: 50px;
  position: relative;
}
.page .honor-list .swiper-slide {
  width: 380px;
}
@media (max-width: 1024px) {
  .page .honor-list .swiper-slide {
    width: 100%;
  }
}
.page .honor-list .swiper-slide img {
  display: block;
  width: 100%;
}
.page .honor-list .swiper-slide h3 {
  color: var(--text-base);
  font-size: 18px;
  text-align: center;
  line-height: 42px;
  background-color: var(--white);
}
.page .honor-list .honor-btn {
  --size: 50px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page .honor-list .honor-btn:hover {
  border: 1px solid var(--color-primary);
}
.page .honor-list .honor-btn:hover i {
  color: var(--color-primary);
}
.page .honor-list .honor-btn.prev {
  left: 0;
}
.page .honor-list .honor-btn.next {
  right: 0;
}
.page .honor-list .honor-btn i {
  color: var(--text-base);
  font-size: 24px;
}
.page .quality {
  padding: 100px 0;
  background: url(../images/quality-bg.jpg) no-repeat center;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .page .quality {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .page .quality .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page .quality-list {
  width: 58%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .page .quality-list {
    margin-right: 5.2%;
  }
}
@media (max-width: 1024px) {
  .page .quality-list {
    width: 100%;
  }
}
.page .quality-list .list {
  border-radius: 24px;
  overflow: hidden;
}
.page .quality-list .list .item {
  text-align: center;
  height: 180px;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page .quality-list .list .item img {
  width: 46px;
  display: block;
  margin-bottom: 20px;
}
.page .quality-list .list .item h3 {
  width: 60%;
  color: var(--text-title);
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page .quality-list .quality-logo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.page .quality-text {
  color: var(--white);
  width: 36.8%;
}
@media (max-width: 1024px) {
  .page .quality-text {
    width: 100%;
    margin-top: 3vw;
  }
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .page .quality-text .sec-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page .quality-text .sec-title h1 {
  color: var(--white);
}
.page .quality-text .sec-title i {
  margin: 0;
  background-color: var(--white);
}
.page .quality-text .desc {
  margin-top: 30px;
  line-height: 28px;
}
.page .quality-text ul {
  margin-top: 24px;
}
.page .quality-text ul li {
  font-size: 14px;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page .quality-text ul li::before {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px 0 3px 0;
  background-color: var(--color-primary);
}
.page .faq {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .page .faq {
    padding: 40px 0;
  }
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .page .faq .container {
    width: 1200px;
  }
}
.page .faq .list {
  margin-top: 50px;
}
.page .faq .list .box {
  --size: 34px;
  margin-bottom: 40px;
  padding: 31px 33px 35px;
  border: 1px solid var(--border-light);
}
@media (max-width: 1024px) {
  .page .faq .list .box {
    padding: 2%;
  }
}
.page .faq .list .box dt,
.page .faq .list .box dd {
  color: var(--text-base);
  font-size: 16px;
}
.page .faq .list .box dt span,
.page .faq .list .box dd span {
  width: var(--size);
  height: var(--size);
  color: var(--white);
  text-align: center;
  line-height: var(--size);
  border-radius: 50%;
  background-color: hsl(204, 95%, 40%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page .faq .list .box dt h3,
.page .faq .list .box dd h3 {
  color: var(--text-title);
  font-size: 18px;
  font-weight: 400;
  margin-left: 12px;
}
.page .faq .list .box dt p,
.page .faq .list .box dd p {
  font-size: 16px;
  margin-left: 12px;
}
.page .faq .list .box dt {
  margin-bottom: 15px;
}
.page .faq .list .box dt span {
  background-color: var(--color-primary);
}
.page .contact {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .page .contact {
    padding: 40px 0;
  }
}
.page .contact .info {
  width: 45%;
}
@media (max-width: 1024px) {
  .page .contact .info {
    width: 100%;
  }
}
.page .contact .info h3 {
  color: var(--text-title);
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1;
}
.page .contact .info .line {
  height: 4px;
  width: 80px;
  background-color: var(--color-primary);
}
.page .contact .info .tips {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 20px;
}
.page .contact .info ul {
  border-top: 1px solid var(--border-light);
  padding: 15px 0;
  width: 100%;
  margin-top: 20px;
}
.page .contact .info ul li {
  width: 50%;
  margin: 15px 0px;
}
.page .contact .info ul li p {
  color: var(--text-secondary);
  font-size: 14px;
  padding-bottom: 5px;
}
.page .contact .info ul li h4 {
  color: var(--text-title);
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page .contact .message {
  width: 45%;
}
@media (max-width: 1024px) {
  .page .contact .message {
    width: 100%;
    margin-top: 20px;
  }
}
.page .contact .message .inquiry-form {
  width: 100%;
}
.page .contact .message .inquiry-form input {
  width: 49%;
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  padding: 10px 20px;
  height: 60px;
  font-size: 16px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .page .contact .message .inquiry-form input {
    height: 45px;
  }
}
.page .contact .message .inquiry-form textarea {
  width: 100%;
  height: 120px;
  font-size: 16px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  padding: 20px;
}
@media (max-width: 1024px) {
  .page .contact .message .inquiry-form textarea {
    height: 90px;
  }
}
.page .contact .message .inquiry-form button {
  width: 100%;
  height: 58px;
  color: var(--white);
  font-size: 16px;
  background-color: var(--color-primary);
  border: 0px;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
}
@media (max-width: 1024px) {
  .page .contact .message .inquiry-form button {
    height: 46px;
  }
}
.page .map {
  width: 100%;
  padding-top: 60px;
  background-color: var(--bg-light);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .page .map {
    padding-top: 50px;
  }
}
.page .map #allmap {
  margin-top: 50px;
  width: 100%;
  height: 420px;
}
@media (max-width: 1024px) {
  .page .map #allmap {
    height: 260px;
  }
}

.product {
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .product-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.product-list li {
  width: 100%;
  -webkit-box-shadow: 0 0 5px 1px hsl(0, 0%, 95%);
          box-shadow: 0 0 5px 1px hsl(0, 0%, 95%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-list li:hover h3 {
  color: var(--white);
  background-color: var(--color-primary);
}
.product-list li .img-scale {
  padding-top: 68%;
}
.product-list li h3 {
  color: var(--text-title);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 12px 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1025px) and (max-width: 1920px) {
  .product-details .top {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .product-details .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-details .top .album {
  width: 45%;
}
@media (max-width: 1024px) {
  .product-details .top .album {
    width: 100%;
  }
}
.product-details .top .album .thumb {
  width: 100%;
}
.product-details .top .album .thumb .swiper-slide {
  border-radius: 5px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.product-details .top .album .thumb .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-details .top .album .gallery {
  --size: 100px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .product-details .top .album .gallery {
    --size: 80px;
  }
}
.product-details .top .album .gallery .swiper-slide {
  width: var(--size);
  height: var(--size);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  overflow: hidden;
}
.product-details .top .album .gallery .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--color-primary);
}
.product-details .top .album .gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-details .top .info {
  width: 50%;
  position: relative;
}
@media (max-width: 1024px) {
  .product-details .top .info {
    width: 100%;
    margin-top: 30px;
  }
}
.product-details .top .info h1 {
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.product-details .top .info .tips {
  margin: 28px 0;
  color: var(--text-secondary);
  font-size: 14px;
}
.product-details .top .info .call {
  color: var(--white);
  font-size: 16px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 3px;
  margin-top: 54px;
}
.product-details .top .info .call .box {
  width: 120px;
  font-size: 16px;
  background-color: var(--bg-gray);
  position: relative;
}
.product-details .top .info .call .box i {
  font-size: 20px;
  margin-right: 5px;
}
.product-details .top .info .call span {
  width: 180px;
  font-size: 22px;
  background-color: var(--color-primary);
}
.product-details .cont {
  margin-top: 3vw;
}
.product-details .cont .nav-content {
  font-size: 14px;
  line-height: 180%;
}

.case {
  padding: 50px 0;
  background-color: var(--bg-light);
}
@media (max-width: 1024px) {
  .case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.case-list .box {
  width: 100%;
}
.case-list .box:hover .name {
  color: var(--white);
  background-color: var(--color-primary);
}
.case-list .box .img-scale {
  padding-top: 68%;
}
.case-list .box .name {
  font-size: 16px;
  text-align: center;
  padding: 15px 2%;
  background-color: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.case-details {
  padding: 50px 3vw;
  background-color: var(--white);
}
.case-details .title-box {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.case-details .title-box .title {
  color: var(--text-title);
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 10px;
}
.case-details .title-box .meta {
  color: var(--text-secondary);
  font-size: 14px;
}
.case-details .title-box .meta span {
  margin-right: 20px;
}
.case-details .title-box .meta span:last-child {
  margin-right: 0;
}
.case-details .content {
  text-align: justify;
}

.news {
  padding: 50px 0;
  background-color: var(--bg-light);
}
@media (max-width: 1024px) {
  .news-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.news-list .box {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.news-list .box .img-scale {
  padding-top: 70%;
}
.news-list .box .text {
  padding: 20px 10px;
}
.news-list .box .text h3 {
  width: calc(100% - 90px);
  color: var(--text-base);
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list .box .text time {
  width: 75px;
  color: var(--text-secondary);
  font-size: 12px;
  text-align: justify;
}
.news-details {
  padding: 50px 3vw;
  background-color: var(--white);
}
.news-details .title-box {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.news-details .title-box .title {
  color: var(--text-title);
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 10px;
}
.news-details .title-box .meta {
  color: var(--text-secondary);
  font-size: 14px;
}
.news-details .title-box .meta span {
  margin-right: 20px;
}
.news-details .title-box .meta span:last-child {
  margin-right: 0;
}
.news-details .content {
  text-align: justify;
}