/* #region Public Styles */
@font-face {
  font-family: "iconfont";
  src:
    url("/assets/css/font/fontIcon/iconfont.woff2?t=1765777637515")
      format("woff2"),
    url("/assets/css/font/fontIcon/iconfont.woff?t=1765777637515")
      format("woff"),
    url("/assets/css/font/fontIcon/iconfont.ttf?t=1765777637515")
      format("truetype");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 0.2rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* 
@font-face {
  font-family: "Poppins";
  src: url("font/Poppins-Light.ttf");
  font-display: swap;
} */

@media screen and (min-width: 1920px) {
  html {
    font-size: 80px !important;
  }
}

:root {
  --mainColor: #49994d;
  --bg: #f1f9f2;
  --ba-a: #211916;
  --color: #d8672a;
  --font: "Poppins", sans-serif;
  --main-font: "Poppins", sans-serif;
}
body {
  font-family: var(--main-font);
  font-weight: 400;
}
.com-card {
  width: 17.5rem;
  height: 100%;
  margin: 0 auto;
}

/* #endregion  */

/* #region System style */
.system_com_title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 0.45rem;
  color: #000;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 70px !important;
  }
  .com-card {
    width: 100% !important;
    padding: 0 4%;
  }
  .system_com_title {
    font-size: 18px;
  }
}
/* faq */
.system_faq_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}
.system_faq_con {
  width: 100%;
  height: auto;
  margin-top: 0.4375rem;
}
.system_faq_item {
  width: 100%;
  height: auto;
  margin-bottom: 0.15rem;
}
.system_faq_item .tl {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 0.775rem;
  border-radius: 0.625rem;
  padding: 0 0.25rem;
  background-image: linear-gradient(320deg, #f7faff 0%, #f1f3f6 100%);
}
.system_faq_item .icon {
  display: block;
  width: 0.225rem;
  height: 0.025rem;
  border-radius: 0.0125rem;
  background-color: var(--mainColor);
  margin-right: 0.375rem;
}
.system_faq_item .icon::after {
  display: block;
  content: "";
  width: 0.225rem;
  height: 0.025rem;
  border-radius: 0.0125rem;
  transform: rotate(90deg);
  background-color: var(--mainColor);
  transition: all 0.5s;
}
.system_faq_item .tl .name {
  font-size: 0.225rem;
  font-weight: 700;
  flex: 1;
  color: var(--mainColor);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.system_faq_item .text {
  width: 100%;
  font-size: 0.2rem;
  display: none;
  line-height: 0.325rem;
  color: #a6adb5;
  padding: 0.25rem 0.5rem 0.375rem 0.625rem;
}
.system_faq_item.active .tl {
  background-color: var(--mainColor);
  background-image: none;
  height: auto;
  padding: 0.125rem 0.25rem;
}
.system_faq_item.active .tl .name {
  color: #fff;
  display: inline;
}
.system_faq_item.active .icon,
.system_faq_item.active .icon::after {
  background-color: #fff;
}
.system_faq_item.active .icon::after {
  transform: rotate(0);
}
@media screen and (max-width: 1024px) {
  .system_faq_box {
    padding: 20px 0;
  }
  .system_faq_con {
    margin-top: 15px;
  }
  .system_faq_item .text,
  .system_faq_item .text p {
    font-size: 14px;
    line-height: 24px;
  }
  .system_faq_item .tl .name {
    font-size: 15px;
  }
  .system_faq_item .tl {
    height: 35px;
  }
  .system_faq_item .icon,
  .system_faq_item .icon::after {
    height: 2px;
  }
}
@media screen and (max-width: 430px) {
  .system_faq_item.active .tl {
    height: auto;
  }
  .system_faq_item.active .tl .name {
    display: inline;
    padding: 6px 10px;
  }
}

/* news */
.system_news_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}

.system_news_con {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.4375rem;
}
.system_news_item {
  position: relative;
  border-radius: 0.075rem;
  margin: 0 0.25rem 0.25rem 0;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}
.system_news_con_cols4 .system_news_item {
  width: calc((100% - 0.75rem) / 4);
}
.system_news_con_cols3 .system_news_item {
  width: calc((100% - 0.5rem) / 3);
}
.system_news_con_cols2 .system_news_item {
  width: calc((100% - 0.25rem) / 2);
}
.system_news_con_cols4 .system_news_item:nth-child(4n),
.system_news_con_cols3 .system_news_item:nth-child(3n),
.system_news_con_cols2 .system_news_item:nth-child(2n) {
  margin-right: 0;
}

.system_news_item .img {
  width: 100%;
  height: 3.575rem;
  overflow: hidden;
  border-radius: 0.075rem 0.075rem 0 0;
}
.system_news_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.3s;
}
.system_news_item:hover .img img {
  transform: scale(1.2);
}
.system_news_item .text {
  display: block;
  width: 100%;
  height: 3.0625rem;
  border-radius: 0 0 0.075rem 0.075rem;
  padding: 10%;
}
.system_news_item .text .name {
  font-size: 0.25rem;
  line-height: 0.325rem;
  font-weight: 600;
  margin-bottom: 0.1875rem;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.system_news_item .text .ls {
  font-size: 0.2rem;
  line-height: 0.3125rem;
  margin-bottom: 0.1875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #828282;
}
.system_news_item .bto {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
}
.system_news_item .bto .lt {
  width: 80%;
}
.system_news_item .bto .time,
.system_news_item .bto .author {
  font-size: 0.1875rem;
  font-weight: 700;
  -webkit-transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1);
}
.system_news_item .bto .number {
  font-size: 0.1875rem;
  color: #000;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.system_news_item .bto .number::before {
  margin-right: 0.05rem;
  transition: all 0.3s;
  font-size: 0.225rem;
  color: red;
}
.system_news_item .bto .number:hover::before {
  transform: scale(1.2);
}
.system_news_item .bto .author {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(0.4rem);
}
.system_news_item:hover .author {
  transform: translateY(0);
  opacity: 1;
  overflow: visible;
}
.system_news_item:hover .time {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-0.4rem);
  transform: translateY(-0.4rem);
}
.system_news_item .bto .author span {
  display: inline-block;
  margin-left: 0.0625rem;
  text-decoration: underline;
}
.system_news_item:hover .name {
  color: var(--mainColor);
}
.system_news_categories {
  position: absolute;
  display: inline-block;
  top: 0.2125rem;
  right: 0.25rem;
  width: fit-content;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.4);
  padding: 0.05rem 0.15rem;
  background-color: #fff;
  color: #000;
  font-size: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .system_news_box {
    padding: 20px 0;
  }
  .system_news_con {
    margin-top: 15px;
  }
  .system_news_item .text .ls {
    font-size: 14px;
    line-height: 24px;
  }
  .system_news_item .bto .time,
  .system_news_item .bto .author,
  .system_news_item .bto .number {
    font-size: 12px;
  }
  .system_news_con_cols4 .system_news_item {
    width: calc((100% - 20px) / 3);
    margin: 0 10px 10px 0;
  }
  .system_news_con_cols4 .system_news_item:nth-child(4n) {
    margin-right: 10px;
  }
  .system_news_con_cols4 .system_news_item:nth-child(3n) {
    margin-right: 0;
  }

  .system_news_item .text {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 768px) {
  .system_news_item .img {
    height: auto;
  }
  .system_news_con_cols4 .system_news_item,
  .system_news_con_cols3 .system_news_item {
    width: calc((100% - 10px) / 2);
  }
  .system_news_con_cols3 .system_news_item {
    margin: 0 10px 10px 0;
  }
  .system_news_con_cols4 .system_news_item:nth-child(3n),
  .system_news_con_cols3 .system_news_item:nth-child(3n) {
    margin-right: 10px;
  }
  .system_news_con_cols4 .system_news_item:nth-child(2n),
  .system_news_con_cols3 .system_news_item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .system_news_item .text {
    height: auto;
  }
  .system_news_con .system_news_item {
    width: 100%;
    margin-right: 0 !important;
  }
}

/* Contact Us */
.system_contact_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}

.system_contact_con {
  margin-top: 0.4375rem;
}
.system_contact_con .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.system_contact_con .top li {
  position: relative;
  width: calc((100% - 0.75rem) / 3);
  height: auto;
  background-color: #f4f4f6;
  border-radius: 0.0625rem;
  display: flex;
  min-height: 3.125rem;
  flex-direction: column;
  transition: all 0.3s;
  justify-content: center;
  padding: 0.5rem 0.375rem;
  border-bottom: 0.05rem solid var(--mainColor);
}
/* .system_contact_con .top li::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 0.05rem;
  left: 0;
  bottom: 0;
  border-radius: 0.0625rem;
  background-color: var(--mainColor);
} */
.system_contact_con .top li .icon {
  font-size: 0.575rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
}
.system_contact_con .top li .name {
  font-size: 0.3rem;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin: 0.375rem 0 0.125rem 0;
}
.system_contact_con .top li:hover {
  box-shadow: 0 0 0.1875rem 0 rgba(0, 0, 0, 0.3);
}
.system_contact_con .top li .ls {
  font-size: 0.225rem;
  line-height: 0.325rem;
  text-align: center;
  color: #646c71;
}

.system_contact_form {
  width: 100%;
  height: auto;
  padding: 1.125rem 0;
  margin-top: 1.25rem;
  background-color: #f4f4f6;
}

.system_contact_form .title {
  font-size: 0.45rem;
  text-align: center;
  color: var(--mainColor);
  font-weight: 700;
}
.system_contact_form form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-top: 0.3125rem;
}
.system_contact_form input {
  width: 100%;
  height: 0.6875rem !important;
  background-color: #fff !important;
  color: #192436 !important;
  font-size: 0.2rem !important;
  padding: 0 0.125rem !important;
  outline: none !important;
  transition: all 0.3s !important;
  border-radius: 0.0625rem !important;
  transition: all 0.3s !important;
}
.system_contact_form input:focus,
.system_contact_form textarea:focus {
  border: 0.0125rem solid var(--mainColor);
}
.system_contact_form .formList {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3125rem;
}
.system_contact_form .formList input {
  width: calc((100% - 0.25rem) / 2);
}
.system_contact_form textarea {
  width: 100% !important;
  height: 4.375rem !important;
  transition: all 0.3s !important;
  font-size: 0.2rem !important;
  background-color: #fff !important;
  border-radius: 0.0625rem !important;
  color: #192436 !important;
  padding: 0.125rem 0 0 0.125rem !important;
}
.system_contact_form button[type="submit"] {
  width: 30% !important;
  height: 0.65rem !important;
  font-size: 0.225rem !important;
  font-weight: 600 !important;
  background-color: var(--mainColor) !important;
  color: #fff !important;
  margin: 0 auto !important;
}
.system_contact_form button {
  cursor: pointer;
}
.system_contact_form .com-ls24 {
  font-size: 0.225rem;
  color: #000;
}
.system_contact_form .com-ls24 a {
  text-decoration: underline;
  color: var(--mainColor);
}
@media screen and (max-width: 1024px) {
  .system_contact_box,
  .system_contact_form {
    padding: 20px 0;
  }
  .system_contact_form .title {
    font-size: 18px;
  }
  .system_contact_con .top li .name {
    font-size: 16px;
  }
  .system_contact_con .top li .ls,
  .system_form_ls {
    font-size: 14px;
    line-height: 24px;
  }
  .system_contact_con .top {
    flex-wrap: wrap;
  }
  .system_contact_con .top li .icon {
    height: 30px;
  }
  .system_contact_con .top li {
    width: calc((100% - 20px) / 2);
    margin: 0 20px 15px 0;
  }
  .system_contact_form input {
    height: 35px;
    font-size: 14px;
  }
  .system_contact_form textarea {
    height: 120px;
    font-size: 14px;
  }
  .system_contact_con .top li:nth-child(2n) {
    margin-right: 0;
  }
  .system_contact_form input[type="submit"] {
    height: 40px;
    font-size: 16px;
  }
  .system_contact_form {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .system_contact_con .top li {
    width: 100%;
    padding: 25px 20px;
    height: auto;
    margin-right: 0;
  }
  .system_contact_form form {
    margin-top: 15px;
  }
  .system_contact_form .formList {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .system_contact_form .formList input {
    width: 100%;
    margin-bottom: 10px;
  }
  .system_contact_form input[type="submit"] {
    width: 50%;
  }
}

/* List */
.system_list_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}
.system_list_con {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.4375rem;
}

.system_list_item {
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.1);
  margin: 0 0.25rem 0.25rem 0;
  border-radius: 0.0625rem;
}
.system_list_con_col4 .system_list_item {
  width: calc((100% - 0.75rem) / 4);
}
.system_list_con_col3 .system_list_item {
  width: calc((100% - 0.5rem) / 3);
}
.system_list_con_col2 .system_list_item {
  width: calc((100% - 0.25rem) / 2);
}
.system_list_con_col4 .system_list_item:nth-child(4n),
.system_list_con_col3 .system_list_item:nth-child(3n),
.system_list_con_col2 .system_list_item:nth-child(2n) {
  margin-right: 0;
}
.system_list_item .img {
  width: 100%;
  height: 3.6rem;
  overflow: hidden;
  border-radius: 0.0625rem 0.0625rem 0 0;
}
.system_list_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.3s;
}
.system_list_item:hover .img img {
  transform: scale(1.2);
}
.system_list_item .text {
  display: block;
  width: 100%;
  height: 2.2125rem;
  background-color: #fff;
  padding: 0.25rem 0.1875rem;
  border-radius: 0 0 0.0625rem 0.0625rem;
}
.system_list_item .text .name {
  font-size: 0.25rem;
  color: #000;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  margin-bottom: 0.125rem;
  transition: all 0.3s;
}
.system_list_item .text .ls {
  font-size: 0.2rem;
  line-height: 0.3125rem;
  color: #a7a7a7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.125rem;
}
.system_list_item .text .mores {
  display: block;
  position: relative;
  width: 1.9375rem;
  height: 0.5rem;
  line-height: 0.5rem;
  margin: 0 auto;
  text-align: center;
  border-radius: 0.05rem;
  font-size: 0.2rem;
  color: #fff;
  font-weight: 600;
  background-color: var(--mainColor);
  z-index: 1;
}
.system_list_item .text .mores::after {
  display: block;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000;
  border-radius: 0.05rem;
  transition: all 0.3s;
  z-index: -1;
}
.system_list_item:hover .mores::after {
  width: 100%;
}
.system_list_item:hover .name {
  color: var(--mainColor);
}

