/* #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;
}
@font-face {
  font-family: "Caveat";
  src: url("font/Caveat-Regular.ttf");
  font-display: swap;
}
html {
  font-size: calc(100vw / 24) !important;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 80px !important;
  }
}

:root {
  --mainColor: #005eac;
  --bg: #f9f9f9;
  --main-font: "Noto Sans SC", 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;
  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 */

.tranImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.55s;
}
.hoverImg:hover img {
  transform: scale(1.1);
}
.comHover:hover {
  box-shadow: 0 0 15px rgba(1, 95, 172, 0.6);
  transform: translateY(-5px);
}

.com-ls30,
.com-ls30 p,
.com-ls30 div {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #000;
}
.com-ls30.white,
.com-ls30.white p,
.com-ls30.white div,
.com-ls24.white,
.com-ls24.white p,
.com-ls24.white div,
.com-tl.white {
  color: #fff;
}
.com-ls24,
.com-ls24 p,
.com-ls24 div {
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #3b3b3b;
}

.com-tl.left,
.min-tl.left {
  text-align: left;
}
.com-mores {
  display: block;
  cursor: pointer;
  width: 2.8rem;
  height: 0.7rem;
  background-color: var(--mainColor);
  border-radius: 0.0625rem;
  font-size: 0.225rem;
  text-align: center;
  line-height: 0.7rem;
  color: #ffffff;
  transition: all 0.3s;
}
.com-tl {
  font-size: 0.6rem;
  text-align: center;
  line-height: 0.75rem;
  font-weight: 500;
  color: #000000;
}
.com-tl .left {
  text-align: left;
}
.com-title {
  text-align: center;
  margin-top: 0.125rem;
  font-size: 0.25rem;
  line-height: 0.375rem;
  color: #000000;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  height: 1.2125rem;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.header.header-hide {
  transform: translateY(-150%);
}
.header.header-visible {
  transform: translateY(0);
}
.header.header-hidden {
  transform: translateY(-100%);
}
.header .rt {
  flex: 1;
  justify-content: flex-end;
  height: 100%;
}
.header .lt .logo {
  width: 3rem;
  height: auto;
}
.header .lt .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}

.header .search {
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  margin-right: 0.25rem;
}
.languageSwitching .icons {
  font-size: 16px;
  cursor: pointer;
  color: #000;
}
.header.active {
  background-color: var(--mainColor);
  animation: slideDown 0.5s ease-out;
  box-shadow: 0px 0px 0.375rem 0.0625rem rgba(2, 71, 161, 0.3);
}
.menu-level1 > li,
.menu-level1,
.header .rt {
  height: 100%;
}
.menu-level1 > li > a {
  font-size: 0.225rem;
  color: #ffffff;
}

.menu-level1 > li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 0.375rem;
}

.languageSwitching {
  cursor: pointer;
  width: fit-content;
  position: relative;
  height: auto;
}
/* 菜单下拉 */
.menuDowns {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  z-index: 222;
  display: none;
  top: 1.1875rem;
  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: 8.875rem;
  background-color: #f4f4f4;
  padding: 0.5rem 0 0.25rem 0;
}
.menuDownsLt .item {
  display: block;
  width: 100%;
  height: 0.85rem;
  font-size: 0.225rem;
  line-height: 0.85rem;
  padding: 0 0.1875rem 0 3.2875rem;
  transition: all 0.3s;
  color: #111111;
}
.menuDownsLt .item:hover,
.menuDownsLt .item.active {
  background-color: #ffffff;
  color: var(--mainColor);
}
.menuDownsLevelTwo {
  width: 17%;
  overflow-y: auto;
  padding: 0.5rem 0 0.25rem 0;
  border-right: 1px solid #e5e5e5;
}
.menuDownsLevelTwo .items {
  width: 100%;
  height: auto;
  display: none;
}
.menuDownsLevelTwo .items.active {
  display: block;
}
.menuDownsLevelTwo .item {
  display: block;
  width: 100%;
  font-size: 0.225rem;
  line-height: 0.75rem;
  padding: 0 0.125rem 0 0.5rem;
  color: #000000;
}
.menuDownsLevelTwo .item:hover,
.menuDownsLevelTwo .item.active {
  text-decoration: underline;
  color: var(--mainColor);
}
.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%;
  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 .title {
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}
.headerSwiper .text .tl {
  font-size: 0.25rem;
  line-height: 0.375rem;
  color: #ffffff;
  margin: 0.25rem 0 0.1875rem 0;
}
.headerSwiper .text .con {
  width: 100%;
  height: auto;
}

.header-pagination {
  position: absolute;
  bottom: 0.375rem !important;
  z-index: 22;
}
.header-pagination .swiper-pagination-bullet {
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background-color: transparent;
  transition: all 0.3s;
}
.header-pagination .swiper-pagination-bullet::after {
  display: block;
  content: "";
  width: 0.0625rem;
  border-radius: 50%;
  height: 0.0625rem;
  background-color: #ffffff;
}
.header-pagination .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
  border: solid 0.0125rem #e7e7e7;
}

