@charset "UTF-8";
.mid {
  width: 1440px;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 1440px) {
  .mid {
    width: 94%;
  }
}

.layui-laypage a,
.layui-laypage span {
  margin: 0 3px;
  border-radius: 4px;
}

.layui-laypage span {
  background: transparent;
}

.layui-laypage a:hover {
  color: #b60909;
}

.layui-laypage input:focus,
.layui-laypage select:focus {
  border-color: #b60909 !important;
}

.laypage-class {
  text-align: center;
}

.header {
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 90px;
}
.header .logo {
  display: flex;
  align-items: center;
  flex: 1;
}
.header .logo img {
  width: 345px;
  height: auto;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .nav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.header .nav .nav-item {
  position: relative;
}
.header .nav .nav-item .nav-link {
  display: block;
  padding: 10px 24px;
  color: #232323;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  height: 90px;
  display: flex;
  align-items: center;
}
.header .nav .nav-item .nav-link:hover {
  background-color: #f5f5f5;
}
.header .nav .nav-item.active .nav-link {
  background-color: #b60909;
  color: #fff;
}
.header .nav .nav-item:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .nav .nav-item .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 150px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
}
.header .nav .nav-item .sub-nav li a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}
.header .nav .nav-item .sub-nav li a:hover {
  background-color: #f5f5f5;
  color: #b60909;
}
.header .line {
  width: 1px;
  height: 16px;
  background: #232323;
  margin: 0 20px;
}
.header .search-wrapper {
  position: relative;
}
.header .search-wrapper .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #666;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .search-wrapper .search-btn:hover {
  color: #b60909;
}
.header .search-wrapper .search-btn svg {
  display: block;
}
.header .search-wrapper .search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 400px;
  background: #fff;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 20px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
}
.header .search-wrapper .search-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .search-wrapper .search-dropdown-content {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header .search-wrapper .search-dropdown .search-input {
  flex: 1;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.header .search-wrapper .search-dropdown .search-input:focus {
  border-color: #b60909;
}
.header .search-wrapper .search-dropdown .search-input::placeholder {
  color: #999;
}
.header .search-wrapper .search-dropdown .search-submit-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b60909;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.header .search-wrapper .search-dropdown .search-submit-btn:hover {
  background: rgb(133.4031413613, 6.5968586387, 6.5968586387);
}
.header .search-wrapper .search-dropdown .search-submit-btn svg {
  display: block;
}
.header .search-wrapper .search-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}
.header .mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
}
.header .mobile-menu-btn .mobile-menu-line {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}
.header .mobile-menu-btn.active .mobile-menu-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.header .mobile-menu-btn.active .mobile-menu-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.header .mobile-menu-btn.active .mobile-menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media screen and (max-width: 1440px) {
  body {
    padding-top: 90px;
  }
  .header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
  }
  .header .header-content {
    flex-wrap: wrap;
  }
  .header .logo img {
    width: 280px;
  }
  .header .nav .nav-item .nav-link {
    padding: 8px 15px;
    font-size: 14px;
  }
  .header .nav .nav-item .sub-nav li a {
    padding: 8px 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    padding-top: 60px;
  }
  .header .header-content {
    height: 60px;
    gap: 10px;
  }
  .header .logo img {
    width: 200px;
  }
  .header .line {
    display: none;
  }
  .header .search-wrapper {
    position: relative;
  }
  .header .search-wrapper .search-dropdown {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .header .search-wrapper .search-dropdown::before {
    display: none;
  }
  .header .search-wrapper .search-dropdown .search-dropdown-content .search-input {
    font-size: 14px;
    padding: 0 12px;
  }
  .header .search-wrapper .search-dropdown .search-dropdown-content .search-submit-btn {
    min-width: 44px;
  }
  .header .mobile-menu-btn {
    display: flex;
  }
  .header .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    z-index: 999;
    display: block;
  }
  .header .nav.active {
    max-height: 500px;
    overflow-y: auto;
  }
  .header .nav .nav-list {
    flex-direction: column;
    width: 100%;
  }
  .header .nav .nav-item {
    width: 100%;
  }
  .header .nav .nav-item.has-sub .nav-link {
    position: relative;
    padding-right: 40px;
  }
  .header .nav .nav-item.has-sub .nav-link::after {
    content: "+";
    position: absolute;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
  }
  .header .nav .nav-item.has-sub.has-sub-open .nav-link::after {
    transform: rotate(45deg);
  }
  .header .nav .nav-item .nav-link {
    padding: 12px 20px;
    height: auto;
    border-bottom: 1px solid #f5f5f5;
  }
  .header .nav .nav-item .sub-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0;
  }
  .header .nav .nav-item .sub-nav.active {
    max-height: initial;
    padding: 10px 0;
  }
}
.ind-banner .swiper {
  width: 100%;
  height: 40vw;
  max-height: 800px;
  position: relative;
}
.ind-banner .swiper .banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  text-align: left;
  z-index: 10;
}
.ind-banner .swiper a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}
.ind-banner .swiper-pagination {
  width: 94%;
  max-width: 1440px;
  text-align: right;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px !important;
}
.ind-banner .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  opacity: 1;
  position: relative;
  background: transparent;
  transition: all 0.3s;
  overflow: visible;
  margin: 0 10px !important;
}
.ind-banner .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.ind-banner .swiper-pagination-bullet svg {
  display: none;
}
.ind-banner .swiper-pagination-bullet-active {
  background: transparent;
  width: 20px;
  height: 20px;
}
.ind-banner .swiper-pagination-bullet-active::before {
  background: #b60909;
  border-radius: 50%;
}
.ind-banner .swiper-pagination-bullet-active svg {
  display: block;
}
.ind-banner .swiper-pagination-bullet-active .progress-fill {
  animation: progressRing 3000ms linear;
}
@keyframes progressRing {
  0% {
    stroke-dashoffset: 56.5;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 1440px) {
  .ind-banner .swiper .banner-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-banner .swiper .banner-title {
    font-size: 20px;
  }
  .ind-banner .swiper-pagination {
    display: none;
  }
}

.ind-content-title {
  text-align: center;
  color: #232323;
}
.ind-content-title h2 {
  font-size: 40px;
}
.ind-content-title p {
  font-size: 14px;
  color: #564d4d;
}
@media screen and (max-width: 1440px) {
  .ind-content-title h2 {
    font-size: 28px;
  }
  .ind-content-title p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-content-title h2 {
    font-size: 18px;
  }
}

.ind-content-more {
  display: block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #b60909;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s;
  position: relative;
}
.ind-content-more:hover {
  box-shadow: 0 0 3px 0 #b60909;
  gap: 10px;
}
.ind-content-more img {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 1440px) {
  .ind-content-more {
    width: 120px;
    height: 30px;
    font-size: 14px;
  }
  .ind-content-more img {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-content-more {
    margin: 30px auto 0;
    width: 50%;
    height: 30px;
    font-size: 14px;
  }
  .ind-content-more img {
    width: 8px;
    height: 8px;
  }
}

.ind-product-swiper .swiper-pagination {
  position: static;
}
.ind-product-swiper .swiper-pagination-bullet {
  font-size: 16px;
  width: 7em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border: 1px solid #b60909;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  margin: 20px !important;
  font-weight: normal;
}
.ind-product-swiper .swiper-pagination-bullet-active {
  background-color: #b60909;
  color: #fff;
}
.ind-product-swiper .swiper-slide {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
.ind-product-swiper .swiper-slide .left {
  width: 40%;
}
.ind-product-swiper .swiper-slide .left .pro-title {
  font-size: 30px;
  font-weight: bold;
  color: #232323;
}
.ind-product-swiper .swiper-slide .left .pro-id {
  font-size: 18px;
  color: #232323;
  margin: 1vw 0 3vw;
}
.ind-product-swiper .swiper-slide .left .pro-level,
.ind-product-swiper .swiper-slide .left .pro-desc {
  font-size: 16px;
  color: #232323;
  font-weight: bold;
  margin-bottom: 1em;
  word-break: break-all;
}
.ind-product-swiper .swiper-slide .left .pro-level span,
.ind-product-swiper .swiper-slide .left .pro-desc span {
  font-weight: normal;
}
.ind-product-swiper .swiper-slide .left .pro-list {
  margin: 3vw 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  cursor: pointer;
  padding: 0 4px;
}
.ind-product-swiper .swiper-slide .left .pro-list .pro-item {
  width: 64px;
  height: 64px;
  position: relative;
}
.ind-product-swiper .swiper-slide .left .pro-list .pro-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
.ind-product-swiper .swiper-slide .left .pro-list .pro-item .title {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #232323;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  word-break: break-all;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: #fff;
  opacity: 0.8;
  box-sizing: border-box;
  padding: calc((100% - 3em) / 2);
}
.ind-product-swiper .swiper-slide .left .pro-list .pro-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid #000;
  border-radius: 50%;
  opacity: 0.9;
  z-index: 0;
}
.ind-product-swiper .swiper-slide .left .pro-list .pro-item.current::after, .ind-product-swiper .swiper-slide .left .pro-list .pro-item:hover::after {
  border: 2px solid #b60909;
  opacity: 0.5;
}
.ind-product-swiper .swiper-slide .left .pro-list .pro-item.current .title, .ind-product-swiper .swiper-slide .left .pro-list .pro-item:hover .title {
  background-color: #b60909;
  opacity: 0.8;
  color: #fff;
}
.ind-product-swiper .swiper-slide .right {
  width: 57%;
  padding-top: 32%;
  position: relative;
  overflow: hidden;
}
.ind-product-swiper .swiper-slide .right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .ind-product-swiper .swiper-pagination-bullet {
    font-size: 14px;
  }
  .ind-product-swiper .swiper-slide .left .pro-title {
    font-size: 24px;
  }
  .ind-product-swiper .swiper-slide .left .pro-id {
    font-size: 16px;
  }
  .ind-product-swiper .swiper-slide .left .pro-level,
  .ind-product-swiper .swiper-slide .left .pro-desc {
    font-size: 14px;
  }
  .ind-product-swiper .swiper-slide .left .pro-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-product-swiper .swiper-pagination-bullet {
    margin: 10px !important;
  }
  .ind-product-swiper .swiper-slide {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .ind-product-swiper .swiper-slide .left {
    width: 100%;
  }
  .ind-product-swiper .swiper-slide .left .pro-title {
    font-size: 18px;
  }
  .ind-product-swiper .swiper-slide .left .pro-list {
    justify-content: center;
  }
  .ind-product-swiper .swiper-slide .right {
    width: 100%;
    padding-top: 0;
  }
  .ind-product-swiper .swiper-slide .right img {
    position: relative;
    top: 0;
    left: 0;
  }
}

.ind-quality {
  background: url(../img/ind-pinzhi-bg.png) no-repeat center center/cover;
}
.ind-quality .top-title {
  color: #fff;
}
.ind-quality .pinzhi-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ind-quality .pinzhi-list li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
  position: relative;
  top: 0;
}
.ind-quality .pinzhi-list li img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
  left: 0;
}
.ind-quality .pinzhi-list li p,
.ind-quality .pinzhi-list li span {
  color: #fff;
  word-break: break-all;
}
.ind-quality .pinzhi-list li p {
  font-size: 24px;
  font-weight: bold;
}
.ind-quality .pinzhi-list li span {
  font-size: 18px;
}
.ind-quality .pinzhi-list li:hover {
  top: -10px;
  border-radius: 2px;
  box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.9);
}
.ind-quality .pinzhi-list li:hover img {
  left: -4px;
  box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 1440px) {
  .ind-quality .pinzhi-list li img {
    width: 60px;
    height: 60px;
  }
  .ind-quality .pinzhi-list li p {
    font-size: 20px;
  }
  .ind-quality .pinzhi-list li span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-quality .pinzhi-list li {
    flex: 0 1 calc(50% - 15px);
  }
  .ind-quality .pinzhi-list li img {
    width: 40px;
    height: 40px;
  }
  .ind-quality .pinzhi-list li p {
    font-size: 16px;
  }
  .ind-quality .pinzhi-list li span {
    font-size: 12px;
  }
}