@media screen and (max-width: 1024px) {
  .system_list_box {
    padding: 20px 0;
  }
  .system_list_con {
    margin-top: 15px;
  }
  .system_list_con_col4 .system_list_item {
    width: calc((100% - 20px) / 3);
    margin: 0 10px 10px 0;
  }
  .system_list_con_col4 .system_list_item:nth-child(4n) {
    margin-right: 10px;
  }
  .system_list_con_col4 .system_list_item:nth-child(3n) {
    margin-right: 0;
  }
  .system_list_item .text .mores {
    font-size: 14px;
  }
  .system_list_item .text .ls {
    font-size: 14px;
    line-height: 24px;
  }
  .system_list_item .text {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .system_list_item .img,
  .system_news_item .img {
    height: auto;
  }

  .system_aggregation_item .com-card {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .system_list_con {
    align-items: baseline;
  }
  .system_list_con_col4 .system_list_item,
  .system_list_con_col3 .system_list_item {
    width: calc((100% - 10px) / 2);
  }
  .system_list_con_col3 .system_list_item {
    margin: 0 10px 10px 0;
  }
  .system_list_con_col4 .system_list_item:nth-child(3n),
  .system_list_con_col3 .system_list_item:nth-child(3n) {
    margin-right: 10px;
  }
  .system_list_con_col4 .system_list_item:nth-child(2n),
  .system_list_con_col3 .system_list_item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .system_list_con .system_list_item {
    width: 100%;
    margin-right: 0 !important;
  }
}

/* 视频列表 */
.system_video_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}
.system_video_con {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.4375rem;
}

.system_video_item {
  width: calc((100% - 0.75rem) / 4);
  height: auto;
  margin: 0 0.25rem 0.25rem 0;
  box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.4);
  border-radius: 0.0625rem;
}
.system_list_con_col4 .system_video_item {
  width: calc((100% - 0.75rem) / 4);
}
.system_list_con_col3 .system_video_item {
  width: calc((100% - 0.5rem) / 3);
}
.system_list_con_col2 .system_video_item {
  width: calc((100% - 0.25rem) / 2);
}
.system_list_con_col4 .system_video_item:nth-child(4n),
.system_list_con_col3 .system_video_item:nth-child(3n),
.system_list_con_col2 .system_video_item:nth-child(2n) {
  margin-right: 0;
}
.system_video_item .img {
  width: 100%;
  height: 3.125rem;
  overflow: hidden;
  border-radius: 0.0625rem 0.0625rem 0 0;
}
.system_list_con_col3 .system_video_item .img {
  height: 3.75rem;
}
.system_list_con_col2 .system_video_item .img {
  height: 4.375rem;
}
.system_video_item .img iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.system_video_item .name {
  width: 100%;
  padding: 0.15rem 0.1875rem;
  font-size: 0.225rem;
  line-height: 0.375rem;
  color: #000;
  height: 1rem;
  text-align: center;
  font-weight: 600;
  background-color: #fff;
  border-radius: 0 0 0.0625rem 0.0625rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1024px) {
  .system_video_box {
    padding: 20px 0;
  }
  .system_video_con {
    margin-top: 15px;
  }
  .system_video_item .name {
    font-size: 15px;
    line-height: 23px;
  }
  .system_list_con_col4 .system_video_item {
    width: calc((100% - 20px) / 3);
    margin: 0 10px 10px 0;
  }

  .system_list_con_col4 .system_video_item:nth-child(4n) {
    margin-right: 10px;
  }
  .system_list_con_col4 .system_video_item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .system_list_con_col4 .system_video_item,
  .system_list_con_col3 .system_video_item {
    width: calc((100% - 10px) / 2);
  }
  .system_list_con_col3 .system_video_item {
    margin: 0 10px 10px 0;
  }
  .system_list_con_col4 .system_video_item:nth-child(3n),
  .system_list_con_col3 .system_video_item:nth-child(3n) {
    margin-right: 10px;
  }
  .system_list_con_col4 .system_video_item:nth-child(2n),
  .system_list_con_col3 .system_video_item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .system_video_con .system_video_item {
    width: 100%;
    margin-right: 0 !important;
  }
}
/* Download */
.system_down_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
  background-color: #f8f8f8;
}