.iderIndexBox1 {
  width: 100%;
  height: auto;
  padding: 1.0625rem 0 1.25rem 0;
  background-color: #f9f9f9;
}
.iderIndexBox1Con {
  width: 100%;
  height: auto;
  margin-top: 0.8125rem;
}
.iderIndexBox1Swiper1 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderIndexBox1Swiper1 .img {
  width: 100%;
  height: 4.375rem;
  overflow: hidden;
  padding: 0.125rem;
}
.iderIndexBox1Swiper1 .img img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s;
}
.iderIndexBox1Swiper1 .name {
  display: block;
  width: 100%;
  font-size: 0.3rem;
  margin: 0.3125rem 0 0.375rem 0;
  color: var(--mainColor);
  text-align: center;
}
.iderIndexBox1Swiper1 .con {
  position: relative;
  width: 100%;
  height: 6.5625rem;
  padding: 0.4375rem 0.125rem 0.3rem 0.125rem;
  background: url(../picture/bg1.png) top left no-repeat;
  background-size: 100% 1rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 0.4rem 0px rgba(101, 101, 101, 0.1);
  border-radius: 0.125rem;
}
.iderIndexBox1Swiper1 .text {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.iderIndexBox1Swiper1 .con::after,
.iderProductDelBox4 li::after {
  display: block;
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.0375rem;
  background-color: var(--mainColor);
  border-radius: 1px;
}
.iderIndexBox1Swiper2 {
  flex: 1;
  height: auto;
  overflow: hidden;
  border-top: 0.0125rem solid #e5e5e5;
  border-bottom: 0.0125rem solid #e5e5e5;
}
.iderIndexBox1Swiper2 .name {
  font-size: 0.225rem;
  text-align: center;
  line-height: 0.375rem;
  width: 100%;
  cursor: pointer;
  color: #000000;
  padding: 0.4875rem 0;
  position: relative;
}
.iderIndexBox1Con .item {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.iderIndexBox1Con .item.active {
  overflow: visible;
  height: auto;
  opacity: 1;
}
.iderIndexBox1Swiper2 .name::after {
  display: block;
  content: "";
  width: 0%;
  height: 0.0125rem;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
}
.iderIndexBox1Swiper2 .swiper-slide-thumb-active .name {
  color: var(--mainColor);
}
.iderIndexBox1Swiper2 .swiper-slide-thumb-active .name::after {
  width: 100%;
}
.iderIndexBox1 .bottom {
  width: 100%;
  height: auto;
  margin-top: 0.6875rem;
}
.comPrev,
.comNext {
  display: flex !important;
  cursor: pointer;
  width: 0.5rem;
  border-radius: 50%;
  height: 0.5rem;
  background-color: #ffffff;
  font-family: Poppins;
  font-size: 0.45rem;
  color: var(--mainColor);
  transition: all 0.3s;
}
.comPrev:hover,
.comNext:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.iderIndexBox2 {
  width: 100%;
  height: auto;
  padding: 0.875rem 0;
}
.iderIndexBox2 .com-tl {
  width: 38%;
  margin: 0 auto;
}
.iderIndexBox2 .title {
  margin: 0 auto;
  display: block;
  text-decoration: underline;
  font-size: 0.2rem;
  text-align: center;
  color: var(--mainColor);
  margin-top: 0.15rem;
}
.iderIndexBox2Swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.5625rem;
}
.iderIndexBox2Swiper .con {
  width: 100%;
  height: 6.875rem;
  border-radius: 0.125rem;
  position: relative;
  cursor: pointer;
}
.iderIndexBox2Swiper .con .img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.125rem;
}
.iderIndexBox2Swiper .con .text,
.iderProductDelBox3 li .text {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0.4rem;
}
.iderIndexBox2Swiper .swiper-slide {
  width: 5.575rem;
  height: auto;
}
.iderIndexBox2Swiper .con .type,
.iderProductDelBox3 li .type {
  font-size: 0.3rem;
  color: #f6f6f6;
}
.iderIndexBox2Swiper .con .mores,
.iderProductDelBox3 li .mores {
  position: relative;
  font-size: 0.225rem;
  color: #f6f6f6;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
}
.iderIndexBox2Swiper .con .mores::before,
.iderProductDelBox3 li .mores::before {
  display: block;
  content: "";
  width: 1.125rem;
  height: 0.0125rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.iderIndexBox2Swiper .con .mores::after,
.iderProductDelBox3 li .mores::after {
  display: block;
  content: "";
  width: 0.4875rem;
  margin-left: 0.225rem;
  border-radius: 50%;
  height: 0.4875rem;
  background: url(../images/im1-4.png) center no-repeat;
  background-size: 0.15rem;
  background-color: var(--mainColor);
}

.iderIndexBox2Swiper .swiper-slide:hover .mores,
.iderProductDelBox3 li:hover .mores {
  transform: translateX(0);
  opacity: 1;
}
.iderIndexBox2-prev {
  border: solid 1px var(--mainColor);
}
.iderIndexBox2 .bottom {
  width: 100%;
  margin-top: 0.5625rem;
}
.iderIndexBox2-pagination {
  width: 18% !important;
  height: 0.0375rem;
  position: relative !important;
  background-color: rgba(2, 88, 168, 0.2);
  border-radius: 1px;
  margin: 0 0.25rem;
}

.derIndexBox2-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
}
.iderIndexBox3 {
  width: 100%;
  height: auto;
  padding: 0.8125rem 0 1.5rem 0;
  background: url(../picture/bg2.jpg) top center no-repeat;
  background-size: 65% auto;
  background-color: var(--bg);
  background-position-y: 0.375rem;
}
.iderIndexBox3Con {
  width: 100%;
  height: auto;
  margin-top: 0.9375rem;
}
.iderIndexBox3Con .top {
  width: 100%;
  margin-bottom: 0.375rem;
  height: 5.9rem;
}
.iderIndexBox3Con .top .img {
  width: 8.75rem;
  height: 100%;
  overflow: hidden;
}
.iderIndexBox3Con .top .text {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.4375rem 1.125rem 0.625rem 0.5625rem;
  background-color: var(--mainColor);
}
.iderIndexBox3Con .top .time {
  font-size: 0.2rem;
  color: #ffffff;
}
.iderIndexBox3Con .top .name {
  font-size: 0.375rem;
  line-height: 0.6rem;
  display: block;
  color: #ffffff;
}
.iderIndexBox3Con .top .mores {
  text-decoration: underline;
  font-size: 0.2rem;
  display: block;
  color: #ffffff;
}
.iderIndexBox3Con ul {
  width: 100%;
  height: auto;
  gap: 0.3625rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderIndexBox3Con ul li {
  width: 100%;
  max-width: 8.5rem;

  height: 3.625rem;
}
.iderIndexBox3Con li .img {
  display: block;
  width: 4.2625rem;
  height: 100%;
  overflow: hidden;
}
.iderIndexBox3Con li .text {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  border: solid 1px #eeeeee;
  padding: 0.25rem 0.375rem 0.4375rem 0.25rem;
}
.iderIndexBox3Con li .time {
  font-size: 0.2rem;
  transition: all 0.3s;
  color: #000000;
}
.iderIndexBox3Con li .name {
  font-size: 0.25rem;
  line-height: 0.45rem;
  transition: all 0.3s;
  color: #000000;
}
.iderIndexBox3Con li .mores {
  display: block;
  font-size: 0.2rem;
  color: #000000;
  transition: all 0.3s;
}
.iderIndexBox3Con li:hover .text {
  background-color: var(--mainColor);
}
.iderIndexBox3Con li:hover .time,
.iderIndexBox3Con li:hover .name,
.iderIndexBox3Con li:hover .mores {
  color: #fff;
}
.iderIndexBox3Con li:hover .mores {
  text-decoration: underline;
}
.footer {
  width: 100%;
  height: auto;
}
.footer .top {
  width: 100%;
  height: auto;
  padding: 1.8125rem 0 1.5rem 0;
}
.footer .top .lt {
  width: 20%;
  margin-right: 25%;
}
.footer .top .lt .logo {
  width: auto;
  height: 0.85rem;
  object-fit: contain;
}
.footer .top .lt .com-ls30 {
  margin: 0.3125rem 0 0.9375rem 0;
}
.footerLink a {
  margin-right: 0.275rem;
}
.footerLink img {
  width: 0.375rem;
  height: auto;
  object-fit: contain;
}
.footer .top ul {
  flex: 1;
  justify-content: space-between;
}
.footer .top ul li .name {
  font-size: 0.25rem;
  margin-bottom: 0.5625rem;
  font-weight: 600;
  color: #000000;
}
.footer .top ul li {
  display: flex;
  flex-direction: column;
}
.footer .top ul li a,
.footer .top ul li div {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #000000;
  transition: all 0.3s;
}
.footer .top ul li a:hover {
  color: var(--mainColor);
  text-decoration: underline;
}
.footer .top ul li .phone a {
  display: block;
  font-size: 0.3rem;
  font-weight: 900;
  color: var(--mainColor);
}
.footer .top ul li:last-child {
  width: 35%;
}
.footer .bottom {
  width: 100%;
  height: auto;
  background-color: var(--mainColor);
  padding: 0.5625rem 0;
}
.footer .bottom .com-ls30 a {
  display: block;
  margin: 0 0.0625rem;
}
.iderBannerBox1 {
  width: 100%;
  height: auto;
  position: relative;
}
.iderBannerBox1 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
  max-height: 5rem;
}
.iderBannerBox1 .text {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.iderBannerBox1 .text .title {
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 0.6rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.iderNavBox {
  width: 100%;
  height: auto;
}
.iderNavBox a {
  font-size: 0.2rem;
  color: #ffffff;
}
.iderNavBox a::after {
  display: block;
  content: "/";
  font-size: 0.2rem;
  color: #ffffff;
  margin: 0 0.0375rem;
}
.iderNavBox a:last-child::after {
  display: none;
}
.iderServiceBox1 {
  width: 100%;
  height: auto;
  padding: 0.75rem 0;
}
.iderServiceBox1 ul {
  width: 100%;
  margin-top: 0.75rem;
  gap: 0.375rem;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
}
.iderServiceBox1 ul li {
  position: relative;
  width: 100%;
  max-width: 4.1rem;
  height: 7.0875rem;
  padding: 0.5625rem 0.375rem 0.125rem 0.375rem;
  background-color: #f4f4f4;
  transition: all 0.3s;
}
.iderServiceBox1 ul li::after {
  display: block;
  width: 100%;
  content: "";
  height: 0.075rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--mainColor);
}
.iderServiceBox1 li .icon {
  display: block;
  width: auto;
  height: 1.575rem;
  object-fit: contain;
  transition: all 0.3s;
}
.iderServiceBox1 li:hover .icon {
  transform: translateY(-5px);
}
.iderServiceBox1 li .name {
  width: 100%;
  text-align: center;
  font-size: 0.3rem;
  font-weight: 500;
  margin: 0.4375rem 0 0.3125rem 0;
  line-height: 0.45rem;
  color: var(--mainColor);
}
.iderServiceBox1 li .com-ls30 {
  text-align: center;
}
.iderServiceBox2 {
  width: 100%;
  height: auto;
  padding: 0.875rem 0 1.875rem 0;
  background-color: var(--bg);
}
.iderServiceBox2 ul {
  width: 100%;
  margin-top: 0.875rem;
  gap: 0.375rem 0.3625rem;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
}
.iderServiceBox2 ul li {
  position: relative;
  width: 100%;
  max-width: 4.1rem;
  overflow: hidden;
  height: 2.3125rem;
  border-radius: 0.625rem 0.125rem 0.625rem 0.125rem;
}
.iderServiceBox2 li .name {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 0.375rem;
  text-align: center;
  color: #ffffff;
  transform: translate(-50%, -50%);
}
.iderAboutBox1 {
  width: 100%;
  height: auto;
  padding: 1.125rem 0;
}
.iderAboutBox1 .img {
  width: 7.85rem;
  height: auto;
  overflow: hidden;
  margin-left: 0.925rem;
}
.iderAboutBox1 .text {
  flex: 1;
}
.iderAboutBox1 .text .title {
  margin: 0.15rem 0 0.125rem 0;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.iderAboutBox1 .text .tl {
  font-size: 0.3rem;
  margin-bottom: 0.1875rem;
  line-height: 0.45rem;
  color: #000000;
}
.iderAboutBox1 .text li {
  font-size: 0.2rem;
  line-height: 0.45rem;
  color: #000;
}
.iderAboutBox1 .text .ls {
  margin-bottom: 0.1875rem;
}
.iderAboutBox1 .text li strong {
  color: var(--mainColor);
}
.iderAboutBox1 .text .com-ls30 strong {
  color: var(--mainColor);
}
.iderAboutBox2 {
  width: 100%;
  height: auto;
  position: relative;
  padding: 1.0625rem 0 1.625rem 0;
}
.iderAboutBox2::after {
  display: block;
  content: "";
  width: 100%;
  height: 0.0125rem;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
}
.iderAboutBox2Con {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.9375rem;
}
.iderAboutBox2Swiper1 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderAboutBox2Swiper1 .img {
  width: 100%;
  height: 2.7375rem;
  overflow: hidden;
}
.iderAboutBox2Swiper1 .con {
  width: 100%;
  height: auto;
  position: relative;
}
.iderAboutBox2Swiper1 .con::after {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  right: -0.225rem;
  display: block;
  border-radius: 50%;
  content: "";
  width: 0.1875rem;
  height: 0.1875rem;
  border: 0.0625rem solid #fff;
  background-color: var(--mainColor);
}
.iderAboutBox2Swiper1 .text {
  width: 100%;
  min-height: 3.125rem;
  padding: 0.4375rem 0.2625rem 0.5rem 0.2875rem;
  background-color: #ffffff;
}
.iderAboutBox2Swiper1 .text .time {
  font-size: 0.375rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--mainColor);
}

/* 下方时间轴连线 */
.iderAboutBox2Swiper2 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.875rem;
  border-right: 0.025rem solid #fff;
  border-left: 0.025rem solid #fff;
}
.iderAboutBox2Swiper2::after {
  display: block;
  content: "";
  position: absolute;
  top: 63%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 0.025rem;
  background-color: #fff;
}
.iderAboutBox2Swiper2 .swiper-slide {
  cursor: pointer;
}
.iderAboutBox2Swiper2 .time {
  position: relative;
  font-size: 0.2rem;
  text-align: center;
  padding-bottom: 52px;
  color: #ffffff;
}
.iderAboutBox2Swiper2 .time::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  top: 0.4375rem;
  width: 0.025rem;
  height: 0.3375rem;
  background-color: #fff;
  transition: all 0.3s;
}
.iderAboutBox2Swiper2 .dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 63%;
  width: 0.15rem;
  height: 0.15rem;
  transition: all 0.3s;
  opacity: 0;
  background-color: #ffffff;
  border-radius: 50%;
}
.iderAboutBox2Swiper2 .swiper-slide-thumb-active .dot {
  opacity: 1;
}
.iderAboutBox2Swiper2 .swiper-slide-thumb-active .time::after {
  height: 0;
}
.iderAboutBox2-prev,
.iderAboutBox2-next {
  cursor: pointer;
  width: 0.4625rem;
  transition: all 0.3s;
  border-radius: 50%;
  height: 0.4625rem;
  background-color: #ffffff;
  font-family: Poppins;
  font-size: 0.45rem;
  color: #868686;
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
}
.iderAboutBox2-next:hover,
.iderAboutBox2-prev:hover {
  color: var(--mainColor);
}
.iderAboutBox2-prev {
  left: -0.7125rem;
}
.iderAboutBox2-next {
  right: -0.7125rem;
}

