﻿@media (min-width: 576px) {
  .container,
  .container-sm {
    /*max-width:540px*/
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    /*max-width:720px*/
    max-width: 90%;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    /*max-width:960px*/
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    /*max-width: 1140px*/
    max-width: 90%;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1536px;
  }
}
img {
  max-width: 100%;
}

body.lock {
  overflow: hidden;
}
/*header*/
.addednavbar.on {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 15;
  background: #ffffff;
}

.navbar {
  -webkit-transition: opacity 0.3s, top 0.3s;
  transition: opacity 0.3s, top 0.3s; /* 添加过渡效果 */
  opacity: 1; /* 初始状态透明度为1 */
}
/* 悬浮状态下的导航条样式 */
.navbar.hide {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0; /* 设置透明度为0 */
}

/* 鼠标移入悬浮导航条时的样式 */
.navbar.hide:hover {
  opacity: 1; /* 设置透明度为1 */
}

.addednavbar .navbar-brand {
  -webkit-filter: none;
  filter: none;
}
.navbar-brand img {
  height: 4rem;
}
/*.addednavbar .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-item .nav-link{
	color: #333333 !important;
}
.navbar .navbar-nav .nav-item .nav-link{
	font-size: 1.125rem;
}
.navbar-nav .dropdown .dropdown-toggle:after{
	position: relative;
    top: 0.25rem;
	font-size: 0.9375rem;
}
.addednavbar .navbar-nav .dropdown .dropdown-toggle:after,
.navbar .dropdown .dropdown-toggle:after{
	color: #6d6d6d;
}*/
.addednavbar .navbar-nav .nav-link {
  color: #333333 !important;
}
.addednavbar .navbar-nav .dropdown .dropdown-toggle:after {
  color: #64748b;
}
.headright .searchdiv {
  position: relative;
  z-index: 15;
  margin-right: 1.5rem;
  margin-left: 2.2rem;
}
.headright .show-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.headright .show-search-btn img {
  width: 0.875rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar-dark .headright .show-search-btn img,
.navbar-dark .headright .headuser span img,
.navbar-dark .headright .headuese a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.addednavbar.navbar-dark .headright .show-search-btn img,
.addednavbar.navbar-dark .headright .headuser span img,
.addednavbar.navbar-dark .headright .headuese a img {
  -webkit-filter: none;
  filter: none;
}
.headright .search {
  position: fixed;
  z-index: 12;
  top: 5.4175rem;
  right: 0;
  height: auto;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  background: #ffffff;
  box-shadow: 0 0.125rem 0.25rem rgb(2 6 23 / 8%);
}
.headright .search.search-is-open {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.headright .search.search-is-open .search__container {
  transform: translateY(0) translateZ(0);
}
.headright .search__container {
  position: relative;
  z-index: 2;
  background-color: #fff;
  transform: translateY(-100%) translateZ(0);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
.headright .search__overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /*background-color:#1d1d1d;*/
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
  opacity: 0.2;
}
.headright .search,
.headright .search__overlay {
  left: 0;
}
.headright .search-header {
  position: relative;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
.headright .row {
  position: relative;
}
.headright .search .search-btn-close {
  position: absolute;
  top: 0;
  right: 0;
}
.headright .search .search-input {
  font-size: 1.125rem;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
}
.headright .search .search-input__wrapper:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d9d9d9;
  width: 100%;
}
.headright .search-item {
  position: relative;
  display: block;
  overflow: hidden;
  transition: background-color 0.2s, opacity 0.3s, color 0.3s;
  transform-origin: 0 0;
  color: #1d1d1d;
}
.headright .search-item:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 8.333%;
  right: 8.333%;
  height: 1px;
  background-color: #d9d9d9;
}
.headright .search-item .solr-highlight {
  background-color: rgba(101, 32, 142, 0.2);
}
.headright .search-close {
  position: absolute;
  display: block;
  top: 0;
  right: 1rem;
  width: 1.75rem;
  height: 3rem;
  background: url(../images/close.png) no-repeat center;
  background-size: 1.4rem auto;
  cursor: pointer;
  z-index: 6;
  transition-duration: 0.5s;
}
.headright .search-close:hover {
  transform: rotate(90deg);
}
.headright .search .submit0 {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 5;
  width: 1.75rem;
  height: 3rem;
  /* background: url(../image/searchf.png) no-repeat center; */
  background-size: 1.4rem auto;
  border: none;
  box-sizing: border-box;
  display: block;
}
.headright .search .search-input {
  display: block;
  text-indent: 2.8rem;
  line-height: 3rem;
  font-size: 1.125rem;
  color: #333;
  width: 100%;
  padding-right: 5%;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  border-bottom: 1px solid #d9d9d9;
}
.headright .headuser span img,
.headright .headuser a img {
  width: 0.875rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/*.addednavbar .headright .show-search-btn img,
.addednavbar .headright .headuser span img,
.addednavbar .headright .headuser a img{
	opacity: 0.4;
}*/
.headright .muser,
.headright .msearch {
  display: none;
}
.headright .msearch {
  margin: 15px auto;
  width: 90%;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-sizing: border-box;
}
.headright .msearch form {
  display: flex;
  width: 100%;
}
.headright .msearch .text {
  border: none;
  outline: none;
  font-size: 15px;
  color: #333333;
  padding-left: 15px;
  width: calc(100% - 65px);
  height: 45px;
  box-sizing: border-box;
}
.headright .msearch .btns {
  width: 65px;
  height: 45px;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url(../image/search.png) center no-repeat; */
  background-size: 14px auto;
  border: none;
  box-sizing: inherit;
}
@media (min-width: 992px) {
  .navbar .offcanvas .offcanvas-body {
    justify-content: flex-end;
  }
  .navbar .align-items-lg-center.mx-auto {
    margin: 0 !important;
  }
}

/*footer*/
.addfooter {
  background: #1a3760;
}
.addfooter .container .row {
  display: flex;
  justify-content: space-between;
}
.addfooter .foot_left,
.addfooter .foot_right {
  box-sizing: border-box;
}
.addfooter .mt-10 {
  margin-top: 4.5rem !important;
}
.addfooter .footinfor {
  margin-top: 2rem;
}
.addfooter .footinfor ul {
  padding-left: 0;
  margin-bottom: 0;
}
.addfooter .footinfor ul li {
  display: flex;
  align-items: self-start;
  list-style: none;
  margin-bottom: 0.9375rem;
}
.addfooter .footinfor ul li img {
  display: inline-block;
  margin-right: 0.7rem;
  width: 1.125rem;
  margin-top: 0.3rem;
}
.addfooter .footinfor ul li span {
  flex: 1;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.addfooter .text-inverse {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.addfooter .foot_left .mb-5 {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.addfooter .foot_right .mb-3.pb-2 {
  margin-bottom: 0 !important;
}
.addfooter .foot_right .mb-3.pb-2 h5,
.addfooter .foot_right .mb-3.pb-2 .foot-link-title {
  color: #ffffff;
  font-size: 1.2625rem;
  margin-bottom: 0rem !important;
  font-weight: bold;
}

.addfooter .foot_right .mb-3.pb-2 .foot-link-title:not(:last-child) {
  margin-bottom: clamp(10px, 1.25vw, 24px);
}
.addfooter .foot_right .list-unstyled li {
  margin-bottom: 0 !important;
}
.addfooter .foot_right .list-unstyled li a {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.95rem;
  line-height: 1.2em;
  display: block;
  padding-bottom: 13px;
}
.addfooter .foot_right .list-unstyled li a.text-reset:hover {
  color: #fff !important;
}
.addfooter .copyright.mt-7 {
  margin-top: 3.75rem !important;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: rgba(255, 255, 255, 0.1) solid 1px;
}
.addfooter .copyright .text-primary,
.addfooter .copyright .text {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.95rem;
}
.addfooter .copyright .text-primary.t2 {
  margin-left: 3rem;
}
.addfooter .copyright .text-primary a {
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.addfooter .copyright .text-primary.t2:hover a,
.addfooter .copyright .text-primary a:hover {
  color: #ffffff;
}
.addfooter .copyright .btn-icon {
  width: auto;
  max-width: 1.25rem;
  height: 1.25rem;
  font-size: 0.5rem;
  border-radius: 0.25rem;
}
.addfooter .copyright .btn-icon svg {
  width: auto;
  height: auto;
  max-width: 80%;
}
.addfooter .footitem ul {
  overflow: hidden;
}
.addfooter .footitem .morebtn {
  cursor: pointer;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.addfooter .footitem .morebtn:hover {
  color: #ffffff;
}
.addfooter .footshare {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.addfooter .footshare ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 2.375rem;
  margin-bottom: 0;
}
.addfooter .footshare ul li {
  list-style: none;
  margin-right: 0.3125rem;
}
.addfooter .footshare ul li:last-child {
  margin-right: 0;
}
.addfooter .footshare ul li a img {
  opacity: 0.2;
  max-height: 1.25rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.addfooter .footshare ul li:hover a img {
  opacity: 1;
}
@media (min-width: 992px) {
  .addfooter .foot_right {
    margin-left: 0;
    padding-left: 3.5%;
  }
}

.index_banner {
  position: relative;
  padding-top: 8%;
  padding-bottom: 8%;
  display: flex;
  align-items: center;
  background: #f8feff;
  overflow: hidden;
  /*min-height: 690px;*/
  min-height: 43.125rem;
  box-sizing: border-box;
}
.index_banner .container {
  position: relative;
  z-index: 2;
}
.index_banner .text {
  max-width: 38%;
}
.index_banner h2 {
  font-size: 3.75rem;
  color: #333333;
  font-weight: bold;
  line-height: 1.1;
}
.index_banner .text .btns {
  margin-top: 2.8125rem;
}
.index_banner .text .btns a {
  display: flex;
  align-items: center;
  color: #0c4594;
  font-size: 1.125rem;
}
.index_banner .text .btns a img {
  display: inline-block;
  margin-left: 1rem;
}
.index_banner .string {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 68.33333333333333%;
  z-index: 1;
}
.index_banner .string .dot {
  position: relative;
  z-index: 2;
}
.index_banner .string .dot img {
  display: block;
  width: 100%;
}
.index_banner .string .silk {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_banner .string.active .silk {
  -webkit-animation: grow 1.5s forwards linear;
  animation: grow 1.5s forwards linear;
}
.index_banner .string .silk img {
  display: block;
  max-width: inherit;
  width: auto;
  height: 100%;
}
@-webkit-keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@media screen and (max-width: 1600px) {
  .index_banner h2 {
    font-size: 3.2rem;
  }
  .index_banner .text .btns a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1400px) {
  .addednavbar .navbar-brand img {
    height: 3.6rem;
  }
  /*.navbar .navbar-nav .nav-item .nav-link{
		font-size: 1rem;
	}
	.addednavbar .navbar-nav .dropdown .dropdown-toggle:after{
		top: 0;
		font-size: 0.8rem;
	}*/
  .headright .search {
    top: 5rem;
  }
  .headright .search-header {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .headright .search-close {
    width: 1.5rem;
    height: 2.7rem;
    /* background: url(../image/close.png) no-repeat center; */
    background-size: 1.2rem auto;
  }
  .headright .search .submit0 {
    width: 1.5rem;
    height: 2.7rem;
    /* background: url(../image/searchf.png) no-repeat center; */
    background-size: 1.2rem auto;
  }
  .headright .search .search-input {
    text-indent: 2.4rem;
    line-height: 2.7rem;
    font-size: 1rem;
  }
  .headright .headuser span img,
  .headright .headuese a img {
    width: 0.875rem;
  }

  .index_banner {
    min-height: 40rem;
  }
  .index_banner h2 {
    font-size: 2.8rem;
  }
  .index_banner .text .btns {
    margin-top: 2.5rem;
  }
  .index_banner .text .btns a img {
    margin-left: 0.8rem;
    max-width: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .headright .searchdiv {
    margin-right: 1rem;
    margin-left: 1.5rem;
  }
  .navbar-brand img {
    height: 3.2rem;
  }
  /*.navbar .navbar-nav .nav-item .nav-link{
		font-size: 0.8rem;
	}*/
  .headright .search {
    top: 4.5625rem;
  }
  .headright .search-header {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .index_banner {
    min-height: 28rem;
  }
  .index_banner h2 {
    font-size: 2.4rem;
  }
  .index_banner .text .btns {
    margin-top: 2rem;
  }
  .index_banner .text .btns a img {
    margin-left: 0.8rem;
    max-width: 1rem;
  }

  .addfooter .mt-10 {
    margin-top: 3.5rem !important;
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  .addednavbar.navbar .navbar-toggler {
    border: 2px solid var(--bs-dark);
    color: var(--bs-dark);
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
  .addednavbar.navbar .navbar-toggler {
    border: 2px solid var(--bs-dark);
    color: var(--bs-dark);
  }
  .headright .searchdiv,
  .headright .headuser {
    display: none;
  }
  .headright {
    flex-wrap: wrap;
  }

  .addfooter .mt-10 {
    margin-top: 2rem !important;
  }
  .addfooter #ft-links .stretched-link:after {
    color: #ffffff;
  }
  .addfooter #ft-links .footitem.collapse {
    position: relative;
    z-index: 5;
  }
  .addfooter #ft-links .text-inherit .bi-chevron-down {
    color: #ffffff;
  }
  .addfooter .foot_right .mb-3.pb-2 {
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
    border-bottom: rgba(255, 255, 255, 0.5) solid 1px !important;
  }
  .addfooter .foot_right .list-unstyled li a {
    font-size: 0.9375rem;
  }
  .addfooter .footitem ul.py-3 {
    padding-top: 0 !important;
  }
  .addfooter .copyright.mt-7 {
    margin-top: 1rem !important;
  }
  .addfooter .copyright .col-md-9,
  .addfooter .copyright .col-md-3 {
    width: 100%;
    text-align: center;
  }
  .addfooter .copyright .text-primary.t2 {
    margin-left: 0.8rem;
  }
  /*.addfooter .copyright .col-md-3{
		margin-top: 0.8rem;
	}*/
  .addfooter .copyright .col-md-3 .text-md-end {
    justify-content: center !important;
    text-align: center !important;
  }
  .addfooter .footshare {
    margin-left: 0 !important;
  }
  .addfooter .footshare ul {
    padding-left: 1rem;
  }

  .index_banner {
    flex-wrap: wrap;
    padding-top: 6rem;
    padding-bottom: 3.5rem;
  }
  .index_banner .text {
    max-width: 100%;
    width: 100%;
  }
  .index_banner .string {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    margin-top: 8%;
  }

  .deliverybox {
    padding-top: 7rem !important;
  }
  .deliverybox .container {
    width: 90%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
    box-sizing: border-box;
  }
  .deliverybox .container .row {
    display: block;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: auto;
  }
  .deliverybox .col-md-6.col-12 {
    position: static !important;
    width: 100%;
    background: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    word-break: break-all;
  }
  .deliverybox .d-md-none {
    display: block !important;
  }
}

/* 2025-11-10 修改 开始 */
@media screen and (max-width: 991px) {
  .headright .muser {
    display: block;
    width: 100%;
  }
  .headright .msearch {
    display: flex;
    margin-top: 15px;
    width: 100%;
  }
}
/* 2025-11-10 修改 结束 */

@media screen and (max-width: 768px) {
  .addfooter .offset-md-1 {
    margin-left: 5%;
    width: 36%;
  }
}
@media screen and (max-width: 767px) {
  .addfooter .offset-md-1 {
    margin-left: 0%;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .addfooter .mt-10 {
    margin-top: 1rem !important;
  }
  .addfooter .copyright.mt-7 {
    padding-bottom: 2rem;
  }
  .index_banner h2 {
    font-size: 2.1rem;
  }
  .index_banner .text .btns {
    margin-top: 1.5rem;
  }
}

.headuser a {
  color: #64748b;
}

/* 添加语言切换 */
.navbar .lang {
  position: relative;
  z-index: 10;
  white-space: nowrap;
}
.navbar .lang .lang-current {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.navbar .lang .lang-current .lang-text {
  margin-left: 10px;
  font-size: 14px;
  color: #64748b;
  margin-right: 8px;
}
.navbar.lang .lang-current .lang-icon img,
.navbar.lang .lang-current .lang-down img {
  display: block;
}
.navbar .lang .lang-list {
  position: absolute;
  min-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  display: none;
  overflow: hidden;
}
.navbar .lang .lang-list .content {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  /* margin-top: clamp(10px, 1.0417vw, 20px); */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar .lang .lang-list .content .lang-item {
  display: block;
  padding: 10px;
  font-size: 14px;
  color: #333;
  transition: 0.5s ease;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.navbar .lang .lang-list .content .lang-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: 0.5s ease;
  z-index: -1;
  background-color: #2111ff;
}

.navbar .lang .lang-list .content .lang-item:hover {
  color: #fff;
}

.navbar .lang .lang-list .content .lang-item:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.addednavbar .navbar-nav .item-top {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}

.addednavbar .navbar-nav .item-top .nav-link-icon {
  /* margin-left: 5px; */
}

@media (max-width: 992px) {
  .addednavbar .navbar-nav .item-top {
    padding-bottom: 0;
    border-bottom: 1px solid var(--bs-gray-200);
    justify-content: space-between;
  }

  .addednavbar .navbar-nav .item-top .nav-link-icon {
    width: 22px;
    height: 22px;
    user-select: none;
    cursor: pointer;
    transition: 0.45s ease;
  }

  .addednavbar .navbar-nav .item-top .nav-link-icon.active {
    transform: rotate(180deg);
  }

  .addednavbar .navbar-nav .item-top .nav-link-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

/* 右侧表单入口 */
.common-contact-link {
  position: fixed;
  right: 0.5208vw;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1a3760;
  color: #fff;
  writing-mode: vertical-lr;
  font-size: clamp(12px, 0.7292vw, 14px);
  padding: 5px;
  z-index: 60;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
}

.common-mask {
  --color: #1a3760;

  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: calc(99 * 20);
  display: none;
}

.common-mask .content-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

.common-mask .content-wrap .mask-content {
  background-color: #fff;
  border-radius: 20px;
  padding: clamp(20px, 2.0833vw, 40px) clamp(15px, 1.5625vw, 30px);
  max-height: 86vh;
  overflow: hidden auto;
}

.common-mask .close {
  width: fit-content;
  margin-left: auto;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 15px;
  position: relative;
  margin-bottom: clamp(10px, 1.0417vw, 20px);
  user-select: none;
  cursor: pointer;
  transition: 0.45s ease;
}

.common-mask .close::before,
.common-mask .close::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  border-bottom: 1px solid #333;
  border-color: #fff;
  width: 60%;
  left: 20%;
  border-width: 2px;
  transition: 0.45s ease;
}

.common-mask .close::before {
  transform: rotate(45deg);
}

.common-mask .close::after {
  transform: rotate(-45deg);
}

.common-mask .close:hover {
  border-color: #1a3760;
}

.common-mask .close:hover::before,
.common-mask .close:hover::after {
  border-color: #1a3760;
}

.common-mask .contact-desc {
  margin-bottom: clamp(30px, 3.125vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.common-mask .contact-desc .left {
  width: 35%;
  flex-shrink: 0;
}

.common-mask .contact-desc .left img {
  display: block;
  max-width: 100%;
  height: auto;
}

.common-mask .contact-desc .right {
  width: 60%;
  flex-shrink: 0;
  font-size: clamp(12px, 0.8333vw, 16px);
  color: #333333;
  line-height: 1.5;
  overflow-wrap: break-word;
  text-align: justify;
  text-indent: 2em;
  padding-top: 1.0417vw;
}

.common-mask .contact-desc p:not(:last-of-type) {
  margin-bottom: clamp(10px, 1.0417vw, 20px);
}

.common-mask .contact-form {
  /* padding: clamp(30px, 2.3438vw, 45px) clamp(15px, 3.125vw, 60px); */
  padding: 20px 15px;
  border-radius: clamp(10px, 1.0417vw, 20px);
  background-color: #f6f6f6;
}

.common-mask .contact-form .form-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
  color: #1a3760;
  font-size: 18px;
}
.common-mask .contact-form .input-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.common-mask .contact-form .input-item {
  width: 48%;
  height: clamp(40px, 2.6042vw, 50px);
  font-size: 14px;
  color: #000;
  padding: 0 clamp(10px, 1.3021vw, 25px);
  transition: 0.45s ease;
  border-radius: 10px;
  background-color: rgba(123, 173, 243, 0.1);
  margin-bottom: clamp(15px, 1.0417vw, 20px);
}

.common-mask .contact-form .input-item::placeholder {
  color: #a4a4a4;
}

.common-mask .contact-form .select-line .select-text {
  font-size: clamp(16px, 1.0417vw, 20px);
  color: var(--color);
  margin-bottom: 10px;
  font-weight: bold;
  margin-bottom: clamp(10px, 1.0417vw, 20px);
}

.common-mask .contact-form .select-line .list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.common-mask .contact-form .select-line .list label {
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}
.common-mask .contact-form .select-line .list label:not(:last-child) {
  margin-right: clamp(10px, 2.0833vw, 40px);
}

.common-mask .contact-form .select-line .list label input {
  display: none;
}

.common-mask .contact-form .select-line .list label .text {
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #999999;
}

.common-mask .contact-form .select-line .list label .icon {
  width: clamp(16px, 1.0417vw, 20px);
  height: clamp(16px, 1.0417vw, 20px);
  flex-shrink: 0;
  margin-right: 10px;
  border: 1px solid #cccccc;
  position: relative;
  transition: 0.45s ease;
}

.common-mask .contact-form .select-line .list label .icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color);
  opacity: 0;
  transition: 0.45s ease;
  background-image: url(../images/bm-form-multy-icon.png);
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.common-mask .contact-form .select-line .list label input:checked ~ .icon {
  border-color: var(--color);
}

.common-mask .contact-form .select-line .list label input:checked ~ .icon::after {
  opacity: 1;
}

.common-mask .contact-form .select-line .list label input:checked ~ .text {
  color: var(--color);
}

.common-mask .contact-form .button-line {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-top: clamp(30px, 3.125vw, 60px);
}

.common-mask .contact-form .button-line .submit-btn {
  width: clamp(140px, 8.3333vw, 160px);
  height: clamp(40px, 2.6042vw, 50px);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  font-size: clamp(16px, 0.9375vw, 18px);
  color: #fff;
  background-color: var(--color);
  line-height: 1;
}

@media (max-width: 1200px) {
  .common-mask .content-wrap {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .common-mask .content-wrap {
    width: 90%;
  }
  .common-mask .contact-form .input-line {
    flex-wrap: wrap;
  }
  .common-mask .contact-form .input-item {
    width: 100%;
  }

  .common-contact-link {
    padding: 6px;
  }

  .common-mask .content-wrap .mask-content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .common-mask .contact-form .form-title {
    font-size: 16px;
  }

  .common-mask .contact-desc {
    flex-wrap: wrap;
    row-gap: 20px;
    order: 1;
  }

  .common-mask .contact-desc .left {
    width: 100%;
  }

  .common-mask .contact-desc .right {
    width: 100%;
  }

  .btn-scroll-top {
    right: 1rem;
  }
}