.system_down_con {
  width: 100%;
  height: auto;
  margin-top: 0.4375rem;
  display: flex;
  flex-wrap: wrap;
}
.system_down_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 0.1875rem;
  margin-bottom: 0.3125rem;
  border-radius: 0.0625rem;
  padding: 0 0.25rem 0.3125rem 0.25rem;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.system_down_item:hover {
  border-bottom: 1px solid var(--mainColor);
}
.system_down_item .lt .icon1 {
  font-size: 0.35rem;
  color: var(--mainColor);
}
.system_down_item .name {
  font-size: 0.25rem;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  margin: 0 0.1875rem 0 0.375rem;
  transition: all 0.3s;
}
.system_down_item:hover .name {
  color: var(--mainColor);
}
.system_down_item .time {
  font-size: 0.2rem;
  color: #938f8d;
}
.system_down_item .lt {
  display: flex;
  align-items: center;
}
.system_down_item .rt {
  display: flex;
  align-items: center;
}
.system_down_item .rt .size {
  font-size: 0.2rem;
  margin-right: 0.125rem;
  color: #938f8d;
}
.system_down_item .rt .icon2 {
  font-size: 0.375rem;
  color: var(--mainColor);
}
@media screen and (max-width: 1024px) {
  .system_down_box {
    padding: 20px 0;
  }
  .system_down_con {
    margin-top: 15px;
  }
  .system_down_item .lt .icon1,
  .system_down_item .rt .icon2 {
    font-size: 20px;
  }
  .system_down_item .name {
    font-size: 16px;
  }

  .system_down_item .time,
  .system_down_item .rt .size {
    font-size: 14px;
  }
  .system_down_item {
    padding: 10px 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 430px) {
  .system_down_item {
    flex-wrap: wrap;
    justify-content: end;
  }
  .system_down_item .rt {
    margin-top: 10px;
  }
}
/* News details */
.system_newsDel_box {
  width: 100%;
  padding: 0.625rem 0;
}
.system_newsDel_box .com-card {
  display: flex;
}
.system_newsDel_lt {
  width: calc((100% - 25%));
}
.system_newsDel_nav,
.system_newsDel_nav .com-card {
  display: flex;
  align-items: center;
}
.system_newsDel_nav a {
  font-size: 0.2rem;
  color: #000;
}
.system_newsDel_rt {
  width: 25%;
  margin-left: 0.625rem;
}
.system_newsDel_category {
  width: fit-content;
  padding: 0.05rem 0.125rem;
  font-size: 0.2rem;
  background-color: var(--mainColor);
  color: #fff;
  margin: 0 auto;
  margin-top: 0.875rem;
}
.system_newsDel_box .system_com_title {
  margin: 0.1875rem 0;
}
.system_newsDel_name {
  width: 100%;
  font-size: 0.1875rem;
  color: #bbb;
  text-align: center;
}
.system_newsDel_link {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5625rem 0;
}
.system_newsDel_content {
  margin-bottom: 0.625rem;
}
.system_newsDel_link a {
  display: flex;
  align-items: center;
  font-size: 0.325rem;
  margin-right: 0.125rem;
}
.system_newsDel_link a:last-child {
  margin-right: 0;
}
.system_newsDel_link a i {
  display: inline-block;
  width: 100%;
  font-size: 0.325rem;
  height: 100%;
  color: var(--mainColor);
}
.system_newsDel_content,
.system_newsDel_content p {
  font-size: 0.2rem;
  line-height: 0.3125rem;
  color: #000;
}
.system_newsDel_bto {
  width: 100%;
  height: auto;
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.system_newsDel_bto .lt_prev,
.system_newsDel_bto .rt_next {
  display: flex;
  align-items: center;
  width: 40%;
}
.system_newsDel_bto .icon {
  font-size: 0.475rem;
  transition: all 0.3s;
  color: rgba(0, 0, 0, 0.5);
}
.system_newsDel_bto .lt_prev .icon {
  margin-right: 0.25rem;
}
.system_newsDel_bto .rt_next .icon {
  margin-left: 0.25rem;
}
.system_newsDel_bto .lt_prev:hover .ls,
.system_newsDel_bto .lt_prev:hover .icon,
.system_newsDel_bto .rt_next:hover .ls,
.system_newsDel_bto .rt_next:hover .icon,
.system_newsDel_bto .con:hover {
  color: var(--mainColor);
}

.system_newsDel_bto .text .name {
  font-size: 0.2rem;
  color: #bbb;
}
.system_newsDel_bto .text .ls {
  font-size: 0.2rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 0.3rem;
  color: #333;
  margin-top: 0.05rem;
}
.system_newsDel_bto .con {
  font-size: 0.375rem;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.system_newsDel_rt .title {
  font-size: 0.45rem;
  color: #000;
  font-weight: 700;
}
.system_newsDel_rtItem {
  width: 100%;
  height: auto;
}
.system_newsDel_rtItem li {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 0.25rem 0;
}
.system_newsDel_rtItem li .img {
  width: 1.25rem;
  overflow: hidden;
  height: 1.125rem;
  border-radius: 0.05rem;
  margin-right: 0.1875rem;
}
.system_newsDel_rtItem li:hover img {
  transform: scale(1.2);
}
.system_newsDel_rtItem li:hover .name {
  color: var(--mainColor);
}
.system_newsDel_rtItem li .img a {
  display: flex;
  width: 100%;
  height: 100%;
}
.system_newsDel_rtItem li .text {
  display: inline-block;
  flex: 1;
}
.system_newsDel_rtItem li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.3s;
}
.system_newsDel_rtItem li .name {
  font-size: 0.225rem;
  line-height: 0.325rem;
  font-weight: 700;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.system_newsDel_rtItem li .time {
  font-size: 0.2rem;
  color: #666;
  margin-top: 0.0625rem;
}
.system_newsDel_form {
  width: 100%;
  height: auto;
}
.system_newsDel_form .tl {
  font-size: 0.3rem;
  color: #333 !important;
  font-weight: 700;
  margin: 0.5rem 0 0.25rem 0;
}
.system_newsDel_form form {
  width: 100%;
  height: auto;
}
.system_newsDel_form form input {
  width: 100%;
  display: flex;
  height: 0.5875rem;
  font-size: 0.225rem !important;
  padding-left: 0.1875rem !important;
  border-radius: 0.0625rem !important;
  margin-bottom: 0.1875rem;
  color: #333 !important;
  border: 1px solid #eee !important;
}
.system_newsDel_form form textarea {
  width: 100%;
  display: flex;
  height: 1.5rem;
  color: #333;
  font-size: 0.225rem;
  border-radius: 0.0625rem;
  border: 1px solid #eee;
  padding: 0.125rem 0 0 0.1875rem;
}
.system_newsDel_form form .ls {
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #000;
  margin: 0.15rem 0 0.25rem 0;
}
.system_newsDel_form form .ls a {
  text-decoration: underline !important;
}
.system_newsDel_form form button {
  width: 1.9rem !important;
  height: 0.5875rem !important;
  border-radius: 0.0625rem !important;
  font-size: 0.225rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff !important;
  text-align: center;
  line-height: 0.5875rem;
  background-color: var(--mainColor);
}
.system_newsDel_table {
  width: 100%;
  height: auto;
  padding-top: 0.5rem;
}

.system_newsDel_table .title {
  width: 100%;
  font-size: 0.3rem;
  color: #323232;
  font-weight: 700;
  padding-bottom: 0.1875rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(110, 110, 110, 0.2);
}
.system_newsDel_tableCon {
  width: 100%;
  border-left: 1px solid rgba(110, 110, 110, 0.2);
  padding: 0.125rem 0;
}
.system_newsDel_tableCon .item {
  position: relative;
  font-size: 0.25rem;
  line-height: 0.325rem;
  cursor: pointer;
  color: #000;
  font-weight: 700;
  padding-left: 0.1875rem;
  margin-bottom: 0.375rem;
  transition: all 0.3s;
}
.system_newsDel_content h2,
.system_newsDel_content h3 {
  font-size: 0.3rem;
  font-weight: 700;
  margin: 0.125rem 0;
}
.system_newsDel_content table {
  width: 100%;
  height: auto;
  border: 1px solid #333;
  margin: 0.125rem 0;
  overflow: auto;
}
.system_newsDel_content table td {
  border-right: 1px solid #333;
  padding: 0 0.125rem;
  font-size: 0.2rem;
  height: 0.5625rem;
  border-bottom: 1px solid #333;
}
.system_newsDel_tableCon .item:hover,
.system_newsDel_tableCon .item.active {
  color: var(--mainColor);
}
.system_newsDel_tableCon .item:hover::after,
.system_newsDel_tableCon .item.active::after {
  background-color: var(--mainColor);
}
.system_newsDel_tableCon .item::after {
  position: absolute;
  top: 50%;
  left: -0.05rem;
  transform: translateY(-50%);
  display: flex;
  content: "";
  width: 0.1rem;
  transition: all 0.3s;
  height: 0.1rem;
  border-radius: 0.625rem;
  background-color: #000;
}
.system_newsDel_table.is-fixed {
  position: fixed;
  top: 0;
  max-width: 350px;
}
@media screen and (max-width: 1024px) {
  .system_newsDel_box {
    padding: 20px 0;
  }
  .system_newsDel_table {
    display: none !important;
  }
  .system_newsDel_rt .title,
  .system_newsDel_content h2,
  .system_newsDel_content h3 {
    font-size: 18px;
  }

  .system_newsDel_category,
  .system_newsDel_rtItem li .name,
  .system_newsDel_form form input[type="submit"] {
    font-size: 15px;
  }

  .system_newsDel_name,
  .system_newsDel_bto .text .name,
  .system_newsDel_rtItem li .time {
    font-size: 14px;
  }
  .system_newsDel_nav a,
  .system_newsDel_content,
  .system_newsDel_content p,
  .system_newsDel_bto .text .ls,
  .system_newsDel_form form .ls {
    font-size: 14px;
    line-height: 24px;
  }
  .system_newsDel_category {
    margin-top: 20px;
  }
  .system_newsDel_box .com-card,
  .system_newsDel_box .com-card .e-con-inner {
    flex-wrap: wrap !important;
  }
  .system_newsDel_box .com-card .e-con-inner > div {
    padding: 0 !important;
  }
  .system_newsDel_lt {
    flex: none !important;
    width: 100% !important;
  }
  .system_newsDel_rt {
    width: 100% !important;
    margin: 15px 0 0;
  }
  .system_newsDel_content table {
    display: inline-block;
    overflow-x: scroll;
  }
  .system_newsDel_link {
    margin: 4% 0;
  }
}

@media screen and (max-width: 500px) {
  .system_newsDel_bto .lt_prev,
  .system_newsDel_bto .rt_next {
    width: 100%;
  }
  .system_newsDel_bto .con {
    margin: 15px 0;
  }
  .system_newsDel_bto {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Product aggregation page */
.system_aggregation_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}
.system_aggregation_con {
  margin-top: 0.4375rem;
}
.system_aggregation_item {
  width: 100%;
  height: 8.625rem;
  background-color: rgba(245, 245, 245, 1);
}

.system_aggregation_item .com-card {
  display: flex;
  align-items: center;
}
.system_aggregation_item .img {
  width: 50%;
  height: auto;
  margin-right: 1.25rem;
}
.system_aggregation_item .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.system_aggregation_con .system_aggregation_item:nth-child(2n) {
  background-color: #fff;
}
.system_aggregation_con .system_aggregation_item:nth-child(2n) .com-card {
  flex-direction: row-reverse;
}
.system_aggregation_con .system_aggregation_item:nth-child(2n) .img {
  margin-left: 1.25rem;
  margin-right: 0;
}
.system_aggregation_item .text {
  display: block;
  flex: 1;
}
.system_aggregation_item .text .name {
  font-size: 0.45rem;
  color: #000;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.system_aggregation_item .text .ls,
.system_aggregation_item .text .ls p {
  font-size: 0.2rem;
  color: #484848;
  line-height: 0.3125rem;
  margin-bottom: 0.1875rem;
}
.system_aggregation_item .mores {
  width: 2rem;
  height: 0.65rem;
  display: block;
  font-size: 0.225rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-top: 0.375rem;
  background-color: var(--mainColor);
  line-height: 0.65rem;
  border-radius: 0.0625rem;
}
@media screen and (max-width: 1024px) {
  .system_aggregation_box {
    padding: 20px 0;
  }

  .system_aggregation_con {
    margin-top: 15px;
  }
  .system_aggregation_item .text .name {
    font-size: 18px;
  }

  .system_aggregation_item .more {
    font-size: 15px;
  }
  .system_aggregation_item .text .ls,
  .system_aggregation_item .text .ls p {
    font-size: 14px;
    line-height: 24px;
  }

  .system_aggregation_item .text .ls,
  .system_aggregation_item .text .ls p {
    margin-bottom: 4px;
  }
  .system_aggregation_item {
    height: auto;
    padding: 0.375rem 0;
  }
  .system_aggregation_item .img {
    width: 36%;
    height: auto;
    margin-right: 4%;
  }
  .system_aggregation_con .system_aggregation_item:nth-child(2n) .img {
    margin-left: 4%;
  }
}
@media screen and (max-width: 768px) {
  .system_aggregation_item .com-card {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .system_aggregation_item .img {
    width: 100% !important;
    margin: 0 !important ;
  }
}
/* Product Details */
.system_product_del_box {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}
.system_product_del_box .com-card {
  display: flex;
}
.system_product_del_box .lt {
  width: 8.4875rem;
  height: auto;
  margin-right: 0.5625rem;
}
.systemdetailBox1Swiper2 {
  position: relative;
  width: 100%;
  height: 6.6625rem;
  overflow: hidden;
  border: 1px solid #eee;
}
.systemdetailBox1Swiper2 .img {
  width: 100%;
  height: 100%;
}
.systemdetailBox1Swiper2 img,
.systemdetailBox1Swiper1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.3s;
}
.systemdetailBox1Swiper1 {
  width: 100%;
  height: 1.225rem;
  overflow: hidden;
}

.systemdetailBox1Swiper1 .img {
  width: 100%;
  cursor: pointer;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.3s;
}

.systemdetailBox1-prev,
.systemdetailBox1-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  cursor: pointer;
  border-radius: 50%;
  font-size: 0.5625rem !important;
  color: #fff;
  transition: all 0.3s;
}
.systemdetailBox1-prev {
  left: 0;
}
.systemdetailBox1-prev:hover,
.systemdetailBox1-next:hover {
  color: var(--mainColor);
}
.systemdetailBox1-next {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.systemdetailBox1Swiper1 .swiper-slide-thumb-active .img {
  border: 1px solid var(--mainColor);
}
.system_product_del_box .rt .ls {
  font-size: 0.225rem;
  line-height: 0.325rem;
  color: #000;
  margin: 0.1875rem 0 0.375rem 0;
}
.system_product_del_box .rt {
  flex: 1;
}
.system_product_del_box .rt .system_com_title {
  text-align: left;
}
.system_product_del_box .rt .table .tl {
  font-size: 0.2rem;
  color: #000;
  font-weight: 700;
  margin: 0.125rem 0;
}

.system_product_del_box .rt .table,
.system_product_del_box .rt table,
.system_product_del_box .rt table .con {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.system_product_del_box .rt .table td {
  font-size: 0.2rem;
  height: 0.625rem;
  border-bottom: 1px solid #eee;
  color: #000;
}
.system_product_del_box .rt .quotes {
  width: 2.6875rem;
  height: 0.5625rem;
  color: #fff;
  font-size: 0.225rem;
  cursor: pointer;
  text-align: center;
  margin-top: 0.4375rem;
  line-height: 0.5625rem;
  border-radius: 0.0625rem;
  background-color: var(--mainColor);
}
.system_product_del_box2 {
  width: 100%;
  height: auto;
  padding-top: 0.25rem;
}
.system_product_del_box2 .com-card {
  display: flex;
  align-items: center;
  border-bottom: 0.0125rem solid #333;
}
.system_product_del_box2 a {
  position: relative;
  font-size: 0.225rem;
  color: #000;
  font-weight: 600;
  padding-bottom: 0.25rem;
  display: block;
  margin-right: 0.4375rem;
}
.system_product_del_box2 a::after {
  display: block;
  content: "";
  width: 0;
  height: 0.025rem;
  position: absolute;
  left: 0;
  border-radius: 0.025rem;
  bottom: -0.0125rem;
  transition: all 0.3s;
  background-color: var(--mainColor);
}
.system_product_del_box2 a:hover,
.system_product_del_box2 a.active {
  color: var(--mainColor);
}
.system_product_del_box2 a:hover::after,
.system_product_del_box2 a.active::after {
  width: 100%;
}
.system_product_del_box3 {
  width: 100%;
  height: auto;
}
.system_product_del_box3 .system_com_title {
  font-size: 0.375rem;
  text-align: left;
  color: #000;
  font-weight: 700;
}
.system_product_del_box3 .item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.system_product_del_box3Item1 .con {
  margin-top: 0.4375rem;
}
.system_product_del_box3Item1 .con,
.system_product_del_box3Item1 .con p,
.system_product_del_box3Item2 .con,
.system_product_del_box3Item2 .con p,
.system_product_del_box3Item3 .con,
.system_product_del_box3Item3 .con p,
.system_product_del_box3Item4 .con,
.system_product_del_box3Item4 .con p,
.system_product_del_box3Item5 .con,
.system_product_del_box3Item5 .con p {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #000;
}
.system_product_del_box2.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 333;
}
@media screen and (max-width: 1024px) {
  .system_product_del_box,
  .system_product_del_box3 .item {
    padding: 20px 0;
  }
  .system_product_del_box3 .system_com_title {
    font-size: 18px;
  }

  .system_product_del_box2 a {
    font-size: 16px;
  }
  .system_product_del_box .rt .table .tl,
  .system_nav_box a,
  .system_nav_box span {
    font-size: 15px;
  }

  .system_product_del_box .rt .table td {
    font-size: 14px;
  }
  .system_product_del_box .rt .ls,
  .system_product_del_box3Item1 .con,
  .system_product_del_box3Item1 .con p,
  .system_product_del_box3Item2 .con,
  .system_product_del_box3Item2 .con p,
  .system_product_del_box3Item3 .con,
  .system_product_del_box3Item3 .con p,
  .system_product_del_box3Item4 .con,
  .system_product_del_box3Item4 .con p,
  .system_product_del_box3Item5 .con,
  .system_product_del_box3Item5 .con p {
    font-size: 14px;
    line-height: 24px;
  }
  .systemdetailBox1Swiper1 {
    height: auto;
  }

  .system_product_del_box .com-card {
    flex-wrap: wrap;
  }
  .system_product_del_box .lt {
    width: 80%;
    margin: 0 0 10px 0;
  }
  .system_product_del_box .rt {
    flex: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .system_product_del_box .lt {
    width: 100%;
  }
  .systemdetailBox1Swiper1,
  .systemdetailBox1Swiper2 {
    height: auto;
  }
  .system_product_del_box2 .com-card {
    flex-wrap: wrap;
  }
  .system_product_del_box2 a {
    padding-bottom: 5px;
    margin-bottom: 8px;
  }
}
/* Navigation */
.system_nav_box {
  width: 100%;
  height: auto;
  padding: 0.15rem 0;
}
.system_nav_box .com-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.system_nav_box a,
.system_nav_box span {
  font-size: 0.2125rem;
  color: #000;
  transition: all 0.3s;
}

.system_nav_box a::before {
  font-size: 0.15rem;
  transition: all 0.3s;
  margin: 0 0.0375rem;
}
.system_nav_box a.active,
.system_nav_box a:hover,
.system_nav_box span.active,
.system_nav_box span:hover {
  color: var(--mainColor);
  font-weight: 700;
}
.rank-math-breadcrumb p span {
  font-family: "Poppins";
  display: inline-block;
  margin: 0 2px;
}
.rank-math-breadcrumb p {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .system_nav_box a,
  .system_nav_box span {
    font-size: 15px;
  }
  .system_news_categories {
    font-size: 14px;
  }

  .system_nav_box .com-card {
    flex-wrap: wrap;
  }
}

/* 分类导航 */
.system_category_navigation {
  width: 100%;
  height: 0.875rem;
  background-color: #f4f4f6;
}
.system_category_navigation .com-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.system_category_navigation a {
  position: relative;
  font-size: 0.225rem;
  height: 100%;
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 0.5625rem;
}
.system_category_navigation a:last-child {
  margin-right: 0;
}
.system_category_navigation a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  content: "";
  width: 0;
  height: 0.0125rem;
  background-color: var(--mainColor);
  transition: all 0.3s;
}
.system_category_navigation a:hover,
.system_category_navigation a.active {
  color: var(--mainColor);
}
.system_category_navigation a:hover::after,
.system_category_navigation a.active::after {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .system_category_navigation {
    height: auto;
    padding: 10px 0;
  }
  .system_category_navigation .com-card {
    flex-wrap: wrap;
  }
  .system_category_navigation a {
    font-size: 15px;
  }
}

/* 分页 */
.pagination {
  width: 100%;
  height: auto;
  margin-top: 3%;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers li span,
.pagination .page-numbers li a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers li {
  width: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  height: 35px;
  transition: all 0.3s;
  margin-right: 8px;
  border: 1px solid var(--mainColor);
}
.pagination .page-numbers li:last-child {
  margin-right: 0;
}
.pagination .page-numbers li:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.pagination .page-numbers .current {
  color: #fff;
  background-color: var(--mainColor);
}
button {
  cursor: pointer;
}
@media screen and (max-width: 420px) {
  .pagination .page-numbers li {
    margin-bottom: 4px;
  }
  .pagination .page-numbers {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.single .aligncenter {
  display: block;
  margin: 0.25rem auto;
  text-align: center;
}
.single .alignleft {
  float: left;
  margin: 0.125rem 0.25rem 0.125rem 0;
}
.single .alignright {
  float: right;
  margin: 0.125rem 0 0.125rem 0.25rem;
}

@media screen and (max-width: 768px) {
  .single .alignleft,
  .single .alignright {
    float: none;
    display: block;
    margin: 0.2rem auto;
    text-align: center;
  }
}
/* #endregion */

/* #region  Page style */

img.tranImg {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.55s;
}
.hoverImg:hover img {
  transform: scale(1.1);
}
.comHover:hover {
  box-shadow: 0 0 15px 4px rgba(230, 114, 19, 0.8);
  transform: translateY(-5px);
}

.com-ls30,
.com-ls30 p,
.com-ls30 div {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #232323;
}

.min-tl {
  font-size: 0.2rem;
  line-height: 0.375rem;
  text-align: center;
  color: #000000;
}
.com-tl.left,
.min-tl.left {
  text-align: left;
}
.com-ls30.white,
.com-ls30.white p,
.com-ls30.white div,
.com-ls24.white,
.com-ls24.white p,
.com-ls24.white div,
.min-tl.white,
.com-tl.white,
.com-ls28.white,
.com-ls28.white p,
.com-ls28.white div {
  color: #fff;
}
.com-ls24,
.com-ls24 p,
.com-ls24 div,
.com-ls24 span {
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #1a1a1a;
}
.com-ls18,
.com-ls18 p,
.com-ls18 div {
  font-size: 0.225rem;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  color: #ffffff;
}
.com-ls18.black,
.com-ls18.black p,
.com-ls18.black div {
  color: #000;
}
.com-ls30.grey p,
.com-ls30.grey div,
.com-ls30.grey {
  color: #595656;
}
.com-tl.black {
  color: #595656;
}
.com-ls28,
.com-ls28 div,
.com-ls28 p {
  font-size: 0.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 0.375rem;
  color: #1f1f1f;
}

.com-mores {
  display: block;
  cursor: pointer;
  width: 3.425rem;
  height: 0.75rem;
  background-color: var(--color);
  border-radius: 0.375rem;
  transition: all 0.3s;
  text-align: center;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.75rem;
  letter-spacing: 0.0125rem;
  color: #ffffff;
}
.com-ls36,
.com-ls36 p,
.com-ls36 div {
  font-size: 0.225rem;

  line-height: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
}
.com-ls36.black,
.com-ls36.black p,
.com-ls36.black div {
  color: #000;
}
.com-tl {
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 0.6875rem;
  color: var(--mainColor);
  text-align: center;
}

.com-tl.left {
  text-align: left;
}
.com-title {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
  color: var(--mainColor);
}
.header {
  position: fixed;
  width: 100%;
  height: 1rem;
  transition:
    transform 0.4s ease-in-out,
    background 0.3s;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header .com-card {
  width: 21.25rem;
}
.header .rt,
.header .lt,
.header .rt > ul,
.header .rt > ul > li {
  height: 100%;
}
.header.header-hide {
  transform: translateY(-150%);
}
.header.header-visible {
  transform: translateY(0);
}
.header.header-hidden {
  transform: translateY(-100%);
}

.header .logo {
  width: 1.85rem;
  height: auto;
}

.header .logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
  transition: all 0.3s;
}
.indexHead.active .logo img,
.header.inner .logo img {
  filter: none;
}

.languageSwitching {
  cursor: pointer;
}

.languageSwitching .icon {
  font-size: 0.25rem;
  cursor: pointer;
  color: #000;
}
.header .search {
  cursor: pointer;
  font-size: 0.275rem;
  margin-right: 0.25rem;
  color: #000;
}
.menu-level1 > li,
.menu-level1 {
  height: 100%;
}
.header.inner {
  background-color: #fff;
}
.menu-level1 > li::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 0.0125rem;
  transition: all 0.3s;
  background-color: var(--color);
  border-radius: 0.025rem;
}
.menu-level1 > li:hover::after,
.menu-level1 > li.active::after {
  width: 100%;
}
.menu-level1 > li > a {
  font-size: 0.225rem;
  font-weight: 600;
  color: #000;
  transition: all 0.3s;
}
.menu-level1 > li:hover > a {
  color: var(--color);
}
.menu-level1 > li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 0.375rem;
}
.header.active {
  top: 0;
  background-color: #fff;
  box-shadow: 0px 0px 0.375rem 0.0625rem rgba(32, 26, 15, 0.5);
}

.header.indexHead .menu-level1 > li > a,
.header.indexHead .search,
.header.indexHead .languageSwitching .icon {
  color: #fff;
}
.header.active .menu-level1 > li > a,
.header.active .search,
.header.active .languageSwitching .icon {
  color: #000;
}
.header.active.header-visible .default {
  display: block;
}
.header.active.header-visible .active {
  display: none;
}

/* 菜单下拉 */
.menuDowns {
  width: 88.7%;
  height: auto;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 222;
  display: none;
  top: 1rem;
  background-color: #ffffff;
  border-radius: 0.025rem;
  box-shadow: 0 0 0.1875rem 0 rgba(255, 255, 255, 0.4);
}
.menuDownsCon {
  width: 100%;
  height: auto;
  max-height: 6.25rem;
  overflow-y: auto;
}
.menuDownsLt {
  width: 8rem;
  background-color: #fff;
  padding: 0.25rem 0 0.25rem 0;
  border-radius: 2px;
}
.menuDownsLt .item {
  width: 100%;
  height: auto;
}
.menuDownsLt .item.open .tl .dot {
  color: var(--mainColor);
}
.menuDownsLt .item.open .tl .name {
  color: var(--mainColor);
}
.menuDownsLt .item .name {
  font-size: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.menuDownsLt .item .tl {
  cursor: pointer;
  width: 100%;
  padding: 0.0875rem 0.3125rem 0.0875rem 1.925rem;
  border-bottom: 1px solid #ededed;
}
.menuDownsLt .item .dot {
  font-size: 0.375rem;
  font-weight: 300;
  color: #979797;
}
.menuDownsLt .item.open .dot {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.menuDownsLt .downsList {
  width: 100%;
  height: auto;
  display: none;
}
.menuDownsLt .downsList .items_lv2 {
  font-size: 0.225rem;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  padding: 0.0875rem 0.3125rem 0.0875rem 1.925rem;
  color: #000000;
  overflow: hidden;
  transition: all 0.3s;
}
.menuDownsLt .downsList .items_lv2:hover {
  color: var(--color);
  background-color: var(--bg);
  transform: translateX(15px);
}
.menuDownsLt .downsList .items_lv2.active {
  background-color: var(--bg);
  color: var(--color);
}
.menuDownsLt .downsList .items_lv2.active::after {
  color: var(--mainColor);
}
.menuDownsLt .downsList .items_lv2:hover::after {
  transform: translateX(10px);
  color: var(--mainColor);
}
.menuDownsLt .downsList .items_lv2::after {
  display: block;
  content: ">";
  font-weight: 300;
  transition: all 0.3s;
  font-size: 0.375rem;
  color: #979797;
}

.menuDownsLevelTwo {
  flex: 1;
  padding: 1rem 0.25rem 0.25rem;
  background-color: var(--bg);
}
.menuDownsLevelTwo .items {
  width: 100%;
  height: auto;
  display: none;
}
.menuDownsLevelTwo .items.active {
  display: block;
}
.menuDownsLevelTwo .item {
  display: block;
  width: 100%;
  transition: all 0.3s;
  font-size: 0.225rem;
  line-height: 0.75rem;
  letter-spacing: 0.0125rem;
  padding: 0 0.125rem 0 0.5rem;
  color: #000000;
}
.menuDownsLevelTwo .item:hover,
.menuDownsLevelTwo .item.active {
  text-decoration: underline;
  color: var(--color);
}
.menuDownsRt {
  flex: 1;
  background-color: #fff;
}
.menuDownsRt .items {
  width: 100%;
  display: none;
}
.menuDownsRt .items.active {
  display: block;
}
.menuDownsRt .item {
  width: 100%;
  height: auto;
  display: none;
  padding: 0.75rem 3.2875rem 0.75rem 0.75rem;
}
.menuDownsRt .item.active {
  display: block;
}
.menuDownsRt .item .img {
  width: 4.375rem;
  height: auto;
}
.menuDownsRt .item .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.5s;
}
/* === */
/* === */
.headerSwiper {
  width: 100%;
  position: relative;
  height: auto;
  overflow: hidden;
}

.headerSwiper .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.headerSwiper .swiper-slide {
  position: relative;
}
.headerSwiper .text {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.headerSwiper .text .tl {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 0.625rem;
  letter-spacing: 0.0375rem;
  color: #ffffff;
}
.headerSwiper .text .ls {
  font-size: 0.225rem;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  color: #ffffff;
  margin: 0.125rem 0 0.15rem 0;
}

.headerSwiper .text .con {
  width: 100%;
  position: relative;
  height: auto;
}
.headerSwiper .text .con .lt {
  width: 47%;
  padding: 0.375rem 0.5625rem 0.4375rem 3.25rem;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}

.header-pagination {
  position: absolute;
  bottom: 0.375rem !important;
  z-index: 22;
}
.header-pagination .swiper-pagination-bullet {
  opacity: 0.4;
  background-color: #000;
}

.header-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}
.header-prev,
.header-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
  width: 0.8rem;
  cursor: pointer;
  height: 0.8rem;
  border-radius: 50%;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  font-weight: 100;
}
.header-prev {
  left: 4%;
}
.header-next {
  right: 4%;
}
.header-next:hover,
.header-prev:hover {
  border-color: var(--mainColor);
  color: var(--mainColor);
}
.iderIndexBox1 {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #000;
  overflow: hidden;
  perspective: 2000px;
}
.iderIndexBox1 .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}
.iderIndexBox1 .img.active {
  display: block;
}
.iderIndexBox1::after {
  display: block;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.iderIndexBox1Swiper1 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.iderIndexBox1Swiper1 .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
  transform-style: preserve-3d;
}

.iderIndexBox1Swiper1 .swiper-slide.is-prev,
.iderIndexBox1Swiper1 .swiper-slide.is-next,
.iderIndexBox1Swiper1 .swiper-slide.is-animating,
.iderIndexBox1Swiper1 .swiper-slide.is-active {
  visibility: visible;
}

.iderIndexBox1Swiper1 .swiper-slide.is-active {
  z-index: 10;
  pointer-events: auto;
}

/* 碎片容器 */
.iderIndexBox1Swiper1 .mago-slider__tiles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  transform-style: preserve-3d;
}

/* 单个碎片 */
.iderIndexBox1Swiper1 .mago-slider__tile {
  position: absolute;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  background-repeat: no-repeat;
  transform-origin: center center;
  opacity: 0;
}

.iderIndexBox1Swiper1 .text {
  position: absolute;
  top: -50%;
  right: 4.75rem;
  max-width: 6.825rem;
  z-index: 22;
  width: fit-content;
  padding: 0.3125rem 0.4375rem 0.375rem 0.3125rem;
  height: auto;
  background-color: var(--mainColor);
  opacity: 0;
  transition: all 0.3s ease;
}

.iderIndexBox1Swiper1 .swiper-slide.text-ready .text {
  opacity: 1;
  top: 0%;
}

.iderIndexBox1Swiper1 .text .title {
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 0.75rem;
  letter-spacing: 0.025rem;
  margin-bottom: 0.05rem;
  color: #ffffff;
}

.iderIndexBox1Swiper2 {
  width: fit-content;
  height: 7.5rem;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
  max-width: 6.25rem;
}

.iderIndexBox1Swiper2 .swiper-slide {
  height: auto !important;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.iderIndexBox1Swiper2 .swiper-slide-thumb-active {
  opacity: 1;
}

.iderIndexBox1Swiper2 .con {
  cursor: pointer;
  display: flex;
  align-items: center;

  padding: 0.2rem 0;
}

.iderIndexBox1Swiper2 .dot {
  width: 0.3rem;
  transition: all 0.3s;
  height: 0.025rem;
  margin-right: 0.275rem;
  background-color: #fff;
}

.iderIndexBox1Swiper2 .text {
  flex: 1;
}

.iderIndexBox1Swiper2 .text .name {
  font-size: 0.225rem;
  font-weight: 700;
  letter-spacing: 0.0125rem;
  transition: all 0.3s;
  margin-bottom: 0.05rem;
  color: #ffffff;
}

.iderIndexBox1Swiper2 .text .com-ls30 {
  height: 0;
  overflow: hidden;
  transform: translateY(30px);
  transition: all 0.5s;
}
.iderIndexBox1Swiper2 .swiper-slide-thumb-active .con {
  align-items: baseline;
}
.iderIndexBox1Swiper2 .swiper-slide-thumb-active .com-ls30 {
  height: auto;
  overflow: visible;
  transform: translateY(0);
}
.iderIndexBox1Swiper2 .swiper-slide-thumb-active .dot {
  background-color: var(--color);
}
.iderIndexBox1Swiper2 .swiper-slide-thumb-active .name {
  color: var(--color);
}
.iderIndexBox2 {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.75rem 0;
  background-color: var(--bg);
}
.iderIndexBox2Swiper1 {
  width: 100%;
  height: auto;
  overflow: visible;
  overflow-x: clip;

  margin-top: 0.8125rem;
}
.iderIndexBox2Swiper1 .con {
  width: 100%;
  position: relative;
  height: 4.3rem;
  cursor: pointer;
  background-color: #ffffff;
  padding: 0.5rem 0.0625rem 0.125rem 0.0625rem;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.125rem;
  transition: all 0.3s;
}
.iderIndexBox2Swiper1 .con::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  bottom: -0.1125rem;
  display: block;
  content: "";
  width: 0;
  transition: all 0.3s;
  opacity: 0;
  height: 0;
  border-bottom: 0.1875rem solid var(--mainColor);
  border-right: 0.1875rem solid transparent;
  border-top: 0.1875rem solid transparent;
}
.iderIndexBox2Swiper1 .img {
  width: 2.075rem;
  border-radius: 50%;
  height: 2.075rem;
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(31, 165, 19, 0.1),
    rgba(255, 255, 255, 1)
  );
  justify-content: center;
  margin-bottom: 0.3125rem;
  transition: all 0.5s;
}
.iderIndexBox2Swiper1 .img::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  top: 50%;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
  width: 1.3625rem;
  height: 1.3625rem;
  border-radius: 50%;
  background-color: #fff;
}
.iderIndexBox2Swiper1 .img .icon {
  width: 1rem;
  height: 1rem;
  transition: all 0.3s;
  background: url(../picture/ic1-6.png) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  border-radius: 50%;
}
.iderIndexBox2Swiper1 .img .icon img {
  width: auto;
  max-height: 0.6875rem;
  object-fit: contain;
  transition: all 0.3s;
  transition: all 0.3s;
}
.iderIndexBox2Swiper1 .ls {
  transition: all 0.3s;
  font-size: 0.225rem;
  text-align: center;
  font-weight: 500;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderIndexBox2Swiper1 .con:hover .img,
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .img {
  transform: rotate(360deg);
}
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .con {
  background-color: var(--mainColor);
}
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .con .img {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
}
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .ls {
  color: #fff;
}
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .icon img {
  filter: brightness(0) invert(1);
}
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .icon {
  background: url(../picture/ic1-7.png) no-repeat;
  background-size: cover;
}
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .img::after {
  background-color: var(--mainColor);
}
.iderIndexBox2Swiper1 .swiper-slide-thumb-active .con::after {
  opacity: 1;
}

.iderIndexBox2Swiper2 {
  width: 100%;
  margin-top: 0.35rem;
  height: auto;
  overflow: hidden;
}
.iderIndexBox2Swiper2 .con {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.125rem;
  padding: 0.225rem 0.2625rem 0.225rem 0.4875rem;
  max-height: 6.8125rem;
}
.iderIndexBox2Swiper2 .con .img {
  width: 10.85rem;
  overflow: hidden;
  height: 6.3625rem;
}
.iderIndexBox2Swiper2 .con .text {
  flex: 1;
  padding: 0.5rem 0.875rem 0 0;
}
.iderIndexBox2Swiper2 .con .name {
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 0.6rem;
  letter-spacing: 0.0125rem;
  margin-bottom: 0.25rem;
  color: var(--mainColor);
}

.iderIndexBox3 {
  width: 100%;
  height: auto;
  padding: 2rem 0 1.5rem 0;
}
.iderIndexBox3Swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.8125rem;
}
.iderIndexBox3Swiper .con {
  width: 100%;
  height: 7.5875rem;
}
.iderIndexBox3Swiper .text {
  flex: 1;
  margin-right: 0.2125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 0.125rem;
  overflow: hidden;
  background: url(../picture/bg.png) no-repeat;
  background-size: cover;
  padding: 1rem 0.375rem 0 0.4375rem;
}
.iderIndexBox3Swiper .text .com-ls18 {
  position: relative;
  padding: 0 0.5rem 0 0.75rem;
  width: 100%;
}
.iderIndexBox3Swiper .text .com-ls18::before {
  position: absolute;
  left: -0.5rem;
  top: 0.1875rem;
  display: block;
  content: "“";
  font-family: SourceHanSansCN-Bold;
  font-size: 0.9rem;
  width: fit-content;
  letter-spacing: 0.025rem;
  color: #ffffff;
}
.iderIndexBox3Swiper .text .com-ls18::after {
  display: block;
  content: "”";
  font-family: SourceHanSansCN-Bold;
  font-size: 0.9rem;
  letter-spacing: 0.025rem;
  color: #ffffff;
  position: absolute;
  right: -0.625rem;
  bottom: 0;
}
.iderIndexBox3Swiper .bto {
  width: 100%;
  height: auto;
  padding: 0.275rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.iderIndexBox3Swiper .bto .name {
  font-size: 0.225rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  color: #ffffff;
}
.iderIndexBox3Swiper .bto .ls {
  font-size: 0.2rem;
  font-weight: 600;
  color: #ffffff;
}
.iderIndexBox3Swiper .img {
  cursor: pointer;
  width: 7.45rem;
  height: 100%;
  border-radius: 0.125rem;
  overflow: hidden;
  position: relative;
}
.iderIndexBox3Swiper .img .icon {
  position: absolute;
  left: 0.4625rem;
  bottom: 1.075rem;
  transition: all 0.3s;
  z-index: 22;
  width: 1.1625rem;
  height: auto;
  object-fit: contain;
}
.iderIndexBox3-prev,
.iderIndexBox3-next,
.iderGlobalBox1-prev,
.iderGlobalBox1-next {
  cursor: pointer;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0.025rem;
  border: solid 0.0125rem #e5e5e5;
  font-size: 0.45rem;
  color: #939393;
  font-weight: 300;
  transition: all 0.3s;
}
.iderIndexBox3-prev:hover,
.iderIndexBox3-next:hover,
.iderGlobalBox1-prev:hover,
.iderGlobalBox1-next:hover {
  background-color: var(--color);
  color: #fff;
  border-color: var(--color);
}
.iderIndexBox3 .bottom,
.iderGlobalBox1 .bottom {
  margin-top: 0.4875rem;
  gap: 0.125rem;
}

.iderIndexBox4 {
  width: 100%;
  height: auto;
  padding: 1.5rem 0 1.475rem 0;
}
.iderIndexBox4Con {
  width: 100%;
  height: 8.8125rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
  margin-top: 1.125rem;
}
.iderIndexBox4Con .img {
  width: 9.35rem;
  height: 100%;
  overflow: hidden;
  border-radius: 0.125rem 0px 0px 0.125rem;
}
.iderIndexBox4Con .text {
  flex: 1;
  height: 100%;
  padding: 0.5rem 0.25rem 0.25rem 0.3375rem;
}
.iderIndexBox4Con .text .name {
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 0.625rem;
  font-style: italic;
  letter-spacing: 0.025rem;
  color: var(--mainColor);
}
.iderIndexBox4Con .text .com-ls30 {
  color: #000;
  margin: 0.075rem 0 0.3125rem 0;
}
.iderIndexBox4Con .text ul {
  width: 100%;
  gap: 0.375rem 0.25rem;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.iderIndexBox4Con .text ul li {
  width: 100%;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(216, 214, 214, 0.4);
}
.iderIndexBox4Con .text ul li:hover .icon {
  transform: rotate(360deg);
}
.iderIndexBox4Con .text .rt {
  flex: 1;
}
.iderIndexBox4Con .text .icon {
  width: 0.925rem;
  height: 0.925rem;
  transition: all 0.5s;
  background-color: #ffffff;
  box-shadow: 0px 0px 0.4rem 0px rgba(101, 101, 101, 0.31);
  border-radius: 50%;
  margin-right: 0.1875rem;
}
.iderIndexBox4Con .text .icon img {
  width: auto;
  height: 0.6rem;
  object-fit: contain;
  transition: all 0.5s;
}
.iderIndexBox4Con .text .nu {
  align-items: flex-start;
}
.iderIndexBox4Con .text .com-ls30 {
  color: #7c7c7c;
}
.iderIndexBox4Con .text .counter {
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 0.475rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderIndexBox4Con .text .em {
  color: #000000;
  font-size: 26px;
  font-weight: 500;
}
.iderIndexBox4Con .text .com-mores {
  width: 3.875rem;
}
.iderIndexBox5 {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.125rem 0;
  background-color: var(--bg);
}
.iderIndexBox5 .title {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  color: #383838;
  margin-top: 0.05rem;
}
.iderIndexBox5 .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
  margin-bottom: 0.2rem;
}

.iderIndexBox5 .field-group {
  display: flex;
  flex-direction: column;
}

.iderIndexBox5 .field-group label {
  font-size: 0.225rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  margin-bottom: 0.0625rem;
  color: #383838;
}

.iderIndexBox5 input {
  height: 0.7625rem;
  background-color: #ffffff;
  border: solid 1px #e5e5e5;
  font-size: 0.2rem;
  padding-left: 0.2375rem;
  color: rgba(63, 61, 61, 0.5);
}

.iderIndexBox5 input::placeholder {
  color: #ccc;
}

.iderIndexBox5 .radio-section {
  margin: 0.375rem 0;
  display: flex;
  flex-direction: column;
}

.iderIndexBox5 .section-label {
  font-size: 0.225rem;
  letter-spacing: 0.0125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #383838;
}

.iderIndexBox5 .radio-group {
  display: flex;
  gap: 0.375rem;
}

.iderIndexBox5 .radio-item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
  font-size: 0.2rem;
  font-weight: 600;
  color: #383838;
}

.radio-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}
.radio-item input:checked ~ .checkmark {
  border-color: var(--color);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-item input:checked ~ .checkmark:after {
  display: block;
}

.radio-item .checkmark:after {
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color);
}
input:focus {
  border-color: var(--color) !important;
}
.radio-item input:checked ~ .text {
  color: var(--color);
}
.divider {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 0.25rem 0;
}
.file-section {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-bottom: 0.175rem;
  border-bottom: 1px solid #e5e5e5;
}

.file-upload-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.file-upload-btn:hover {
  background: #f9f9f9;
}
.iderIndexBox5Con {
  margin-top: 1.0625rem;
}
.iderIndexBox5Con button {
  cursor: pointer;
  display: block;
  width: 2.5rem;
  height: 0.6875rem;
  background-color: var(--color);
  border-radius: 0.35rem;
  font-size: 0.225rem;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  margin-top: 0.375rem;
  line-height: 0.6875rem;
  letter-spacing: 0.0125rem;
  color: #ffffff;
}
.file-name-text {
  font-size: 0.2rem;
  color: var(--color);
  max-width: 3.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer {
  width: 100%;
  height: auto;
}
.footer .top {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.125rem 0;
  border-bottom: 1px solid rgba(235, 224, 224, 0.8);
}
.footer .top .logo {
  width: 3.125rem;
  height: auto;
  object-fit: contain;
}
.footer .con {
  width: 100%;
  height: auto;
  padding: 0.75rem 0 0.3125rem 0;
}
.footer .con ul {
  width: 100%;
  justify-content: space-between;
}
.footer .con li .name {
  font-size: 0.225rem;
  margin-bottom: 0.3125rem;
  font-weight: 600;
  color: #000000;
}
.footer .con li {
  display: flex;
  flex-direction: column;
}
.footer .con li a,
.footer .con li div {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #000000;
  transition: all 0.3s;
}
.footer .con li a:hover {
  color: var(--color);
  text-decoration: underline;
}
.footer .con li:last-child {
  width: 21%;
}
.footer .bottom {
  width: 100%;
  height: auto;
  padding: 0.3125rem 0;
  border-top: 1px solid rgba(235, 224, 224, 0.8);
}
.footerLink {
  width: 100%;
  height: auto;
  justify-content: end;
  margin-top: 0.625rem;
}
.footerLink a {
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.0625rem;
  transition: all 0.3s;
  margin-right: 0.125rem;
}
.footerLink a:hover {
  background-color: var(--mainColor);
  transform: translateY(-8px);
}
.footerLink a:hover img {
  filter: brightness(0) invert(1);
}
.footerLink a img {
  width: auto;
  height: 0.3125rem;
  object-fit: contain;
}
.iderBannerBox1 {
  width: 100%;
  height: auto;
  position: relative;
}
.iderBannerBox1 .text {
  width: 100%;
  height: auto;
  bottom: 0;
  position: absolute;
  left: 0;
}
.iderBannerBox1 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderBannerBox1 ul {
  width: 100%;
  gap: 0.625rem;
  padding-bottom: 0.3125rem;
  grid-template-columns: repeat(auto-fill, minmax(17%, 1fr));
}
.iderBannerBox1 li {
  cursor: pointer;
  border-top: 0.025rem solid #fff;
  font-size: 0.225rem;
  letter-spacing: 0.0125rem;
  text-align: center;
  padding: 0.2rem 0;
  color: #ffffff;
  transition: all 0.3s;
}
.iderBannerBox1 li:hover {
  color: var(--color);
  border-color: var(--color);
}

.iderNavBox1 {
  width: 100%;
  height: auto;
  padding: 0.2125rem 0;
}
.iderNavBox1 a {
  font-size: 0.2rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderNavBox1 a::after {
  display: block;
  content: "/";
  font-size: 0.2rem;
  color: #000000;
  margin: 0 0.05rem;
}
.iderNavBox1 a.active {
  color: var(--color);
}
.iderNavBox1 a:last-child::after {
  display: none;
}
.iderAboutBox5 {
  width: 100%;
  height: auto;
  position: relative;
}
.iderAboutBox5Swiper1 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderAboutBox5Swiper1 img {
  width: 100%;
  object-fit: cover;
  height: auto;
  vertical-align: bottom;
}
.iderAboutBox5 .bto {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  z-index: 22;
  bottom: 0.3125rem;
}
.iderAboutBox5Swiper2 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderAboutBox5Swiper2 .name {
  width: 100%;
  height: auto;
  font-size: 0.225rem;
  text-align: center;
  border-top: 1px solid #fff;
  padding: 0.2125rem 0;
  cursor: pointer;
  letter-spacing: 0.0125rem;
  color: #ffffff;
  transition: all 0.3s;
}
.iderAboutBox5Swiper2 .swiper-slide-thumb-active .name {
  border-color: var(--color);
  color: var(--color);
}
.iderAboutBox1 {
  width: 100%;
  height: auto;
  padding-bottom: 1.1rem;
  background-color: var(--mainColor) !important;
}
.iderAboutBox1 .iderNavBox1 a,
.iderAboutBox1 .iderNavBox1 a::after {
  color: #fff;
}
.iderAboutBox1 .text .title {
  font-size: 0.55rem;
  width: fit-content;
  padding-bottom: 0.125rem;
  border-bottom: 0.025rem solid #fff;
  font-weight: 700;
  line-height: 0.6rem;
  letter-spacing: 0.0125rem;
  color: #ffffff;
}
.iderAboutBox1 .text {
  flex: 1;
  margin-right: 0.875rem;
}
.iderAboutBox1 .text .com-tl {
  margin: 0.9375rem 0 0.1875rem 0;
}
.iderAboutBox1 .text .com-ls18 p {
  margin-bottom: 0.25rem;
}
.iderAboutBox1Con {
  padding-top: 0.375rem;
}
.iderAboutBox1 .img {
  width: 8.775rem;
  height: auto;
}
.iderAboutBox1 .img img {
  width: auto;
  height: 7.9875rem;
  margin-top: 0.75rem;
  object-fit: contain;
  transition: all 0.3s;
}
.iderAboutBox2 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 1.625rem 0 1.25rem 0;
}
.iderAboutBox2Con {
  width: 100%;
  height: 9.4125rem;
  margin-top: 0.75rem;
  gap: 0.2375rem;
}
.iderAboutBox2Con .lt {
  width: 8.65rem;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.125rem;
}
.iderAboutBox2Con .rt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.iderAboutBox2Con .rt .item {
  width: 100%;
  height: calc((100% - 0.25rem) / 2);
}
.iderAboutBox2Con .rt .img {
  overflow: hidden;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.125rem;
}
.iderAboutBox2Con .rt .bto {
  gap: 0.25rem;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.iderAboutBox2Con .rt .bto .imgs {
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.125rem;
}
.iderAboutBox3 {
  width: 100%;
  height: auto;
  position: relative;
}
.iderAboutBox3 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderAboutBox3 .text {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.iderAboutBox3 .text .ls {
  font-size: 0.225rem;
  letter-spacing: 0.0125rem;
  color: #ffffff;
  margin: 0.05rem 0 0.25rem 0;
}
.iderAboutBox3 .text .icon {
  width: 1.1625rem;
  object-fit: contain;
  height: auto;
  cursor: pointer;
  transition: all 0.5s;
}
.iderAboutBox3 .text:hover .icon {
  transform: rotate(360deg);
}
.iderAboutBox4 {
  width: 100%;
  height: auto;
  padding: 0.9875rem 0 1.75rem 0;
  background-color: var(--bg);
}
.iderAboutBox4 ul {
  width: 100%;
  gap: 0.2375rem 0.225rem;
  grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
}
.iderAboutBox4 ul li {
  width: 100%;
  height: 3.0375rem;
  overflow: hidden;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.0625rem;
}

.iderParinesBox1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.625rem 0 1.625rem 0;
}

.iderParinesBox1Con {
  width: 100%;
  height: auto;

  gap: 0.4875rem 0;
}
.iderParinesBox1Con .item {
  width: 100%;
  height: 5.725rem;
}
.iderParinesBox1Con .item .img {
  width: 8.75rem;
  height: 100%;
  overflow: hidden;
}
.iderParinesBox1Con .item .text {
  flex: 1;
  height: 100%;

  background: url(../picture/bg5.png) center no-repeat;
  background-size: 70% auto;
  background-color: #fff;
  padding: 0.85rem 0.375rem 0.375rem;
}
.iderParinesBox1Con .item .com-ls30 {
  width: fit-content;
}
.iderParinesBox1Con .item ul {
  padding-left: 0.25rem;
}
.iderParinesBox1Con .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.iderParinesBox1Con .item ul,
.iderParinesBox1Con .item ul li {
  list-style: disc;
}
.iderParinesBox1Con .item ul li::marker {
  color: var(--mainColor);
}
.iderParinesBox1Con .item .icon {
  width: auto;
  max-height: 1.125rem;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
}
.iderParinesBox1Con .item .name {
  font-size: 0.375rem;
  font-weight: 600;
  letter-spacing: 0.025rem;
  color: var(--mainColor);
  margin: 0.375rem 0;
}
.iderParinesBox1Con .item:hover .text .icon {
  transform: translateY(-10px);
}

.iderGlobalBox1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.625rem 0 1rem 0;
}
.iderGlobalBox1 .title {
  width: 60%;
  margin: 0 auto;
  margin-top: 0.0625rem;
  text-align: center;
  font-size: 0.3rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}

.iderGlobalBox1 .mapImg {
  position: relative;
  width: 100%;
  margin-top: 0.75rem;
}

.iderGlobalBox1 .mapImg .bg {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.iderGlobalBox1 .mapImg .item {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(103, 172, 131, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s;
}

.iderGlobalBox1 .mapImg .item.big {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(103, 172, 131, 0.7);
}

.iderGlobalBox1 .mapImg .item::before,
.iderGlobalBox1 .mapImg .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(103, 172, 131, 0.3);
  z-index: -1;
  animation: mapPulse 3s infinite ease-out;
}

.iderGlobalBox1 .mapImg .item::after {
  animation-delay: 1.5s;
}

@keyframes mapPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.iderGlobalBox1 .mapImg .con {
  text-align: center;
  color: #fff;
}

.iderGlobalBox1 .mapImg .nu {
  font-size: 0.3125rem;
  font-weight: 500;
  line-height: 1;
  color: #000;
}

.iderGlobalBox1 .mapImg .dot {
  width: 0.3125rem;
  height: 0.3125rem;
  background: var(--color);
  border-radius: 50%;
  margin: 0.1rem auto;
  box-shadow: 0 0 0.125rem rgba(209, 86, 45, 0.8);
}
.iderGlobalBox1 .mapImg .item.big .dot {
  background: #fff;
  box-shadow: 0 0 0.125rem rgba(255, 255, 255, 0.8);
}
.iderGlobalBox1 .mapImg .item.big .name,
.iderGlobalBox1 .mapImg .item.big .nu {
  color: #fff;
}
.iderGlobalBox1 .mapImg .name {
  font-size: 0.2rem;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderGlobalBox1Con {
  width: 100%;
  height: auto;
  margin-top: 0.425rem;
}
.iderGlobalBox1Con .item {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.iderGlobalBox1Con .item.active {
  height: auto;
  overflow: visible;
  opacity: 1;
  transform: translateY(0);
}
.iderGlobalBox1Con .item .name {
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.025rem;
  color: #000000;
}
.iderGlobalBox1Swiper {
  width: 100%;
  height: 9.3125rem;
  margin-top: 0.25rem;
  overflow: hidden;
}
.iderGlobalBox1Swiper .con {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding: 0.1625rem;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
}
.iderGlobalBox1Swiper .img {
  width: 2.6375rem;
  overflow: hidden;
  height: 100%;
}
.iderGlobalBox1Swiper .text {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 0.3rem;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  color: #000000;
  padding: 0.25rem 0.8125rem;
}
.iderGlobalBox1-prev,
.iderGlobalBox1-next {
  background-color: #ffffff;
  border-color: #fff;
}

.iderSolutionBox1Swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.iderSolutionBox1Swiper .con {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}
.iderSolutionBox1Swiper .swiper-slide {
  position: relative;
}
.iderSolutionBox1Swiper .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderSolutionBox1Swiper .con .title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 0.75rem;
  letter-spacing: 0.0375rem;
  color: #ffffff;
}
.iderSolutionBox1Swiper .con .lt {
  width: 50%;
}
.iderSolutionBox1Swiper .con .com-mores {
  width: 3.425rem;
  margin-top: 0.3375rem;
}
.iderSolutionBox1Swiper .con .img {
  width: 4.5rem;
  height: auto;
}
.iderSolutionBox1Swiper .con .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.iderSolutionBox1-pagination {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 3;
  bottom: 0.5rem !important;
}
.iderSolutionBox1-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}
.iderSolutionBox1-pagination .swiper-pagination-bullet-active {
  background-color: var(--color);
}
.iderSolutionBox2 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.4125rem 0 0.625rem 0;
}
.iderSolutionBox2Con {
  width: 100%;
  height: auto;
}
.iderSolutionBox2Con ul {
  width: 100%;
  gap: 0.375rem 0.4375rem;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.iderSolutionBox2Con ul li {
  width: 100%;
  height: auto;
}
.iderSolutionBox2Con li .img {
  width: 100%;
  height: 5.425rem;
  display: block;
  overflow: hidden;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
}
.iderSolutionBox2Con li .name {
  width: 100%;
  height: auto;
  padding: 0.125rem 0.5rem;
  font-size: 0.3rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderSolutionBox3 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.5rem 0 1.25rem 0;
}
.iderSolutionBox3 .text {
  width: 100%;
  height: 2.275rem;
  overflow: hidden;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.125rem;
  justify-content: center;
}
.iderSolutionBox3 .text a {
  font-size: 0.375rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.025rem;
  color: #ffffff;
}
.iderNavBox1.inner {
  background-color: var(--bg);
}

.iderProductBox1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.375rem 0 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.iderProductBox1 .com-card {
  align-items: baseline;
}
.iderProductBox1 .lt {
  position: sticky;
  top: 0.25rem;
  width: 5.45rem;
  margin-right: 0.4375rem;
}
.iderProductBox1Rt {
  flex: 1;
}
.iderProductBox1 .lt .title {
  font-size: 0.3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}
.iderProductBox1 .lt .item {
  width: 100%;
  background-color: #fff;
  margin-bottom: 1px;
  transition: all 0.3s;
  border-radius: 2px;
}
.iderProductBox1 .lt .item .tl {
  width: 100%;
  height: auto;
  padding: 0.0875rem 0.2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.iderProductBox1 .lt .item .tl::after {
  display: block;
  content: ">";
  transition: all 0.3s;
  font-size: 0.375rem;
  color: #979797;
}
.iderProductBox1 .lt .item .tl .name {
  font-size: 0.225rem;
  font-weight: 500;
  margin-right: 0.25rem;
  transition: all 0.3s;
  color: #000000;
}
.iderProductBox1 .lt .item .downs {
  width: 100%;
  height: auto;
  display: none;
  border-top: 1px solid #ededed;
  padding: 0.1875rem 0.3125rem;
}
.iderProductBox1 .lt .item.active .tl::after {
  transform: rotate(90deg);
}
.iderProductBox1 .lt .item .downs a {
  display: block;
  width: fit-content;
  font-size: 0.225rem;
  line-height: 0.6rem;
  color: #000000;
  transition: all 0.3s;
}
.iderProductBox1 .lt .item .downs a:hover {
  color: var(--color);
  transform: translateX(10px);
  text-decoration: underline;
}
.iderProductBox1 .lt .item:hover .name,
.iderProductBox1 .lt .item:hover .tl::after,
.iderProductBox1 .lt .item.active .name,
.iderProductBox1 .lt .item.active .tl::after {
  color: var(--color);
}
.iderProductBox1Rt .title {
  color: #000;
  margin-top: 0.125rem;
}
.iderProductBox1Con {
  width: 100%;
  height: auto;
  margin-top: 0.275rem;
  gap: 0.2625rem 0.2875rem;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}
.iderProductBox1Con .item {
  width: 100%;
}
.iderProductBox1Con .item .img {
  width: 100%;
  height: 3.6875rem;
  border-radius: 0.025rem;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 1px;
  padding: 0.125rem;
}
.iderProductBox1Con .item .img img {
  object-fit: contain;
}
.iderProductBox1Con .item .text {
  width: 100%;
  min-height: 1.8875rem;
  padding: 0.225rem 0.25rem 0.2375rem 0.25rem;
  background-color: #ffffff;
  border-radius: 0.025rem;
  justify-content: space-between;
}
.iderProductBox1Con .item .name {
  font-size: 0.225rem;
  text-align: center;
  line-height: 0.3rem;
  color: #000000;
}
.iderProductBox1Con .item .Inquires {
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 0.575rem;
  line-height: 1;
  border-radius: 0.2875rem;
  border: solid 1px var(--color);
  font-size: 0.2rem;
  letter-spacing: 0.0125rem;
  color: var(--color);
  padding: 0 0.3875rem;
  transition: all 0.3s;
}
.iderPagingBox1 {
  width: 100%;
  height: auto;
  margin-top: 0.8125rem;
}
.iderPagingBox1 a {
  font-size: 0.225rem;
  color: #7a7a7a;
  margin: 0 0.075rem;
}
.iderPagingBox1 .iderPrev,
.iderPagingBox1 .iderNext {
  width: 0.325rem;
  height: 0.325rem;
  background-color: #cccccc;
  font-size: 0.225rem;
  text-align: center;
  color: #fafafa;
}
.iderPagingBox1 a.active,
.iderPagingBox1 a:hover {
  color: var(--color);
}
.iderPagingBox1 .iderNext.active {
  background-color: var(--color);
  color: #fff;
}
.iderPagingBox1 span {
  font-size: 0.225rem;
  color: #7a7a7a;
}
.iderProductBox2 {
  width: 100%;
  height: auto;
  padding: 0.75rem 0 1.05rem 0;
  background-color: var(--bg);
}
.iderProductBox2Con {
  width: 100%;
  height: auto;
  margin-top: 0.8125rem;
  gap: 0.35rem;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.iderProductBox2Con .items {
  width: 100%;
  height: auto;
}
.iderProductBox2Con .item .name {
  font-size: 0.225rem;
  transition: all 0.3s;
  flex: 1;
  margin-right: 10px;
  font-weight: 500;
  color: #000000;
}
.iderProductBox2Con .item {
  width: 100%;
  height: auto;
  margin-bottom: 0.2375rem;

  border-radius: 0.0625rem;
  transition: all 0.3s;

  border: solid 1px #e5e5e5;
}
.iderProductBox2Con .item .text {
  width: 100%;
  height: auto;
  padding: 0.3125rem 0.4rem;
  display: none;
}
.iderProductBox2Con .item .text p {
  margin-bottom: 0.25rem;
}
.iderProductBox2Con .item .tl {
  width: 100%;
  height: auto;
  cursor: pointer;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 15px 0.4rem;
  border-radius: 0.0625rem 0.0625rem 0 0;
}
.iderProductBox2Con .item .dot {
  width: 0.4375rem;
  border-radius: 50%;
  height: 0.4375rem;
  border: solid 0.0125rem #7f7f7f;
  font-size: 0.375rem;
  color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s;
}
.iderProductBox2Con .item.active {
  border-color: var(--color);
}
.iderProductBox2Con .item.active .name {
  color: var(--color);
}
.iderProductBox2Con .item.active .dot {
  background-color: var(--color);
  transform: rotate(90deg);
  color: #fff;
  border-color: var(--color);
}

.iderSolutionDelBox1 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0 1.25rem 0;
  background-color: var(--bg) !important;
}
.iderSolutionDelBox1 .img {
  width: 11.25rem;
  height: 6.9125rem;
  overflow: hidden;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
  border-radius: 0.0625rem;
}
.iderSolutionDelBox1 .text {
  flex: 1;
  padding: 0.3125rem 0.625rem 0 0;
}
.iderSolutionDelBox1 .text .title {
  font-size: 0.3rem;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  color: #000000;
  margin: 0.625rem 0 0.125rem 0;
}
.iderSolutionDelBox1 .text .com-ls18 {
  line-height: 0.45rem;
  letter-spacing: 0.0125rem;
}
.iderSolutionDelBox2 {
  width: 100%;
  height: auto;
  padding: 0.8125rem 0 1.125rem 0;
}
.iderSolutionDelBox2 ul {
  width: 100%;
  height: auto;
  margin-top: 0.6875rem;
}
.iderSolutionDelBox2 li .img {
  width: 6rem;
  height: 3.375rem;
  border-radius: 0.0625rem;
  overflow: hidden;
}
.iderSolutionDelBox2 li {
  width: 100%;
  height: auto;
  padding: 0.2625rem 0;
  border-top: 0.0125rem solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.iderSolutionDelBox2 li:last-child {
  border-bottom: 0.0125rem solid rgba(0, 0, 0, 0.1);
}
.iderSolutionDelBox2 li:last-child::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.0125rem;
  width: 2.75rem;
  height: 0.025rem;
  background-color: var(--mainColor);
  border-radius: 0.0125rem;
}
.iderSolutionDelBox2 li::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: -0.0125rem;
  width: 2.75rem;
  height: 0.025rem;
  background-color: var(--mainColor);
  border-radius: 0.0125rem;
}
.iderSolutionDelBox2 li .lt {
  flex: 1;
}
.iderSolutionDelBox2 li .text {
  width: 60%;
}
.iderSolutionDelBox2 li .icon {
  width: 1rem;
  height: auto;
  object-fit: contain;
  display: block;
  margin-right: 1.125rem;
}
.iderSolutionDelBox2 li .name {
  font-size: 0.375rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
  color: var(--mainColor);
  margin-bottom: 0.0875rem;
}

.iderSolutionDelBox3 {
  width: 100%;
  height: auto;
  padding: 1.125rem 0 1.625rem 0;
  background-color: var(--bg);
}
.iderSolutionDelBox3 ul {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  gap: 0.4875rem;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}
.iderSolutionDelBox3 ul li {
  width: 100%;
  height: auto;
  border-radius: 0.0625rem;
}
.iderSolutionDelBox3 li .img {
  width: 100%;
  height: 3.5rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.0625rem 0.0625rem 0px 0px;
}
.iderSolutionDelBox3 li .text {
  width: 100%;
  height: 3.075rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.25rem 0.2rem 0.3rem 0.2125rem;
}
.iderSolutionDelBox3 li .name {
  font-size: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  color: var(--mainColor);
  margin-bottom: 0.125rem;
}
.iderSolutionDelBox3 li .icon {
  position: absolute;
  left: 0;
  width: 1.475rem;
  z-index: 2;
  bottom: 0;
  height: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0px 0.0625rem 0px 0px;
  padding: 0.125rem;
}
.iderSolutionDelBox3 li .icon img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: contain;
}
.iderSolutionDelBox3 li .type {
  font-size: 0.2rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderSolutionDelBox3 li .bto {
  width: 100%;
  height: auto;
  padding-top: 0.2375rem;
  border-top: 1px solid #e5e5e5;
}
.iderSolutionDelBox3 li .mores {
  width: 0.55rem;
  cursor: pointer;
  height: 0.55rem;
  background-color: #ffffff;
  border-radius: 0.025rem;
  border: solid 0.0125rem #e5e5e5;
  font-size: 0.45rem;
  transition: all 0.3s;
  color: #939393;
}
.iderSolutionDelBox3 li:hover .mores {
  background-color: var(--color);
  color: #fff;
  border-color: var(--color);
}
.iderProductDelBox1 {
  width: 100%;
  height: auto;
  padding: 0.25rem 0 1.125rem 0;
  background-color: var(--bg);
}
.iderProductDelBox1 .lt {
  width: 8.75rem;
}
.iderProductDelBox1Swiper1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  overflow: hidden;
}
.iderProductDelBox1Swiper1 .img {
  width: 100%;
  height: 8.05rem;
  overflow: hidden;
}
.iderProductDelBox1Swiper2 {
  width: 100%;
  margin-top: 0.075rem;
  overflow: hidden;
}
.iderProductDelBox1Swiper2 .img {
  width: 100%;
  height: 1.5625rem;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  border: 0.0125rem solid transparent;
  box-shadow: 0px 0px 0.125rem 0px rgba(101, 101, 101, 0.07);
}
.iderProductDelBox1 .text {
  flex: 1;
  padding-left: 1.1875rem;
}
.iderProductDelBox1Swiper2 .swiper-slide-thumb-active .img {
  border-color: var(--color);
}
.iderProductDelBox1 .text .title {
  font-size: 0.3rem;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  margin: 0.1rem 0 0.3125rem 0;
  color: #000000;
}
.iderProductDelBox1 .text .con {
  margin: 0.375rem 0 1rem 0;
}
.iderProductDelBox1 .text .con ul {
  width: 100%;
  height: auto;
  gap: 0.1125rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.iderProductDelBox1 .text .con ul li {
  font-size: 0.225rem;
  line-height: 0.45rem;
  letter-spacing: 0.0125rem;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 0.125rem 0;
  color: #000000;
}
.iderProductDelBox1 .text .con ul li:nth-child(2n) {
  padding: 0.125rem 0.3125rem;
}
.iderProductDelBox1 .text .inquerys {
  width: 2.6875rem;
  height: 0.725rem;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background-color: var(--color);
  border-radius: 0.35rem;
  font-size: 0.225rem;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  color: #ffffff;
}
.iderProductDelBox1 .text .downs {
  width: 3.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.725rem;
  transition: all 0.3s;
  border-radius: 0.35rem;
  border: solid 0.0125rem var(--mainColor);
  font-size: 0.225rem;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  margin-left: 0.25rem;
  color: var(--mainColor);
}
.iderProductDelBox2 {
  width: 100%;
  height: auto;
  padding-top: 0.2rem;
  background-color: var(--bg);
}
.iderProductDelBox2.fixed {
  position: fixed;
  z-index: 33;
  top: 0;
  left: 0;
  box-shadow: 0 0 0.375rem 0.0625rem rgba(201, 198, 198, 0.7);
  animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.iderProductDelBox2 .com-card {
  border-bottom: 0.0125rem solid rgba(0, 0, 0, 0.3);
}
.iderProductDelBox2 a {
  font-size: 0.225rem;
  letter-spacing: 0.0125rem;
  display: block;
  margin-right: 0.625rem;
  color: #525252;
  position: relative;
  padding-bottom: 0.2rem;
  transition: all 0.3s;
}
.iderProductDelBox2 a:last-child {
  margin: 0;
}
.iderProductDelBox2 a::after {
  display: block;
  content: "";
  width: 0%;
  height: 0.0375rem;
  position: absolute;
  left: 0;
  bottom: -0.025rem;
  background-color: var(--color);
  border-radius: 0.025rem;
  transition: all 0.3s;
}
.iderProductDelBox2 a:hover,
.iderProductDelBox2 a.active {
  color: var(--color);
}
.iderProductDelBox2 a:hover::after,
.iderProductDelBox2 a.active::after {
  width: 100%;
}
.iderProductDelBox3Item1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.9375rem 0 0.375rem 0;
}
.iderProductDelBox3Item1 .com-card {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderProductDelBox3Item1 .img {
  width: 9.1125rem;
  overflow: hidden;
  height: auto;
  border-radius: 0.125rem;
}
.iderProductDelBox3Item1 .con {
  width: 100%;
  margin-top: 1rem;
}
.iderProductDelBox3Item1 .text {
  flex: 1;
  padding-right: 1.0625rem;
}
.iderProductDelBox3Item1 .text .name {
  font-size: 0.375rem;
  font-weight: 700;
  line-height: 0.625rem;
  letter-spacing: 0.0125rem;
  color: var(--mainColor);
}
.iderProductDelBox3Item1 .text .title {
  font-size: 0.3rem;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  margin: 0.1875rem 0 0.125rem 0;
  color: #000000;
}
.iderProductDelBox3Item2 {
  width: 100%;
  height: auto;
  padding: 0.5rem 0 0.3125rem 0;
  background-color: var(--bg);
}
.iderProductDelBox3Item2 .com-card {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderProductDelBox3Item2 .table {
  width: 100%;
  height: auto;
  margin-top: 0.8125rem;
  overflow-x: auto;
}
.iderProductDelBox3Item2 table {
  width: 100%;
  height: auto;
  overflow-x: auto;
}
.iderProductDelBox3Item2 table td {
  height: 0.7875rem !important;
  background-color: #ffffff;
  border-right: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
  font-size: 0.2rem !important;
  color: #000000;
  padding: 0 0.25rem;
  text-align: center;
  transition: all 0.3s;
}
.iderProductDelBox3Item2 table tr:hover td {
  background-color: var(--mainColor) !important;
  color: #fff !important;
}
.iderProductDelBox3Item2 table td img {
  width: 50%;
  height: auto;
  object-fit: contain;
}
.iderProductDelBox3Item3 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0 0.5rem 0;
  background-color: var(--bg);
}
.iderProductDelBox3Item3 ul {
  width: 100%;
  gap: 0.25rem;
  margin-top: 0.5625rem;
  grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
}
.iderProductDelBox3Item3 .com-card {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderProductDelBox3Item3 li {
  width: 100%;
  height: auto;
  background-color: #fff;
}
.iderProductDelBox3Item3 li .img {
  width: 100%;
  height: 3.4625rem;
  padding: 0.125rem;
  overflow: hidden;
}
.iderProductDelBox3Item3 li img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.5s;
}
.iderProductDelBox3Item3 li .text {
  width: 100%;
  height: auto;
  min-height: 2.625rem;
  padding: 0.3125rem 0.25rem 0.25rem;
}
.iderProductDelBox3Item3 li .name {
  width: 100%;
  text-align: center;
  font-size: 0.3rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  color: var(--mainColor);
}
.iderProductDelBox3Item3 li .com-ls30 {
  text-align: center;
  margin-top: 0.125rem;
  color: #232323;
}
.iderProductDelBox3Item4 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0 0.5rem 0;
  background-color: var(--bg);
}
.iderProductDelBox3Item4 .com-card {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.9375rem;
}
.iderProductDelBox3Item4 ul {
  width: 100%;
  height: auto;
  margin-top: 0.625rem;
  gap: 0.4125rem;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}
.iderProductDelBox3Item4 ul li {
  width: 100%;
  height: 6.175rem;
  border-radius: 0.125rem;
  overflow: hidden;
}

.iderProductDelBox4 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0 0.3125rem 0;
  background-color: var(--bg);
}
.iderProductDelBox4 .com-card {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.775rem;
}
.iderProductDelBox4 ul {
  width: 100%;
  height: auto;
  gap: 0.5125rem;
  margin-top: 0.875rem;
}
.iderProductDelBox4 ul li {
  width: 100%;
  height: auto;
  background-color: #fff;
}
.iderProductDelBox4 li .img {
  width: 100%;
  height: 4.975rem;
  overflow: hidden;
}
.iderProductDelBox4 li .text {
  width: 100%;
  min-height: 3.075rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.3125rem 0.2rem 0.275rem 0.2rem;
}
.iderProductDelBox4 li .name {
  font-size: 0.225rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  color: var(--mainColor);
  transition: all 0.3s;
  margin-bottom: 0.1rem;
}
.iderProductDelBox4 li .bto,
.iderProductDelBox5 li .bto {
  width: 100%;
  height: auto;
  padding-top: 0.2375rem;
  border-top: 1px solid #e5e5e5;
}
.iderProductDelBox4 li .time,
.iderProductDelBox5 li .time {
  font-size: 0.2rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderProductDelBox4 li .mores,
.iderProductDelBox5 li .mores {
  width: 0.55rem;
  height: 0.55rem;
  background-color: #ffffff;
  border-radius: 0.025rem;
  border: solid 0.0125rem #e5e5e5;
  font-size: 0.45rem;
  color: #939393;
  transition: all 0.3s;
  font-weight: 300;
}
.iderProductDelBox5 li:hover .name,
.iderProductDelBox4 li:hover .name {
  color: var(--color);
}
.iderProductDelBox4 li:hover .mores,
.iderProductDelBox5 li:hover .mores {
  background-color: var(--color);
  border-color: var(--color);
  color: #fff;
  transform: translateX(-20px);
}
.iderProductDelBox5 {
  width: 100%;
  padding: 0.375rem 0 0.125rem 0;
  height: auto;
  background-color: var(--bg);
}
.iderProductDelBox5 .com-card {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderProductDelBox5 ul {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  gap: 0.5125rem;
}
.iderProductDelBox5 ul li {
  width: 100%;
  height: auto;
  border-radius: 0.0625rem;
  background-color: #fff;
}
.iderProductDelBox5 li .img {
  width: 100%;
  height: 3.5rem;
  overflow: hidden;
  border-radius: 0.0625rem 0.0625rem 0px 0px;
}
.iderProductDelBox5 li .text {
  width: 100%;
  height: auto;
  min-height: 3.075rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.15rem 0.2rem 0.275rem 0.2rem;
}
.iderProductDelBox5 li .name {
  font-size: 0.225rem;
  font-weight: 500;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  transition: all 0.3s;
  margin-bottom: 0.125rem;
  color: #000000;
}
.iderProductDelBox5 li .com-ls30 {
  line-height: 0.3rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}
/* #endregion */
/* #region  Response style */

@media screen and (max-width: 1920px) {
  html {
    font-size: calc(100vw / 24) !important;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: calc(100vw / 19) !important;
  }
  .header .com-card {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 70px !important;
  }
  .header,
  .footer .con li {
    display: none;
  }
  .com-card {
    width: 100% !important;
    padding: 0 4%;
  }
  body {
    padding-top: 60px !important;
  }
  .iderProductDelBox2.fixed {
    top: 60px;
  }
  .mobileHeader {
    display: flex;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  .mobileHeader .logo img {
    width: 50%;
  }
  .com-tl,
  .headerSwiper .text .tl,
  .iderAboutBox1 .text .title,
  .iderSolutionBox1Swiper .con .title {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }
  .iderIndexBox2Swiper2 .con .name,
  .iderIndexBox4Con .text .name,
  .iderGlobalBox1 .title,
  .iderGlobalBox1Con .item .name,
  .iderGlobalBox1Swiper .text,
  .iderProductDelBox1 .text .title,
  .iderSolutionDelBox1 .text .title,
  .iderIndexBox1Swiper1 .text .title {
    font-size: 16px;
    line-height: 1.5;
  }
  .iderSolutionBox2Con li .name,
  .iderSolutionBox3 .text a,
  .iderProductDelBox3Item1 .text .name,
  .iderProductDelBox3Item1 .text .title,
  .iderProductDelBox3Item3 li .name,
  .iderSolutionDelBox2 li .name,
  .iderSolutionDelBox3 li .name {
    font-size: 16px;
  }
  .headerSwiper .text .con .lt {
    width: 100%;
    padding: 5% 4%;
  }
  .iderProductBox1 .lt .title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .com-mores,
  .iderProductDelBox1 .text .downs,
  .iderProductDelBox1 .text .inquerys {
    width: fit-content !important;
    height: 38px !important;
    line-height: 38px;
    padding: 0 18px;
  }
  .header-pagination {
    bottom: 2% !important;
  }
  .mobileHeader .search,
  .languageSwitching .icon {
    color: var(--mainColor);
  }
  .mobileHeader .logo img {
    width: 70%;
  }
  .iderIndexBox2,
  .iderIndexBox3,
  .iderIndexBox4,
  .iderIndexBox5,
  .footer .top,
  .footer .con,
  .iderAboutBox2,
  .iderAboutBox4,
  .iderParinesBox1,
  .iderGlobalBox1,
  .iderSolutionBox2,
  .iderSolutionBox3,
  .iderProductBox1,
  .iderProductBox2,
  .iderProductDelBox1,
  .iderSolutionDelBox1,
  .iderSolutionDelBox2,
  .iderSolutionDelBox3 {
    padding: 20px 0;
  }
  .iderProductDelBox3Item1,
  .iderProductDelBox3Item2,
  .iderProductDelBox3Item3,
  .iderProductDelBox3Item4,
  .iderProductDelBox4,
  .iderProductDelBox5 {
    padding: 10px 0;
  }
  .iderProductDelBox3Item1 .com-card,
  .iderProductDelBox3Item2 .com-card,
  .iderProductDelBox3Item3 .com-card,
  .iderProductDelBox3Item4 .com-card,
  .iderProductDelBox4 .com-card,
  .iderProductDelBox5 .com-card {
    padding-bottom: 20px;
  }
  .iderAboutBox1Con {
    padding-top: 20px;
  }
  .iderIndexBox2Swiper1,
  .iderIndexBox2Swiper2 .con .img,
  .iderIndexBox3Swiper,
  .iderIndexBox4Con,
  .iderIndexBox5Con,
  .footerLink,
  .iderAboutBox2Con,
  .iderGlobalBox1 .mapImg,
  .iderIndexBox3 .bottom,
  .iderGlobalBox1 .bottom,
  .iderProductBox1Con,
  .iderPagingBox1,
  .iderProductBox2Con,
  .iderProductDelBox3Item1 .con,
  .iderProductDelBox3Item1 .img,
  .iderProductDelBox3Item2 .table,
  .iderProductDelBox3Item3 ul,
  .iderProductDelBox3Item4 ul,
  .iderProductDelBox4 ul,
  .iderProductDelBox5 ul,
  .iderSolutionDelBox1 .img,
  .iderSolutionDelBox2 ul,
  .iderSolutionDelBox3 ul {
    margin-top: 15px;
  }
  .iderIndexBox2Swiper2 .con,
  .iderIndexBox3Swiper .con,
  .iderIndexBox4Con,
  .iderAboutBox1Con .com-card,
  .iderAboutBox2Con,
  .iderParinesBox1Con .item,
  .iderGlobalBox1Swiper .con,
  .iderProductBox1 .com-card,
  .iderProductDelBox1 .com-card,
  .iderProductDelBox3Item1 .con,
  .iderSolutionDelBox1 .com-card,
  .iderSolutionDelBox2 li {
    flex-wrap: wrap;
  }
  .iderIndexBox3Swiper .con,
  .iderIndexBox3Swiper .img,
  .iderIndexBox4Con,
  .iderIndexBox4Con .img,
  .iderAboutBox1 .img img,
  .iderAboutBox2Con,
  .iderAboutBox4 ul li,
  .iderParinesBox1Con .item,
  .iderParinesBox1Con .item .img,
  .iderParinesBox1Con .item .text,
  .iderGlobalBox1Swiper,
  .iderGlobalBox1Swiper .con,
  .iderGlobalBox1Swiper .img,
  .iderSolutionBox2Con li .img,
  .iderProductDelBox3Item4 ul li,
  .iderProductDelBox4 li .img,
  .iderProductDelBox5 li .img,
  .iderSolutionDelBox1 .img,
  .iderSolutionDelBox3 li .img {
    height: auto;
  }
  .iderIndexBox4Con .img,
  .iderAboutBox1 .img,
  .iderAboutBox2Con .lt,
  .iderParinesBox1Con .item .img,
  .iderGlobalBox1 .title,
  .iderGlobalBox1Swiper .img,
  .iderProductBox1 .lt,
  .iderProductDelBox3Item1 .img,
  .iderSolutionDelBox1 .img {
    width: 100%;
  }
  .iderIndexBox2Swiper2 .con .text,
  .iderIndexBox3Swiper .text,
  .iderIndexBox4Con .text,
  .iderAboutBox1 .text,
  .iderParinesBox1Con .item .text,
  .iderGlobalBox1Swiper .text,
  .iderProductBox1Rt,
  .iderSolutionDelBox1 .text {
    flex: none;
    width: 100%;
  }
  .iderIndexBox2Swiper2 .con {
    max-height: none;
    padding: 4% 3%;
  }
  .iderIndexBox2Swiper2 .con .text,
  .iderIndexBox3Swiper .text .com-ls18,
  .iderSolutionDelBox1 .text {
    padding: 0;
  }
  .iderGlobalBox1Swiper .text {
    padding: 3% 0;
  }
  .iderIndexBox3Swiper .text .com-ls18 {
    padding-bottom: 5%;
  }
  .iderIndexBox2Swiper2 .con .img {
    width: 100%;
    height: auto;
  }
  .iderIndexBox2Swiper2 .con .name {
    margin-bottom: 10px;
  }
  .iderIndexBox3Swiper .text,
  .iderIndexBox4Con .text,
  .iderParinesBox1Con .item .text {
    padding: 4% 3%;
  }
  .iderIndexBox3Swiper .text .com-ls18::before,
  .iderIndexBox3Swiper .text .com-ls18::after {
    display: none;
  }
  .iderIndexBox5 .radio-section {
    margin: 10px 0;
  }
  .footer .con li:last-child {
    display: flex;
    width: 100%;
  }
  .footer .bottom {
    padding: 3% 0;
  }
  .iderBannerBox1 ul,
  .iderAboutBox2Con,
  .iderAboutBox2Con .rt .bto,
  .iderParinesBox1Con,
  .iderSolutionBox2Con ul,
  .iderProductBox1Con,
  .iderProductBox2Con,
  .iderProductDelBox3Item4 ul,
  .iderProductDelBox4 ul,
  .iderProductDelBox5 ul,
  .iderSolutionDelBox3 ul {
    gap: 12px;
  }
  .iderAboutBox1 .text {
    margin: 0 0 15px 0;
  }
  .iderAboutBox1 .text .com-tl {
    margin: 6px 0 5px 0;
  }
  .iderAboutBox1 .text .com-ls18 p {
    margin-bottom: 4px;
  }
  .iderNavBox1 {
    padding: 10px 0;
  }
  .iderAboutBox3 .text .icon {
    width: 45px;
  }
  .iderAboutBox3 .text .ls {
    margin: 4px 0 5px 0;
  }
  .iderAboutBox4 ul {
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  }
  .iderAboutBox5 .bto {
    bottom: 4%;
  }
  .iderAboutBox5Swiper2 .name {
    padding: 8px 0;
  }
  .iderParinesBox1Con .item .name {
    font-size: 18px;
    margin: 10px 0 12px 0;
  }
  .iderParinesBox1Con .item .icon {
    max-height: 45px;
  }
  .iderGlobalBox1Con {
    margin: 10px 0 0;
    padding-bottom: 25px;
  }
  .iderGlobalBox1Swiper {
    margin-top: 7px;
  }
  .iderSolutionBox1Swiper .con .img img {
    width: 50%;
  }
  .iderSolutionBox1Swiper .con .img {
    width: auto;
  }
  .iderSolutionBox1Swiper .con .lt {
    width: 90%;
  }
  .iderProductBox1 .lt {
    margin: 0;
    position: static;
  }
  .iderProductBox1Rt {
    padding-top: 15px;
  }
  .iderProductBox2Con {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .iderProductBox2Con .item {
    margin-bottom: 8px;
  }
  .iderProductDelBox1 .lt {
    width: 80%;
  }
  .iderProductDelBox1 .text {
    flex: none;
    width: 100%;
    padding: 15px 0 0;
  }
  .iderProductDelBox1 .text .con {
    margin: 10px 0 15px 0;
  }
  .iderProductDelBox2 a {
    padding-bottom: 4px;
    margin: 0 10px 4px 0;
  }
  .iderProductDelBox3Item3 ul {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
  .iderSolutionDelBox1 .text .title {
    margin: 7px 0 10px 0;
  }
  .iderIndexBox1Swiper1 .mago-slider__tiles,
  .iderIndexBox1::after {
    display: none !important;
  }
  .iderIndexBox1,
  .iderIndexBox1Swiper1,
  .iderIndexBox1Swiper2 {
    height: auto;
  }
  .iderIndexBox1Swiper1 .swiper-slide {
    height: auto !important;
  }
  .iderIndexBox1Swiper2 {
    transform: translate(0);
  }
  .iderIndexBox1 {
    background-color: var(--bg);
  }
  .iderIndexBox1Swiper2 {
    width: 100%;
    max-width: 100%;
    max-height: auto;
    position: static;
  }
  .iderIndexBox1Swiper2 .text .name,
  .iderIndexBox1Swiper2 .text .com-ls30 {
    color: #000;
  }
  .iderIndexBox1Swiper1 .swiper-vertical > .swiper-wrapper {
    flex-direction: row !important;
  }
  .iderIndexBox1Swiper1 .text {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    padding: 4% 3%;
    max-width: 100%;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .iderIndexBox3Swiper .img,
  .iderIndexBox5 .title,
  .footer .bottom .com-ls30,
  .iderProductDelBox1 .lt {
    width: 100%;
  }
  .footer .bottom .com-ls30 {
    text-align: center;
  }
  .iderProductDelBox3Item3 li .img {
    height: auto;
  }
  .footer .bottom .com-card,
  .iderSolutionBox1Swiper .con .com-card,
  .iderSolutionDelBox2 li {
    flex-wrap: wrap;
  }
  .iderIndexBox3Swiper .img .icon {
    width: 55px;
  }
  .iderIndexBox3Swiper .img .icon {
    left: 4%;
    bottom: 4%;
  }
  .iderIndexBox4Con .text ul {
    gap: 12px;
  }
  .iderIndexBox4Con .text .com-ls30,
  .iderIndexBox5 .section-label {
    margin-bottom: 0;
  }
  .iderIndexBox5 .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .iderIndexBox5 .radio-group,
  .file-section {
    flex-wrap: wrap;
    gap: 12px;
  }
  .iderIndexBox5 input {
    height: 45px;
  }
  .footer .con li .name {
    margin-bottom: 8px;
  }
  .iderAboutBox4 ul,
  .iderProductBox1Con,
  .iderProductDelBox3Item3 ul,
  .iderProductDelBox4 ul,
  .iderProductDelBox5 ul,
  .iderSolutionDelBox3 ul {
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  }
  .iderGlobalBox1 .mapImg .item {
    width: 55px;
    height: 55px;
  }
  .iderGlobalBox1 .mapImg .dot {
    width: 10px;
    height: 10px;
    margin: 2px auto;
  }
  .iderGlobalBox1 .mapImg .nu {
    font-size: 15px;
  }
  .iderGlobalBox1 .mapImg .name {
    line-height: 1;
  }
  .iderGlobalBox1 .mapImg .item.big {
    width: 65px;
    height: 65px;
  }
  .iderSolutionBox1Swiper .con .img {
    display: none;
  }
  .iderSolutionBox1Swiper .con .com-mores {
    margin-top: 10px;
  }
  .iderSolutionBox1-pagination {
    bottom: 2% !important;
  }
  .iderSolutionDelBox2 li .lt {
    flex: none;
    width: 100%;
  }
  .iderSolutionDelBox2 li .img {
    height: auto;
    margin-top: 15px;
    width: 60%;
  }
  .iderSolutionDelBox2 li .icon {
    width: 50px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 500px) {
  .iderAboutBox1 .img img,
  .iderProductDelBox3Item2 table td img {
    width: 100%;
    margin: 0;
  }
  .iderSolutionDelBox2 li .img,
  .iderSolutionDelBox2 li .text {
    width: 100%;
  }
  .headerSwiper .text .ls {
    margin: 0 0 5px 0;
  }
  .headerSwiper .bg {
    height: 40vh;
  }
  .iderIndexBox2Swiper1 .con {
    height: auto;
    padding: 4%;
    min-height: 195px;
  }
  .iderProductBox1Con .item .img {
    height: auto;
    height: 250px;
  }
  .iderIndexBox2Swiper1 .img {
    width: 90px;
    height: 90px;
    margin-bottom: 5px;
  }
  .iderIndexBox2Swiper1 .img .icon img {
    max-height: 37px;
    width: 37px;
    height: 37px;
  }
  .iderIndexBox4Con .text ul,
  .iderSolutionBox2Con ul,
  .iderProductBox1Con,
  .iderProductDelBox1 .text .con ul,
  .iderProductDelBox3Item3 ul,
  .iderProductDelBox3Item4 ul,
  .iderProductDelBox4 ul,
  .iderProductDelBox5 ul,
  .iderSolutionDelBox3 ul {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .iderProductDelBox1 .text .con ul {
    gap: 0;
  }
  .iderIndexBox4Con .text ul {
    margin-bottom: 15px;
  }
  .iderSolutionBox1Swiper .bg {
    height: 35vh;
  }
  .iderSolutionBox2Con li .name {
    padding: 5px 10px;
  }
  .iderProductDelBox1 .text .con ul li:nth-child(2n) {
    padding: 8px 0;
  }
  .iderProductBox2Con .item .name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .iderProductDelBox1 .text .bottom {
    flex-wrap: wrap;
  }
  .iderProductBox2Con .item.active .name {
    display: block;
  }
  .iderProductDelBox4 li .text,
  .iderProductDelBox5 li .text {
    min-height: auto;
  }
  .iderProductDelBox4 li .bto,
  .iderProductDelBox5 li .bto {
    padding-top: 7px;
    margin-top: 7px;
  }
  .iderProductDelBox4 li .text {
    padding: 10px;
  }
  .divider {
    margin: 10px 0;
  }
  .iderSolutionDelBox3 li .text {
    height: auto;
  }
  .iderSolutionDelBox3 li .bto {
    padding-top: 7px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 420px) {
  .iderProductDelBox1 .text .downs {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 375px) {
  .headerSwiper .bg {
    height: 50vh;
  }
}
@media screen and (max-width: 360px) {
  .headerSwiper .bg {
    height: 70vh;
  }
  .iderAboutBox4 ul {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
/* #endregion  Response style */