.iderAboutBox3 {
  width: 100%;
  height: auto;
  padding: 1.125rem 0 1.625rem 0;
}
.iderAboutBox3 .com-card {
  width: 15rem;
}
.iderAboutBox3 ul {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  gap: 0.25rem;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
}
.iderServiceBox3 {
  background-color: var(--bg);
}
.iderAboutBox3 li {
  width: 100%;
  max-width: 4.825rem;
}
.iderAboutBox3 li .img {
  width: 100%;
  height: 5.2rem;
  overflow: hidden;
}
.iderAboutBox3 li .text {
  width: 100%;
  margin-top: 0.25rem;
}
.iderAboutBox3 li .top {
  width: 100%;
  height: auto;
  padding-bottom: 0.175rem;
  margin-bottom: 0.25rem;
  align-items: self-end;
  border-bottom: 1px solid var(--mainColor);
}
.iderAboutBox3 li .name {
  font-size: 0.3rem;
  font-weight: 600;
  color: #000000;
  margin-right: 0.2875rem;
}
.iderAboutBox3 li .type {
  font-size: 0.2rem;
  color: #000000;
}
.iderAboutBox3 li .tl {
  font-size: 0.225rem;
  font-weight: 500;
  margin-bottom: 0.1875rem;
  line-height: 0.375rem;
  color: #000000;
}
.iderAboutBox4 {
  width: 100%;
  height: auto;
  padding: 0.875rem 0 0.75rem 0;
}
.iderAboutBox4Swiper {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.iderAboutBox4Swiper .img {
  width: 100%;
  height: 2.2875rem;
}
.iderAboutBox4Swiper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  vertical-align: bottom;
}
.iderAboutBox4Swiper .name {
  width: 100%;
  font-size: 0.25rem;
  text-align: center;
  margin-top: 0.25rem;
  color: #ffffff;
}
.iderAboutBox4-pagination {
  margin-top: 0.75rem;
}
.iderAboutBox4-pagination .swiper-pagination-bullet,
.iderAboutBox5-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  opacity: 0.5;
  transition: all 0.3s;
}
.iderAboutBox4-pagination .swiper-pagination-bullet-active,
.iderAboutBox5-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.iderAboutBox5 {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.25rem 0;
  background-color: var(--bg);
}
.iderAboutBox5Swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.5625rem;
}
.iderAboutBox5Swiper .con {
  width: 100%;
  border-radius: 0.125rem;
  height: 4.375rem;
  background: url(../picture/ic3-13.png) no-repeat;
  background-size: cover;
}
.iderAboutBox5Swiper .con .img {
  display: block;
  width: 2.1125rem;
  height: 3rem;
}
.iderAboutBox5Swiper .name {
  width: 100%;
  height: auto;
  font-size: 0.25rem;
  text-align: center;
  margin-top: 0.25rem;
  font-weight: 500;
  color: #000000;
}
.iderAboutBox5-pagination {
  margin-top: 0.9375rem;
}
.iderAboutBox5-pagination .swiper-pagination-bullet {
  background-color: #b7b7b7;
  opacity: 0.5;
}
.iderAboutBox5-pagination .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}
.iderProductBox1 {
  width: 100%;
  height: auto;
}
.iderProductBox1 .com-card {
  grid-template-columns: repeat(auto-fit, minmax(3.125rem, 1fr));
}
.iderProductBox1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.875rem;
  cursor: pointer;
  max-width: 3.5rem;
  font-size: 0.225rem;
  text-align: center;
  color: #000000;
  transition: all 0.3s;
  border-right: 1px solid #e9e9e9;
}
.iderProductBox1 a:hover,
.iderProductBox1 a.active {
  background-color: var(--mainColor);
  color: #fff;
}
.iderProductBox1 {
  background-color: var(--bg);
}
.iderAboutBox6.fixed {
  position: fixed;
  top: 1.2125rem;
  z-index: 333;
  left: 0;
  box-shadow: 0 0 0.1875rem 0.125rem rgba(2, 94, 199, 0.4);
  animation: slideDown 0.5s ease-out;
}
.iderProductBox2 {
  width: 100%;
  background-color: var(--bg);
  height: auto;
  padding: 1rem 0;
}
.iderProductBox2 .title {
  width: 68%;
  text-align: center;
  margin: 0 auto;
  margin-top: 0.375rem;
}
.iderProductBox2 ul {
  width: 100%;
  height: auto;
  margin-top: 0.875rem;
  gap: 0.5rem 0.3875rem;
  grid-template-columns: repeat(auto-fit, minmax(5.5rem, 1fr));
}
.iderProductBox2 ul li {
  width: 100%;
  max-width: 5.5rem;
  height: 6.8rem;
  background-color: #ffffff;
  padding: 0.25rem 0.25rem 0.5rem 0.25rem;
  box-shadow: 0px 0px 0.4rem 0px rgba(101, 101, 101, 0.11);
}
.iderProductBox2 li .img {
  width: 100%;
  height: 4.45rem;
  padding: 0.125rem;
  overflow: hidden;
}
.iderProductBox2 li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.iderProductBox2 li .text {
  width: 100%;
  height: auto;
}
.iderProductBox2 li .name {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 0.375rem;
  margin: 0.15rem 0 0.1875rem 0;
  font-weight: 500;
  color: #000000;
}
.iderProductDelBox1 {
  width: 100%;
  height: auto;
  padding: 0.1875rem 0 0.25rem 0;
}
.iderProductDelBox1 .lt {
  width: 8.75rem;
  margin-right: 1.125rem;
}
.iderProductDelBox1Swiper1 {
  width: 100%;
  height: 6.375rem;
  overflow: hidden;
}
.iderProductDelBox1Swiper1 .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.iderProductDelBox1Swiper2 {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.075rem;
}
.iderProductDelBox1Swiper2 .img {
  width: 100%;
  position: relative;
  height: 1.55rem;
  cursor: pointer;
  overflow: hidden;
}
.iderProductDelBox1Swiper2 .videos {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 34px;
  cursor: pointer;
  background: url(../images/youtube.svg) center no-repeat;
  background-size: contain;
}
.iderProductDelBox1Swiper2 .swiper-slide {
  opacity: 0.5;
  transition: all 0.3s;
}
.iderProductDelBox1Swiper2 .swiper-slide-thumb-active {
  opacity: 1;
}
.header.inner {
  position: static;
  background-color: var(--mainColor);
}
.header:hover {
  background-color: var(--mainColor);
}
.iderNavBox.inner {
  padding: 0.1875rem 0;
}
.header.inner.active {
  position: fixed;
  animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.iderNavBox.inner a,
.iderNavBox.inner a::after {
  color: #000;
}
.iderProductDelBox1 .text {
  flex: 1;
  padding-top: 0.875rem;
}
.iderProductDelBox1 .text .com-tl {
  text-align: center;
}
.iderProductDelBox1 .text .com-mores {
  margin: 0 auto;
}
.iderProductDelBox1 .text .com-ls30 {
  margin: 0.375rem 0 0.5625rem 0;
  font-size: 0.25rem;
  color: #000000;
}
.iderProductDelBox1 .text .com-ls30 p {
  font-size: 0.25rem;
  color: #000000;
}
.iderProductDelBox1 .text .com-ls30 ul {
  margin-top: 4%;
}
.iderProductDelBox1 .text .com-ls30 li {
  font-weight: 500;
  margin-bottom: 0.075rem;
}
.iderProductDelBox2 {
  width: 100%;
  height: auto;
  padding: 0.1625rem 0;
  background-color: var(--mainColor);
  transition: all 0.3s;
}
.iderProductDelBox2.fixed {
  position: fixed;
  top: 1.2125rem;
  z-index: 333;
  left: 0;
  border-top: 1px solid #fff;
  box-shadow: 0 0 0.1875rem 0.125rem rgba(2, 94, 199, 0.4);
  animation: slideDown 0.5s ease-out;
}
.iderProductDelBox2 a {
  display: block;
  width: fit-content;
  padding: 0 0.25rem;
  height: 0.55rem;
  line-height: 0.55rem;
  text-align: center;
  box-shadow: 0px 0px 0.4rem 0px rgba(101, 101, 101, 0.01);
  border-radius: 0.2625rem;
  font-size: 0.225rem;
  font-weight: 600;
  color: #ffffff;
  margin-right: 0.375rem;
  transition: all 0.3s;
}
.iderProductDelBox2 a:last-child {
  margin-right: 0;
}
.iderProductDelBox2 a:hover,
.iderProductDelBox2 a.active {
  background-color: rgba(255, 255, 255, 0.1);
}
.iderProductDelBoxItem1 {
  width: 100%;
  height: auto;
  padding: 1.125rem 0 0.5rem 0;
}
.iderProductDelBoxItem1 .com-card,
.iderProductDelBoxItem2 .com-card,
.iderProductDelBoxItem4 .com-card {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #d6d6d6;
}
.iderProductDelBoxItem1 .img {
  width: 8.6rem;
  height: auto;
  overflow: hidden;
  margin-left: 1.625rem;
}
.iderProductDelBoxItem1 .text {
  flex: 1;
}
.iderProductDelBoxItem1 .text .com-ls30 {
  margin-top: 0.5rem;
  font-size: 0.25rem;
}
.iderProductDelBoxItem1 .text .com-ls30 p {
  font-size: 0.25rem;
}
.iderProductDelBoxItem1 .text .com-ls30 ul {
  margin-top: 4%;
}
.iderProductDelBoxItem1 .text .com-ls30 ul li {
  font-size: 0.25rem;
  font-weight: 500;
  margin-top: 0.075rem;
}
.iderProductDelBoxItem2 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0;
}
.iderProductDelBoxItem2 ul {
  width: 100%;
  margin-top: 0.5625rem;
  gap: 0.3625rem;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
}
.iderProductDelBoxItem2 ul li {
  width: 100%;
  max-width: 4.1rem;
  min-height: 2.3125rem;
  transition: all 0.3s;
  padding: 0.375rem 0.125rem 0.125rem;
  border-radius: 0.625rem 0.125rem 0.625rem 0.125rem;
  border: solid 1px #d2d2d2;
}
.iderProductDelBoxItem2 li .icon {
  display: block;
  width: 0.8125rem;
  height: 0.8rem;
  object-fit: contain;
  transition: all 0.3s;
  transition: all 0.3s;
}
.iderProductDelBoxItem2 li .name {
  width: 100%;
  font-size: 0.25rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.175rem;
  line-height: 0.375rem;
  color: var(--mainColor);
  transition: all 0.3s;
}
.iderProductDelBoxItem2 li:hover {
  background-color: var(--mainColor);
  transform: translateY(-5px);
}
.iderProductDelBoxItem2 li:hover .name {
  color: #fff;
}
.iderProductDelBoxItem3 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0 0.5625rem 0;
}
.iderProductDelBoxItem3 .com-card {
  padding-bottom: 0.675rem;
  border-bottom: 1px solid #d6d6d6;
}
.iderProductDelBoxItem3 .img {
  width: 8.1875rem;
  height: auto;
  overflow: hidden;
  margin-left: 1.625rem;
}
.iderProductDelBoxItem3 .text {
  flex: 1;
}
.iderProductDelBoxItem3 .text .com-ls30 {
  margin: 0.25rem 0 0.375rem 0;
}
.iderProductDelBoxItem3 .text .com-ls30 li {
  font-size: 0.225rem;
  line-height: 0.6rem;
}
.iderProductDelBoxItem3 .text .com-ls30 li strong {
  color: var(--mainColor);
}
.table_content {
  margin-top: 0.375rem;
}
.table_content,
.table_content table {
  width: 100%;
  height: auto;
  overflow-x: auto;
}
.table_content tr:first-child td {
  height: 0.7rem !important;
  font-size: 0.225rem !important;
  padding: 0 0.1875rem;
  color: #ffffff;
  background-color: var(--mainColor);
}
.diagonal-cell {
  position: relative;
  padding: 0 !important;
  width: 3.125rem;
  background: linear-gradient(
    to top right,
    #00569d 49.5%,
    #fff 50%,
    #00569d 50.5%
  ) !important;
}