.ind-about .mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ind-about .mid .left {
  width: 40%;
}
.ind-about .mid .left .top-title {
  text-align: left;
}
.ind-about .mid .left .top-title i {
  margin-top: 0.5em;
  width: 70px;
  height: 6px;
  background-color: #b60909;
  display: block;
}
.ind-about .mid .left .ind-about-content {
  margin: 3vw 0 0;
  max-height: 400px;
  overflow-y: auto;
}
.ind-about .mid .left .ind-about-content .title {
  font-size: 24px;
  font-weight: bold;
  color: #232323;
  margin-bottom: 0.5em;
}
.ind-about .mid .left .ind-about-content .text {
  font-size: 14px;
  color: #666666;
  line-height: 26px;
}
.ind-about .mid .left .ind-about-content .more {
  margin-top: 5em;
}
.ind-about .mid .right {
  width: 57%;
  padding-top: 32%;
  position: relative;
  overflow: hidden;
}
.ind-about .mid .right .player-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  z-index: 1;
  cursor: pointer;
}
.ind-about .mid .right .player-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .ind-about .mid .left .ind-about-content .title {
    font-size: 20px;
  }
  .ind-about .mid .left .ind-about-content .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-about .mid {
    flex-direction: column;
  }
  .ind-about .mid .left,
  .ind-about .mid .right {
    width: 100%;
  }
  .ind-about .mid .left .ind-about-content {
    max-height: initial;
    overflow-y: visible;
  }
  .ind-about .mid .left .ind-about-content .title {
    font-size: 18px;
  }
  .ind-about .mid .left .ind-about-content .more {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  .ind-about .mid .right {
    padding-top: 0;
  }
  .ind-about .mid .right .player-bg {
    position: relative;
    top: 0;
    left: 0;
  }
  .ind-about .mid .right .player-icon {
    width: 60px;
    height: 60px;
  }
}

