body {
  background: #fffbf5;
  color: #333;
  font-weight: 300;
}
.scale-img {
  transition: all 0.7s ease 0s;
}
.scale-img:hover {
  transform: scale(1.1);
}
.main-head {
  width: 100%;
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  box-shadow: 0 0 3px rgba(33, 33, 33, 0.2);
}
@media screen and (min-width: 1024px) {
  .main-head {
    max-width: 1170px;
    height: 80px;
    margin: 0 auto;
    padding: 0;
    box-shadow: none;
  }
  .main-head:after {
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    content: "";
    display: block;
    height: 100%;
    background: #FFFFFF;
    z-index: -1;
    box-shadow: 0 0 3px rgba(33, 33, 33, 0.2);
  }
}
.main-head .logo-sec-link {
  display: block;
  padding-left: 15px;
}
@media screen and (max-width: 1024px) {
  .main-head .logo-sec-link {
    padding-left: 0;
  }
}
.main-head .logo-sec-link svg {
  display: block;
  width: 3.75rem;
  height: auto;
  fill: #d52b1e;
}
@media screen and (max-width: 1024px) {
  .main-head .logo-sec-link svg {
    width: 2.75rem;
  }
}
.main-head .nav-sec {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec {
    position: fixed;
    background-color: #fff;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 9999;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .main-head .nav-sec {
    position: fixed;
    background-color: #fff;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    z-index: 9999;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    display: block;
  }
}
.main-head .nav-sec .nav-heading {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .nav-heading {
    display: flex;
    position: absolute;
    right: 15px;
    top: 17px;
  }
}
.main-head .nav-sec .base {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .base {
    display: block;
    overflow-y: auto;
    width: 100%;
    margin-top: 60px;
  }
}
.main-head .nav-sec .base .link-parent {
  padding: 0 20px;
  height: 100%;
  align-content: center;
}
@media screen and (min-width: 1024px) {
  .main-head .nav-sec .base .link-parent:hover .base-link {
    color: var(--main-color);
    transition: transform 0.3s;
  }
  .main-head .nav-sec .base .link-parent:hover .base-link i {
    transform: rotateX(180deg);
  }
  .main-head .nav-sec .base .link-parent:hover .base-link:after {
    transform: scaleX(1.2);
  }
  .main-head .nav-sec .base .link-parent:hover .mega-menu {
    height: 200px;
  }
  .main-head .nav-sec .base .link-parent:hover .mega-menu .link-item {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .base .link-parent {
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
  }
  .main-head .nav-sec .base .link-parent:focus-within .base-link {
    color: var(--main-color);
    transition: transform 0.3s;
  }
  .main-head .nav-sec .base .link-parent:focus-within .base-link i {
    transform: rotateX(180deg);
  }
  .main-head .nav-sec .base .link-parent:focus-within .base-link:after {
    transform: scaleX(1);
  }
  .main-head .nav-sec .base .link-parent:focus-within .mega-menu {
    height: 100%;
    padding: 10px 0;
  }
  .main-head .nav-sec .base .link-parent:focus-within .mega-menu .link-item {
    opacity: 1;
  }
}
.main-head .nav-sec .base .link-parent .base-link {
  color: #3D3D3D;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  cursor: default;
}
.main-head .nav-sec .base .link-parent .base-link sup {
  transform: translateY(-6px);
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .base .link-parent .base-link {
    padding: 0 30px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .main-head .nav-sec .base .link-parent .base-link {
    padding: 0 15px;
  }
}
.main-head .nav-sec .base .link-parent .base-link:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: var(--main-color);
  content: "";
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
  bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .base .link-parent .base-link:after {
    bottom: -1px;
  }
}
.main-head .nav-sec .base .link-parent .base-link i {
  margin-left: 4px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.4s ease-in-out;
  transform: rotateX(0deg);
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .base .link-parent .base-link i {
    margin-left: auto;
  }
}
.main-head .nav-sec .base .link-parent .mega-menu {
  height: 0;
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  top: 81px;
  box-shadow: 0 1px 3px rgba(33, 33, 33, 0.2);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .base .link-parent .mega-menu {
    width: 100%;
    position: static;
    flex-direction: column;
    background-color: #f5f5f5;
    transition: all 0s;
    transform: none;
    opacity: 1;
    box-shadow: none;
    gap: 0;
    align-items: flex-start;
  }
}
.main-head .nav-sec .base .link-parent .mega-menu .link-item {
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transition: all 0.6s;
}
@media screen and (max-width: 1024px) {
  .main-head .nav-sec .base .link-parent .mega-menu .link-item {
    width: 100%;
    padding: 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .main-head .nav-sec .base .link-parent .mega-menu .link-item {
    padding: 6px 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .main-head .nav-sec .base .link-parent .mega-menu .link-item:hover {
    text-decoration: underline;
  }
}
.main-head .menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-head .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }
  .main-head .menu-btn i {
    font-size: 22px;
    font-weight: 700;
    margin-left: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .main-head .close-btn i {
    font-size: 18px;
  }
}
.main-head .shade {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-head.show_mobile_menu .nav-sec {
    transform: translateX(0) !important;
  }
  .main-head.show_mobile_menu .shade {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    top: 0;
    left: 0;
    display: block;
  }
}
.ad-carousel {
  position: sticky !important;
  width: 100%;
  height: 72px;
  background-color: #fffbf5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 80px;
  z-index: 98 !important;
  border-bottom: 1px solid var(--main-color);
  border-top: 1px solid var(--main-color);
}
@media screen and (max-width: 1024px) {
  .ad-carousel {
    top: 60px;
    height: 64px;
  }
}
.ad-carousel .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .ad-carousel .swiper-slide {
    justify-content: flex-start;
    gap: 4px;
  }
}
.ad-carousel .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  transition: opacity 1s ease-in-out;
}
.ad-carousel .swiper-slide.swiper-slide-prev,
.ad-carousel .swiper-slide.swiper-slide-next {
  opacity: 0 !important;
  transition: opacity 1s ease-in-out;
}
.ad-carousel .ad-pic {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.ad-carousel .ad-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ad-carousel .ad-text .p1 {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .ad-carousel .ad-text .p1 {
    font-size: 13px;
    flex-direction: column;
    gap: 0;
  }
}
.ad-carousel .ad-text .p2 {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 768px) {
  .ad-carousel .ad-text .p2 {
    font-size: 12px;
  }
}
.ad-carousel .ad-btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--main-color);
  color: white;
  padding: 0 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.ad-carousel .ad-btn i {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .ad-carousel .ad-btn {
    height: 36px;
    font-size: 13px;
    padding: 0 14px;
  }
}
.ad-carousel .close-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .ad-carousel .close-btn {
    right: 5px;
    top: 0px;
    transform: none;
  }
}
.ad-carousel .close-btn:hover {
  color: #444;
}
.page-head {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .page-head {
    flex-direction: column-reverse;
  }
}
.page-head.hasborad {
  background-color: #FFF;
}
@media screen and (min-width: 1024px) {
  .page-head.hasborad:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    flex: 1;
  }
}
.page-head.hasborad .page-header-content {
  width: 585px;
  padding: 0 40px 0 15px;
}
@media screen and (max-width: 1024px) {
  .page-head.hasborad .page-header-content {
    width: 100%;
    padding: 30px 30px 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-head.hasborad .page-header-content {
    padding: 15px 15px 20px;
  }
}
.page-head.hasborad .page-header-content .sub {
  font-size: 16px;
  color: #3d3d3d;
}
@media screen and (max-width: 768px) {
  .page-head.hasborad .page-header-content .sub {
    font-size: 14px;
  }
}
.page-head.hasborad .banner {
  height: 320px;
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .page-head.hasborad .banner {
    height: 200px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-head.hasborad .banner {
    height: 150px;
  }
}
.page-head h1 {
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .page-head h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .page-head h1 {
    font-size: 24px;
  }
}
.page-head h1:after {
  display: block;
  content: "";
  width: 4rem;
  height: 0.25rem;
  border-radius: 4px;
  background-color: var(--sub-color);
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .page-head h1:after {
    margin: 10px 0;
  }
}
.page-head .banner {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-head .banner {
    height: 320px;
  }
}
.page-head .banner img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-head .banner .embed-banner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  text-align: center;
  color: #fff;
}
.page-head .banner .embed-banner.align-left {
  text-align: left;
}
.page-head .banner .embed-banner .embed-title {
  font-size: 3.2rem;
  font-weight: 300;
  margin-bottom: 30px;
}
.page-head .banner .embed-banner .embed-desc {
  font-size: 16px;
}
.breadcrumb {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 30px;
  display: flex;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 8px 15px;
  }
}
.breadcrumb li:after {
  content: ">";
  padding: 0 10px;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li.active {
  color: var(--main-color);
}
footer {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 15px;
}
@media screen and (min-width: 1024px) {
  footer {
    max-width: 1170px;
    margin: 0 auto;
    box-shadow: none;
  }
  footer:after {
    position: absolute;
    width: 100vw;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
    content: "";
    display: block;
    height: 100%;
    background: #FFF;
    z-index: -1;
    border-top: 2px solid #bdbdbd;
  }
}
footer .logo-sec {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .logo-sec {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
footer .logo-sec .logo {
  margin-right: auto;
  flex-basis: auto;
}
footer .logo-sec .logo svg {
  width: 5.75rem;
  height: auto;
  fill: #d52b1e;
}
@media screen and (max-width: 768px) {
  footer .logo-sec .logo {
    flex-basis: 100%;
    margin-right: 0;
  }
}
footer .logo-sec .social-icons {
  width: 24px;
  height: 24px;
}
footer .main-links {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  footer .main-links {
    flex-direction: column;
    gap: 15px 30px;
  }
}
footer .main-links .links-title {
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
footer .links-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .links-list {
    gap: 15px 30px;
  }
}
footer .links-list .links-item a {
  text-decoration: underline;
  font-weight: 300;
  color: var(--main-color);
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  footer .links-list .links-item a {
    font-size: 14px;
  }
}
footer .foot-text {
  line-height: 2;
  font-size: 12px;
}
footer .other-links .links-list {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  footer .other-links .links-list {
    justify-content: center;
  }
}
footer .other-links .links-list .links-item a {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  footer .other-links .links-list .links-item a {
    font-size: 12px;
  }
}
.loading-action-btn-disabled {
  opacity: 0.5 !important;
  cursor: no-drop;
}
.swal2-styled.swal2-confirm {
  background-color: #0078A3 !important;
}
.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(0, 120, 163, 0.5) !important;
}
button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