.diagonal-cell .label-left {
  position: absolute;
  left: 0.1875rem;
  bottom: 0.1rem;
}

.diagonal-cell .label-right {
  position: absolute;
  right: 0.1875rem;
  top: 0.1rem;
}
table td {
  height: 0.575rem !important;
  background-color: rgba(2, 99, 145, 0.1);
  font-size: 0.2rem !important;
  color: #000000;
  padding: 0.0625rem 0.1875rem !important;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}
table tr:nth-child(2n) td {
  transition: all 0.3s;
  background-color: rgba(2, 99, 145, 0.2);
}
table tr:hover td {
  background-color: var(--mainColor) !important;
  color: #fff;
}
.iderProductDelBoxItem4 {
  width: 100%;
  height: auto;
  padding: 0.5rem 0 0.3125rem 0;
}
.iderProductDelBox3 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0 1rem 0;
}
.iderProductDelBox3 ul {
  width: 100%;
  margin-top: 0.625rem;
  gap: 0.4rem;
  grid-template-columns: repeat(auto-fit, minmax(5.5rem, 1fr));
}
.iderProductDelBox3 ul li {
  width: 100%;
  max-width: 5.575rem;
  height: 6.875rem;
  border-radius: 0.125rem;
  position: relative;
  overflow: hidden;
}
.iderProductDelBox3 ul li .img {
  width: 100%;
  border-radius: 0.125rem;
  height: 100%;
  overflow: hidden;
}
.iderProductDelBox4 {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.75rem 0;
  background-color: var(--bg);
}
.iderProductDelBox4 ul {
  width: 100%;
  margin-top: 1rem;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(8.375rem, 1fr));
}
.iderProductDelBox4 ul li {
  position: relative;
  width: 100%;
  max-width: 8.45rem;
  height: 6.5625rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 0.4rem 0px rgba(101, 101, 101, 0.1);
  border-radius: 0.125rem;
  padding: 0.375rem 0.25rem 0.3rem 0.25rem;
}
.iderProductDelBox4 li .img {
  width: 100%;
  height: 4.1875rem;
  padding: 0.125rem;
  overflow: hidden;
}
.iderProductDelBox4 li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.iderProductDelBox4 li .name {
  font-size: 0.3rem;
  line-height: 0.45rem;
  width: 100%;
  text-align: center;
  display: block;
  margin: 0.1875rem 0 0.3125rem 0;
  color: var(--mainColor);
}
.iderProductDelBox4 li .text {
  width: 100%;
}
.iderProServiceBox1 {
  width: 100%;
  height: auto;
}
.iderProServiceBox1 .item {
  background-color: var(--bg);
  padding: 0.5rem 0;
}
.iderProServiceBox1 .item .img {
  width: 45%;
  margin-left: 0.75rem;
  height: auto;
  padding: 0.375rem;
  overflow: hidden;
}
.iderProServiceBox1 .item .img img {
  height: auto;
  object-fit: contain;
}
.iderProServiceBox1 .item .text {
  flex: 1;
}
.iderProServiceBox1 .item .text .com-ls30 strong {
  color: var(--mainColor);
}
.iderProServiceBox1 .item .text .com-ls30 ul {
  margin-top: 0.3125rem;
}
.iderProServiceBox1 .item .text .com-ls30 {
  margin-top: 0.1875rem;
}
.iderProServiceBox1 .item .text .com-ls30 li {
  margin-bottom: 0.075rem;
}
.iderProServiceBox1 .item:nth-child(2n) {
  background-color: #fff;
}
.iderProServiceBox1 .item:nth-child(2n) .com-card {
  flex-direction: row-reverse;
}
.iderProServiceBox1 .item:nth-child(2n) .img {
  margin: 0 0.75rem 0 0;
}
/* #endregion */
/* #region  Response style */
@media screen and (max-width: 1366px) {
  html {
    font-size: calc(100vw / 19) !important;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 70px !important;
  }
  .header {
    display: none;
  }
  .com-card {
    width: 100% !important;
    padding: 0 4%;
  }
  body {
    padding-top: 60px !important;
  }
  .ideDetailsBox2.fixed {
    top: 60px;
  }

  .mobileHeader {
    background-image: var(--bgimg);
    display: flex;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  .headerSwiper .text .title,
  .com-tl,
  .iderBannerBox1 .text .title {
    font-size: 18px;
    line-height: 1.6;
  }
  .headerSwiper .text .tl,
  .com-title,
  .iderIndexBox3Con .top .name,
  .iderIndexBox3Con li .name,
  .iderAboutBox1 .text .tl,
  .iderAboutBox2Swiper1 .text .time,
  .iderProductBox2 li .name,
  .iderProductDelBoxItem2 li .name,
  .iderProductDelBox4 li .name {
    font-size: 16px;
    line-height: 1.5;
  }
  .com-mores {
    width: fit-content;
    padding: 0 20px;
    height: 38px;
    line-height: 38px;
  }
  .iderAboutBox1 .text li {
    line-height: 26px;
  }
  .iderIndexBox1Swiper1 .name,
  .iderIndexBox2Swiper .con .type,
  .iderProductDelBox3 li .type,
  .iderAboutBox3 li .name,
  .iderServiceBox1 li .name,
  .iderServiceBox2 li .name {
    font-size: 16px;
  }
  .iderAboutBox4Swiper .name,
  .iderAboutBox5Swiper .name,
  .iderProductDelBox1 .text .com-ls30,
  .iderProductDelBox1 .text .com-ls30 p,
  .iderProductDelBoxItem1 .text .com-ls30 ul li,
  .iderProductDelBoxItem1 .text .com-ls30 p,
  .iderProductDelBoxItem3 .text .com-ls30 li {
    font-size: 14px;
    line-height: 26px;
  }
  .iderIndexBox2 .com-tl,
  .iderIndexBox3Con .top .img {
    width: 100%;
  }
  .iderIndexBox3Con ul li,
  .iderAboutBox3 li,
  .iderProductBox1 a,
  .iderProductBox2 ul li,
  .iderProductDelBoxItem2 ul li,
  .iderProductDelBox3 ul li,
  .iderServiceBox1 ul li,
  .iderServiceBox2 ul li {
    max-width: 100%;
  }
  .iderProductBox1 a {
    height: 40px;
    line-height: 40px;
  }
  .iderIndexBox3Con .top,
  .iderProductDelBox4 ul li,
  .iderServiceBox2 ul li {
    height: auto;
  }
  .iderIndexBox3Con .top,
  .iderAboutBox1 .com-card,
  .iderProductDelBox1 .com-card,
  .iderProductDelBoxItem1 .com-card,
  .iderProductDelBoxItem3 .com-card,
  .iderProServiceBox1 .item .com-card {
    flex-wrap: wrap;
  }
  .iderIndexBox3Con .top .text,
  .iderAboutBox1 .text,
  .iderProductDelBox1 .text,
  .iderProductDelBoxItem1 .text,
  .iderProductDelBoxItem3 .text,
  .iderProServiceBox1 .item .text {
    flex: none;
    width: 100%;
  }
  .iderIndexBox1,
  .iderIndexBox2,
  .iderIndexBox3,
  .footer .top,
  .iderAboutBox1,
  .iderAboutBox2,
  .iderAboutBox3,
  .iderAboutBox4,
  .iderAboutBox5,
  .iderProductBox2,
  .iderProductDelBox1,
  .iderProductDelBox4,
  .iderProServiceBox1 .item,
  .iderServiceBox1,
  .iderServiceBox2 {
    padding: 20px 0;
  }
  .iderProductDelBoxItem1,
  .iderProductDelBoxItem2,
  .iderProductDelBoxItem3,
  .iderProductDelBoxItem4,
  .iderProductDelBox3 {
    padding: 10px 0;
  }
  .iderIndexBox1Con,
  .iderIndexBox1 .bottom,
  .iderIndexBox2Swiper,
  .iderIndexBox2 .bottom,
  .iderIndexBox3Con,
  .iderAboutBox2Con,
  .iderAboutBox2Swiper2,
  .iderAboutBox3 ul,
  .iderAboutBox4Swiper,
  .iderAboutBox4-pagination,
  .iderAboutBox5Swiper,
  .iderAboutBox5-pagination,
  .iderProductBox2 ul,
  .iderProductDelBoxItem1 .text .com-ls30,
  .iderProductDelBoxItem2 ul,
  .table_content,
  .iderProductDelBox3 ul,
  .iderProductDelBox4 ul,
  .iderServiceBox1 ul,
  .iderServiceBox2 ul {
    margin-top: 15px;
  }
  .iderIndexBox1Swiper2 .name {
    padding: 10px 0;
  }
  .iderIndexBox2Swiper .con .text,
  .iderProductDelBox3 li .text {
    padding: 4%;
  }
  .iderIndexBox3Con ul {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .iderIndexBox3Con .top .text {
    padding: 4%;
  }
  .iderIndexBox3Con .top .time {
    margin-bottom: 15px;
  }
  .iderIndexBox3Con .top .text .com-ls30 {
    margin: 12px 0;
  }

  .footer .top .lt {
    width: 33%;
    margin-right: 10%;
  }
  .iderBannerBox1 .text .title {
    margin-bottom: 10px;
  }
  .iderAboutBox1 .img {
    width: 80%;
    margin: 15px 0 0;
  }
  .iderAboutBox2-prev,
  .iderAboutBox2-next {
    position: static;
    transform: translate(0);
  }
  .iderAboutBox2-next {
    margin-left: 20px;
  }
  .iderAboutBox2Swiper1 .text {
    padding: 4%;
  }
  .iderAboutBox3 ul,
  .iderProductBox2 ul,
  .iderProductDelBoxItem2 ul,
  .iderProductDelBox3 ul,
  .iderProductDelBox4 ul,
  .iderServiceBox1 ul {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .iderProductBox2 .title {
    width: 100%;
    margin-top: 8px;
  }
  .iderProductDelBox1 .lt {
    width: 80%;
    margin: 0 0 15px 0;
  }
  .iderProductDelBox1 .text .com-ls30 {
    margin: 12px 0 15px 0;
  }
  .iderProductDelBox2.fixed {
    padding: 10px 0;
    top: 60px;
  }
  .iderProductDelBoxItem1 .img {
    width: 80%;
    margin: 15px 0 0;
  }
  .iderProductDelBoxItem1 .com-card,
  .iderProductDelBoxItem2 .com-card,
  .iderProductDelBoxItem4 .com-card,
  .iderProductDelBoxItem3 .com-card {
    padding-bottom: 15px;
  }
  .iderProductDelBoxItem2 li .icon {
    width: 40px;
    height: 40px;
  }
  .iderProductDelBoxItem3 .text .com-ls30 {
    margin: 10px 0 15px 0;
  }
  .iderProductDelBoxItem3 .img {
    margin: 15px 0 0;
    width: 80%;
  }
  .iderProServiceBox1 .item .img {
    margin: 15px 0 0;
  }
  .iderServiceBox1 li .icon {
    height: 60px;
  }
  .iderServiceBox1 ul li {
    height: auto;
    padding: 5% 4%;
    min-height: 300px;
  }
  .iderServiceBox2 ul {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
  .iderAboutBox6.fixed {
    top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .iderIndexBox3Con ul li,
  .footer .top,
  .footer .bottom .com-card {
    height: auto;
    flex-wrap: wrap;
  }
  .iderIndexBox3Con li .text {
    flex: none;
    width: 100%;
    height: auto;
    padding: 4%;
  }
  .footer .top .lt {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .iderIndexBox3Con li .text .time {
    margin-bottom: 12px;
  }
  .footer .top .lt .com-ls30 {
    margin: 10px 0 15px 0;
  }
  .footer .top ul li .name {
    margin-bottom: 15px;
  }
  .iderIndexBox3Con li .img,
  .iderProductDelBox1 .lt,
  .iderProductDelBoxItem1 .img,
  .iderProductDelBoxItem3 .img,
  .iderProServiceBox1 .item .img {
    width: 100%;
    height: auto;
  }
  .iderProductBox2 ul li,
  .iderProductBox2 li .img,
  .iderProductDelBox1Swiper1,
  .iderProductDelBox3 ul li,
  .iderProductDelBox4 li .img {
    height: auto;
  }
  .footer .top ul li {
    display: none;
  }
  .footer .top ul li:last-child {
    display: flex;
    width: 100%;
  }
  .footer .bottom {
    padding: 3% 0;
  }
  .footer .bottom .com-ls30 {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .iderServiceBox2 ul {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
}
@media screen and (max-width: 500px) {
  .headerSwiper .text .tl {
    text-align: center;
  }
  .iderIndexBox1Swiper1 .con {
    height: auto;
    padding: 4%;
  }
  .iderAboutBox1 .img {
    width: 100%;
  }
  .iderIndexBox1Swiper1 .img {
    height: auto;
    padding: 3%;
  }
  .iderAboutBox2Swiper1 .img,
  .iderAboutBox3 li .img {
    height: auto;
  }
  .iderAboutBox3 ul,
  .iderProductBox2 ul,
  .iderProductDelBoxItem2 ul,
  .iderProductDelBox3 ul,
  .iderProductDelBox4 ul,
  .iderServiceBox1 ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .iderProductBox1 a {
    height: auto;
    line-height: 25px;
    padding: 10px;
    border-right: none;
  }
  .iderServiceBox1 li .name {
    margin: 15px 0;
  }
  .iderProductDelBox2 .com-card {
    gap: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .iderProductDelBox2 a {
    margin: 0;
  }
  .table_content td td:first-child {
    white-space: nowrap;
  }
  .iderServiceBox1 ul li {
    min-height: auto;
  }
}
@media screen and (max-width: 430px) {
  .headerSwiper .text .tl {
    margin: 10px 0;
  }
  .iderIndexBox1Swiper1 .name {
    margin: 12px 0;
  }
}
@media screen and (max-width: 375px) {
  .iderServiceBox2 ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
@media screen and (max-width: 360px) {
  .headerSwiper .bg {
    height: 45vh;
  }
  .iderProductDelBox2 .com-card {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
/* #endregion  Response style */
