@font-face {
  font-family: "OPPOSans-M";
  src: url("../font/OPPOSans-M.ttf");
}
@font-face {
  font-family: "OPPOSans-B";
  src: url("../font/OPPOSans-B.ttf");
}
.uk-text-bold {
  font-family: "OPPOSans-B";
}

html {
  font-size: calc(100vw / 1920 * 16);
}

p {
  margin: 0;
  padding: 0;
}

input,
textarea,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  border: none;
  border-radius: 0;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
button::-webkit-input-placeholder {
  color: #999;
  font-family: inherit;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
button:-ms-input-placeholder {
  color: #999;
  font-family: inherit;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
button::-ms-input-placeholder {
  color: #999;
  font-family: inherit;
}
input::placeholder,
textarea::placeholder,
button::placeholder {
  color: #999;
  font-family: inherit;
}
input:focus,
textarea:focus,
button:focus {
  outline: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.center {
  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;
}

body {
  background-color: #f6f6f6;
  color: #313131;
  font-family: "OPPOSans-M";
  scroll-behavior: smooth;
}

.footer {
  background-color: #151231;
  color: #fff;
}
.footer .uk-container {
  max-width: 1600px;
}
.footer .footer-t {
  padding: clamp(40px, 5rem, 80px) 0 clamp(20px, 3.125rem, 50px);
}
.footer .footer-b {
  border-top: 1px solid #39374f;
  padding: clamp(20px, 3.125rem, 50px) 0 clamp(30px, 3.125rem, 50px);
}
.footer .logo {
  width: clamp(150px, 12.5rem, 200px);
}
.footer .logo img {
  width: 100%;
}
.footer .inner {
  gap: 20px;
}
.footer .inner .nav {
  gap: 15px clamp(15px, 4.375rem, 70px);
}
.footer .inner .nav .nav-li {
  display: block;
  font-size: clamp(14px, 1.25rem, 20px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer .inner .nav .nav-li:hover {
  color: #c21f3d;
}
.footer .inner .copyright {
  font-size: clamp(13px, 1rem, 16px);
  line-height: 1.8;
}
.footer .inner .f-logo {
  gap: 15px;
}
.footer .inner .f-logo a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 100px;
}
.footer .inner .f-logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pagination-box {
  gap: 10px;
}
.pagination-box a {
  width: clamp(35px, 2.5rem, 40px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.pagination-box a:hover {
  color: #c21f3d;
}
.pagination-box a.uk-active {
  background-color: #c21f3d;
  color: #fff;
}

.content .product {
  background-color: #fff;
  padding: 50px 0;
}
.content .product .container-body .container-l {
  padding: 0 clamp(15px, 3.125rem, 50px);
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 515px;
}
.content .product .container-body .container-l .pro-menu .uk-accordion-title {
  font-size: clamp(16px, 1.125rem, 18px);
  padding: clamp(10px, 0.9375rem, 15px) 0;
  line-height: 1.6;
}
.content .product .container-body .container-l .pro-menu .uk-open .uk-accordion-title {
  color: #c21f3d;
}
.content .product .container-body .container-l .pro-menu .uk-accordion-content .pro-nav .pro-nav-i {
  position: relative;
  color: #313131;
  font-size: clamp(14px, 1rem, 16px);
  padding: 7.5px 0;
  cursor: pointer;
  padding-left: 15px;
}
.content .product .container-body .container-l .pro-menu .uk-accordion-content .pro-nav .pro-nav-i:hover {
  color: #c21f3d;
}
.content .product .container-body .container-l .pro-menu .uk-accordion-content .pro-nav .pro-nav-i::before {
  position: absolute;
  width: 5px;
  height: 9px;
  content: "";
  left: 0;
  background-image: url("../images/arrow-1.png");
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content .product .container-body .container-l .pro-menu .uk-accordion-content .pro-nav .pro-nav-i.uk-active {
  color: #c21f3d;
}
.content .product .container-body .container-l .pro-menu .uk-accordion-content .pro-nav .pro-nav-i.uk-active::before {
  background-image: url("../images/arrow.png");
}
@media (max-width: 639px) {
  .content .product .container-body .container-l {
    width: 100%;
    max-width: 100%;
  }
}
.content .product .container-body .container-r {
  border-left: 1px solid #dcdcdc;
  padding: 0 clamp(15px, 3.125rem, 50px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content .product .container-body .container-r .uk-grid > * {
  margin-bottom: clamp(15px, 2.5rem, 40px);
}
@media (max-width: 959px) {
  .content .product .container-body .container-r .uk-grid {
    margin-left: -10px;
  }
  .content .product .container-body .container-r .uk-grid > * {
    padding-left: 10px;
  }
}
@media (max-width: 639px) {
  .content .product .container-body .container-r .uk-grid {
    margin-left: -10px;
  }
  .content .product .container-body .container-r .uk-grid > * {
    padding-left: 10px;
  }
}
.content .product .container-body .container-r .pro-i {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .product .container-body .container-r .pro-i .i-img {
  padding: clamp(15px, 2.5rem, 40px);
}
.content .product .container-body .container-r .pro-i .i-img img {
  width: 100%;
  aspect-ratio: 320/230;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.content .product .container-body .container-r .pro-i .i-text {
  padding: 10px clamp(15px, 1.875rem, 30px) clamp(15px, 1.875rem, 30px);
}
.content .product .container-body .container-r .pro-i .i-text .i-title {
  font-size: clamp(16px, 1.375rem, 22px);
}
.content .product .container-body .container-r .pro-i .i-text .i-desc {
  margin-top: 2px;
  font-size: clamp(14px, 1.25rem, 20px);
}
.content .product .container-body .container-r .pro-i:hover {
  background-color: #f7f7f7;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.content .product .container-body .container-r .application-i {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .product .container-body .container-r .application-i .i-img {
  padding: clamp(15px, 2.5rem, 40px);
}
.content .product .container-body .container-r .application-i .i-img img {
  width: 100%;
  aspect-ratio: 320/230;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.content .product .container-body .container-r .application-i .i-text {
  padding: 10px clamp(15px, 1.875rem, 30px) clamp(15px, 1.875rem, 30px);
}
.content .product .container-body .container-r .application-i .i-text .i-title {
  font-size: clamp(16px, 1.375rem, 22px);
}
.content .product .container-body .container-r .application-i .i-text .i-desc {
  margin-top: 2px;
  font-size: clamp(14px, 1.25rem, 20px);
}
.content .product .container-body .container-r .application-i:hover {
  background-color: #f7f7f7;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (max-width: 639px) {
  .content .product .container-body .container-r {
    width: 100%;
    max-width: 100%;
    border-left: none;
    margin-top: 20px;
    padding: 0;
  }
}
.content .banner-box {
  position: relative;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  height: clamp(400px, 42.5rem, 680px);
  color: #fff;
}
.content .banner-box::after {
  width: 100%;
  height: 100%;
  z-index: 0;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
}
.content .banner-box .uk-container {
  max-width: 1600px;
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.content .banner-box .i-title {
  font-size: clamp(40px, 5rem, 80px);
  line-height: 1.2;
}
.content .banner-box .i-desc {
  margin-top: clamp(15px, 1.875rem, 30px);
  font-size: clamp(20px, 2.5rem, 40px);
  line-height: 1;
}
.content .nav-tool {
  background-color: #f6f6f6;
  padding: clamp(20px, 2.5rem, 40px) 0;
}
.content .nav-tool .uk-container {
  max-width: 1280px;
  color: #7d7d7d;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .nav-tool .uk-container .inner {
  gap: 5px clamp(5px, 0.9375rem, 15px);
}
.content .nav-tool .uk-container .inner a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .nav-tool .uk-container .inner a:hover {
  color: #c21f3d;
}
.content .product-det {
  padding-bottom: clamp(40px, 7.5rem, 120px);
}
.content .product-det .pro-slide-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: clamp(25px, 3.125rem, 50px) clamp(15px, 3.125rem, 50px);
}
.content .product-det .pro-slide-box:not(:first-child) {
  margin-top: clamp(15px, 1.875rem, 30px);
}
.content .product-det .pro-slide-box .pro-left {
  width: 60%;
}
@media (max-width: 639px) {
  .content .product-det .pro-slide-box .pro-left {
    width: 100%;
  }
}
.content .product-det .pro-slide-box .pro-left #proBtn {
  height: clamp(300px, 31.25rem, 500px);
}
.content .product-det .pro-slide-box .pro-left #proBtn .swiper-slide {
  aspect-ratio: 1/1;
  height: calc(100% / 5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 5px;
}
.content .product-det .pro-slide-box .pro-left #proBtn .swiper-slide.swiper-slide-thumb-active .i-img {
  border: solid 1px #c21f3d;
}
.content .product-det .pro-slide-box .pro-left #proBtn .swiper-slide .i-img {
  display: block;
  border: solid 1px #b5b5b5;
  border-radius: 10px;
  padding: 10px;
}
.content .product-det .pro-slide-box .pro-left #proView {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: clamp(15px, 3.125rem, 50px);
}
.content .product-det .pro-slide-box .pro-left #proView .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content .product-det .pro-slide-box .pro-left .swiper-l.p {
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.content .product-det .pro-slide-box .pro-left .swiper-l.n {
  cursor: pointer;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.content .product-det .pro-slide-box .pro-right {
  padding: clamp(5px, 3.125rem, 50px);
}
@media (max-width: 639px) {
  .content .product-det .pro-slide-box .pro-right {
    margin-top: 20px;
  }
}
.content .product-det .pro-slide-box .pro-right .i-title {
  font-size: clamp(20px, 2.25rem, 36px);
}
.content .product-det .pro-slide-box .pro-right .i-desc {
  font-size: clamp(14px, 1.125rem, 18px);
  margin-top: clamp(15px, 1.875rem, 30px);
  padding-top: clamp(15px, 1.875rem, 30px);
  border-top: 1px solid #d3d3d3;
}
.content .product-det .pro-slide-box .pro-right .pro-btn {
  color: #fff;
  cursor: pointer;
  height: clamp(50px, 3.75rem, 60px);
  background-color: #c21f3d;
  border-radius: 10px;
  font-size: clamp(16px, 1.25rem, 20px);
  margin-top: 20px;
}
.content .product-det .pro-slide-box .titile-box {
  font-size: clamp(18px, 1.5rem, 24px);
  padding-bottom: clamp(15px, 1.875rem, 30px);
  border-bottom: 1px solid #d3d3d3;
  position: relative;
}
.content .product-det .pro-slide-box .titile-box::after {
  background-color: #c21f3d;
  left: 0;
  width: 80px;
  height: 5px;
  bottom: -1px;
  position: absolute;
  content: "";
}
.content .product-det .pro-slide-box .pro-desc {
  font-size: clamp(14px, 1.125rem, 18px);
  line-height: 1.8;
}
.content .product-det .pro-slide-box .pro-desc .video-tips {
  font-style: oblique;
  color: #1b1b1b;
  margin-top: 15px;
}
.content .product-det .pro-slide-box .table-inner {
  overflow-x: auto;
}
.content .product-det .pro-slide-box .table-inner table {
  min-width: 100%;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .product-det .pro-slide-box .table-inner table tr td {
  padding: 15px;
}
.content .product-det .pro-slide-box .cet-ul {
  margin-left: -80px;
}
.content .product-det .pro-slide-box .cet-ul > * {
  padding-left: 80px;
  margin-bottom: clamp(15px, 1.25rem, 20px);
}
@media (max-width: 960px) {
  .content .product-det .pro-slide-box .cet-ul {
    margin-left: -50px;
  }
  .content .product-det .pro-slide-box .cet-ul > * {
    padding-left: 50px;
  }
}
@media (max-width: 639px) {
  .content .product-det .pro-slide-box .cet-ul {
    margin-left: -10px;
  }
  .content .product-det .pro-slide-box .cet-ul > * {
    padding-left: 10px;
  }
}
.content .product-det .pro-slide-box .pro-form {
  padding-top: 25px;
}
.content .product-det .pro-slide-box .pro-form .uk-grid-li {
  margin-bottom: clamp(15px, 1.875rem, 30px);
}
.content .product-det .pro-slide-box .pro-form .uk-grid-li .input-li {
  padding: 16px;
  background-color: #f8f8f8;
  border-radius: 10px;
  border: 1px solid transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .product-det .pro-slide-box .pro-form .uk-grid-li .input-li:focus-within {
  border: 1px solid #c21f3d;
}
.content .product-det .pro-slide-box .pro-form .uk-grid-li .input-li input {
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .product-det .pro-slide-box .pro-form .uk-grid-li .input-li textarea {
  height: 150px;
  resize: none;
  width: 100%;
  display: block;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.content .product-det .pro-slide-box .pro-form .form-bottom {
  gap: 15px;
}
.content .product-det .pro-slide-box .pro-form .form-bottom .form-btn {
  width: 500px;
  max-width: 50%;
  color: #fff;
  cursor: pointer;
  height: clamp(50px, 3.75rem, 60px);
  background-color: #c21f3d;
  border-radius: 10px;
  font-size: clamp(16px, 1.25rem, 20px);
}
@media (max-width: 639px) {
  .content .product-det .pro-slide-box .pro-form .form-bottom .form-btn {
    width: 100%;
    max-width: 100%;
  }
}
.content .news {
  padding-bottom: clamp(40px, 7.5rem, 120px);
}
.content .news .uk-container {
  max-width: 1600px;
}
.content .news .uk-container .news-list-desc {
  padding-top: clamp(40px, 7.5rem, 120px);
}
.content .news .uk-container .news-list-desc .i-title {
  font-size: clamp(24px, 3.125rem, 50px);
}
.content .news .uk-container .news-list-desc .i-desc {
  max-width: 650px;
  margin-top: 10px;
  font-size: clamp(16px, 1.5rem, 24px);
}
.content .news .uk-container .news-grid {
  margin-top: clamp(30px, 5rem, 80px);
  margin-left: -60px;
}
.content .news .uk-container .news-grid > * {
  padding-left: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .content .news .uk-container .news-grid {
    margin-left: -40px;
  }
  .content .news .uk-container .news-grid > * {
    padding-left: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 959px) {
  .content .news .uk-container .news-grid {
    margin-left: -20px;
  }
  .content .news .uk-container .news-grid > * {
    padding-left: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .content .news .uk-container .news-grid {
    margin-left: -10px;
  }
  .content .news .uk-container .news-grid > * {
    padding-left: 10px;
    margin-bottom: 10px;
  }
}
.content .news .uk-container .news-grid .news-item {
  border-radius: 10px;
  display: block;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: clamp(15px, 2.5rem, 40px);
}
.content .news .uk-container .news-grid .news-item .i-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400 / 224;
  border-radius: 10px;
}
.content .news .uk-container .news-grid .news-item .n-title {
  font-size: clamp(16px, 1.25rem, 20px);
  margin-top: clamp(15px, 1.875rem, 30px);
}
.content .news .uk-container .news-grid .news-item .n-date {
  color: #959595;
  font-size: clamp(14px, 1rem, 16px);
}
.content .news .uk-container .news-grid .news-item .n-btn {
  margin-top: clamp(20px, 3.125rem, 50px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #dddddd;
  height: clamp(50px, 3.75rem, 60px);
  font-size: clamp(16px, 1.25rem, 20px);
}
.content .news .uk-container .news-grid .news-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(145, 168, 198, 0.3);
          box-shadow: 0px 10px 60px 0px rgba(145, 168, 198, 0.3);
}
.content .news .uk-container .news-grid .news-item:hover .n-btn {
  color: #fff;
  background-color: #c21f3d;
  border-color: #c21f3d;
}
.content .news .uk-container .pagination-box {
  margin-top: 30px;
}
.content .news-det {
  padding-bottom: clamp(40px, 7.5rem, 120px);
  background-color: #fff;
}
.content .news-det .uk-container {
  max-width: 1647px;
}
.content .news-det .news-body {
  font-size: clamp(16px, 1.5rem, 24px);
  line-height: 1.8;
  padding: clamp(40px, 5rem, 80px) 0 0;
}
.content .news-det .news-body .news-top {
  gap: 15px;
}
.content .news-det .news-body .news-top .n-r {
  max-width: 40%;
}
@media (max-width: 639px) {
  .content .news-det .news-body .news-top .n-r {
    max-width: 100%;
  }
}
.content .news-det .news-body .news-top .n-r img {
  background-color: #eeeeee;
  border-radius: clamp(10px, 2.5rem, 40px);
  width: 520px;
  aspect-ratio: 520 / 290;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .news-det .news-body .news-top .i-title {
  line-height: 1.3;
  font-size: clamp(30px, 5rem, 80px);
}
.content .news-det .news-body .news-top .i-desc {
  margin-top: clamp(20px, 3.125rem, 50px);
  gap: clamp(15px, 1.5rem, 20px);
  color: #535353;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .news-det .news-body .news-top .i-desc > div {
  gap: 10px;
}
.content .news-det .news-body .news-center {
  padding: clamp(40px, 6.25rem, 100px) 0;
  border-bottom: 1px solid #ddd;
}
.content .news-det .news-body .news-btn {
  margin-top: clamp(30px, 3.75rem, 60px);
  gap: clamp(10px, 1.875rem, 30px);
}
.content .news-det .news-body .news-btn a {
  width: clamp(40px, 4.375rem, 70px);
  aspect-ratio: 1/1;
  border: 1px solid #d3d3d3;
  border-radius: 100px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .news-det .news-body .news-btn a:hover {
  background-color: #c21f3d;
  color: #fff;
  border-color: #c21f3d;
}
.content .contact {
  padding-bottom: clamp(40px, 7.5rem, 120px);
}
.content .contact .uk-container {
  max-width: 1600px;
}
.content .contact .uk-container .contact-list-desc {
  padding-top: clamp(40px, 7.5rem, 120px);
}
.content .contact .uk-container .contact-list-desc .i-title {
  font-size: clamp(24px, 3.125rem, 50px);
}
.content .contact .uk-container .contact-list-desc .i-desc {
  line-height: 1.8;
  margin-top: 10px;
  font-size: clamp(14px, 1.5rem, 24px);
}
.content .contact .uk-container .contact-desc-box {
  margin-top: clamp(20px, 2.5rem, 40px);
  background-color: #ffffff;
  border-radius: 20px;
}
.content .contact .uk-container .contact-desc-box .item {
  padding: clamp(30px, 3.75rem, 60px) clamp(20px, 3.125rem, 50px);
  position: relative;
}
.content .contact .uk-container .contact-desc-box .item::after {
  width: 1px;
  background-color: #dcdcdc;
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  content: "";
}
@media (max-width: 1200px) {
  .content .contact .uk-container .contact-desc-box .item:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 960px) {
  .content .contact .uk-container .contact-desc-box .item:nth-child(2)::after {
    display: none;
  }
  .content .contact .uk-container .contact-desc-box .item:nth-child(3)::after {
    display: block;
  }
}
.content .contact .uk-container .contact-desc-box .item:last-child::after {
  display: none;
}
.content .contact .uk-container .contact-desc-box .item img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content .contact .uk-container .contact-desc-box .item .i-title {
  margin-top: 20px;
  font-size: clamp(18px, 1.375rem, 22px);
}
.content .contact .uk-container .contact-desc-box .item .i-desc {
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .contact .uk-container .pro-slide-box {
  padding: clamp(25px, 3.125rem, 50px) clamp(15px, 3.125rem, 50px);
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 20px;
}
.content .contact .uk-container .pro-slide-box .pro-form {
  padding-top: 25px;
}
.content .contact .uk-container .pro-slide-box .pro-form .uk-grid-li {
  margin-bottom: clamp(15px, 1.875rem, 30px);
}
.content .contact .uk-container .pro-slide-box .pro-form .uk-grid-li .input-li {
  padding: 16px;
  background-color: #f8f8f8;
  border-radius: 10px;
  border: 1px solid transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .contact .uk-container .pro-slide-box .pro-form .uk-grid-li .input-li:focus-within {
  border: 1px solid #c21f3d;
}
.content .contact .uk-container .pro-slide-box .pro-form .uk-grid-li .input-li input {
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .contact .uk-container .pro-slide-box .pro-form .uk-grid-li .input-li textarea {
  height: 150px;
  resize: none;
  width: 100%;
  display: block;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.content .contact .uk-container .pro-slide-box .pro-form .form-bottom {
  gap: 15px;
}
.content .contact .uk-container .pro-slide-box .pro-form .form-bottom .form-btn {
  width: 500px;
  max-width: 50%;
  color: #fff;
  cursor: pointer;
  height: clamp(50px, 3.75rem, 60px);
  background-color: #c21f3d;
  border-radius: 10px;
  font-size: clamp(16px, 1.25rem, 20px);
}
@media (max-width: 639px) {
  .content .contact .uk-container .pro-slide-box .pro-form .form-bottom .form-btn {
    width: 100%;
    max-width: 100%;
  }
}
.content .contact .uk-container .pro-slide-box .l-title {
  line-height: 1;
  font-size: clamp(20px, 1.875rem, 30px);
  border-left: 6px solid #c21f3d;
  padding-left: 10px;
}
.content .marineShip {
  padding-bottom: clamp(40px, 7.5rem, 120px);
}
.content .marineShip .uk-container {
  max-width: 1700px;
}
.content .marineShip .uk-container .contact-list-desc {
  padding-top: clamp(40px, 7.5rem, 120px);
}
.content .marineShip .uk-container .contact-list-desc .i-title {
  font-size: clamp(24px, 3.125rem, 50px);
}
.content .marineShip .uk-container .contact-list-desc .i-desc {
  line-height: 1.8;
  margin-top: 10px;
  font-size: clamp(14px, 1.5rem, 24px);
}
.content .marineShip .uk-container .list-top {
  margin-top: clamp(30px, 3.125rem, 50px);
}
.content .marineShip .uk-container .list-top .list-title {
  font-size: clamp(20px, 1.875rem, 30px);
  border-left: 6px solid #c21f3d;
  padding-left: 10px;
  line-height: 1;
}
.content .marineShip .uk-container .list-top .list-inner .arrow-down {
  padding-left: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: clamp(40px, 6.25rem, 100px);
  cursor: pointer;
  aspect-ratio: 1/1;
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem {
  position: relative;
  margin-top: clamp(20px, 2.1875rem, 35px);
}
@media (max-width: 959px) {
  .content .marineShip .uk-container .list-top .list-inner .zq-mem {
    margin-left: -25px;
  }
  .content .marineShip .uk-container .list-top .list-inner .zq-mem > * {
    padding-left: 25px;
  }
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-l {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #dddddd;
  color: #313131;
  font-size: calmp(16px, 1.5rem, 24px);
  border-bottom: none;
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-l .zq-l-i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  padding: clamp(15px, 1.5625rem, 25px);
  border-bottom: 1px solid #dddddd;
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-l .zq-l-i.uk-active {
  background-color: #c21f3d;
  color: #fff;
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-l .zq-l-i:hover {
  color: #c21f3d;
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-r {
  background-color: #fff;
  color: #434343;
  font-size: clamp(16px, 1.25rem, 20px);
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-r .i-img {
  width: 100%;
  aspect-ratio: 780/500;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-r .zq-text {
  padding: clamp(25px, 2.5rem, 40px);
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-r .zq-text .i-title {
  font-size: clamp(20px, 2.25rem, 36px);
}
.content .marineShip .uk-container .list-top .list-inner .zq-mem .zq-r .zq-text .i-desc {
  margin-top: clamp(15px, 1.875rem, 30px);
}
.content .marineShip .uk-container .list-content {
  margin-top: 40px;
}
.content .marineShip .uk-container .list-content .list-item {
  color: #434343;
  padding: clamp(40px, 4.375rem, 70px) 0;
  border-bottom: 1px solid #dddddd;
  font-size: clamp(16px, 1.25rem, 20px);
  line-height: 1.8;
}
.content .marineShip .uk-container .list-content .list-item .i-title {
  font-size: clamp(20px, 2.25rem, 36px);
}
.content .marineShip .uk-container .list-content .list-item .i-title i {
  width: clamp(40px, 3.75rem, 60px);
  height: clamp(40px, 3.75rem, 60px);
  background-color: #c21f3d;
  border-radius: 14px;
  font-size: clamp(20px, 2.25rem, 36px);
  color: #fff;
  font-style: normal;
  margin-right: 15px;
}
.content .marineShip .uk-container .list-content .list-item .i-t-desc {
  margin-top: clamp(15px, 1.875rem, 30px);
}
.content .marineShip .uk-container .list-content .list-item .video-tips {
  font-style: oblique;
  color: #1b1b1b;
  color: #434343;
  font-size: clamp(14px, 1.25rem, 20px);
}
.content .marineShip .uk-container .list-content .list-item .i-i-t {
  font-size: clamp(18px, 1.5rem, 24px);
  gap: 10px;
}
.content .marineShip .uk-container .list-content .list-item .desc-ul {
  padding-left: 15px;
}
.content .marineShip .uk-container .list-content .bottom-btn {
  width: clamp(40px, 6.25rem, 100px);
  cursor: pointer;
  aspect-ratio: 1/1;
  margin: clamp(20px, 3.125rem, 50px) auto 0;
}
.content .home .uk-container {
  max-width: 1600px;
}
.content .home .home-banner {
  position: relative;
  height: 100vh;
  max-height: 1080px;
  height: 100dvh;
}
.content .home .home-banner #homeBanner {
  width: 100%;
  height: 100%;
  max-height: 1080px;
}
.content .home .home-banner #homeBanner .swiper-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.content .home .home-banner #homeBanner .swiper-slide .banner-text {
  padding-top: 30vh;
  color: #fff;
}
.content .home .home-banner #homeBanner .swiper-slide .banner-text .i-title {
  font-size: clamp(40px, 3.75rem, 60px);
  line-height: 1.3;
}
.content .home .home-banner #homeBanner .swiper-slide .banner-text .i-desc {
  margin-top: clamp(15px, 1.5625rem, 25px);
  font-size: clamp(20px, 1.875rem, 30px);
}
.content .home .home-banner .swiper-btn-bottom {
  position: absolute;
  width: 100%;
  z-index: 9;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: clamp(15px, 3.125rem, 50px);
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide {
  width: calc(100% / 3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding-left: 10px;
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide .tum-item {
  line-height: 1.5;
  background: #e1e1e1;
  padding-left: 10px;
  padding: 15px;
  color: #2b2b2b;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide .tum-item .i-t {
  font-size: clamp(24px, 3rem, 48px);
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide .tum-item .i-d {
  font-size: clamp(14px, 1.125rem, 18px);
  margin-left: 5px;
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide .tum-item img {
  margin-top: 10px;
  width: 80%;
  margin-left: 10%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide .tum-item::after {
  content: "";
  position: absolute;
  width: 50%;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide.swiper-slide-thumb-active .tum-item {
  background: #c21f3d;
  color: #fff;
}
.content .home .home-banner .swiper-btn-bottom .swiper-slide.swiper-slide-thumb-active .tum-item::after {
  background: rgba(0, 0, 0, 0.2);
}
.content .home .home-banner .swiper-btn-bottom .swiper-btn {
  gap: clamp(10px, 1.875rem, 30px);
}
.content .home .home-banner .swiper-btn-bottom .swiper-btn a {
  width: clamp(40px, 3.75rem, 60px);
  height: clamp(40px, 3.75rem, 60px);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .home .home-banner .swiper-btn-bottom .swiper-btn a i {
  display: block;
  line-height: 1;
}
.content .home .home-banner .swiper-btn-bottom .swiper-btn a:hover {
  background-color: #c21f3d;
}
.content .home .home-banner .swiper-btn-bottom .inner {
  gap: 20px;
}
@media (max-width: 639px) {
  .content .home .home-banner .swiper-btn-bottom .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.content .home .home-banner .swiper-btn-bottom #homeBannertum {
  width: 65%;
  margin: 0;
}
.content .home .home-banner .swiper-btn-bottom #homeBannertum .swiper-wrapper {
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
}
@media (max-width: 639px) {
  .content .home .home-banner .swiper-btn-bottom #homeBannertum {
    width: 100%;
  }
  .content .home .home-banner .swiper-btn-bottom #homeBannertum .swiper-slide {
    width: calc(100% / 1.5);
  }
}
.content .home .home-pro {
  padding: clamp(40px, 7.5rem, 120px) 0;
}
.content .home .home-pro .contact-list-desc .i-title {
  font-size: clamp(24px, 3.125rem, 50px);
}
.content .home .home-pro .contact-list-desc .i-desc {
  max-width: 640px;
  line-height: 1.8;
  margin-top: 10px;
  font-size: clamp(14px, 1.5rem, 24px);
}
.content .home .home-pro .pro-top {
  gap: 20px;
}
.content .home .home-pro .pro-top .swiper-btn {
  gap: clamp(10px, 1.875rem, 30px);
}
.content .home .home-pro .pro-top .swiper-btn a {
  width: clamp(40px, 3.75rem, 60px);
  height: clamp(40px, 3.75rem, 60px);
  color: #666;
  border: 1px solid #666;
  border-radius: 100px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .home .home-pro .pro-top .swiper-btn a i {
  display: block;
  line-height: 1;
}
.content .home .home-pro .pro-top .swiper-btn a:hover {
  background-color: #c21f3d;
  color: #fff;
  border-color: #fff;
}
.content .home .home-pro .pro-bottom {
  margin-top: 10px;
}
.content .home .home-pro .pro-bottom .swiper {
  height: 1100px;
  margin-left: -50px;
}
.content .home .home-pro .pro-bottom .swiper .swiper-slide {
  height: 550px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0 0 50px;
}
@media (max-width: 1499px) {
  .content .home .home-pro .pro-bottom .swiper {
    margin-left: -30px;
    height: auto;
  }
  .content .home .home-pro .pro-bottom .swiper .swiper-slide {
    height: 100%;
    padding: 30px 0 0 30px;
  }
}
@media (max-width: 959px) {
  .content .home .home-pro .pro-bottom .swiper {
    margin-left: -15px;
  }
  .content .home .home-pro .pro-bottom .swiper .swiper-slide {
    padding: 15px 0 0 15px;
  }
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background-color: #ffffff;
  border: solid 1px #dddddd;
  padding: clamp(15px, 1.875rem, 30px);
  color: #313131;
  line-height: 1.6;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item .i-p-title {
  font-size: clamp(18px, 1.375rem, 22px);
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item .i-p-desc {
  font-size: 14px;
  margin-top: clamp(15px, 1.5625rem, 25px);
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  border: solid 1px #d2d2d2;
  font-size: 14px;
  padding: 10px 15px;
  gap: 20px;
  border-radius: 5px;
  line-height: 1;
  margin-top: clamp(15px, 1.5625rem, 25px);
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item .i-img {
  position: relative;
  aspect-ratio: 1/1;
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item .i-img::after {
  width: 70%;
  height: 70%;
  background-color: #fff;
  border-radius: 1000px;
  position: absolute;
  top: 15%;
  left: 15%;
  content: "";
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item .i-img img {
  z-index: 1;
  position: relative;
  max-width: 80%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item:hover {
  background-color: #c21f3d;
  color: #fff;
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item:hover .btn {
  color: #c21f3d;
}
.content .home .home-pro .pro-bottom .swiper .swiper-wrapper .swiper-slide .pro-item:hover .i-img::after {
  background-color: #0a0726;
}
.content .home .home-hcsl {
  background-color: #fff;
}
.content .home .home-hcsl .home-hcsl-li {
  padding: clamp(40px, 7.5rem, 120px) 0;
  border-bottom: 1px solid #dcdcdc;
}
.content .home .home-hcsl .home-hcsl-li:last-child {
  border-bottom: none;
}
.content .home .home-hcsl .home-hcsl-li .text-box.l {
  padding-right: clamp(15px, 6.25rem, 100px);
}
@media (max-width: 639px) {
  .content .home .home-hcsl .home-hcsl-li .text-box.l {
    padding-right: 0;
    padding-bottom: 15px;
  }
}
.content .home .home-hcsl .home-hcsl-li .text-box.r {
  padding-left: clamp(15px, 6.25rem, 100px);
}
@media (max-width: 639px) {
  .content .home .home-hcsl .home-hcsl-li .text-box.r {
    padding-left: 0;
    padding-top: 15px;
  }
}
.content .home .home-hcsl .home-hcsl-li .text-box .i-title {
  font-size: clamp(20px, 3.125rem, 50px);
}
.content .home .home-hcsl .home-hcsl-li .text-box .i-desc {
  font-size: clamp(14px, 1.25rem, 20px);
  line-height: 1.6;
  margin-top: clamp(10px, 1.25rem, 20px);
}
.content .home .home-hcsl .home-hcsl-li .text-box .btn {
  background-color: #c21f3d;
  border-radius: 6px;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 20px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  gap: 20px;
  margin-top: clamp(20px, 2.5rem, 40px);
}
.content .home .home-global {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}
.content .home .home-global .global-li {
  padding: clamp(40px, 7.5rem, 120px) 0;
}
.content .home .home-global .contact-list-desc .i-title {
  font-size: clamp(24px, 3.125rem, 50px);
}
.content .home .home-global .contact-list-desc .i-desc {
  max-width: 940px;
  line-height: 1.8;
  margin-top: 10px;
  font-size: clamp(14px, 1.5rem, 24px);
}
.content .home .home-global .global-img {
  margin-top: clamp(30px, 5rem, 80px);
}
.content .home .home-global .global-img img {
  width: 100%;
}
.content .home .home-global .globalnumber {
  margin-top: clamp(30px, 5rem, 80px);
  margin-left: -80px;
}
.content .home .home-global .globalnumber > * {
  padding-left: 80px;
}
@media (max-width: 1199px) {
  .content .home .home-global .globalnumber {
    margin-left: -60px;
  }
  .content .home .home-global .globalnumber > * {
    padding-left: 60px;
  }
}
@media (max-width: 959px) {
  .content .home .home-global .globalnumber {
    margin-left: -30px;
  }
  .content .home .home-global .globalnumber > * {
    padding-left: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .content .home .home-global .globalnumber {
    margin-left: -15px;
  }
  .content .home .home-global .globalnumber > * {
    padding-left: 15px;
    margin-bottom: 15px;
  }
}
.content .home .home-global .globalnumber .number-box {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #dddddd;
}
.content .home .home-global .globalnumber .number-box .number-inner {
  padding: clamp(15px, 2.5rem, 40px) clamp(15px, 2.5rem, 40px) 15px;
}
.content .home .home-global .globalnumber .number-box .number-inner img {
  width: clamp(40px, 3.75rem, 60px);
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.content .home .home-global .globalnumber .number-box .number-inner .animateNum {
  font-size: clamp(40px, 6.25rem, 100px);
  margin-top: clamp(15px, 1.875rem, 30px);
  line-height: 1;
}
.content .home .home-global .globalnumber .number-box .number-inner .i-a {
  color: #c21f3d;
  margin-top: clamp(15px, 1.875rem, 30px);
  font-size: clamp(40px, 6.25rem, 100px);
  margin-left: 5px;
  line-height: 1;
}
.content .home .home-global .globalnumber .number-box .i-desc {
  padding: clamp(15px, 2.5rem, 40px) clamp(15px, 2.5rem, 40px);
  border-top: 1px solid #dddddd;
}
.content .home .home-global .global-logo {
  margin-top: clamp(20px, 3.125rem, 50px);
}
.content .home .home-global .global-logo .logo-box img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.content .home .home-global .global-logo .logo-box img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.content .home .home-service {
  padding: clamp(40px, 7.5rem, 120px) 0;
}
.content .home .home-service .contact-list-desc .i-title {
  font-size: clamp(24px, 3.125rem, 50px);
}
.content .home .home-service .contact-list-desc .i-desc {
  max-width: 640px;
  line-height: 1.8;
  margin-top: 10px;
  font-size: clamp(14px, 1.5rem, 24px);
}
.content .home .home-service .step-grid {
  margin-left: -25px;
  margin-top: clamp(30px, 3.75rem, 60px);
}
.content .home .home-service .step-grid > * {
  padding-left: 25px;
  margin-top: 25px;
}
@media (max-width: 639px) {
  .content .home .home-service .step-grid {
    margin-left: -10px;
  }
  .content .home .home-service .step-grid > * {
    padding-left: 10px;
    margin-top: 10px;
  }
}
.content .home .home-service .step-grid li:last-child .service-item::after {
  display: none;
}
.content .home .home-service .step-grid .service-item {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
  padding: clamp(20px, 3.125rem, 50px);
}
.content .home .home-service .step-grid .service-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: clamp(20px, 2.5rem, 40px);
  height: clamp(40px, 5rem, 80px);
  background-image: url("../images/home-arrow.png");
  background-position: center;
  background-size: contain;
}
.content .home .home-service .step-grid .service-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.content .home .home-service .step-grid .service-item img {
  width: clamp(80px, 11.25rem, 180px);
  margin: 0 auto;
  display: block;
}
.content .home .home-service .step-grid .service-item .i-title {
  margin-top: clamp(20px, 2.5rem, 40px);
  font-size: clamp(14px, 1.5rem, 24px);
}
.content .home .home-news {
  background-color: #fff;
  padding: clamp(40px, 7.5rem, 120px) 0;
}
.content .home .home-news .contact-list-desc .i-title {
  font-size: clamp(24px, 3.125rem, 50px);
}
.content .home .home-news .contact-list-desc .i-desc {
  max-width: 640px;
  line-height: 1.8;
  margin-top: 10px;
  font-size: clamp(14px, 1.5rem, 24px);
}
.content .home .home-news .news-swiper {
  margin-top: clamp(10px, 3.75rem, 60px);
  margin-left: -20%;
  padding-right: 12%;
}
.content .home .home-news .news-swiper .swiper-slide {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 25px clamp(7px, 0.9375rem, 15px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content .home .home-news .news-swiper .news-item {
  border-radius: 10px;
  display: block;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: clamp(15px, 2.5rem, 40px);
}
.content .home .home-news .news-swiper .news-item .i-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400 / 224;
  border-radius: 10px;
}
.content .home .home-news .news-swiper .news-item .n-title {
  font-size: clamp(16px, 1.25rem, 20px);
  margin-top: clamp(15px, 1.875rem, 30px);
}
.content .home .home-news .news-swiper .news-item .n-date {
  color: #959595;
  font-size: clamp(14px, 1rem, 16px);
  margin-top: clamp(15px, 1.875rem, 30px);
}
.content .home .home-news .news-swiper .news-item .n-btn {
  margin-top: clamp(20px, 3.125rem, 50px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #dddddd;
  height: clamp(50px, 3.75rem, 60px);
  font-size: clamp(16px, 1.25rem, 20px);
}
.content .home .home-news .news-swiper .news-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 0 50px rgba(145, 168, 198, 0.3);
          box-shadow: 0px 0 50px rgba(145, 168, 198, 0.3);
}
.content .home .home-news .news-swiper .news-item:hover .n-btn {
  color: #fff;
  background-color: #c21f3d;
  border-color: #c21f3d;
}
@media (max-width: 959px) {
  .content .home .home-news .news-swiper {
    margin-left: 0;
    padding-right: 0;
  }
}
.content .home .home-news .swiper-btn {
  margin-top: clamp(20px, 3.125rem, 50px);
  gap: clamp(10px, 1.875rem, 30px);
}
.content .home .home-news .swiper-btn a {
  width: clamp(40px, 3.75rem, 60px);
  height: clamp(40px, 3.75rem, 60px);
  color: #313131;
  border: 1px solid #313131;
  border-radius: 100px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .home .home-news .swiper-btn a i {
  display: block;
  line-height: 1;
}
.content .home .home-news .swiper-btn a:hover {
  background-color: #c21f3d;
  color: #fff;
  border-color: #c21f3d;
}

.header {
  z-index: 999 !important;
  position: fixed;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  font-size: clamp(15px, 1.25rem, 20px);
}
.header .inner .logo {
  width: clamp(150px, 12.5rem, 200px);
  padding-left: clamp(15px, 3.125rem, 50px);
}
.header .inner .logo img {
  width: 100%;
}
.header .inner .header-nav {
  gap: clamp(20px, 3.75rem, 60px);
}
.header .inner .header-nav .nav-item {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .inner .header-nav .nav-item:hover {
  color: #c21f3d;
}
.header .inner .contact-btn {
  margin-left: clamp(20px, 3.75rem, 60px);
  cursor: pointer;
  gap: 12px;
  background-color: #c21f3d;
  color: #fff;
  padding: clamp(20px, 2.5rem, 40px) clamp(15px, 1.5625rem, 25px);
}
.header .inner .contact-btn img {
  width: 15px;
}
.header .inner .contact-btn:last-child {
  margin-left: 0;
}
.header.scrolled {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#c21f3d), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(#c21f3d, rgba(255, 255, 255, 0));
}
.header.inner-header {
  position: relative;
  z-index: 9;
  background-color: #fff;
  color: #313131;
}
.header.inner-header.scrolled {
  color: #313131;
  background: #fff;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.header .uk-dropdown {
  border-radius: 0px;
  padding: 10px 15px;
  min-width: 150px;
}
.header .uk-dropdown a {
  font-size: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 5px 0;
}
.header .uk-dropdown a:hover {
  color: #c21f3d;
}
.header .uk-dropdown a.uk-active {
  color: #c21f3d;
}

#mobile-offcanvas .uk-offcanvas-bar {
  border-top: 10px solid #c21f3d;
  border-bottom: 10px solid #c21f3d;
}
#mobile-offcanvas .uk-offcanvas-close {
  margin: 0;
  top: 0;
  right: 0;
  color: #c21f3d;
}
#mobile-offcanvas .uk-offcanvas-close:hover {
  color: #c21f3d;
}
#mobile-offcanvas .uk-offcanvas-nav {
  margin: 20px 0;
}
#mobile-offcanvas .uk-offcanvas-nav .h-nav a {
  display: block;
  font-size: 16px;
  color: #313131;
  padding: 10px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#mobile-offcanvas .uk-offcanvas-nav .h-nav a:hover, #mobile-offcanvas .uk-offcanvas-nav .h-nav a.uk-active {
  color: #c21f3d;
}
#mobile-offcanvas .uk-offcanvas-nav .uk-nav-default li.uk-active > a {
  color: #c21f3d;
}
#mobile-offcanvas .uk-offcanvas-nav .uk-nav-default a {
  color: #313131;
  font-size: 16px;
  padding: 15px 0;
}
#mobile-offcanvas .uk-offcanvas-nav .uk-nav-default .uk-nav-sub a {
  font-size: 14px;
  padding: 8px 0;
}