.ind-numbers {
  padding: 80px 0;
}
.ind-numbers .numbers-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}
.ind-numbers .numbers-list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}
.ind-numbers .numbers-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: #e5e5e5;
}
.ind-numbers .numbers-list li > div {
  padding-left: 30%;
}
.ind-numbers .numbers-list .number {
  font-size: 60px;
  font-weight: bold;
  color: #b60909;
  line-height: 1;
}
.ind-numbers .numbers-list .suffix {
  font-size: 20px;
  color: #232323;
  margin-top: 10px;
}
.ind-numbers .numbers-list .desc {
  padding-left: 30%;
  font-size: 18px;
  color: #232323;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .ind-numbers {
    padding: 60px 0;
  }
  .ind-numbers .numbers-list li:not(:last-child)::after {
    height: 40px;
  }
  .ind-numbers .numbers-list .number {
    font-size: 48px;
  }
  .ind-numbers .numbers-list .suffix {
    font-size: 20px;
  }
  .ind-numbers .numbers-list .desc {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-numbers {
    padding: 40px 0;
    margin-top: 3%;
  }
  .ind-numbers .numbers-list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .ind-numbers .numbers-list li {
    flex: 0 1 calc(50% - 15px);
    align-items: center;
  }
  .ind-numbers .numbers-list li > div {
    padding-left: 0;
  }
  .ind-numbers .numbers-list li:not(:last-child)::after {
    display: none;
  }
  .ind-numbers .numbers-list li:nth-child(2n)::after {
    display: none;
  }
  .ind-numbers .numbers-list .number {
    font-size: 36px;
  }
  .ind-numbers .numbers-list .suffix {
    font-size: 18px;
  }
  .ind-numbers .numbers-list .desc {
    padding-left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
  }
}

.ind-company-pic .mid {
  position: relative;
}
.ind-company-pic .company-pic-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-company-pic .company-pic-swiper-button-next,
.ind-company-pic .company-pic-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #b60909;
  border-radius: 50%;
  cursor: pointer;
}
.ind-company-pic .company-pic-swiper-button-next {
  background: url(../img/pro-info-right.png) no-repeat center/100%;
  right: -60px;
}
.ind-company-pic .company-pic-swiper-button-prev {
  background: url(../img/pro-info-left.png) no-repeat center/100%;
  left: -60px;
}
@media screen and (max-width: 1440px) {
  .ind-company-pic .company-pic-swiper-button-next,
  .ind-company-pic .company-pic-swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .ind-company-pic .company-pic-swiper-button-next,
  .ind-company-pic .company-pic-swiper-button-prev {
    display: none;
  }
}

.ind-placeholder-ad {
  background: url(../img/ads-bg.png) no-repeat center/cover;
}
.ind-placeholder-ad .mid {
  text-align: center;
}
.ind-placeholder-ad .mid p,
.ind-placeholder-ad .mid span {
  color: #fff;
  word-break: break-all;
}
.ind-placeholder-ad .mid p {
  font-size: 30px;
  font-weight: bold;
}
.ind-placeholder-ad .mid span {
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .ind-placeholder-ad .mid p {
    font-size: 20px;
  }
  .ind-placeholder-ad .mid span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .ind-placeholder-ad .mid p {
    font-size: 16px;
  }
  .ind-placeholder-ad .mid span {
    font-size: 12px;
  }
}

.ind-news-dynamic .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ind-news-dynamic .news-list .news-item {
  flex: 0 1 calc(25% - 15px);
  padding: 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.ind-news-dynamic .news-list .news-item .news-title {
  font-size: 18px;
  font-weight: bold;
  color: #232323;
  margin: 0 0 10px 0;
  transition: color 0.3s;
  line-height: 1.5em;
  height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ind-news-dynamic .news-list .news-item .news-date-wrapper {
  position: relative;
  display: block;
}
.ind-news-dynamic .news-list .news-item .news-date-wrapper .news-date {
  font-size: 14px;
  color: #999999;
  display: block;
  margin: 14px 0;
  display: block;
}
.ind-news-dynamic .news-list .news-item .news-date-wrapper .news-date-line {
  display: block;
  position: relative;
  height: 1px;
  background-color: #dddddd;
  width: 100%;
}
.ind-news-dynamic .news-list .news-item .news-date-wrapper .news-date-line::after {
  transition: width 1s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-color: #b60909;
  width: 0;
}
.ind-news-dynamic .news-list .news-item .news-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 15px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ind-news-dynamic .news-list .news-item .news-arrow {
  margin-top: 50px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/new-arrow.png) no-repeat center/100%;
}
.ind-news-dynamic .news-list .news-item:hover .news-title {
  color: #b60909;
}
.ind-news-dynamic .news-list .news-item:hover .news-date-line::after {
  width: 100%;
}
.ind-news-dynamic .news-list .news-item:hover .news-arrow {
  background: url(../img/arrow-red.png) no-repeat center/100%;
}
.ind-news-dynamic .more-box .ind-content-more {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .ind-news-dynamic .news-list .news-item {
    flex: 0 1 calc(50% - 10px);
  }
}
@media screen and (max-width: 1024px) {
  .ind-news-dynamic .news-list .news-item {
    flex: 0 1 100%;
    padding: 0;
  }
  .ind-news-dynamic .news-list .news-item .news-title {
    font-size: 16px;
  }
  .ind-news-dynamic .news-list .news-item .news-date {
    font-size: 12px;
    margin: 5px 0;
  }
  .ind-news-dynamic .news-list .news-item .news-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-top: 10px;
  }
  .ind-news-dynamic .news-list .news-item .news-arrow {
    font-size: 18px;
    margin-top: 20px;
  }
}

.footer {
  background-color: #1d2024;
  color: #fff;
  font-size: 14px;
  /*苹果X底部兼容*/
}
@supports (bottom: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
}
.footer .footer-top {
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-top .footer-logo {
  flex-shrink: 0;
}
.footer .footer-top .footer-logo img {
  max-width: 136px;
  height: auto;
}
.footer .footer-top .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
  justify-content: flex-end;
}
.footer .footer-top .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}
.footer .footer-top .footer-contact .contact-item .contact-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.footer .footer-top .footer-contact .contact-item .contact-icon img {
  width: 34px;
  height: 34px;
}
.footer .footer-top .footer-contact .contact-item .contact-icon span {
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}
.footer .footer-top .footer-contact .contact-item .contact-info {
  padding-left: 42px;
}
.footer .footer-top .footer-contact .contact-item .contact-info p {
  margin: 0 0 5px 0;
  color: #999999;
  font-size: 15px;
  line-height: 1.6;
}
.footer .footer-top .footer-contact .contact-item .contact-info p:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom {
  padding: 40px 0;
  margin: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom .mid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.footer .footer-bottom .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
}
.footer .footer-bottom .footer-nav .nav-column {
  min-width: 120px;
}
.footer .footer-bottom .footer-nav .nav-column .nav-title {
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 20px 0;
  margin-bottom: 20px;
  color: #eeeeee;
  position: relative;
}
.footer .footer-bottom .footer-nav .nav-column .nav-title:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: #b60909;
}
.footer .footer-bottom .footer-nav .nav-column .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-bottom .footer-nav .nav-column .nav-links li {
  margin-bottom: 10px;
}
.footer .footer-bottom .footer-nav .nav-column .nav-links li:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom .footer-nav .nav-column .nav-links li a {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer .footer-bottom .footer-nav .nav-column .nav-links li a:hover {
  color: #fff;
}
.footer .footer-bottom .footer-qrcode {
  display: flex;
  gap: 50px;
  flex-shrink: 0;
}
.footer .footer-bottom .footer-qrcode .qrcode-item {
  text-align: center;
}
.footer .footer-bottom .footer-qrcode .qrcode-item img {
  width: 150px;
  height: 150px;
  display: block;
  margin-bottom: 10px;
}
.footer .footer-bottom .footer-qrcode .qrcode-item p {
  font-size: 14px;
  color: #999;
}
.footer .footer-copyright {
  color: #999;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
  gap: 5px;
}
.footer .footer-copyright img {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  margin-right: 5px;
}
.footer .footer-copyright a {
  color: #999;
  font-size: inherit;
}
@media screen and (max-width: 1440px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer .footer-top .footer-logo {
    width: 100%;
    text-align: center;
  }
  .footer .footer-top .footer-logo img {
    max-width: 100px;
  }
  .footer .footer-top .footer-contact {
    justify-content: space-between;
    width: 100%;
    gap: 30px;
  }
  .footer .footer-top .footer-contact .contact-item {
    min-width: 200px;
  }
  .footer .footer-bottom .mid {
    flex-direction: column;
    gap: 30px;
  }
  .footer .footer-bottom .footer-nav {
    width: 100%;
    justify-content: center;
    gap: 30px;
  }
  .footer .footer-bottom .footer-nav .nav-column {
    min-width: 150px;
  }
  .footer .footer-bottom .footer-qrcode {
    width: 100%;
    justify-content: center;
  }
  .footer .footer-copyright {
    font-size: 12px;
    word-break: break-all;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .footer .footer-top .footer-logo {
    width: 100%;
    text-align: center;
  }
  .footer .footer-top .footer-logo img {
    max-width: 80px;
  }
  .footer .footer-top .footer-contact {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer-top .footer-contact .contact-item {
    width: 100%;
    flex-direction: column;
    gap: 5px;
  }
  .footer .footer-top .footer-contact .contact-item .contact-icon {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .footer .footer-top .footer-contact .contact-item .contact-icon img {
    width: 24px;
    height: 24px;
  }
  .footer .footer-top .footer-contact .contact-item .contact-icon span {
    font-size: 14px;
  }
  .footer .footer-top .footer-contact .contact-item .contact-info {
    padding-left: 32px;
  }
  .footer .footer-top .footer-contact .contact-item .contact-info p {
    font-size: 12px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    margin: 0;
  }
  .footer .footer-bottom .footer-nav {
    gap: 20px;
    justify-content: flex-start;
  }
  .footer .footer-bottom .footer-nav .nav-column {
    min-width: initial;
  }
  .footer .footer-bottom .footer-nav .nav-column .nav-title {
    font-size: 14px;
    padding-bottom: 8px;
    margin-bottom: 10px;
  }
  .footer .footer-bottom .footer-nav .nav-column .nav-links li {
    margin-bottom: 8px;
  }
  .footer .footer-bottom .footer-nav .nav-column .nav-links li a {
    font-size: 12px;
  }
  .footer .footer-bottom .footer-qrcode {
    width: 100%;
    align-items: center;
    gap: 20px;
  }
  .footer .footer-bottom .footer-qrcode .qrcode-item img {
    width: 100px;
    height: 100px;
  }
  .footer .footer-bottom .footer-qrcode .qrcode-item p {
    font-size: 12px;
  }
  .footer .footer-copyright {
    padding-top: 15px;
    font-size: 12px;
    word-break: break-all;
    line-height: 1.6;
  }
}

.in-banner {
  position: relative;
}
.in-banner img {
  width: 100%;
  object-fit: cover;
}
.in-banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in-banner .banner-content h1,
.in-banner .banner-content p {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .in-banner .banner-content h1,
  .in-banner .banner-content p {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .in-banner img {
    min-height: 150px;
  }
  .in-banner .banner-content h1,
  .in-banner .banner-content p {
    font-size: 20px;
  }
}

.in-breadcrumb {
  border-bottom: 1px solid #e2e6e9;
}
.in-breadcrumb.sticky-box {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 9;
  transition: box-shadow 0.3s, top 0.3s;
}
.in-breadcrumb.sticky-box.sticky {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.in-breadcrumb .mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.in-breadcrumb .mid .breadcrumb-content {
  background: url(../img/breadcrumb-bg.png) no-repeat left center/14px 14px;
  padding-left: 18px;
}
.in-breadcrumb .mid .breadcrumb-content span,
.in-breadcrumb .mid .breadcrumb-content a,
.in-breadcrumb .mid .breadcrumb-content h1 {
  color: #999999;
  font-size: 14px;
  font-weight: normal;
}
.in-breadcrumb .mid .breadcrumb-content h1 {
  display: inline-block;
  color: inherit;
}
.in-breadcrumb .mid .breadcrumb-content a:last-child {
  color: #232323;
}
.in-breadcrumb .mid .breadcrumb-menu {
  display: flex;
  align-items: center;
  gap: 1px;
}
.in-breadcrumb .mid .breadcrumb-menu a {
  color: #232323;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 35px;
  transition: all 0.3s;
}
.in-breadcrumb .mid .breadcrumb-menu a:hover, .in-breadcrumb .mid .breadcrumb-menu a.active {
  background-color: #b60909;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .in-breadcrumb .mid {
    justify-content: center;
    min-height: initial;
  }
  .in-breadcrumb .mid .breadcrumb-content {
    display: none;
  }
  .in-breadcrumb .mid .breadcrumb-menu {
    flex-wrap: wrap;
    gap: 10px;
  }
  .in-breadcrumb .mid .breadcrumb-menu a {
    padding: 0 24px;
    height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .in-breadcrumb .mid .breadcrumb-menu {
    flex-wrap: wrap;
    gap: 10px;
  }
  .in-breadcrumb .mid .breadcrumb-menu a {
    padding: 0 12px;
    height: 35px;
    font-size: 14px;
  }
}

.about-us {
  scroll-margin-top: 100px;
}
.about-us .mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-us .mid .about-us-content {
  width: 62%;
}
.about-us .mid .about-us-content .title {
  font-size: 36px;
  color: #232323;
  font-weight: bold;
  margin-bottom: 30px;
}
.about-us .mid .about-us-content .text {
  font-size: 14px;
  color: #232323;
  line-height: 1.6;
  word-break: break-all;
  max-height: 400px;
  overflow-y: auto;
}
.about-us .mid .about-us-img {
  width: 34%;
  text-align: center;
}
.about-us .mid .about-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us .mid .about-us-img p {
  font-size: 24px;
  color: #b60909;
  font-weight: bold;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .about-us {
    scroll-margin-top: 180px;
  }
  .about-us .mid .about-us-content .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .about-us .mid .about-us-img img {
    width: 80%;
  }
  .about-us .mid .about-us-img p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .about-us {
    scroll-margin-top: 100px;
  }
  .about-us .mid {
    flex-direction: column;
    gap: 20px;
  }
  .about-us .mid .about-us-img {
    width: 100%;
  }
  .about-us .mid .about-us-img p {
    font-size: 18px;
    margin-top: 20px;
  }
  .about-us .mid .about-us-content {
    width: 100%;
  }
  .about-us .mid .about-us-content .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .about-us .mid .about-us-content .text {
    max-height: initial;
    overflow-y: visible;
  }
}

.about-numbers {
  background: url(../img/ab-ad-bg.png) no-repeat center/cover;
}
.about-numbers .numbers-list li:not(:last-child)::after {
  background: #ffffff;
  opacity: 0.3;
}
.about-numbers .numbers-list .number {
  color: #fff;
}
.about-numbers .numbers-list .suffix {
  color: #fff;
}
.about-numbers .numbers-list .desc {
  color: #fff;
}

.about-production {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .about-production {
    scroll-margin-top: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .about-production {
    scroll-margin-top: 100px;
  }
}
.about-production .about-production-content {
  margin-top: 50px;
}
.about-production .about-production-content .production-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid #e5e5e5;
}
.about-production .about-production-content .production-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.about-production .about-production-content .production-nav .nav-item .nav-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}
.about-production .about-production-content .production-nav .nav-item .nav-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}
.about-production .about-production-content .production-nav .nav-item .nav-icon .icon-active {
  opacity: 0;
}
.about-production .about-production-content .production-nav .nav-item .nav-icon .icon-normal {
  opacity: 1;
}
.about-production .about-production-content .production-nav .nav-item .nav-text {
  font-size: 14px;
  color: #232323;
  position: relative;
  padding-bottom: 30px;
  transition: color 0.3s;
  font-weight: bold;
}
.about-production .about-production-content .production-nav .nav-item .nav-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #b60909;
  transition: width 0.3s;
}
.about-production .about-production-content .production-nav .nav-item.active .nav-icon .icon-active {
  opacity: 1;
}
.about-production .about-production-content .production-nav .nav-item.active .nav-icon .icon-normal {
  opacity: 0;
}
.about-production .about-production-content .production-nav .nav-item.active .nav-text {
  color: #b60909;
}
.about-production .about-production-content .production-nav .nav-item.active .nav-text::after {
  width: 100%;
}
.about-production .about-production-content .production-nav .nav-item:hover .nav-text {
  color: #b60909;
}
.about-production .about-production-content .production-grid {
  position: relative;
  margin-top: 40px;
}
.about-production .about-production-content .production-grid .grid-group {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 258px;
  gap: 30px;
}
.about-production .about-production-content .production-grid .grid-group.active {
  display: grid;
}
.about-production .about-production-content .production-grid .grid-group .grid-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5f5f5;
}
.about-production .about-production-content .production-grid .grid-group .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.about-production .about-production-content .production-grid .grid-group .grid-item:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 1440px) {
  .about-production .about-production-content {
    margin-top: 30px;
  }
  .about-production .about-production-content .production-nav {
    gap: 40px;
  }
  .about-production .about-production-content .production-nav .nav-item .nav-icon {
    width: 40px;
    height: 40px;
  }
  .about-production .about-production-content .production-nav .nav-item .nav-text {
    font-size: 14px;
  }
  .about-production .about-production-content .production-grid {
    margin-top: 30px;
  }
  .about-production .about-production-content .production-grid .grid-group {
    gap: 20px;
    grid-auto-rows: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .about-production .about-production-content {
    margin-top: 20px;
  }
  .about-production .about-production-content .production-nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  .about-production .about-production-content .production-nav .nav-item .nav-icon {
    width: 30px;
    height: 30px;
  }
  .about-production .about-production-content .production-nav .nav-item .nav-text {
    font-size: 14px;
  }
  .about-production .about-production-content .production-grid .grid-group {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 12px;
  }
}

.about-certification {
  background-color: #f6f8fa;
  scroll-margin-top: 100px;
}
.about-certification .about-certification-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 264px;
  gap: 30px;
}
.about-certification .about-certification-content .certification-item {
  position: relative;
  overflow: hidden;
  background: #eaeced;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  border: 20px solid #fff;
  padding: 15px;
}
.about-certification .about-certification-content .certification-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.about-certification .about-certification-content .certification-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 1440px) {
  .about-certification {
    scroll-margin-top: 180px;
  }
  .about-certification .about-certification-content {
    grid-auto-rows: 200px;
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .about-certification {
    scroll-margin-top: 100px;
  }
  .about-certification .about-certification-content {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
  }
}

.products-box .products-search .layui-form {
  background-color: #f7f7f7;
  border: 4px solid #f7f7f7;
  border-radius: 6px;
  display: flex;
}
.products-box .products-search .layui-form .layui-input,
.products-box .products-search .layui-form .layui-input:focus {
  border: none;
  outline: none;
  box-shadow: none;
  height: 50px;
}
.products-box .products-search .layui-form .layui-form-select {
  width: 240px;
  max-width: 30vw;
  height: 50px;
}
.products-box .products-search .layui-form .layui-form-select dl dd.layui-this {
  color: #b60909;
}
.products-box .products-search .layui-form .input {
  flex: 1;
  background-color: transparent;
  padding: 0 10px;
}
.products-box .products-search .layui-form .layui-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  box-shadow: none;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  .products-box .products-search .layui-form .layui-input,
  .products-box .products-search .layui-form .layui-form-select,
  .products-box .products-search .layui-form .layui-btn {
    height: 40px;
  }
}
.products-box .products-list {
  margin-top: 30px;
}
.products-box .products-list .products-table-wrapper {
  overflow-x: auto;
}
.products-box .products-list .products-table-wrapper .products-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 800px;
}
.products-box .products-list .products-table-wrapper .products-table thead {
  background: #b60909;
}
.products-box .products-list .products-table-wrapper .products-table thead tr th {
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  text-align: left;
  white-space: nowrap;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:nth-child(even) {
  background: #f6f8fa;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:nth-child(odd) {
  background: #fff;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:hover {
  background: #f5f5f5;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr td {
  padding: 15px 20px;
  font-size: 16px;
  color: #232323;
  vertical-align: middle;
}
.products-box .products-list .products-table-wrapper .products-table .col-name {
  position: sticky;
  left: 0;
  background: inherit;
  z-index: 7;
  min-width: 120px;
  max-width: 120px;
  width: 120px;
  font-weight: 500;
  padding-left: 40px;
}
.products-box .products-list .products-table-wrapper .products-table thead .col-name {
  background: #b60909;
  z-index: 9;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:nth-child(even) .col-name {
  background: #f9f9f9;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:nth-child(odd) .col-name {
  background: #fff;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:hover .col-name {
  background: #f5f5f5;
}
.products-box .products-list .products-table-wrapper .products-table .col-image {
  text-align: center;
  min-width: 120px;
  white-space: nowrap;
}
.products-box .products-list .products-table-wrapper .products-table .col-image img {
  max-width: 106px;
  max-height: 80px;
  object-fit: contain;
  display: inline-block;
}
.products-box .products-list .products-table-wrapper .products-table .col-grade {
  min-width: 100px;
  white-space: nowrap;
}
.products-box .products-list .products-table-wrapper .products-table .col-package {
  min-width: 100px;
  white-space: nowrap;
}
.products-box .products-list .products-table-wrapper .products-table .col-spec {
  min-width: 300px;
  white-space: nowrap;
}
.products-box .products-list .products-table-wrapper .products-table .col-action {
  position: sticky;
  right: 0;
  background: inherit;
  z-index: 8;
  min-width: 100px;
  max-width: 100px;
  width: 100px;
  text-align: center;
  padding-right: 40px;
}
.products-box .products-list .products-table-wrapper .products-table .col-action a {
  color: #b60909;
  text-decoration: none;
  transition: color 0.3s;
}
.products-box .products-list .products-table-wrapper .products-table .col-action a:hover {
  color: rgb(133.4031413613, 6.5968586387, 6.5968586387);
  text-decoration: underline;
}
.products-box .products-list .products-table-wrapper .products-table thead .col-action {
  background: #b60909;
  z-index: 9;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:nth-child(even) .col-action {
  background: #f9f9f9;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:nth-child(odd) .col-action {
  background: #fff;
}
.products-box .products-list .products-table-wrapper .products-table tbody tr:hover .col-action {
  background: #f5f5f5;
}
@media screen and (max-width: 1440px) {
  .products-box .products-list .products-table-wrapper .products-table thead tr th {
    padding: 12px 15px;
    font-size: 13px;
  }
  .products-box .products-list .products-table-wrapper .products-table tbody tr td {
    padding: 12px 15px;
    font-size: 13px;
  }
  .products-box .products-list .products-table-wrapper .products-table .col-image img {
    max-width: 80px;
    max-height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .products-box .products-list .products-table-wrapper .products-table thead tr th {
    padding: 10px 12px;
    font-size: 12px;
  }
  .products-box .products-list .products-table-wrapper .products-table tbody tr td {
    padding: 10px 12px;
    font-size: 12px;
  }
  .products-box .products-list .products-table-wrapper .products-table .col-name {
    padding-left: 20px;
    min-width: 100px;
    max-width: 100px;
    width: 100px;
  }
  .products-box .products-list .products-table-wrapper .products-table .col-image img {
    max-width: 50px;
    max-height: 50px;
  }
  .products-box .products-list .products-table-wrapper .products-table .col-action {
    padding-right: 20px;
    min-width: 80px;
    max-width: 80px;
    width: 80px;
  }
}

.products-list-box .product-item {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid #e2e6e9;
  transition: all 0.3s;
}
.products-list-box .product-item .product-image {
  flex-shrink: 0;
  width: 600px;
  height: 338px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  overflow: hidden;
}
.products-list-box .product-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-list-box .product-item .product-info {
  flex: 1;
  position: relative;
  min-height: 200px;
}
.products-list-box .product-item .product-info .product-header {
  margin-bottom: 20px;
}
.products-list-box .product-item .product-info .product-header .product-name {
  font-size: 30px;
  font-weight: bold;
  color: #232323;
  transition: color 0.3s;
}
.products-list-box .product-item .product-info .product-header .product-standard {
  display: block;
  font-size: 18px;
  color: #232323;
  line-height: 1em;
  margin-top: 1em;
}
.products-list-box .product-item .product-info .product-details .detail-row {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
}
.products-list-box .product-item .product-info .product-details .detail-row:last-child {
  margin-bottom: 0;
}
.products-list-box .product-item .product-info .product-details .detail-row .detail-label {
  color: #232323;
  flex-shrink: 0;
  font-weight: bold;
}
.products-list-box .product-item .product-info .product-details .detail-row .detail-value {
  color: #232323;
  flex: 1;
}
.products-list-box .product-item .product-info .product-action {
  position: absolute;
  top: 0;
  right: 0;
}
.products-list-box .product-item .product-info .product-action .detail-btn {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  color: #232323;
  background: #fff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.products-list-box .product-item .product-info .product-action .detail-btn:hover {
  background: #b60909;
  color: #fff;
  border-color: #b60909;
}
.products-list-box .product-item:hover .product-header .product-name {
  color: #b60909;
}
.products-list-box .product-item:hover .product-action .detail-btn {
  background: #b60909;
  color: #fff;
  border-color: #b60909;
}
@media screen and (max-width: 1440px) {
  .products-list-box .product-item {
    gap: 25px;
    padding: 25px;
  }
  .products-list-box .product-item .product-image {
    width: 400px;
    height: 225px;
  }
  .products-list-box .product-item .product-info {
    min-height: 160px;
  }
  .products-list-box .product-item .product-info .product-header {
    margin-bottom: 15px;
  }
  .products-list-box .product-item .product-info .product-header .product-name {
    font-size: 20px;
  }
  .products-list-box .product-item .product-info .product-header .product-standard {
    font-size: 13px;
  }
  .products-list-box .product-item .product-info .product-details {
    margin-bottom: 15px;
  }
  .products-list-box .product-item .product-info .product-details .detail-row {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .products-list-box .product-item .product-info .product-action .detail-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .products-list-box .product-item {
    flex-direction: column;
    padding: 20px 10px;
    gap: 10px;
  }
  .products-list-box .product-item .product-image {
    width: 100%;
    height: auto;
    max-height: 250px;
  }
  .products-list-box .product-item .product-info {
    min-height: auto;
    position: relative;
  }
  .products-list-box .product-item .product-info .product-header {
    margin-bottom: 15px;
  }
  .products-list-box .product-item .product-info .product-header .product-name {
    font-size: 18px;
  }
  .products-list-box .product-item .product-info .product-header .product-standard {
    font-size: 12px;
  }
  .products-list-box .product-item .product-info .product-details {
    margin-bottom: 15px;
  }
  .products-list-box .product-item .product-info .product-details .detail-row {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .products-list-box .product-item .product-info .product-action {
    position: static;
    margin-top: 10px;
  }
  .products-list-box .product-item .product-info .product-action .detail-btn {
    width: 100%;
    text-align: center;
    padding: 5px 20px;
    font-size: 12px;
  }
}

.products-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-info-top .products-info-top-left {
  width: 43%;
}
.products-info-top .products-info-top-left .products-info-img-swiper {
  width: 100%;
  height: 100%;
}
.products-info-top .products-info-top-left .products-info-img-swiper img {
  width: 100%;
  height: 100%;
}
.products-info-top .products-info-top-left .products-info-img-swiper .swiper-pagination {
  text-align: right;
  padding: 0 30px;
  bottom: 20px;
}
.products-info-top .products-info-top-left .products-info-img-swiper .swiper-pagination-bullet {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
}
.products-info-top .products-info-top-left .products-info-img-swiper .swiper-pagination-bullet-active {
  background-color: #b60909;
}
.products-info-top .products-info-top-right {
  width: 52.7%;
}
.products-info-top .products-info-top-right .product-name {
  font-size: 30px;
  font-weight: bold;
  color: #232323;
  margin-bottom: 20px;
}
.products-info-top .products-info-top-right .product-details .detail-row {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
}
.products-info-top .products-info-top-right .product-details .detail-label {
  color: #232323;
  font-weight: bold;
}
.products-info-top .products-info-top-right .product-details .detail-value {
  color: #232323;
  flex: 1;
}
.products-info-top .products-info-top-right .product-tel {
  display: flex;
  align-items: center;
  font-size: 16px;
  height: 50px;
  margin-top: 50px;
}
.products-info-top .products-info-top-right .product-tel span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b60909;
  background-image: url(../img/pro-info-tel.png);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: 18px center;
  color: #fff;
  padding: 0 18px 0 50px;
}
.products-info-top .products-info-top-right .product-tel a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b60909;
  color: #232323;
  padding: 0 18px;
}
@media screen and (max-width: 1440px) {
  .products-info-top .products-info-top-left {
    width: 40%;
  }
  .products-info-top .products-info-top-right {
    width: 55%;
  }
  .products-info-top .products-info-top-right .product-name {
    font-size: 24px;
  }
  .products-info-top .products-info-top-right .product-details .detail-row {
    font-size: 14px;
  }
  .products-info-top .products-info-top-right .product-tel {
    font-size: 14px;
    height: 40px;
    margin-top: 30px;
  }
  .products-info-top .products-info-top-right .product-tel span {
    background-size: 18px 18px;
  }
}
@media screen and (max-width: 1024px) {
  .products-info-top {
    flex-direction: column;
    gap: 20px;
  }
  .products-info-top .products-info-top-left {
    width: 100%;
  }
  .products-info-top .products-info-top-left .products-info-img-swiper .swiper-pagination {
    bottom: 10px;
    padding: 0 14px;
  }
  .products-info-top .products-info-top-left .products-info-img-swiper .swiper-pagination-bullet {
    background-color: #ffffff;
    width: 8px;
    height: 8px;
  }
  .products-info-top .products-info-top-left .products-info-img-swiper .swiper-pagination-bullet-active {
    background-color: #b60909;
  }
  .products-info-top .products-info-top-right {
    width: 100%;
  }
  .products-info-top .products-info-top-right .product-name {
    font-size: 20px;
  }
  .products-info-top .products-info-top-right .product-details .detail-row {
    font-size: 13px;
  }
  .products-info-top .products-info-top-right .product-tel {
    font-size: 13px;
    height: 30px;
    margin-top: 20px;
  }
  .products-info-top .products-info-top-right .product-tel span {
    background-size: 14px 14px;
    padding: 0 18px 0 40px;
  }
}

.products-info-center {
  border-top: 1px solid #e2e6e9;
  border-bottom: 1px solid #e2e6e9;
}
.products-info-center .title {
  background-color: #f7f7f7;
  margin-bottom: 30px;
}
.products-info-center .title h2 {
  display: inline-flex;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 18px 52px;
  background-color: #b60909;
}
.products-info-center .text {
  font-size: 14px;
  color: #232323;
}
@media screen and (max-width: 1440px) {
  .products-info-center {
    margin-bottom: 20px;
  }
  .products-info-center .title h2 {
    font-size: 20px;
    padding: 18px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .products-info-center .title h2 {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.products-other-box {
  position: relative;
}
.products-other-box .products-other-swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.products-other-box .products-other-swiper .swiper-slide .img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b60909;
  opacity: 0;
  transition: 0.3s;
}
.products-other-box .products-other-swiper .swiper-slide .img img {
  width: 100%;
  max-height: 190px;
  object-fit: cover;
}
.products-other-box .products-other-swiper .swiper-slide .word {
  margin-top: 20px;
  padding-right: 30px;
  background: url(../img/pro-info-goto.png) no-repeat right 80%/20px 20px;
}
.products-other-box .products-other-swiper .swiper-slide .word p {
  font-size: 16px;
  color: #000000;
  transition: 0.3s;
  line-height: 1.5em;
  height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.products-other-box .products-other-swiper .swiper-slide .word p:first-child {
  font-weight: bold;
}
.products-other-box .products-other-swiper .swiper-slide:hover .img:before {
  opacity: 0.6;
}
.products-other-box .products-other-swiper .swiper-slide:hover .word {
  background: url(../img/pro-info-goto-cur.png) no-repeat right 80%/20px 20px;
}
.products-other-box .products-other-swiper .swiper-slide:hover .word p {
  color: #b60909;
}
.products-other-box .products-other-swiper-button-next,
.products-other-box .products-other-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #b60909;
  border-radius: 50%;
  cursor: pointer;
}
.products-other-box .products-other-swiper-button-next {
  background: url(../img/pro-info-right.png) no-repeat center/100%;
  right: -60px;
}
.products-other-box .products-other-swiper-button-prev {
  background: url(../img/pro-info-left.png) no-repeat center/100%;
  left: -60px;
}
@media screen and (max-width: 1440px) {
  .products-other-box .products-other-swiper-button-next,
  .products-other-box .products-other-swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .products-other-box .products-other-swiper-button-next,
  .products-other-box .products-other-swiper-button-prev {
    display: none;
  }
  .products-other-box .products-other-swiper .swiper-slide .word {
    margin-top: 10px;
    padding-right: 0;
    background: none !important;
  }
  .products-other-box .products-other-swiper .swiper-slide .word p {
    font-size: 14px;
  }
}

.news-list-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.news-list-box .news-item {
  background: #efefef;
  padding: 30px;
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.news-list-box .news-item .news-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.news-list-box .news-item .news-header .news-title {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  color: #232323;
  margin: 0;
  line-height: 1.5;
  height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.news-list-box .news-item .news-header .news-date {
  flex-shrink: 0;
  font-size: 14px;
  color: #999;
}
.news-list-box .news-item .news-description {
  font-size: 14px;
  color: #232323;
  line-height: 1.8;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list-box .news-item .news-action {
  width: 20px;
  height: 40px;
  background-image: url(../img/new-arrow.png);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center center;
  padding-right: 20px;
  transition: 0.5s;
}
.news-list-box .news-item:hover .news-title {
  color: #b60909;
}
.news-list-box .news-item:hover .news-action {
  width: 100px;
  border-radius: 5px;
  background-color: #b60909;
  background-image: url(../img/new-arrow-cur.png);
}
@media screen and (max-width: 1440px) {
  .news-list-box .news-item {
    padding: 25px;
  }
  .news-list-box .news-item .news-header {
    margin-bottom: 15px;
  }
  .news-list-box .news-item .news-header .news-title {
    font-size: 16px;
  }
  .news-list-box .news-item .news-header .news-date {
    font-size: 13px;
  }
  .news-list-box .news-item .news-description {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .news-list-box .news-item .news-action {
    height: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .news-list-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-list-box .news-item {
    padding: 10px;
  }
  .news-list-box .news-item .news-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .news-list-box .news-item .news-header .news-title {
    font-size: 16px;
    width: 100%;
  }
  .news-list-box .news-item .news-header .news-date {
    font-size: 12px;
    align-self: flex-start;
  }
  .news-list-box .news-item .news-description {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .news-list-box .news-item .news-action {
    background-size: 16px 16px;
  }
  .news-list-box .news-item:hover .news-action {
    width: 60px;
  }
}

.news-info .news-info-box .news-title {
  font-size: 36px;
  font-weight: bold;
  color: #232323;
  text-align: center;
}
.news-info .news-info-box .news-date {
  font-size: 16px;
  color: #222222;
  text-align: center;
  margin: 25px 0 40px 0;
}
.news-info .news-info-content {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.news-info .news-info-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
.news-info .news-info-page a {
  font-size: 16px;
  color: #232323;
}
@media screen and (max-width: 1440px) {
  .news-info .news-info-box .news-title {
    font-size: 30px;
  }
  .news-info .news-info-box .news-date {
    font-size: 14px;
    margin: 20px 0 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .news-info .news-info-box .news-title {
    font-size: 20px;
  }
  .news-info .news-info-box .news-date {
    font-size: 14px;
    margin: 10px 0;
  }
  .news-info .news-info-page {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .news-info .news-info-page a {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

.joinus-box {
  background-color: #f6f8fa;
}
.joinus-box .joinus-list .joinus-item {
  background: #fff;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 4px;
}
.joinus-box .joinus-list .joinus-item:last-child {
  margin-bottom: 0;
}
.joinus-box .joinus-list .joinus-item .joinus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 80px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}
.joinus-box .joinus-list .joinus-item .joinus-header .joinus-title {
  font-size: 18px;
  font-weight: bold;
  color: #232323;
  margin: 0;
  transition: color 0.3s;
}
.joinus-box .joinus-list .joinus-item .joinus-header .joinus-toggle {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.joinus-box .joinus-list .joinus-item .joinus-header .joinus-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
  transform: rotate(90deg);
}
.joinus-box .joinus-list .joinus-item .joinus-header .joinus-toggle:hover {
  color: #b60909;
}
.joinus-box .joinus-list .joinus-item .joinus-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 280px 0 80px;
  position: relative;
}
.joinus-box .joinus-list .joinus-item .joinus-content .joinus-action {
  position: absolute;
  top: 30px;
  right: 80px;
}
.joinus-box .joinus-list .joinus-item .joinus-content .joinus-action .joinus-resume-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background: #b60909;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.joinus-box .joinus-list .joinus-item .joinus-content .joinus-action .joinus-resume-btn:hover {
  background: rgb(133.4031413613, 6.5968586387, 6.5968586387);
}
.joinus-box .joinus-list .joinus-item.active .joinus-header {
  background: #b60909;
}
.joinus-box .joinus-list .joinus-item.active .joinus-header .joinus-title {
  color: #fff;
}
.joinus-box .joinus-list .joinus-item.active .joinus-header .joinus-toggle {
  color: #fff;
}
.joinus-box .joinus-list .joinus-item.active .joinus-header .joinus-toggle svg {
  transform: rotate(-90deg);
}
.joinus-box .joinus-list .joinus-item.active .joinus-content {
  max-height: 2000px;
  padding: 30px 280px 30px 80px;
}
.joinus-box .joinus-list .joinus-item .joinus-text {
  margin-top: 50px;
}
.joinus-box .joinus-list .joinus-item .joinus-text:first-child {
  margin-top: 0;
}
.joinus-box .joinus-list .joinus-item .joinus-text .joinus-subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #232323;
  margin: 0 0 15px 0;
}
.joinus-box .joinus-list .joinus-item .joinus-text .joinus-text {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .joinus-box .joinus-list .joinus-item .joinus-header {
    padding: 18px 22px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-header .joinus-title {
    font-size: 16px;
  }
  .joinus-box .joinus-list .joinus-item.active .joinus-content {
    padding: 22px 150px 22px 22px;
  }
  .joinus-box .joinus-list .joinus-item.active .joinus-content .joinus-action {
    top: 18px;
    right: 22px;
  }
  .joinus-box .joinus-list .joinus-item.active .joinus-content .joinus-action .joinus-resume-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-text {
    margin-top: 30px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-text .joinus-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .joinus-box .joinus-list .joinus-item {
    margin-bottom: 12px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-header {
    padding: 15px 18px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-header .joinus-title {
    font-size: 15px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-header .joinus-toggle svg {
    width: 14px;
    height: 14px;
  }
  .joinus-box .joinus-list .joinus-item.active .joinus-content {
    padding: 18px;
  }
  .joinus-box .joinus-list .joinus-item.active .joinus-content .joinus-action {
    margin-top: 15px;
    text-align: center;
    position: static;
  }
  .joinus-box .joinus-list .joinus-item.active .joinus-content .joinus-action .joinus-resume-btn {
    padding: 5px 10px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-list-items {
    font-size: 12px;
    margin-left: 15px;
    margin-bottom: 15px;
  }
  .joinus-box .joinus-list .joinus-item .joinus-responsibilities p {
    font-size: 12px;
  }
}

.contact-section .mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-section .mid .ind-content-title {
  text-align: left;
}
.contact-section .mid .contact-left {
  width: 400px;
}
.contact-section .mid .contact-left .contact-info-list .contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.contact-section .mid .contact-left .contact-info-list .contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-section .mid .contact-left .contact-info-list .contact-info-item-icon {
  width: 24px;
  height: 24px;
}
.contact-section .mid .contact-left .contact-info-list .contact-info-item-icon img {
  width: 100%;
  height: 100%;
}
.contact-section .mid .contact-left .contact-info-list .contact-info-item-content {
  flex: 1;
}
.contact-section .mid .contact-left .contact-info-list .contact-info-item-content p {
  font-size: 18px;
  color: #232323;
  line-height: 1.5;
}
.contact-section .mid .contact-right {
  flex: 1;
}
.contact-section .mid .contact-right a {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-section .mid .contact-right img {
  display: block;
  max-width: 90%;
  max-height: 90%;
}
@media screen and (max-width: 1440px) {
  .contact-section .mid .contact-left .contact-info-list .contact-info-item {
    gap: 10px;
    margin-bottom: 20px;
  }
  .contact-section .mid .contact-left .contact-info-list .contact-info-item:last-child {
    margin-bottom: 0;
  }
  .contact-section .mid .contact-left .contact-info-list .contact-info-item-icon {
    width: 20px;
    height: 20px;
  }
  .contact-section .mid .contact-left .contact-info-list .contact-info-item-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-section .mid {
    flex-direction: column;
    gap: 20px;
  }
  .contact-section .mid .contact-left {
    width: 100%;
  }
  .contact-section .mid .contact-left .contact-info-list .contact-info-item-content p {
    font-size: 14px;
  }
  .contact-section .mid .contact-right img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }
}

/*# sourceMappingURL=public.css.map */
