/* #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-Light";
  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: #93bf46;
  --bg: #f7f7f7;
  --bg-4e: #4e4a49;
  --main-font: "Poppins", sans-serif;
  --font-ou: "Outfit", sans-serif;
}
body {
  font-family: var(--main-font);
  font-weight: 400;
}
.com-card {
  width: 20rem;
  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;
  }
}

/* #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(146, 196, 28, 0.6);
  transform: translateY(-5px);
}

.min-tl {
  width: fit-content;
  padding: 0 0.15rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.0625rem;
  background-color: rgba(151, 199, 63, 0.4);
  font-size: 0.225rem;
  text-align: center;
  color: #000000;
  margin: 0 auto;
  margin-bottom: 0.15rem;
}
.com-tl {
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 400;
  text-align: center;
  color: #000000;
}
.com-tl.wt {
  font-weight: 600;
}
.com-tl.left {
  text-align: left;
}
.com-ls18,
.com-ls18 p {
  font-size: 0.225rem;
  line-height: 0.375rem;
  color: #505050;
}
.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: #000000;
}

.max-tl {
  font-family: Poppins-Medium;
  font-size: 0.45rem;
  color: #383838;
  line-height: 0.6rem;
  font-weight: normal;
}
.max-tl.center {
  text-align: center;
}
.com-mores2 {
  width: 2.925rem;
  cursor: pointer;
  display: block;
  transition: all 0.3s;
  height: 0.6875rem;
  background-color: var(--mainColor);
  border-radius: 0.35rem;
  font-size: 0.2rem;
  text-align: center;
  line-height: 0.6875rem;
  color: #ffffff;
}
.com-mores {
  display: block;
  cursor: pointer;
  width: 2.925rem;
  transition: all 0.3s;
  height: 0.6875rem;
  line-height: 0.6875rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 0.3375rem;
  font-size: 0.2rem;
  color: #000000;
}

.header {
  position: fixed;
  top: 0;
  height: 1.4375rem;
  z-index: 999;
  width: 100%;
  transition:
    transform 0.4s ease-in-out,
    background 0.3s;
}
.header.inner {
  background-color: #fff;
}
.header.inner .com-card {
  display: flex;
  align-items: center;
}
.header.inner .headerCon {
  margin: 0;
  padding: 0;
}
.header.header-hide {
  transform: translateY(-150%);
}
.header:not(.header-hide) {
  transform: translateY(0);
}
.header.inner:not(.header-hide) {
  box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.4);
}
.headerCon {
  width: 100%;
  height: 1.0875rem;
  margin-top: 0.35rem;
  border-radius: 0.125rem;
  padding-left: 0.4125rem;
  background-color: rgba(255, 255, 255, 0.9);
}
.header .lt {
  flex: 1;
  height: 100%;
}
.header .lt .logo {
  width: 2.5rem;
  height: auto;
  margin-right: 0.5625rem;
}
.header .lt .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}
.header .rt {
  width: 1.8125rem;
  height: 100%;
  border-radius: 0.125rem;
  background-color: rgba(73, 68, 68, 0.9);
}
.header .search {
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  margin-right: 0.25rem;
}
.languageSwitching .icons {
  font-size: 16px;
  cursor: pointer;
  color: #fff;
}
.header.active {
  background-color: #fff;
  animation: slideDown 0.5s ease-out;
  box-shadow: 0px 0px 0.375rem 0px rgba(53, 117, 87, 0.1);
}
.menu-level1 > li,
.menu-level1,
.header .rt {
  height: 100%;
}
.menu-level1 > li > a {
  font-size: 0.2rem;
  color: #000000;
}

.menu-level1 > li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 0.375rem;
}

.languageSwitching {
  cursor: pointer;
  width: fit-content;
  position: relative;
  height: auto;
}

/* === */
.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 .com-mores {
  margin-top: 0.625rem;
}
.headerSwiper .text .title {
  font-size: 0.775rem;
  font-weight: 700;
  line-height: 0.925rem;
  color: #ffffff;
}
.headerSwiper .text .ls {
  font-size: 0.4625rem;
  line-height: 0.6rem;
  color: #ffffff;
}
.headerSwiper .text .lss {
  font-size: 0.3rem;
  line-height: 0.6rem;

  color: #f7f7f7;
}
.headerSwiper .text .lsss {
  font-size: 0.225rem;
  color: #f7f7f7;
}
.headerSwiper .text .lsss span {
  display: inline-block;
  width: fit-content;
  font-weight: 600;
  height: 0.425rem;
  padding: 0 0.125rem;
  line-height: 0.425rem;
  background-color: var(--mainColor);
}
.headerSwiper .text .con {
  width: 100%;
  height: auto;
}
.headerSwiper .text .con .lt {
  width: 50%;
}
.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: 0.9375rem 0 1.875rem 0;
}
.iderIndexBox1 .com-card {
  width: 21.5rem;
}
.iderIndexBox1 .navItem {
  margin: 0.375rem 0 0.625rem 0;
}
.iderIndexBox1 .navItem .item img {
  width: auto;
  height: 0.875rem;
  object-fit: contain;
  transition: all 0.3s;
  opacity: 0.4;
  filter: grayscale(1);
}
.iderIndexBox1 .navItem .item:hover img {
  opacity: 1;
  filter: none;
}
.iderIndexBox1 .navItem .item {
  transition: all 0.3s;
  margin-right: 0.75rem;
}
.iderIndexBox1 .navItem .item:last-child {
  margin-right: 0;
}
.iderIndexBox1 .navItem .item .name {
  font-size: 0.2rem;
  color: #000000;
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}
.iderIndexBox1 .navItem .item:hover .name {
  color: var(--mainColor);
  text-decoration: underline;
}
.iderIndexBox1 .navItem .item:hover .name::after {
  opacity: 1;
  margin-left: 0.025rem;
}
.iderIndexBox1 .navItem .item .name::after {
  display: block;
  opacity: 0;
  content: ">";
  transition: all 0.3s;
  font-size: 0.2rem;
  color: var(--mainColor);
}
.iderIndexBox1Con {
  width: 100%;
  height: auto;
}
.iderIndexBox1Con .item {
  width: 13.175rem;
  height: 7.125rem;
  margin: 0 0.25rem 0.25rem 0;
  overflow: hidden;
  position: relative;
}
.iderIndexBox1Con .item:nth-child(2),
.iderIndexBox1Con .item:nth-child(3),
.iderIndexBox1Con .item:nth-child(6),
.iderIndexBox1Con .item:nth-child(7),
.iderIndexBox1Con .item:nth-child(10) {
  width: 8.075rem;
}
.iderIndexBox1Con .item:nth-child(2n) {
  margin-right: 0;
}
.iderIndexBox1Con .item .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.iderIndexBox1Con .item .text {
  position: absolute;
  left: 0.25rem;
  bottom: 0.1375rem;
  width: 70%;
  height: 0.875rem;
  padding: 0 0.3125rem;
  border-radius: 0.075rem;
  backdrop-filter: blur(40px);
}
.iderIndexBox1Con .item .text .name {
  display: block;
  font-size: 0.3rem;
  font-weight: 600;
  color: #ffffff;
}
.iderIndexBox1Con .item .text .mores {
  font-size: 0.2rem;
  color: #ffffff;
}
.iderIndexBox1Con .item :hover .mores {
  text-decoration: underline;
}
.iderIndexBox1Con .item .text .mores::after {
  display: block;
  content: "\2192";
  font-size: 0.2rem;
  color: #ffffff;
  margin-left: 0.1625rem;
}
.iderIndexBox2 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 1.125rem 0 1rem 0;
}
.iderIndexBox2 .tl {
  font-size: 0.3rem;
  line-height: 0.45rem;
  text-align: center;
  color: #000000;
  width: 60%;
  margin: 0.15rem auto;
}
.iderIndexBox2 .title {
  width: 45%;
  margin: 0 auto;
  text-align: center;
}
.iderIndexBox2Con {
  width: 99%;
  margin: 0 auto;
  margin-top: 0.8125rem;
}
.iderIndexBox2Swiper .img {
  width: 100%;
  height: 5.725rem;
  border-radius: 0.125rem;
  overflow: hidden;
}
.iderIndexBox2Swiper .name {
  display: block;
  width: 100%;
  font-size: 0.2rem;
  margin-top: 0.125rem;
  color: #000000;
}
.iderIndexBox2Swiper .con {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.iderIndexBox2Swiper .con.active {
  margin-top: 1rem;
}
.iderIndexBox2Con .com-mores2 {
  margin: 0 auto;
  margin-top: 0.5625rem;
}
.iderIndexBox3 {
  width: 100%;
  height: auto;
  padding: 1.75rem 0;
}
.iderIndexBox3 .top .lt {
  width: 75%;
  height: auto;
}
.iderIndexBox3 .top .min-tl {
  margin: 0 0 0.15rem 0;
}
.iderIndexBox3 .top .title {
  margin-top: 0.1875rem;
}
.iderIndexBox3 .top .com-mores2 {
  width: 2.375rem;
}
.iderIndexBox3Con {
  width: 100%;
  height: auto;
  margin-top: 0.5625rem;
  gap: 0.5625rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderIndexBox3Con .item {
  width: 100%;
  height: auto;
}
.iderIndexBox3Con .item .videos {
  display: block;
  width: 100%;
  height: 4.7125rem;
  cursor: pointer;
  position: relative;
  border-radius: 0.125rem;
  overflow: hidden;
}
.iderIndexBox3Con .item .icon {
  position: absolute;
  width: 1.5875rem;
  height: 1.5875rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.iderIndexBox3Con .item .counter,
.iderIndexBox3Con .item .em {
  font-size: 0.75rem;
  line-height: 1;
  color: #000000;
}
.iderIndexBox3Con .item ul {
  gap: 0.5625rem;
  margin-top: 0.6875rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderIndexBox3Con .item li .ls {
  font-size: 0.225rem;
  margin-top: 0.125rem;
  color: #000000;
}
.iderIndexBox3Con .item li {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 0.25rem;
  border-bottom: 0.0125rem solid #6e6666;
}
.iderIndexBox3Con .item li::after {
  display: block;
  content: "";
  width: 0.5875rem;
  height: 0.0125rem;
  position: absolute;
  background-color: rgba(157, 218, 60, 0.4);
  left: 0;
  bottom: 0;
}
.iderIndexBox4 {
  width: 100%;
  height: auto;
  position: relative;
}
.iderIndexBox4 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderIndexBox4 .text {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.iderIndexBox4 .text .title {
  font-size: 0.6rem;
  line-height: 0.75rem;
  width: 79%;
  text-align: center;
  font-weight: 400;
  color: #000000;
}
.iderIndexBox4 .text .com-mores2 {
  color: #000000;
  width: 2.6875rem;
  margin-top: 0.25rem;
}
.iderIndexBox5 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.875rem 0 1.125rem 0;
}
.iderIndexBox5 .title {
  width: 46%;
  margin: 0 auto;
  margin-top: 0.1875rem;
  text-align: center;
}
.iderIndexBox5Con {
  width: 100%;
  height: auto;
  margin-top: 0.5625rem;
  gap: 0.5rem 0.175rem;
  grid-template-columns: repeat(auto-fit, minmax(4.75rem, 1fr));
}
.iderIndexBox5Con .item {
  width: 100%;
  height: 5rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
  position: relative;
  padding: 1rem 0.25rem 0.4375rem 0.25rem;
}
.iderIndexBox5Con .item .name {
  font-size: 0.225rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
.iderIndexBox5Con .item .img {
  width: 100%;
  height: 2.5375rem;
  overflow: hidden;
  border-radius: 0.125rem;
  margin-top: 0.5rem;
}
.iderIndexBox5Con .item .dot {
  position: absolute;
  top: 0;
  right: -0.5875rem;
  z-index: 2;
  width: 1.075rem;
  height: 1.075rem;
  background-color: var(--bg);
  border-radius: 50%;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
.iderIndexBox5Con .item .dot::after {
  display: block;
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  transform: rotate(180deg);
  background: url(../images/im1-4.png) no-repeat;
  background-size: contain;
}
.iderIndexBox5Con .item:nth-child(4n) .dot {
  top: auto;
  right: 0;
  bottom: -0.75rem;
  transform: rotate(90deg);
}
.iderIndexBox5Con .item:nth-child(5) .dot,
.iderIndexBox5Con .item:nth-child(6) .dot,
.iderIndexBox5Con .item:nth-child(7) .dot {
  transform: rotate(-180deg);
}
.iderIndexBox5Con .item:last-child .dot {
  display: none;
}
.iderIndexBox6 {
  width: 100%;
  height: auto;
  padding: 1.5rem 0;
}
.iderIndexBox6 .title {
  width: 46%;
  margin: 0 auto;
  margin-top: 0.1875rem;
  text-align: center;
}
.iderIndexBox6Con {
  width: 99%;
  margin: 0 auto;
  margin-top: 0.75rem;
}
.iderIndexBox6Swiper {
  width: 100%;
  height: auto;
  overflow: visible;
  overflow-x: clip;
}
.iderIndexBox6Swiper .swiper-slide {
  width: 5.75rem;
}
.iderIndexBox6Swiper .con {
  width: 100%;
  height: auto;
  padding-right: 0.3125rem;
  border-right: 1px solid #e5e5e5;
}
.iderIndexBox6Swiper .con .img {
  display: block;
  width: 100%;
  height: 3.4375rem;
  overflow: hidden;
}
.iderIndexBox6Swiper .con .text {
  width: 100%;
  height: auto;
  padding: 0.15rem 0.225rem 0.625rem 0.225rem;
  transition: all 0.3s;
}
.iderIndexBox6Swiper .con .time {
  font-size: 0.2rem;
  color: #4d4d4d;
}
.iderIndexBox6Swiper .con .name {
  font-size: 0.25rem;
  line-height: 0.375rem;
  transition: all 0.3s;
  color: #272727;
}
.iderIndexBox6Swiper .con .com-ls24 {
  margin: 0.2rem 0 0.4375rem 0;
  color: #333;
}
.iderIndexBox6Swiper .con .mores {
  font-size: 0.2rem;
  letter-spacing: 0.0125rem;
  display: block;
  color: #838383;
  transition: all 0.3s;
}
.iderIndexBox6Swiper .swiper-slide:hover .text {
  background-color: #ffffff;
  box-shadow: 0px 0.1125rem 0.475rem 0px rgba(108, 108, 108, 0.14);
}
.iderIndexBox6Swiper .swiper-slide:hover .name,
.iderIndexBox6Swiper .swiper-slide:hover .mores {
  text-decoration: underline;
  color: var(--mainColor);
}
.iderIndexBox6-prev,
.iderIndexBox6-next,
.iderWorkingBox2-prev,
.iderWorkingBox2-next,
.comPrev,
.comNext {
  cursor: pointer;
  width: 0.625rem;
  height: 0.575rem;
  background-color: #ffffff;
  border: solid 1px #e5e5e5;
  transition: all 0.3s;
}
.iderIndexBox6-prev img,
.iderIndexBox6-next img,
.iderWorkingBox2-prev img,
.iderWorkingBox2-next img,
.comPrev img,
.comNext img {
  width: 0.3rem;
  height: auto;
  object-fit: contain;
  transition: all 0.3s;
}
.iderIndexBox6-next:hover img,
.iderIndexBox6-prev:hover img,
.iderWorkingBox2-next:hover img,
.iderWorkingBox2-prev:hover img,
.comNext:hover img,
.comPrev:hover img {
  filter: brightness(0) invert(1);
}
.iderIndexBox6-prev,
.iderWorkingBox2-prev,
.comPrev {
  margin-right: 0.0875rem;
}
.iderIndexBox6-next:hover,
.iderIndexBox6-prev:hover,
.iderWorkingBox2-next:hover,
.iderWorkingBox2-prev:hover,
.comNext:hover,
.comPrev:hover {
  background-color: var(--mainColor);
}
.iderIndexBox6Con .bto {
  margin-top: 1rem;
}
.iderIndexBox7 {
  height: 8.4375rem;
  width: 100%;
}
.iderIndexBox7 .img {
  width: 12.7625rem;
  height: 100%;
  overflow: hidden;
}
.iderIndexBox7 .form {
  flex: 1;
  background-color: rgba(70, 69, 69, 0.1);
  height: 100%;
  padding: 0.5rem 1.325rem 0.4375rem 0.4375rem;
}
.iderIndexBox7 .form .title {
  font-size: 0.375rem;
  margin-bottom: 0.1875rem;
  font-weight: 400;
  color: #000000;
}
.formCon {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.0625rem;
  padding: 0.4375rem 0.475rem 0.375rem 0.4375rem;
}
.formCon .itemInput {
  width: calc((100% - 0.25rem) / 2);
  height: auto;
  margin-bottom: 0.1875rem;
}
.formCon input {
  width: 100%;
  display: block;
  height: 0.6125rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  padding-left: 0.1875rem;
  font-size: 0.2rem;
  color: #bebebe;
  transition: all 0.3s;
}
.formCon .name {
  font-size: 0.175rem;
  color: #000;
  margin-bottom: 0.1rem;
}
.formCon .name em {
  color: #ce342a;
}
.formCon .textarea {
  width: 100%;
}
.formCon textarea:focus,
.formCon input:focus {
  border: 1px solid var(--mainColor);
  border-radius: 1px;
}
.formCon textarea {
  width: 100%;
  height: 1.6625rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  font-size: 0.2rem;
  transition: all 0.3s;
  display: block;
  padding: 0.1875rem 0 0 0.1875rem;
  color: #bebebe;
}
.formCon .com-ls30 {
  margin: 0.125rem 0;
}
.formCon .com-ls30 a {
  text-decoration: underline;
  font-size: 0.2rem;
  color: #275ed8;
}
.formCon button {
  width: 4.5625rem;
  height: 0.575rem;
  cursor: pointer;
  display: block;
  background-color: var(--mainColor);
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.025rem;
  font-size: 0.2rem;
  text-align: center;
  line-height: 0.575rem;
  color: #ffffff;
}
.footer {
  width: 100%;
  height: auto;
  background-color: #4e4a49;
}
.footer .top {
  width: 100%;
  height: auto;
  padding: 1.125rem 0;
}
.footer .top .lt {
  width: 19%;
  margin-right: 25%;
}
.footer .top ul {
  flex: 1;
  justify-content: space-between;
}
.footer .top ul li {
  display: flex;
  flex-direction: column;
}
.footer .top .lt .logo {
  width: 2.1625rem;
  height: auto;
  object-fit: contain;
}
.footer .top .lt .com-ls30 {
  margin: 0.375rem 0 0.875rem 0;
}
.footerLink {
  width: fit-content;
}
.footerLink a {
  width: 0.475rem;
  height: 0.475rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.05rem;
  margin-right: 0.125rem;
  transition: all 0.3s;
}
.footerLink a:hover {
  background-color: var(--mainColor);
}
.footerLink a:nth-child(2) img {
  height: 0.1625rem;
}
.footerLink a img {
  width: auto;
  height: 0.2rem;
  object-fit: contain;
}
.footer .top li .name {
  font-size: 0.2rem;
  font-weight: 500;
  color: #ffffff;
}
.footer .top li a {
  font-size: 0.2rem;
  line-height: 0.45rem;
  letter-spacing: 0.0125rem;
  color: #ffffff;
  text-decoration: underline;
  transition: all 0.3s;
}
.footer .top li a:hover {
  color: var(--mainColor);
}
.footer .top li div {
  font-size: 0.2rem;
  cursor: pointer;
  line-height: 0.375rem;
  color: #ffffff;
}
.footer .top li:last-child {
  width: 32%;
}
.footer .bto {
  width: 100%;
  padding: 0.4rem 0;
}
.iderNavigation {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.25rem 0;
}
.iderNavigation a {
  font-size: 0.2rem;
  color: #000000;
  transition: all 0.3s;
}
.iderNavigation a.active,
.iderNavigation a.active::after,
.iderNavigation a:hover,
.iderNavigation a:hover::after {
  color: var(--mainColor);
}
.iderNavigation a::after {
  display: block;
  content: "/";
  font-size: 0.175rem;
  transition: all 0.3s;
  color: #000000;
  margin: 0 0.05rem;
}
.iderNavigation a:last-child::after {
  display: none;
}
.iderNavigation.inner {
  margin-top: 1.4375rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderContactBox1 {
  width: 98%;
  margin: 0 auto;
  padding: 0.5625rem 0 1rem 0;
  height: auto;
  background-color: var(--bg);
}
.iderContactBox1 .img {
  width: 11.525rem;
  height: auto;
}
.iderContactBox1 .img img {
  height: auto;
}
.iderContactBox1 .rt {
  flex: 1;
  padding: 0.25rem 1.625rem 0 0.6875rem;
}
.iderContactBox1 .rt .com-tl {
  font-size: 0.725rem;
}
.iderContactBox1 .rt .tl {
  font-size: 0.3rem;
  color: var(--mainColor);
  margin-bottom: 0.15rem;
}
.iderContactBox1Top {
  width: 100%;
  margin-top: 0.15rem;
  height: auto;
  gap: 0.5rem 0.275rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderContactBox1Top ul li {
  margin-bottom: 0.375rem;
}
.iderContactBox1Top li .name {
  font-size: 0.2rem;
  padding-bottom: 0.125rem;
  width: 100%;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid #9e9e9e;
  color: #000000;
}
.iderContactBox1Top li a,
.iderContactBox1Top li .eml {
  font-size: 0.25rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.iderContactBox1Top li .ls {
  font-size: 0.25rem;
  font-weight: 500;
  line-height: 0.375rem;
  letter-spacing: 0.0125rem;
  color: #000000;
}
.inputFile {
  margin-bottom: 0.25rem;
}
#file-upload {
  display: none;
}
.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.2875rem;
  height: 1.4rem;
  background-color: #f7f7f7;
  border-radius: 0.125rem;
  border: solid 1px #e5e5e5;
  cursor: pointer;
  transition: background 0.3s;
  margin: 0.25rem 0 0.15rem 0;
}

.upload-box:hover {
  background-color: #ededed;
}

.upload-text {
  font-size: 0.2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.upload-icon {
  color: #333;
}
.upload-icon img {
  width: 0.275rem;
  height: 0.275rem;
  object-fit: contain;
}
.file-list-container {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.file-item {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 5px;
  width: fit-content;
}

.file-item::before {
  content: "📄";
  margin-right: 8px;
}
.iderBnnaer {
  width: 100%;
  height: auto;
  position: relative;
}
.iderBnnaer .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

.iderBnnaer .text {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.iderBnnaer .text .lt {
  width: 45%;
}
.iderBnnaer .text .title {
  font-size: 0.75rem;
  line-height: 0.8125rem;
  color: #ffffff;
}
.iderBnnaer .text .ls {
  font-size: 0.375rem;
  line-height: 0.6rem;
  color: #f7f7f7;
  margin-top: 0.05rem;
}
.iderQuoteBox1 {
  width: 100%;
  height: auto;
  padding: 0.6rem 0 0.125rem 0;
  background-color: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.iderQuoteBox1 .con {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 0.625rem 0.85rem 0.75rem 0.8625rem;
}
.iderQuoteBox1 .title {
  font-size: 0.3rem;
  text-align: center;
  line-height: 0.45rem;
  width: 70%;
  margin: 0 auto;
  margin-top: 0.125rem;
  color: #000000;
}
.iderQuoteBox1 .text {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  background-color: rgba(115, 192, 14, 0.1);
  border-radius: 0.125rem;
  padding: 0.625rem;
}
.iderQuoteBox1 .text h3 {
  font-size: 0.3rem;
  font-weight: 500;
  color: #000000;
}
.iderQuoteBox1 .text p {
  font-size: 0.225rem;
  color: #000000;
  line-height: 0.375rem;
  margin-top: 0.25rem;
}
.iderQuoteBox1 .text span {
  color: var(--mainColor);
  font-weight: 500;
}
.iderQuoteBox2 {
  width: 100%;
  height: auto;
  padding: 0.125rem 0 0.625rem 0;
  background-color: var(--bg);
}
.iderQuoteBox2 .con {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 0.9375rem 0.5rem 0.75rem 0.5rem;
}
.iderQuoteBox2 .tl {
  font-size: 0.375rem;
  text-align: center;
  color: #000000;
}
.iderQuoteBox2 .title {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 0.1rem;
}
.iderQuoteBox2 ul {
  width: 100%;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(4.375rem, 1fr));
}
.iderQuoteBox2 li .icon {
  width: 0.825rem;
  height: auto;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
}
.iderQuoteBox2 li {
  padding: 0 0.25rem;
  border-right: 1px solid rgba(107, 106, 106, 0.1);
}
.iderQuoteBox2 li .name {
  font-size: 0.225rem;
  font-weight: 600;
  margin: 0.1875rem 0 0.125rem 0;
  color: #000000;
}
.iderQuoteBox2 li .com-ls24 {
  text-align: center;
}
.iderQuoteBox2 li:last-child {
  padding-right: 0;
  border-right: none;
}
.iderQuoteBox3 {
  width: 100%;
  background-color: var(--bg);
  height: auto;
  padding: 0.625rem 0 0.5rem 0;
}
.iderQuoteBox3 .rt {
  flex: 1;
}
.iderQuoteBox3 .lt {
  width: 35%;
  margin-right: 1.375rem;
}
.comQuotes {
  cursor: pointer;
  width: 4.5625rem;
  text-align: center;
  height: 0.7rem;
  line-height: 0.7rem;
  background-color: var(--mainColor);
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.35rem;
  font-size: 0.2rem;
  text-align: center;
  transition: all 0.3s;
  color: #ffffff;
}
.iderQuoteBox3 .lt .com-ls30 {
  margin: 0.125rem 0 0.5rem 0;
}
.iderQuoteBox3 .rt .dot {
  position: relative;
  width: 0.8rem;
  height: 0.75rem;
  margin-right: 0.025rem;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 0.125rem;
  border: solid 0.0125rem #e5e5e5;
}
.iderQuoteBox3 .rt .dot::after {
  display: block;
  content: "";
  width: 0.225rem;
  position: absolute;
  top: 50%;
  transition: all 0.3s;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.025rem;
  background-color: #7d7d7d;
}
.iderQuoteBox3 .rt .dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  display: block;
  content: "";
  width: 0.225rem;
  height: 0.025rem;
  background-color: #7d7d7d;
  transition: all 0.3s;
}
.iderQuoteBox3 .rt .item {
  width: 100%;
  align-items: flex-start;
  margin-bottom: 0.1125rem;
}
.iderQuoteBox3 .rt .con {
  flex: 1;
  cursor: pointer;
  height: auto;
  padding: 0.2rem 0.375rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
  transition: all 0.3s;
  border: solid 0.0125rem #e5e5e5;
}
.iderQuoteBox3 .rt .name {
  font-size: 0.2rem;
  font-weight: 500;
  transition: all 0.3s;
  color: #000000;
}
.iderQuoteBox3 .rt .item.active .dot {
  background-color: var(--mainColor);
}
.iderQuoteBox3 .rt .item.active .dot::after {
  background-color: #fff;
}
.iderQuoteBox3 .rt .item.active .dot::before {
  transform: translate(-50%, -50%) rotate(0);
  background-color: #fff;
}
.iderQuoteBox3 .rt .item.active .con {
  border-color: var(--mainColor);
}
.iderQuoteBox3 .rt .item.active .name {
  color: var(--mainColor);
}
.iderQuoteBox3 .rt .text {
  width: 100%;
  height: auto;
  display: none;
  padding: 0.375rem 0.375rem 0.375rem 0;
}

.iderQuoteBox4 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.375rem 0 0.3125rem 0;
}
.iderQuoteBox4 .com-card {
  position: relative;
}
.iderQuoteBox4 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderQuoteBox4 .text {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 50%;
  padding: 0.25rem 0 0.125rem 0.875rem;
  transform: translateY(-50%);
}
.iderQuoteBox4 .lt {
  width: 53%;
}
.iderQuoteBox4 .text .com-ls24 {
  margin: 0.1875rem 0 0.15rem 0;
  font-weight: 100;
}
.iderQuoteBox4 .text .comQuotes {
  margin-top: 0.3125rem;
}
.iderQuoteBox4 .text .tl {
  font-size: 0.6rem;
  line-height: 0.75rem;
  color: #ffffff;
}
.iderQuoteBox4 .text .ls {
  font-size: 0.225rem;
  line-height: 0.325rem;
  color: #ffffff;
}
.iderQuoteBox5 {
  width: 100%;
  background-color: var(--bg);
  height: auto;
  padding: 0.3125rem 0 0.125rem 0;
}
.iderQuoteBox5 .form {
  background-color: #ffffff;
  border-radius: 2px;
  padding: 1rem 1.225rem 1.25rem 1.25rem;
}

.iderQuoteBox5 .form button {
  margin: 0 auto;
  width: 4.5625rem;
  height: 0.7rem;
  line-height: 0.7rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.35rem;
  margin-top: 0.5rem;
}
.iderQuoteBox6 {
  width: 100%;
  background-color: var(--bg);
  height: auto;
  padding: 0.125rem 0 1.375rem 0;
}
.iderQuoteBox6 .con {
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 0.25rem 0.25rem 0.25rem 0.625rem;
}
.iderQuoteBox6 .con .img {
  width: 11.325rem;
  height: 7.55rem;
  background-color: #ffffff;
  border-radius: 0.025rem;
  overflow: hidden;
}
.iderQuoteBox6 .con .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.3125rem 1.25rem 1.125rem 0;
}
.iderQuoteBox6 .con .text .tl {
  font-size: 0.375rem;
  color: #000000;
}
.iderQuoteBox6 .con .text .com-ls30 p {
  margin-top: 0.25rem;
}
.iderQuoteBox6 .con .text .ls {
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 0.6rem;
  color: var(--mainColor);
}
.iderQuoteBox7 {
  width: 100%;
  position: relative;
  height: auto;
}
.iderQuoteBox7 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderQuoteBox7 .text {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.iderQuoteBox7 .text .tl {
  font-size: 0.6rem;
  font-weight: 500;
  color: #ffffff;
}
.iderQuoteBox7 .text .ls {
  font-size: 0.3rem;
  text-align: center;
  line-height: 0.45rem;
  width: 50%;
  color: #ffffff;
}
.iderQuoteBox7 .text .com-mores2 {
  margin-top: 0.3125rem;
}
.jumpLinkBox {
  width: 100%;
  height: 0.7625rem;
  background-color: var(--bg-4e);
}
.jumpLinkBox a {
  width: fit-content;
  padding: 0 0.375rem;
  height: 100%;
  margin-right: 1px;
  font-size: 0.2rem;
  line-height: 0.7625rem;
  font-weight: 600;
  color: var(--mainColor);
  transition: all 0.3s;
  min-width: 3.0625rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.jumpLinkBox a:hover,
.jumpLinkBox a.active {
  color: #fff;
  border-radius: 0.125rem 0.125rem 0px 0px;
  background-color: var(--mainColor);
}
.iderIndexBox3.inner {
  padding: 1.125rem 0;
}
.iderIndexBox3.inner .lt {
  width: 55%;
}
.iderWorkshopBox1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 1rem 0;
}
.iderWorkshopBox1 .navItem {
  width: 100%;
  height: auto;
  margin-top: 0.6875rem;
  border-bottom: 1px solid #d4d4d4;
}
.iderWorkshopBox1 .navItem .item {
  position: relative;
  font-size: 0.3rem;
  cursor: pointer;
  font-weight: 500;
  margin-right: 0.625rem;
  padding-bottom: 0.125rem;
  color: #000000;
}
.iderWorkshopBox1 .navItem .item.active {
  color: var(--mainColor);
}
.iderWorkshopBox1 .navItem .item.active::after {
  width: 100%;
}
.iderWorkshopBox1 .navItem .item:last-child {
  margin-right: 0;
}
.iderWorkshopBox1 .navItem .item::after {
  display: block;
  content: "";
  width: 0%;
  transition: all 0.3s;
  height: 0.0375rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--mainColor);
}
.iderWorkshopBox1Con {
  width: 100%;
  height: auto;
  margin-top: 0.6875rem;
}
.iderWorkshopBox1Con .item {
  display: none;
}
.iderWorkshopBox1Con .item ul {
  gap: 0.5rem 0.7125rem;
  grid-template-columns: repeat(auto-fit, minmax(6.125rem, 1fr));
}
.iderWorkshopBox1Con .item li {
  width: 100%;
  height: auto;
}
.iderWorkshopBox1Con .item li .img {
  width: 100%;
  height: 4.775rem;
  overflow: hidden;
  border-radius: 1px;
}
.iderWorkshopBox1Con .item li .name {
  width: 100%;
  font-size: 0.225rem;
  text-align: center;
  color: #000000;
  padding: 0.1875rem 0;
}
.iderWorkshopBox2 {
  width: 100%;
  height: auto;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderWorkshopBox2 ul {
  width: 100%;
  margin-top: 0.5rem;
  gap: 0.75rem 0.3rem;
  grid-template-columns: repeat(auto-fit, minmax(3.75rem, 1fr));
}
.iderWorkshopBox2 ul li {
  position: relative;
  width: 100%;
  height: auto;
}
.iderWorkshopBox2 li .img {
  height: 2.5875rem;
  overflow: hidden;
  width: 100%;
}
.iderWorkshopBox2 li .name {
  font-size: 0.2rem;
  padding: 0.1875rem 0.125rem;
  text-align: center;
  width: 100%;
  color: #000000;
}
.iderWorkshopBox2 li .dot {
  position: absolute;
  right: -0.5rem;
  bottom: -0.0625rem;
  width: 0.75rem;
  z-index: 2;
  height: 0.75rem;
  background-color: #ffffff;
  border: solid 0.125rem #f7f7f7;
  border-radius: 50%;
}
.iderWorkshopBox2 li:nth-child(5) .dot {
  right: auto;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  bottom: -0.675rem;
}
.iderWorkshopBox2 li:last-child .dot {
  display: none;
}
.iderWorkshopBox2 li .dot::after {
  display: block;
  content: "\2192";
  font-size: 26px;
  color: #000;
}

.iderWorkshopBox2 li:nth-child(n + 6):nth-child(-n + 10) .dot {
  transform: rotate(-180deg);
  bottom: 0.25rem;
}
.iderWorkshopBox3 {
  width: 100%;
  height: auto;
  padding: 1.625rem 0;
}
.iderWorkshopBox3 .img {
  width: 13.4125rem;
  height: 8.9rem;
  overflow: hidden;
  border-radius: 1px;
  transform: translateX(2rem);
}
.iderWorkshopBox3 .lt {
  flex: 1;
  /* padding: 0 0.9375rem 0 2.075rem; */
}
.iderWorkshopBox3 .lt ul {
  margin-top: 0.75rem;
}
.iderWorkshopBox3 .lt li .icon {
  display: block;
  width: 0.625rem;
  height: auto;
  object-fit: contain;
  margin-right: 0.5625rem;
  transition: all 0.3s;
}
.iderWorkshopBox3 .lt li {
  position: relative;
  width: 100%;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 0.175rem;
  border-bottom: 0.0125rem solid rgba(90, 89, 89, 0.3);
}
.iderWorkshopBox3 .lt li::after {
  display: block;
  content: "";
  width: 0.8875rem;
  height: 0.0125rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--mainColor);
}
.iderWorkshopBox3 .lt li .name {
  font-size: 0.2rem;
  margin-bottom: 0.0375rem;
  font-weight: 500;
  color: #000000;
}
.iderWorkshopBox4 {
  width: 100%;
  height: auto;
  padding: 1.125rem 0 1.875rem 0;
  background-color: var(--bg);
}
.iderWorkshopBox4 ul {
  width: 100%;
  margin-top: 0.75rem;
  gap: 0.5rem 0.4625rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderWorkshopBox4 li {
  width: 100%;
  height: 4.15rem;
  padding: 0.1875rem;
  background-color: #ffffff;
}
.iderWorkshopBox4 li .img {
  width: 4.05rem;
  height: 100%;
  overflow: hidden;
}
.iderWorkshopBox4 li .text {
  flex: 1;
  padding-left: 0.375rem;
}
.iderWorkshopBox4 li .text .name {
  font-size: 0.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.05rem;
}
.iderChooseBox1 .text .lt {
  width: 80%;
}
.iderChooseBox2 {
  width: 100%;
  height: auto;
  padding: 0.75rem 0 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderChooseBox2 .imgList {
  width: 6.6625rem;
  height: auto;
}
.iderChooseBox2 .imgList .img {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 0.25rem;
}
.iderChooseBox2 ul {
  flex: 1;
  padding-right: 0.8125rem;
  margin-top: 0.375rem;
  gap: 0.5rem 0.8125rem;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
}
.iderChooseBox2 ul li {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 0.225rem;
  border-top: 0.0125rem solid #e5e5e5;
}
.iderChooseBox2 ul li::after {
  display: block;
  content: "";
  width: 1.325rem;
  height: 0.0125rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--mainColor);
  border-radius: 0.0125rem;
}
.iderChooseBox2 li .name {
  font-size: 0.3rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 0.075rem;
}
.iderChooseBox2 li .ls {
  font-size: 0.225rem;
  color: #000;
  line-height: 0.375rem;
  color: #000000;
}
.iderChooseBox3 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.25rem 0 1.125rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderChooseBox3 .com-card {
  position: relative;
}
.iderChooseBox3 .img {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 7.1125rem;
  height: 10.45rem;
  overflow: hidden;
  border-radius: 0px 1.25rem 0px 0px;
}
.iderChooseBox3 .text {
  width: 100%;
  padding: 0.125rem 0 0 5.875rem;
}
.iderChooseBox3 .text .textCon {
  width: 100%;
  gap: 0.5875rem;
  margin-top: 0.625rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderChooseBox3 .text .name {
  font-size: 0.375rem;
  width: 100%;
  padding-bottom: 0.1875rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
}
.iderChooseBox3 .text .item li {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #000000;
}
.iderChooseBox3 .text .item li strong {
  font-size: 0.225rem;
  color: #000;
}
.iderChooseBox3 .text .item li > strong {
  font-style: italic;
}
.iderChooseBox4 {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  background: url(../picture/bg1.png) top center no-repeat;
  background-size: contain;
}
.iderChooseBox4 .com-tl {
  width: 70%;
  margin: 0 auto;
}
.iderChooseBox4 .title {
  width: 65%;
  margin: 0 auto;
  margin-top: 0.075rem;
}
.iderChooseBox4 ul {
  width: 100%;
  height: auto;
  margin-top: 0.8125rem;
  gap: 0.7125rem;
  grid-template-columns: repeat(auto-fit, minmax(6.125rem, 1fr));
}
.iderChooseBox4 ul li {
  width: 100%;
  overflow: hidden;
  height: 4.775rem;
  border-radius: 1px;
}
.iderChooseBox5 {
  width: 100%;
  height: auto;
  padding: 1.4375rem 0 1.875rem 0;
  background-color: var(--bg);
}
.iderChooseBox5 .img {
  width: 10.875rem;
  height: 9.475rem;
  padding: 0.375rem 0 0 0.5rem;
  border-radius: 1px 1px 1px 6.25rem;
  overflow: hidden;
  border: solid 1px var(--mainColor);
}
.iderChooseBox5 .text {
  flex: 1;
  padding: 0.125rem 1rem 0 0;
}
.iderChooseBox5 .text .ls,
.iderChooseBox5 .text .ls p {
  font-size: 0.3rem;
  line-height: 0.45rem;
  color: #000000;
}
.iderChooseBox5 .text .ls p {
  margin-top: 0.25rem;
}
.iderChooseBox5 .text .com-mores2 {
  margin-top: 2rem;
}
.iderChooseBox6 {
  width: 100%;
  height: auto;
  padding: 1.225rem 0;
  box-shadow: 0px 0px 0.1125rem 0px rgba(107, 107, 107, 0.22);
  border-radius: 1px;
  background-color: var(--bg);
}
.iderChooseBox6 ul {
  width: 100%;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
  margin-top: 0.6875rem;
}
.iderChooseBox6 ul li {
  width: 100%;
  height: 4.6125rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
  padding: 0.6875rem 0.5rem 0.5rem;
  transition: all 0.3s;
}
.iderChooseBox6 li .icon {
  width: auto;
  height: 0.875rem;
  object-fit: contain;
  transition: all 0.3s;
}
.iderChooseBox6 li .ls {
  font-size: 0.3rem;
  line-height: 0.45rem;
  text-align: center;
  margin-top: 0.375rem;
  color: #000000;
}
.iderChooseBox7 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 1.125rem 0 1.625rem 0;
}
.iderChooseBox7Con {
  width: 100%;
  height: 8.375rem;
  position: relative;
  margin-top: 1rem;
}
.iderChooseBox7Con .img {
  width: 13.6rem;
  position: absolute;
  top: 0;
  right: -2rem;
  height: 100%;
  overflow: hidden;
  border-radius: 1px;
}
.iderChooseBox7Con .text {
  width: 100%;
  height: auto;
  padding: 0.5625rem 13.0625rem 0 0;
}
.iderChooseBox7Con .text .tl {
  font-size: 0.375rem;
  line-height: 0.45rem;

  color: #000000;
}
.com-ls36,
.com-ls36 p,
.com-ls36 div {
  font-size: 0.225rem;
  line-height: 0.45rem;
  color: #000000;
}
.iderChooseBox7Con .text .com-ls36 p {
  margin-top: 0.3125rem;
}
.iderIntroductBox1 {
  width: 100%;
  height: auto;
  padding: 1.25rem 0 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderIntroductBox1 .img {
  width: 10rem;
  height: 5.1875rem;
  overflow: hidden;
}
.iderIntroductBox1 .text {
  flex: 1;
  padding: 0 1.5rem 0 0;
}
.iderIntroductBox1 .text .com-ls30 {
  margin-top: 0.15rem;
}
.iderNavigation.innerBr {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderIntroductBox2 {
  width: 100%;
  height: auto;
  background: url(../picture/bg1.png) right no-repeat;
  background-size: 10.25rem auto;
  padding: 1.2375rem 0 1.25rem 0;
}
.iderIntroductBox2 .img {
  width: 9.9875rem;
  overflow: hidden;
  height: 12.0375rem;
}
.iderIntroductBox2 .text {
  flex: 1;

  padding: 0.3125rem 0 0 1.25rem;
}
.iderIntroductBox2 .text .name {
  font-family: Caveat;
  font-size: 0.9rem;
  color: #000000;
}
.iderIntroductBox2 .text .tl {
  font-size: 0.3rem;
  margin: 0.1875rem 0 0.75rem 0;
  color: #000000;
  font-weight: 500;
}
.iderIntroductBox2 .text .ls {
  font-size: 0.3rem;
  line-height: 0.6rem;
  color: #000000;
}
.iderIntroductBox3 .text .lt {
  width: 50%;
}
.iderIntroductBox3 .text .ls {
  font-size: 0.3rem;
  line-height: 0.375rem;
}
.iderIntroductBox4 {
  width: 100%;
  height: auto;
  padding: 1.25rem 0 1.5rem 0;
}
.iderIntroductBox4 .com-tl {
  width: 100%;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.iderIntroductBox4Con {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.iderIntroductBox4Con .lt {
  width: 2.5rem;
}
.iderIntroductBox4Con .lt .title {
  font-size: 0.3rem;
  color: #000000;
}
.iderIntroductBox4Swiper1 {
  position: relative;
  width: 100%;
  height: 7.7875rem;
  overflow: hidden;
  padding-right: 0.15rem;
  margin-top: 0.125rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.iderIntroductBox4Swiper1 .img {
  width: 100%;
  height: 1.5rem;
  cursor: pointer;
  overflow: hidden;
}
.iderIntroductBox4Swiper1 .swiper-slide-thumb-active .name {
  text-decoration: underline;
  color: var(--mainColor);
}
.iderIntroductBox4Swiper1 .name {
  width: 100%;
  font-size: 0.2rem;
  color: #000000;
  padding: 0.05rem 0;
}
.iderIntroductBox4Swiper2 {
  width: calc(100% - 2.5rem);
  overflow: hidden;
}
.iderIntroductBox4Swiper2 .con {
  width: 100%;
  height: auto;
  padding-left: 0.4375rem;
}
.iderIntroductBox4Swiper2 .con .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-right: 0.625rem;
  padding-bottom: 1.625rem;
}
.iderIntroductBox4Swiper2 .con .name {
  font-size: 0.375rem;
  color: #000000;
  margin-bottom: 0.0625rem;
}
.iderIntroductBox4Swiper2 .img {
  width: 11.4375rem;
  overflow: hidden;
  height: 7.7875rem;
}
.iderIntroductBox5 {
  width: 100%;
  height: auto;
  position: relative;
}
.iderIntroductBox5 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderIntroductBox5 .text {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 0.75rem;
}
.iderIntroductBox5 .text ul {
  margin-top: 0.625rem;
  width: 50%;
}
.iderIntroductBox5 .text li {
  width: 100%;
  padding-bottom: 0.3125rem;
  margin-bottom: 0.3125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.iderIntroductBox5 .text li .icon {
  width: 0.5625rem;
  height: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s;
  margin-right: 0.3125rem;
}
.iderIntroductBox5 .text li .ls {
  font-size: 0.225rem;
  line-height: 0.375rem;
  color: #ffffff;
}
.iderIntroductBox6 {
  width: 100%;
  height: auto;
  padding: 1.5rem 0;
  background: url(../picture/bg1.png) left center no-repeat;
  background-size: 10.25rem auto;
  background-position-x: -26%;
}
.iderIntroductBox6Con {
  width: 100%;
  height: auto;
  margin-top: 1.875rem;
}
.iderIntroductBox6Swiper1 {
  width: 1.625rem;
  height: 6.25rem;
  overflow: visible;
  overflow-y: clip;
  padding-left: 0.125rem;
  border-left: 0.0125rem solid #e5e5e5;
}
.iderIntroductBox6Swiper1 .swiper-slide {
  cursor: pointer;
  display: flex;
  align-items: end;
}
.iderIntroductBox6Swiper1 .time {
  position: relative;
  font-size: 0.225rem;
  color: #000000;
  transition: all 0.3s;
  padding-left: 0.1875rem;
}
.iderIntroductBox6Swiper1 .time::before {
  display: block;
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
  z-index: 66;
  border-radius: 50%;
  background-color: #dbdbdb;
  transition: all 0.3s;
}

.iderIntroductBox6Swiper1 .swiper-slide-thumb-active .time {
  color: var(--mainColor);
  transform: scale(1.5);
}
.iderIntroductBox6Swiper1 .swiper-slide-thumb-active .time::before {
  left: -0.025rem;
  background-color: var(--mainColor);
}
.iderIntroductBox6Swiper2 {
  width: calc(100% - 1.625rem);
  height: auto;
  overflow: hidden;
}
.iderIntroductBox6Swiper2 .time {
  position: relative;
  font-size: 0.6rem;
  padding-bottom: 0.125rem;
  margin-bottom: 0.25rem;
  border-bottom: 0.0125rem solid #d9d9d9;
  font-weight: 500;
  color: #000000;
}
.iderIntroductBox6Swiper2 .text {
  flex: 1;
}
.iderIntroductBox6Swiper2 .ls {
  font-size: 0.375rem;
  line-height: 0.3rem;
  color: #000000;
}
.iderIntroductBox6Swiper2 .img {
  width: 9.4875rem;
  overflow: hidden;
  margin-left: 0.625rem;
  height: 6.7125rem;
  border-radius: 1px;
}
.iderIntroductBox6Swiper2 .time::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.0125rem;
  width: 4.7375rem;
  height: 0.0125rem;
  background-color: var(--mainColor);
  border-radius: 0.0125rem;
}
.iderWorkingBox1 .text .lt {
  width: 70%;
}
.iderWorkingBox1 .text .ls {
  font-size: 0.3rem;
  width: 65%;
  line-height: 0.6rem;
  color: #f7f7f7;
}
.iderWorkingBox1 .text .com-mores2 {
  margin-top: 0.25rem;
}
.iderWorkingBox2 {
  width: 100%;
  height: auto;
  padding: 1.125rem 0 0.8125rem 0;
}
.iderWorkingBox2 .com-card {
  align-items: flex-start;
}
.iderWorkingBox2 .Toplt {
  width: 3.625rem;
  height: auto;
  margin-right: 2rem;
  position: sticky;
  top: 0.25rem;
  z-index: 22;
}
.iderWorkingBox2 .Toplt .item {
  display: block;
  height: 0.675rem;
  background-color: #ffffff;
  border-radius: 0.0625rem;
  font-size: 0.2rem;
  text-align: center;
  cursor: pointer;
  line-height: 0.675rem;
  margin-bottom: 0.2rem;
  color: #000000;
  border: solid 1px #d9d9d9;
}
.iderWorkingBox2 .Toplt .item:hover,
.iderWorkingBox2 .Toplt .item.active {
  background-color: var(--mainColor);
  color: #fff;
}
.iderWorkingBox2 .Toprt {
  flex: 1;
}
.iderWorkingBox2 .Toprt .top {
  width: 100%;
}
.iderWorkingBox2 .Toprt .top .com-tl {
  flex: 1;
}
.iderWorkingBox2 .Toprt .top .com-ls24 {
  width: 50%;
  margin-left: 1.125rem;
}
.iderWorkingBox2 .Toprt .top .com-ls24 p {
  margin-bottom: 0.25rem;
}
.iderWorkingBox2 .Toprt .img {
  width: 8.025rem;
  height: auto;
}
.iderWorkingBox2 .Toprt .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.iderWorkingBox2Con {
  width: 100%;
  height: auto;
  padding-left: 2rem;
}
.iderWorkingBox2Swiper {
  width: 100%;
  height: auto;
  padding: 0.375rem 0;
  overflow: hidden;
}
.iderWorkingBox2Swiper .swiper-slide {
  width: 8.5625rem;
}
.iderWorkingBox2Swiper .con {
  width: 100%;
  height: 2.65rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 0.35rem 0.05rem rgba(101, 101, 101, 0.11);
  border-radius: 0.025rem;
}
.iderWorkingBox2Swiper .con .type {
  font-size: 0.225rem;
  color: #f7f7f7;
  margin-bottom: 0.25rem;
}
.iderWorkingBox2Swiper .con .text {
  flex: 1;
  height: 100%;
  padding: 0.375rem;
}
.iderWorkingBox2Swiper .con .lt {
  width: 3.0375rem;
  height: 100%;
  padding: 0.2875rem;
  background-color: var(--mainColor);
}
.iderWorkingBox2Swiper .con .name {
  font-size: 0.3rem;
  line-height: 0.375rem;
  color: #f7f7f7;
}
.iderWorkingBox2Swiper .bto {
  margin-top: 1rem;
}
.iderWorkingBox3 {
  width: 100%;
  height: auto;
  padding: 1.0625rem 0;
  background-color: var(--bg);
}
.iderWorkingBox3 .title {
  width: 50%;
  margin: 0 auto;
  margin-top: 0.1875rem;
  text-align: center;
}
.iderWorkingBox3Con .bto {
  text-align: center;
  width: 55%;
  margin: 0 auto;
  font-size: 0.3rem;
  margin-top: 0.5625rem;
  line-height: 0.45rem;
  color: #000000;
}
.iderWorkingBox3Con {
  width: 100%;
}

.iderWorkingBox3Con .tl {
  text-align: center;
  font-size: 0.3rem;
  margin: 1rem 0 0.375rem 0;
  color: #000000;
}

.iderWorkingBox3Con .con {
  position: relative;
  display: flex;
  flex-direction: column;
  counter-reset: step-counter;
}

.iderWorkingBox3Con .con::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0.025rem;
  height: 72%;
  background: #a3c639;
  transform: translateX(-50%);
}

.iderWorkingBox3Con .item {
  position: relative;
  width: 9.25rem;
  height: 3.925rem;
  background-color: #ffffff;
  box-shadow: 0px 0.0125rem 0.1625rem 0px rgba(101, 101, 101, 0.11);
  overflow: visible;
}

.iderWorkingBox3Con .item:nth-child(odd) {
  align-self: flex-start;
}

.iderWorkingBox3Con .item:nth-child(2n) {
  margin-top: -3.375rem;
  transform: translateY(1.875rem);
}
.iderWorkingBox3Con .item:nth-child(even) {
  align-self: flex-end;
}
.iderWorkingBox3Con .item::before {
  counter-increment: step-counter;
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  top: 0;
  width: 0.7625rem;
  height: 0.7625rem;
  background-color: #ffffff;
  color: var(--mainColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  z-index: 2;
}
.iderWorkingBox3Con .item:nth-child(odd)::before {
  right: -8%;
  transform: translateX(50%);
}

.iderWorkingBox3Con .item:nth-child(even)::before {
  left: -8%;
  transform: translateX(-50%);
}

.iderWorkingBox3Con .item::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
  border: 0.1625rem solid transparent;
}

.iderWorkingBox3Con .item:nth-child(odd)::after {
  right: -0.325rem;
  border-left-color: #fff;
}

.iderWorkingBox3Con .item:nth-child(even)::after {
  left: -0.325rem;
  border-right-color: #fff;
}
.iderWorkingBox3Con .item.flex {
  display: flex;
  align-items: stretch;
}
.iderWorkingBox3Con .item:nth-child(even) {
  flex-direction: row-reverse;
}

.iderWorkingBox3Con .item .img {
  width: 4.3875rem;
  height: 100%;
  overflow: hidden;
}

.iderWorkingBox3Con .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iderWorkingBox3Con .item .text {
  padding: 0.25rem;
  flex: 1;
}

.iderWorkingBox3Con .item .name {
  font-size: 0.3rem;
  margin-bottom: 0.1rem;
  line-height: 0.375rem;
  color: #000000;
  font-weight: 400;
}

.iderWorkingBox3Con .item ul {
  margin-top: 0.125rem;
  padding-left: 0.1875rem;
}

.iderWorkingBox3Con .item ul li {
  font-size: 0.175rem;
  line-height: 0.225rem;
  color: #000000;
  list-style: disc;
}
.iderWorkingBox3Con .item ul li::marker {
  color: var(--mainColor);
}
.iderWorkingBox3Con .item:first-child::before {
  background-color: var(--mainColor);
  color: #fff;
}
.iderWorkingBox4 {
  width: 100%;
  height: auto;
  padding: 1.25rem 0;
}
.iderWorkingBox4 .title {
  width: 75%;
  text-align: center;
  margin: 0 auto;
  margin-top: 0.1875rem;
}
.iderWorkingBox4Con {
  position: relative;
  width: 100%;
  min-height: 9.625rem;
  margin-top: 1.5rem;
}
.iderWorkingBox4Con .lt {
  flex: 1;
  padding: 0 56% 0 0;
}
.iderWorkingBox4Con .lt .con {
  border-left: 0.0125rem solid #d9d9d9;
}
.iderWorkingBox4Con .lt .tl {
  font-size: 0.375rem;
  line-height: 0.45rem;
  margin-bottom: 0.3125rem;
  color: #000000;
}
.iderWorkingBox4Con .lt .item {
  position: relative;
  width: 100%;
  height: auto;
}
.iderWorkingBox4Con .lt .item .name::after {
  display: block;
  content: "";
  position: absolute;
  left: -0.0563rem;
  z-index: 2;
  width: 0.1125rem;
  border-radius: 50%;
  height: 0.1125rem;
  background-color: #b2b2b2;
}
.iderWorkingBox4Con .lt .name {
  position: relative;
  font-size: 0.225rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  color: #000000;
  display: flex;
  align-items: center;
}
.iderWorkingBox4Con .lt .name::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  transform: rotate(-45deg);
  border-top: 0.1rem solid transparent;
  border-right: 0.1rem solid #b2b2b2;
  border-left: 0.1rem solid transparent;
  margin: 0.0625rem 0.125rem 0 0;
  transition: all 0.3s;
}
.iderWorkingBox4Con .imgList {
  width: 12rem;
  position: absolute;
  top: 0;
  right: -2rem;
  height: 9.6125rem;
  border-radius: 0.025rem;
}
.iderWorkingBox4Con .imgList .img {
  width: 100%;
  height: 100%;
  display: none;
  overflow: hidden;
}
.iderWorkingBox4Con .lt .item {
  margin-bottom: 0.3125rem;
}
.iderWorkingBox4Con .lt .item li {
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #000;
}
.iderWorkingBox4Con .lt .item .text {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0.125rem 0 0 0.3125rem;
}
.iderWorkingBox4Con .lt .item .text .com-ls30 {
  margin-bottom: 0.1875rem;
}
.iderWorkingBox4Con .lt .item li strong {
  color: var(--mainColor);
  font-weight: 300;
}
.iderWorkingBox4Con .lt .item.active .text {
  height: auto !important;
  overflow: visible;
}
.iderWorkingBox4Con .lt .item.active .name {
  color: var(--mainColor);
}
.iderWorkingBox4Con .lt .item.active .name::after {
  background-color: var(--mainColor);
}
.iderWorkingBox4Con .lt .item.active .name::before {
  border-right: 0.1rem solid var(--mainColor);
  transform: rotate(45deg);
  margin: 0 5px 10px 5px;
}
.iderWorkingBox4Con .lt .item.active::after {
  display: flex;
  content: "";
  height: 100%;
  width: 0.0375rem;
  position: absolute;
  left: -0.0187rem;
  top: 0;
  z-index: 2;
  background-color: var(--mainColor);
  border-radius: 0.025rem;
}
.iderWorkingBox4Con .lt .item.active .name::after {
  transform: scale(1.5);
}
.iderWorkingBox5 {
  border-bottom: none;
}
.iderWorkingBox5 ul {
  gap: 0.75rem 0.2875rem;
  grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
}
.iderWorkingBox5 li .img {
  height: 2.125rem;
}
.iderWorkingBox5 li:nth-child(5) .dot {
  right: -0.5rem;
  bottom: -0.0625rem;
  left: auto;
  transform: translate(0);
}
.iderWorkingBox5 li:nth-child(6) .dot {
  right: auto;
  left: 50%;
  transform: translateX(-50%) rotate(90deg) !important;
  bottom: -0.675rem !important;
}
.iderWorkingBox5 li:nth-child(n + 7):nth-child(-n + 11) .dot {
  transform: rotate(-180deg);
  bottom: 0.25rem;
}
.iderWorkingBox6 {
  width: 100%;
  height: auto;
  padding: 0.375rem 0 1.75rem 0;
}
.iderWorkingBox6 .title {
  width: 65%;
  text-align: center;
  font-size: 0.225rem;
  margin: 0 auto;
  margin-top: 0.15rem;
}
.iderWorkingBox6 ul {
  margin-top: 0.5625rem;
}
.iderWorkingBox6 li {
  width: 100%;
  height: auto;
  margin-bottom: 0.25rem;
}
.iderWorkingBox6 li .img {
  width: 10.55rem;
  height: 4.7875rem;
  overflow: hidden;
  border-radius: 2px;
}
.iderWorkingBox6 li .text {
  flex: 1;
  padding-left: 0.875rem;
}
.iderWorkingBox6 li .text .name {
  font-size: 0.3rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.15rem;
}
.iderWorkingBox7 {
  width: 100%;
  height: auto;
  padding-top: 1.125rem;
  background-color: var(--bg);
}
.iderWorkingBox7 .text {
  width: 8.95rem;
  margin-right: 1.125rem;
}
.iderWorkingBox7 .text .com-ls30 {
  font-size: 0.225rem;
  margin: 0.15rem 0 0.5rem 0;
}
.iderWorkingBox7 .text .img {
  width: 100%;
  height: 4.45rem;
  padding: 0.375rem 0.375rem 0 0.375rem;
  overflow: hidden;
  background-color: var(--mainColor);
  border-radius: 2px;
}
.iderWorkingBox7 ul {
  flex: 1;
}
.iderWorkingBox7 ul .icon {
  width: 0.75rem;
  height: auto;
  object-fit: contain;
  display: block;
  margin-right: 0.25rem;
  transition: all 0.3s;
}
.iderWorkingBox7 ul li {
  align-items: flex-start;
  margin-bottom: 0.625rem;
}
.iderWorkingBox7 ul li:hover .icon {
  transform: translateY(-10px);
}

.iderWorkingBox7 ul li .name {
  font-size: 0.2rem;
  margin-bottom: 0.05rem;
  font-weight: 600;
  color: #000000;
}
.iderWorkingBox8 {
  width: 100%;
  height: auto;
  padding: 2.125rem 0;
}
.iderWorkingBox8 .con {
  width: 100%;
  position: relative;
  min-height: 8.575rem;
}
.iderWorkingBox8 .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10.0375rem;
  overflow: hidden;
  height: 7.725rem;
  border-radius: 2px;
}
.iderWorkingBox8 .text {
  position: relative;
  width: 58%;
  padding: 0.75rem 2.125rem 0.25rem 0.5rem;
  background-color: rgba(137, 214, 37, 0.1);
}
.iderWorkingBox8 .text::after {
  display: block;
  content: "";
  width: 14%;
  border-radius: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  background-color: var(--mainColor);
  top: 0;
}
.iderWorkingBox8 .text .title {
  margin: 0.125rem 0 0.3125rem 0;
}
.iderWorkingBox8 .text .bto {
  font-size: 0.225rem;
  font-weight: 500;
  color: #000000;
}
.iderWorkingBox8 .text li {
  margin-bottom: 0.1875rem;
}
.iderWorkingBox8 .text li strong {
  font-weight: 500;
}
.iderPlanBox1 {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
  background-color: var(--bg);
}
.iderPlanBox1 .tl {
  font-size: 0.3rem;
  line-height: 0.45rem;
  text-align: center;
  width: 44%;
  margin: 0.3125rem auto 0.375rem auto;
  color: #000000;
}
.iderPlanBox1 .ls {
  font-size: 0.225rem;
  width: 59%;
  margin: 0 auto;
  text-align: center;
  line-height: 0.375rem;
  color: #000000;
}
.iderPlanBox1 .navItem {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  border-bottom: 0.0125rem solid rgba(0, 0, 0, 0.1);
}
.iderPlanBox1 .navItem .item {
  font-size: 0.3rem;
  position: relative;
  display: block;
  margin-right: 0.625rem;
  color: #000000;
  padding-bottom: 0.1875rem;
}
.iderPlanBox1 .navItem .item::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  transition: all 0.3s;
  height: 0.0375rem;
  background-color: var(--mainColor);
  bottom: -0.0187rem;
}
.iderPlanBox1 .navItem .item:hover::after,
.iderPlanBox1 .navItem .item.active::after {
  width: 100%;
}
.iderPlanBox1 .navItem .item:hover,
.iderPlanBox1 .navItem .item.active {
  color: var(--mainColor);
}
.iderPlanBox1Con {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  gap: 0.4125rem 0.3875rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderPlanBox1Con .item {
  width: 100%;
  height: auto;
}
.iderPlanBox1Con .item .img {
  display: block;
  width: 100%;
  height: 6.475rem;
  overflow: hidden;
}
.iderPlanBox1Con .item .text {
  width: 100%;
  height: 1.75rem;
  transition: all 0.3s;
  padding: 0.125rem 0.4125rem 0.125rem 0.35rem;
  background-color: #ffffff;
}
.iderPlanBox1Con .item .text .name {
  display: block;
  font-size: 0.3rem;
  transition: all 0.3s;
  margin-bottom: 0.05rem;
  color: #000000;
}
.iderPlanBox1Con .item .text .mores {
  font-size: 0.2rem;
  color: #000000;
  transition: all 0.3s;
}
.iderPlanBox1Con .item .text .mores::after {
  display: block;
  content: "\2192";
  margin-left: 0.175rem;
  font-size: 0.25rem;
  transition: all 0.3s;
  color: #000;
}
.iderPlanBox1Con .item .text .com-ls30 {
  width: 50%;
}
.iderPlanBox1Con .item .text .bto {
  align-items: baseline;
}
.iderPlanBox1Con .item:hover .text {
  background-color: var(--mainColor);
}
.iderPlanBox1Con .item:hover .name,
.iderPlanBox1Con .item:hover .com-ls30,
.iderPlanBox1Con .item:hover .mores,
.iderPlanBox1Con .item:hover .mores::after {
  color: #fff;
}
.iderPlanBox2 {
  width: 100%;
  height: auto;
  padding: 1.875rem 0;
  background-color: var(--bg);
}
.iderPlanBox2Con {
  width: 100%;
  margin-top: 0.15rem;
}
.iderPlanBox2 .lt {
  width: 6.9rem;
  height: auto;
  margin-right: 1.25rem;
}
.iderPlanBox2 .lt .com-ls30 {
  margin-bottom: 0.375rem;
}
.iderPlanBox2 .rt {
  flex: 1;
}
.iderPlanBox2Con .lt .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderPlanBox2Con li .img {
  width: 0.5875rem;
  height: 0.5875rem;
  background-color: var(--mainColor);
  border-radius: 0.1375rem;
  margin-right: 0.375rem;
  transition: all 0.3s;
}
.iderPlanBox2Con li .img img {
  width: 0.4375rem;
  height: auto;
  transition: all 0.3s;
  object-fit: contain;
}
.iderPlanBox2Con li {
  width: 100%;
  height: auto;
  padding: 0.25rem 0 0.375rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.iderPlanBox2Con li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.iderPlanBox2Con li .name {
  font-size: 0.225rem;
  width: 33%;
  line-height: 0.375rem;
  color: #000000;
}
.iderPlanBox2Con li .com-ls30 {
  flex: 1;
  margin-left: 0.9375rem;
}
.iderPlanBox2Con li:hover .img {
  transform: translateX(-10px);
}

.iderPlanBox3 {
  padding: 1rem 0;
  overflow: hidden;
}
.iderPlanBox3 .title {
  text-align: center;
  font-size: 0.225rem;

  color: #4e4a49;
  margin: 0 auto;
  margin-top: 0.175rem;
}
.iderPlanBox3Con {
  width: 100%;
  height: auto;
  margin-top: 0.5625rem;
}
.iderPlanBox3Con .item,
.iderPlanBox3Con .item ul {
  width: 100%;
  height: auto;
}

.iderPlanBox3Con .item li {
  width: 3.1375rem !important;
  height: 2.1125rem;
  margin: 0 0.2125rem 0.1875rem 0;
}
.iderPlanBox3Con .item li .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.iderPlanBox3Con .item li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.iderPlanBox3Con .item .tempWrap {
  width: 100% !important;
}

.iderPlanDelBox1 {
  width: 100%;
  height: auto;
  padding: 0.25rem 0 0.375rem 0;
}
.iderPlanDelBox1 .text li {
  font-size: 0.225rem;
  padding: 0.1875rem 0;
  color: #000000;
  border-bottom: 1px solid #e5e5e5;
}
.iderPlanDelBox1 .text .com-mores2 {
  margin-top: 0.375rem;
}
.iderPlanDelBox2 {
  width: 100%;
  height: auto;
  padding: 0.4375rem 0 0.625rem 0;
}
.iderPlanDelBox2Swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderPlanDelBox2Swiper .img {
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
  vertical-align: bottom;
}
.iderPlanDelBox2-pagination {
  margin-top: 2.5%;
}
.iderPlanDelBox2-pagination .swiper-pagination-bullet {
  opacity: 1;
  transition: all 0.3s;
}
.iderPlanDelBox2-pagination .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}
.iderPlanDelBox3 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.625rem 0 1.75rem 0;
}
.iderPlanDelBox3::after {
  display: block;
  content: "";
  width: 100%;
  height: 2.8375rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--bg);
}
.iderPlanDelBox3 ul {
  width: 100%;
  height: auto;
  gap: 0.5rem;
  margin-top: 0.625rem;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
}
.iderPlanDelBox3 ul li {
  width: 100%;
  height: 4.025rem;
  border-radius: 0.025rem;
  overflow: hidden;
}
.iderPlanDelBox4 {
  width: 100%;
  height: auto;
  padding: 0.625rem 0;
}
.iderPlanDelBox4 .item {
  width: 100%;
  height: auto;
  margin-bottom: 0.5625rem;
  border-bottom: 2px solid var(--bg);
}
.iderPlanDelBox4 .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.iderPlanDelBox4 .item:last-child {
  border-bottom: none;
}
.iderPlanDelBox4 .text {
  width: 37%;
  margin-right: 1.375rem;
  background: url(../picture/bg1.png) top center no-repeat;
  background-size: contain;
}
.iderPlanDelBox4 .item:nth-child(2n) .text {
  margin: 0 0 0 1.375rem;
}
.iderPlanDelBox4 .text .com-ls30 {
  margin: 0.15rem 0 0.375rem 0;
}
.iderPlanDelBox4 .img {
  flex: 1;
  height: auto;
  overflow: hidden;
}
.iderPlanDelBox4 .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.5s;
}
.iderPlanDelBox5 {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  background-color: var(--bg);
}
.iderPlanDelBox5 .title {
  width: 65%;
  margin: 0 auto;
  text-align: center;
  margin-top: 0.175rem;
}
.iderPlanDelBox5 ul {
  width: 100%;
  height: auto;
  gap: 0.3625rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  margin-top: 0.8125rem;
}
.iderPlanDelBox5 ul li {
  width: 100%;
  height: 5.7375rem;
  border-radius: 0.025rem;
  overflow: hidden;
}
.iderPlanDelBox6 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.5rem 0 0.875rem 0;
}
.iderPlanDelBox6 ul {
  width: 100%;
  height: auto;
  gap: 0.3625rem;
  grid-template-columns: repeat(auto-fit, minmax(4.625rem, 1fr));
  margin-top: 0.75rem;
}
.iderPlanDelBox6 ul li {
  width: 100%;
  height: 8.0125rem;
  border-radius: 0.125rem;
  overflow: hidden;
}
.iderPlanDelBox7 .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 5.5rem;
  padding: 0.25rem 0.25rem 0.4375rem 0.25rem;
}
.iderPlanDelBox7 .item .com-ls24 {
  text-align: center;
  margin: 0 auto;
  margin-top: 0.1875rem;
  width: 80%;
}
.iderPlanDelBox8 {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  border-bottom: 2px solid var(--bg);
}
.iderPlanDelBox8 .title {
  text-align: center;
  font-size: 0.225rem;
  color: #4e4a49;
}
.iderPlanDelBox8Con {
  width: 99%;
  margin: 0 auto;
  height: auto;

  margin-top: 0.625rem;
}
.iderPlanDelBox8Swiper {
  width: 100%;
  height: auto;
  overflow: visible;
  overflow-x: clip;
}
.iderPlanDelBox8Swiper .swiper-slide {
  display: flex;
  width: auto;
}
.iderPlanDelBox8Swiper .maxImg {
  height: 5.2625rem;
  width: 6.275rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(4, 0, 0, 0.36);
  border: solid 0.125rem #ffffff;
  margin-right: 0.375rem;
  overflow: hidden;
  border-radius: 0.125rem;
}
.iderPlanDelBox8Swiper .minImg {
  flex: 1;
  height: 5.2625rem;
  overflow: hidden;
  border-radius: 0.125rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(4, 0, 0, 0.36);
  border: solid 0.125rem #ffffff;
}
.iderPlanDelBox8Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  vertical-align: bottom;
}
.iderPlanDelBox8Swiper .bto {
  margin-top: 0.875rem;
}
.iderPlanDelBox9 {
  width: 100%;
  height: auto;
  padding: 1rem 0;
}
.iderPlanDelBox9 ul {
  width: 100%;
  height: auto;
  gap: 0.3375rem;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
  margin-top: 0.75rem;
}
.iderPlanDelBox9 ul li {
  width: 100%;
  height: auto;
  position: relative;
}
.iderPlanDelBox9 li .img {
  display: block;
  width: 100%;
  height: 5.125rem;
  border-radius: 0.025rem;
  overflow: hidden;
}
.iderPlanDelBox9 li .text {
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  padding: 0.25rem;
  align-items: end;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.iderPlanDelBox9 li .name {
  display: block;
  font-size: 0.3rem;
  color: #ffffff;
}
.iderPlanDelBox9 li .mores {
  transition: all 0.3s;
  font-size: 0.2rem;
  color: #ffffff;
}
.iderPlanDelBox9 li:hover .mores {
  text-decoration: underline;
}
.iderPlanDelBox9 li .mores::after {
  display: block;
  content: "\2192";
  font-size: 0.2rem;
  margin-left: 0.15rem;
  color: #ffffff;
}
.iderPlanDelBox10 .iderIndexBox1Con {
  margin-top: 0.6875rem;
}
.iderPlanDelBox10 .item {
  width: 9.7375rem !important;
  height: 6.5rem;
  margin: 0 0.525rem 0.125rem 0;
}
.iderPlanDelBox10 .item:nth-child(2n) {
  margin-right: 0;
}
.iderProductDelBox1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
}
.iderProductDelBox1Swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderProductDelBox1Swiper .swiper-slide {
  width: 12.7125rem;
  height: auto;
}
.iderProductDelBox1Swiper .img {
  width: 100%;
  height: 6.9375rem;
  overflow: hidden;
}
.iderProductDelBox1Swiper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.iderProductDelBox1-pagination {
  margin-top: 0.3125rem;
}
.iderProductDelBox1-pagination .swiper-pagination-bullet {
  width: 0.525rem;
  height: 0.0375rem;
  background-color: #a1a1a1;
  border-radius: 0.025rem;
  transition: all 0.3s;
  opacity: 0.3;
}
.iderProductDelBox1-pagination .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
  opacity: 1;
}
.iderProductDelBox1Con {
  padding: 0.5rem 0 1.25rem 0;
}
.iderProductDelBox1Con .title {
  width: 82%;
  margin: 0 auto;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 300;
  line-height: 0.75rem;
  color: #000000;
}
.iderProductDelBox1Con .com-ls30 {
  width: 65%;
  text-align: center;
  margin: 0.125rem auto 0.375rem auto;
}
.iderProductDelBox1Con .downs {
  width: 2.925rem;
  height: 0.6875rem;
  line-height: 0.6875rem;
  border-radius: 0.35rem;
  border: solid 1px #bfbfbf;
  font-size: 0.2rem;
  color: #000000;
  margin-left: 0.25rem;
  transition: all 0.3s;
}
.iderProductDelBox1Con .downs::before {
  display: block;
  content: "";
  width: 0.325rem;
  height: 0.325rem;
  background: url(../images/im4-5.png) no-repeat;
  background-size: contain;
  margin-right: 0.15rem;
}
.iderProductDelBox2 {
  padding-top: 0.25rem;
  width: 100%;
  z-index: 22;
  background-color: var(--bg);
}
.iderProductDelBox2.fixed {
  position: fixed;
  top: 0;

  background-color: var(--bg);
  box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.6);
}
.iderProductDelBox2 .com-card {
  border-bottom: 0.0125rem solid #d4d4d4;
}
.iderProductDelBox2 a {
  position: relative;
  font-size: 0.225rem;
  display: block;
  margin-right: 0.625rem;
  padding-bottom: 0.25rem;
  color: rgba(0, 0, 0, 0.7);
}
.iderProductDelBox2 a:last-child {
  margin-right: 0;
}
.iderProductDelBox2 a:hover {
  color: var(--mainColor);
}
.iderProductDelBox2 a:hover::after,
.iderProductDelBox2 a.active::after {
  width: 100%;
}
.iderProductDelBox2 a::after {
  display: block;
  position: absolute;
  content: "";
  height: 0.0375rem;
  transition: all 0.3s;
  width: 0%;
  left: 0;
  bottom: -0.0187rem;
  background-color: var(--mainColor);
}
.iderProductDelBox2Item1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 1rem 0 0.75rem 0;
}
.iderProductDelBox2Item1 .com-ls30 {
  font-size: 0.225rem;
  margin-top: 0.2125rem;
}
.iderProductDelBox2Item2 {
  background-color: var(--bg);
  width: 100%;
  height: auto;
  padding: 0.75rem 0;
}
.iderProductDelBox2Item2 .title {
  font-size: 0.3rem;
  line-height: 0.375rem;
  margin: 0.5625rem 0 0.375rem 0;
  color: #000000;
}
.iderProductDelBox2Item2 .table {
  width: 100%;
  height: auto;
  overflow-x: auto;
}
.iderProductDelBox2Item2 table {
  border: solid 1px #e5e5e5;
  overflow-x: auto;
}
table {
  width: 100% !important;
  overflow-x: auto;
}
table tr td {
  height: 0.975rem !important;
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #000000;
  transition: all 0.3s;
  padding: 0 0.375rem;
  background-color: rgba(85, 82, 82, 0.1);
}
table tr:nth-child(2n) td {
  background-color: var(--bg);
  border-right: 1px solid #fff;
}
.iderProductDelBox2Item3 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.75rem 0 0.875rem 0;
}
.iderProductDelBox2Item3 ul {
  width: 100%;
  margin-top: 0.475rem;
  gap: 0.5rem 0.3rem;
  grid-template-columns: repeat(auto-fit, minmax(4.75rem, 1fr));
}
.iderProductDelBox2Item3 ul li {
  width: 100%;
}
.iderProductDelBox2Item3 li .img {
  position: relative;
  width: 100%;
  height: 2.25rem;
  overflow: hidden;
}
.iderProductDelBox2Item3 li .name {
  text-align: center;
  font-size: 0.225rem;
  padding: 0.1rem;
  color: #6a6a6a;
}
.iderProductDelBox2Item3 li .text {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.225rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #000000;
  background-color: #e3e3e1;
  transition: all 0.3s;
}
.iderProductDelBox2Item3 li .text::after {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  z-index: 2;
  border-radius: 25px 0 0 0;
  background: url(../images/im4-6.png) no-repeat;
  background-size: 0.2rem 0.15rem;
  background-position-y: 0.325rem;
  background-position-x: 0.2625rem;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.iderProductDelBox2Item3 li:hover .text {
  height: 100%;
  overflow: visible;
}
.iderProductDelBox2Item4 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.5rem 0 0.75rem 0;
}
.iderProductDelBox2Item4Con {
  margin-top: 0.5rem;
}
.iderProductDelBox2Item4Con img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderProductDelBox2Item5 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.625rem 0 1rem 0;
}
.iderProductDelBox2Item5Con {
  width: 100%;
  height: 7.8875rem;
  margin-top: 0.75rem;
}
.iderProductDelBox2Item5Con .img {
  width: 10.5125rem;
  height: 100%;
  overflow: hidden;
}
.iderProductDelBox2Item5Con .text {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5625rem 1rem 0.75rem 0.75rem;
  background-color: #fff;
}
.iderProductDelBox2Item5Con .text .title {
  font-size: 0.6rem;
  line-height: 0.75rem;
  margin-bottom: 0.15rem;
  color: #000000;
}
.iderProductDelBox2Item5Con .imgList img {
  width: 1.25rem;
  max-height: 1.25rem;
  object-fit: contain;
  display: block;
  margin-right: 0.1125rem;
}
.iderProductDelBox2Item6 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.75rem 0 0.375rem 0;
}
.iderProductDelBox2Item6Con {
  margin-top: 0.5rem;
}
.iderProductDelBox2Item6Con img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderProductDelBox3 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.625rem 0 1rem 0;
}
.iderProductDelBox4 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.75rem 0;
}
.iderProductDelBox4 ul {
  width: 100%;
  height: auto;
  margin-top: 0.375rem;
  gap: 0.3125rem 0;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
}
.iderProductDelBox4 ul li {
  width: 100%;
  height: auto;
  padding: 0 0.25rem;
  transition: all 0.3s;
  border-right: 1px solid #e5e5e5;
}
.iderProductDelBox4 li .img {
  display: block;
  width: 100%;
  height: 4.3125rem;
  overflow: hidden;
}
.iderProductDelBox4 li .time {
  font-size: 0.2rem;
  color: #4d4d4d;
}
.iderProductDelBox4 li .text {
  width: 100%;
  height: auto;
  transition: all 0.3s;
  background-color: #ffffff;
  padding: 0.15rem 0.625rem 0.5rem 0.3rem;
}
.iderProductDelBox4 li .name {
  font-size: 0.25rem;
  line-height: 0.375rem;
  color: #272727;
  transition: all 0.3s;
  margin: 0.15rem 0 0.1875rem 0;
}
.iderProductDelBox4 li:nth-child(3n) {
  padding-right: 0;
  border-right: none;
}
.iderProductDelBox4 li:first-child {
  padding-left: 0;
}
.iderProductDelBox4 li .mores {
  font-size: 0.2rem;
  display: block;
  letter-spacing: 0.0125rem;
  color: #838383;
  margin-top: 0.625rem;
  transition: all 0.3s;
}
.iderProductDelBox4 li:hover .name {
  color: var(--mainColor);
  text-decoration: underline;
}
.iderProductDelBox4 li:hover .mores {
  color: var(--mainColor);
}
.iderProductDelBox5 {
  padding: 0.375rem 0 1.125rem 0;
}
.iderProductBox1 {
  width: 100%;
  background-color: var(--bg);
  height: auto;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.iderProductBox1 ul {
  width: 100%;
  gap: 0.3625rem 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(9.625rem, 1fr));
}
.iderProductBox1 ul li {
  width: 100%;
  height: auto;
}
.iderProductBox1 li .img {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 6.125rem;
}
.iderProductBox1 li .text {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.1875rem 0.4375rem 0.3625rem 0;
}
.iderProductBox1 li .text .name {
  font-size: 0.375rem;
  color: #000000;
  display: block;
}
.iderProductBox1 li .text .com-ls30 {
  margin: 0.125rem 0 0.175rem 0;
}
.iderProductBox1 li .text .com-mores2 {
  background-color: transparent;
  border: solid 1px #bfbfbf;
  color: #563b20;
}
.iderProductBox1 li:hover .com-mores2 {
  background-color: var(--mainColor);
  color: #fff;
}
.iderProductBox2 {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  border-bottom: 0.075rem solid var(--bg);
}
.iderProductBox2 .title {
  width: 50%;
  margin: 0 auto;
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.225rem;
}
.iderProductBox2Swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.625rem;
}
.iderProductBox2Swiper .img {
  width: 100%;
  height: 1.5rem;
  background-color: #ffffff;
  padding: 0.2rem;
  box-shadow: 0px 0px 0.35rem 0.05rem rgba(101, 101, 101, 0.05);
  border-radius: 0.0625rem;
}
.iderProductBox2Swiper .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.iderProductBox2-pagination {
  margin-top: 0.75rem;
}
.iderProductBox2-pagination .swiper-pagination-bullet {
  width: 0.1625rem;
  height: 0.1625rem;
  background-color: #aaaaaa;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.iderProductBox2-pagination .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}
.iderProductBox3 {
  width: 100%;
  height: auto;
  padding: 1.25rem 0;
}
.iderProductBox3 .lt {
  width: 6.35rem;
  height: auto;
  margin-right: 1.125rem;
}
.iderProductBox3 .lt .img {
  width: 100%;
  height: 8.075rem;
  overflow: hidden;
  position: relative;
  margin-top: 0.475rem;
}
.iderProductBox3 .lt .icon {
  position: absolute;
  left: 0.375rem;
  top: 0.3125rem;
  width: 1.5rem;
  height: auto;
  object-fit: contain;
  z-index: 2;
  transition: all 0.3s;
}
.iderProductBox3 ul {
  flex: 1;
  gap: 0.625rem 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderProductBox3 ul li {
  width: 100%;
  position: relative;
  padding: 0.25rem 0 0 0;
  border-top: 0.0125rem solid #e5e5e5;
}
.iderProductBox3 ul li::after {
  display: block;
  content: "";
  width: 1.325rem;
  height: 0.0125rem;
  position: absolute;
  left: 0;
  top: -0.0125rem;
  background-color: var(--mainColor);
  border-radius: 1px;
}
.iderProductBox3 li .name {
  font-size: 0.3rem;
  color: #000000;
  margin-bottom: 0.125rem;
}
.iderProductBox3 li .com-ls30 {
  font-size: 0.225rem;
}
.iderClassificationBox1 {
  width: 100%;
  height: auto;
  padding: 0.875rem 0 1.25rem 0;
  background-color: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.iderClassificationBox1 .top .com-tl {
  flex: 1;
  margin-right: 2%;
}
.iderClassificationBox1 .top .rt {
  width: 56%;
}
.iderClassificationBox1 .top .rt .com-mores2 {
  margin-top: 0.3125rem;
}
.iderClassificationBox1 .bottom {
  width: 100%;
  margin-top: 1.5rem;
}
.iderClassificationBox1 .bottom .navItem a {
  display: block;
  font-size: 0.3rem;
  margin-right: 1rem;
  color: #000000;
  position: relative;
  padding-bottom: 0.25rem;
}
.iderClassificationBox1 .bottom .navItem a:hover,
.iderClassificationBox1 .bottom .navItem a.active,
.iderClassificationBox2 .navItem .item:hover,
.iderClassificationBox2 .navItem .item.active {
  color: var(--mainColor);
}
.iderClassificationBox1 .bottom .navItem a:hover::after,
.iderClassificationBox1 .bottom .navItem a.active::after,
.iderClassificationBox2 .navItem .item:hover::after,
.iderClassificationBox2 .navItem .item.active::after {
  width: 100%;
}
.iderClassificationBox1 .bottom .navItem {
  border-bottom: 0.0125rem solid #d4d4d4;
}

.iderClassificationBox1 .bottom .navItem a::after,
.iderClassificationBox2 .navItem .item::after {
  position: absolute;
  left: 0;
  bottom: -0.025rem;
  display: block;
  content: "";
  width: 0;
  transition: all 0.3s;
  height: 0.0375rem;
  background-color: var(--mainColor);
}
.iderClassificationBox2 {
  width: 100%;
  height: auto;
  padding: 1.125rem 0;
}
.iderClassificationBox2 .navItem {
  width: 100%;
  border-bottom: 0.0125rem solid #d4d4d4;
}
.iderClassificationBox2 .navItem .item {
  cursor: pointer;
  position: relative;
  font-size: 0.3rem;
  padding-bottom: 0.25rem;
  color: #000000;
  margin-right: 0.75rem;
}
.iderClassificationBox1 .bottom .navItem a:last-child,
.iderClassificationBox2 .navItem .item:last-child {
  margin-right: 0;
}
.iderClassificationBox2Con {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.iderClassificationBox2Con .iderProductDelBox2Item5Con {
  margin: 0;
}
.iderClassificationBox2Con .item {
  display: none;
}
.iderPlanDelBox8.inner {
  background-color: var(--bg);
}
.iderClassificationBox3 {
  width: 100%;
  height: auto;
  padding-top: 1.25rem;
}
.iderClassificationBox3 .top {
  justify-content: space-between;
}
.iderClassificationBox3 .top .com-ls30 {
  width: 50%;
}
.iderClassificationBox3 .videos {
  width: 100%;
  position: relative;
  height: auto;
  margin-top: 1.875rem;
  cursor: pointer;
  overflow: hidden;
}
.iderClassificationBox3 .videos .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.5s;
  vertical-align: bottom;
}
.iderClassificationBox3 .videos .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.425rem;
  object-fit: contain;
  transition: all 0.5s;
  height: 1.425rem;
  border-radius: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.iderClassificationBox3 .videos .logo {
  position: absolute;
  left: 0.65rem;
  top: 0.375rem;
  z-index: 3;
  width: 1.5rem;
  height: auto;
  object-fit: contain;
  transition: all 0.3s;
}
.iderClassificationBox4 {
  width: 100%;
  height: auto;
  padding: 1rem 0;
}
.iderClassificationBox4 ul {
  width: 100%;
  margin-top: 1.25rem;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
}
.iderClassificationBox4 li .icon {
  display: block;
  width: auto;
  height: 1.075rem;
  object-fit: contain;
  transition: all 0.3s;
}
.iderClassificationBox4 li:hover .icon {
  transform: translateY(-10px);
}
.iderClassificationBox4 li .name {
  font-size: 0.3rem;
  color: #000000;
  margin: 0.175rem 0 0.875rem 0;
}
.iderClassificationBox4 li .com-ls30 {
  font-size: 0.225rem;
  text-align: center;
}
.iderProductDelBox4.inner {
  background-color: #fff;
}
.iderProductDelBox4 ul li:hover .text {
  box-shadow: 0px 0.1125rem 0.475rem 0px rgba(108, 108, 108, 0.14);
}
/* 最外层固定容器，负责锁定屏幕 */
.iderGuideBox1 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
}
.iderGuideBox1 .com-card {
  width: 14.875rem;
}
.iderGuideBox1 .con {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  opacity: 1;
  transition:
    transform 3s cubic-bezier(0.7, 0, 0.3, 1),
    opacity 1s ease-in 1s;
  will-change: transform, opacity;
}

.iderGuideBox1 .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.iderGuideBox1 .text {
  position: relative;
  z-index: 2;
  width: 100%;
  top: 10%;
  text-align: center;
}

.iderGuideBox1 .text .tl {
  font-weight: 600;
  text-align: right;
  font-size: 0.675rem;
  line-height: 0.6rem;
  color: #000;
}
.iderGuideBox1.is-active .con {
  transform: scale(5);
  opacity: 0;
}

/* #endregion */
/* #region  Response style */

@media screen and (max-width: 1024px) {
  html {
    font-size: 70px !important;
  }
  .header,
  .footer .top ul li,
  .iderWorkshopBox2 li .dot,
  .iderWorkingBox8 .text::after,
  .iderChooseBox3 .img,
  .iderIndexBox5Con .item .dot {
    display: none;
  }
  .com-card {
    width: 100% !important;
    padding: 0 4%;
  }
  body {
    padding-top: 60px;
  }
  .ideDetailsBox2.fixed {
    top: 60px;
  }

  .mobileHeader {
    background-color: #4e4a49;
    background-image: var(--bg-img);
    display: flex;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  .headerSwiper .text .title,
  .iderBnnaer .text .title,
  .com-tl,
  .iderIndexBox4 .text .title,
  .iderIndexBox7 .form .title,
  .iderQuoteBox7 .text .tl,
  .iderContactBox1 .rt .com-tl,
  .iderQuoteBox2 .tl,
  .iderQuoteBox4 .text .tl,
  .iderQuoteBox6 .con .text .tl,
  .iderProductDelBox2Item5Con .text .title,
  .iderProductDelBox1Con .title {
    font-size: 18px;
    line-height: 1.2;
  }
  .iderIntroductBox2 .text .ls,
  .iderIntroductBox6Swiper2 .ls,
  .iderContactBox1Top li .ls {
    font-size: 14px;
    line-height: 25px;
  }
  .iderIndexBox1Con .item .text .name,
  .iderWorkingBox3Con .tl,
  .iderWorkingBox6 li .text .name,
  .iderPlanBox1 .navItem .item,
  .iderClassificationBox1 .bottom .navItem a,
  .iderClassificationBox2 .navItem .item,
  .iderProductDelBox2Item2 .title,
  .iderChooseBox2 li .name,
  .iderChooseBox3 .text .name,
  .iderChooseBox7Con .text .tl,
  .iderWorkshopBox1 .navItem .item,
  .iderWorkshopBox4 li .text .name,
  .iderPlanDelBox9 li .name {
    font-size: 16px;
  }
  .headerSwiper .text .ls {
    margin: 2% 0;
  }
  .min-tl {
    height: 30px;
    line-height: 30px;
  }
  .headerSwiper .text .ls,
  .headerSwiper .text .lss,
  .iderIndexBox2 .tl,
  .iderIndexBox6Swiper .con .name,
  .iderIntroductBox3 .text .ls,
  .iderIntroductBox2 .text .tl,
  .iderIntroductBox4Swiper2 .con .name,
  .iderBnnaer .text .ls,
  .iderQuoteBox1 .title,
  .iderQuoteBox6 .con .text .ls,
  .iderQuoteBox7 .text .ls,
  .iderWorkingBox2Swiper .con .name,
  .iderWorkingBox3Con .item .name,
  .iderWorkingBox3Con .bto,
  .iderWorkingBox4Con .lt .tl,
  .iderPlanBox1 .tl,
  .iderPlanBox1Con .item .text .name,
  .iderProductBox1 li .text .name,
  .iderProductBox3 li .name,
  .iderClassificationBox4 li .name,
  .iderProductDelBox4 li .name,
  .iderChooseBox5 .text .ls,
  .iderChooseBox5 .text .ls p,
  .iderChooseBox6 li .ls {
    font-size: 16px;
    line-height: 1.2;
  }
  .iderIndexBox3Con .item .counter,
  .iderIndexBox3Con .item .em,
  .iderIntroductBox2 .text .name {
    font-size: 30px;
  }
  .com-mores,
  .com-mores2 {
    width: fit-content !important;
    padding: 0 20px;
    height: 38px !important;
    line-height: 38px !important;
    text-align: center;
  }
  .iderGuideBox1 .text .tl {
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
  .headerSwiper .text .con .lt,
  .iderIndexBox2 .tl,
  .iderIndexBox2 .title,
  .iderIndexBox3 .top .lt,
  .iderIndexBox4 .text .title,
  .iderIndexBox5 .title,
  .iderIndexBox6 .title,
  .iderIndexBox7 .img,
  .iderIntroductBox3 .text .lt,
  .iderIntroductBox1 .img,
  .iderIntroductBox4Con .lt,
  .iderIntroductBox4Swiper2,
  .iderIntroductBox4Swiper2 .img,
  .iderIntroductBox6Swiper1,
  .iderIntroductBox6Swiper2 .img,
  .iderIntroductBox6Swiper2,
  .iderContactBox1 .img,
  .iderBnnaer .text .lt,
  .iderQuoteBox1 .title,
  .iderQuoteBox2 .title,
  .iderQuoteBox3 .lt,
  .iderQuoteBox6 .con .img,
  .iderQuoteBox7 .text .ls,
  .iderWorkingBox1 .text .ls,
  .iderWorkingBox2 .Toplt,
  .iderWorkingBox2 .Toprt .top .com-ls24,
  .iderWorkingBox2Swiper .con .lt,
  .iderWorkingBox3 .title,
  .iderWorkingBox3Con .item,
  .iderWorkingBox3Con .bto,
  .iderWorkingBox4 .title,
  .iderWorkingBox4Con .imgList,
  .iderWorkingBox6 .title,
  .iderWorkingBox6 li .img,
  .iderWorkingBox7 .text,
  .iderWorkingBox8 .text,
  .iderWorkingBox8 .img,
  .iderPlanBox1 .tl,
  .iderPlanBox1 .ls,
  .iderPlanBox2 .lt,
  .iderProductBox2 .title,
  .iderProductBox3 .lt,
  .iderClassificationBox1 .top .rt,
  .iderProductDelBox2Item5Con .img,
  .iderClassificationBox3 .top .com-ls30,
  .iderProductDelBox1Con .title,
  .iderProductDelBox1Con .com-ls30,
  .iderChooseBox2 .imgList,
  .iderChooseBox4 .title,
  .iderChooseBox7Con .img,
  .iderWorkshopBox3 .img,
  .iderPlanDelBox4 .text,
  .iderPlanDelBox5 .title,
  .iderPlanDelBox7 .item .com-ls24 {
    width: 100%;
  }
  .iderQuoteBox4 .lt {
    width: 90%;
  }
  .iderIndexBox2Swiper .img,
  .iderIndexBox3Con .item .videos,
  .iderIndexBox5Con .item .img,
  .iderIndexBox6Swiper .con .img,
  .iderIndexBox7,
  .iderIndexBox7 .img,
  .iderIntroductBox1 .img,
  .iderIntroductBox2 .img,
  .iderIntroductBox4Swiper1,
  .iderIntroductBox4Swiper2 .img,
  .iderIntroductBox4Swiper1 .img,
  .iderIntroductBox6Swiper1,
  .iderIntroductBox6Swiper2 .img,
  .iderQuoteBox6 .con .img,
  .iderWorkingBox2Swiper .con,
  .iderWorkingBox4Con .imgList,
  .iderWorkshopBox2 li .img,
  .iderWorkingBox5 li .img,
  .iderWorkingBox6 li .img,
  .iderWorkingBox7 .text .img,
  .iderWorkingBox8 .img,
  .iderPlanBox1Con .item .img,
  .iderPlanBox1Con .item .text,
  .iderProductBox1 li .img,
  .iderProductBox3 .lt .img,
  .iderProductDelBox2Item5Con,
  .iderProductDelBox2Item5Con .img,
  .iderProductDelBox4 li .img,
  .iderProductDelBox1Swiper .img,
  .iderProductDelBox2Item3 li .img,
  .iderChooseBox4 ul li,
  .iderChooseBox5 .img,
  .iderChooseBox6 ul li,
  .iderChooseBox7Con,
  .iderWorkshopBox1Con .item li .img,
  .iderWorkshopBox3 .img,
  .iderPlanDelBox3 ul li,
  .iderPlanDelBox5 ul li,
  .iderPlanDelBox6 ul li,
  .iderPlanDelBox9 li .img {
    height: auto;
  }

  .iderIndexBox1,
  .iderIndexBox2,
  .iderIndexBox3,
  .iderIndexBox5,
  .iderIndexBox6,
  .footer .top,
  .iderIntroductBox1,
  .iderIntroductBox2,
  .iderIntroductBox4,
  .iderIntroductBox6,
  .iderContactBox1,
  .iderQuoteBox3,
  .iderWorkingBox2,
  .iderWorkingBox3,
  .iderWorkingBox4,
  .iderWorkshopBox2,
  .iderWorkingBox8,
  .iderPlanBox1,
  .iderPlanBox2,
  .iderPlanBox3,
  .iderProductBox1,
  .iderProductBox2,
  .iderProductBox3,
  .iderClassificationBox1,
  .iderClassificationBox2,
  .iderPlanDelBox8,
  .iderClassificationBox4,
  .iderProductDelBox4,
  .iderProductDelBox1Con,
  .iderProductDelBox2Item1,
  .iderProductDelBox2Item2,
  .iderProductDelBox2Item3,
  .iderProductDelBox2Item4,
  .iderProductDelBox2Item5,
  .iderProductDelBox2Item6,
  .iderProductDelBox3,
  .iderChooseBox2,
  .iderChooseBox3,
  .iderChooseBox4,
  .iderChooseBox5,
  .iderChooseBox6,
  .iderChooseBox7,
  .iderIndexBox3.inner,
  .iderWorkshopBox1,
  .iderWorkshopBox3,
  .iderWorkshopBox4,
  .iderPlanDelBox2,
  .iderPlanDelBox1,
  .iderPlanDelBox3,
  .iderPlanDelBox4,
  .iderPlanDelBox5,
  .iderPlanDelBox6,
  .iderPlanDelBox9 {
    padding: 20px 0;
  }
  .iderQuoteBox1,
  .iderQuoteBox2 {
    padding: 20px 0 10px 0;
  }
  .iderQuoteBox5,
  .iderQuoteBox6,
  .iderWorkingBox6 {
    padding: 0 0 20px 0;
  }
  .iderWorkingBox2Swiper {
    padding: 0;
  }
  .iderWorkingBox7,
  .iderClassificationBox3 {
    padding-top: 20px;
  }
  .iderIndexBox2Con .com-mores2,
  .iderIndexBox3Con,
  .iderIndexBox3Con .item ul,
  .iderIndexBox5Con,
  .iderIndexBox6Con,
  .iderIndexBox6Con .bto,
  .iderIntroductBox4Con,
  .iderIntroductBox6Con,
  .iderQuoteBox1 .text,
  .iderQuoteBox2 ul,
  .iderQuoteBox6 .con .img,
  .iderWorkingBox2Swiper .bto,
  .iderWorkingBox3Con .bto,
  .iderWorkingBox4Con,
  .iderWorkshopBox2 ul,
  .iderWorkingBox6 ul,
  .iderWorkingBox7 ul,
  .iderPlanBox1 .navItem,
  .iderPlanBox1Con,
  .iderPlanBox3Con,
  .iderProductBox2Swiper,
  .iderProductBox2-pagination,
  .iderClassificationBox1 .bottom,
  .iderPlanDelBox8Con,
  .iderPlanDelBox8Swiper .bto,
  .iderClassificationBox3 .videos,
  .iderClassificationBox4 ul,
  .iderProductDelBox4 ul,
  .iderProductDelBox4 li .mores,
  .iderClassificationBox2Con,
  .iderProductDelBox2Item3 ul,
  .iderProductDelBox2Item4Con,
  .iderProductDelBox2Item5Con,
  .iderProductDelBox2Item6Con,
  .iderChooseBox2 .imgList,
  .iderChooseBox3 .text .textCon,
  .iderChooseBox4 ul,
  .iderChooseBox5 .text .com-mores2,
  .iderChooseBox5 .img,
  .iderChooseBox6 ul,
  .iderChooseBox7Con,
  .iderChooseBox7Con .img,
  .iderWorkshopBox1 .navItem,
  .iderWorkshopBox1Con,
  .iderWorkshopBox3 .lt ul,
  .iderWorkshopBox4 ul,
  .iderPlanDelBox3 ul,
  .iderPlanDelBox5 ul,
  .iderPlanDelBox6 ul,
  .iderPlanDelBox9 ul,
  .iderPlanDelBox10 .iderIndexBox1Con {
    margin-top: 15px;
  }
  .iderIndexBox3 .top,
  .iderIndexBox7,
  .jumpLinkBox .com-card,
  .iderIntroductBox1 .com-card,
  .iderIntroductBox2 .com-card,
  .iderIntroductBox4Con,
  .iderIntroductBox4Swiper2 .con,
  .iderIntroductBox6Con,
  .iderIntroductBox6Swiper2 .con,
  .iderContactBox1,
  .iderQuoteBox3 .com-card,
  .iderQuoteBox6 .con,
  .iderWorkingBox2 .com-card,
  .iderWorkingBox2 .Toprt .top,
  .iderWorkingBox2Swiper .con,
  .iderWorkingBox4Con,
  .iderWorkingBox6 li,
  .iderWorkingBox7 .com-card,
  .iderWorkingBox8 .con,
  .iderPlanBox1Con .item .text .bto,
  .iderPlanBox1 .navItem,
  .iderPlanBox2Con,
  .iderPlanBox2Con li,
  .iderProductBox3 .com-card,
  .iderClassificationBox1 .top,
  .iderClassificationBox1 .bottom .navItem,
  .iderProductDelBox2Item5Con,
  .iderClassificationBox3 .top,
  .iderChooseBox2Con,
  .iderChooseBox3 .com-card,
  .iderChooseBox5 .com-card,
  .iderChooseBox7Con,
  .iderWorkshopBox3 .com-card,
  .iderPlanDelBox4 .item {
    flex-wrap: wrap;
  }
  .jumpLinkBox .com-card {
    justify-content: flex-start;
  }
  .iderIndexBox7 .form,
  .iderIntroductBox1 .text,
  .iderIntroductBox2 .text,
  .iderIntroductBox4Swiper2 .con .text,
  .iderIntroductBox6Swiper2 .text,
  .iderContactBox1 .rt,
  .iderQuoteBox3 .rt,
  .iderQuoteBox6 .con .text,
  .iderWorkingBox4Con .lt,
  .iderWorkingBox6 li .text,
  .iderWorkingBox7 ul,
  .iderPlanBox1Con .item .text .com-ls30,
  .iderClassificationBox1 .top .com-tl,
  .iderProductDelBox2Item5Con .text,
  .iderChooseBox2 ul,
  .iderChooseBox5 .text,
  .iderPlanDelBox4 .img {
    flex: none;
    width: 100%;
  }
  .iderIndexBox7 .form {
    padding: 2% 4%;
  }
  .iderIndexBox1 .navItem .item img {
    height: 40px;
  }
  .iderIndexBox1Con .item {
    width: 100% !important;
    height: auto;
    margin-right: 0 !important;
  }
  .iderIndexBox1 .navItem {
    margin: 10px 0 15px 0;
  }
  .iderIndexBox1 .navItem .item .name,
  .iderIndexBox3 .top .com-mores2 {
    margin-top: 10px;
  }
  .iderIndexBox2Con {
    width: 96%;
    margin-top: 15px;
  }
  .iderIndexBox3Con .item .icon {
    width: 48px;
    height: 48px;
  }
  .iderIndexBox3Con,
  .iderWorkshopBox4 ul {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .formCon,
  .iderQuoteBox5 .form,
  .iderWorkingBox2Swiper .con .lt {
    padding: 2%;
  }
  .footer .top ul li:last-child {
    display: flex;
  }
  .footer .top li:last-child {
    width: 100%;
  }
  .footer .top .lt {
    width: 33%;
    margin-right: 4%;
  }
  .footer .bto {
    padding: 4% 0;
  }
  .jumpLinkBox {
    height: auto;
  }
  .jumpLinkBox a {
    line-height: 40px;
    margin: 0 2px 2px 0;
  }
  .iderIntroductBox1 .text {
    padding: 0;
    margin-bottom: 15px;
  }
  .iderIntroductBox2 .text {
    padding: 15px 0 0;
  }
  .iderIntroductBox2 .text .tl {
    margin: 10px 0 15px 0;
  }
  .iderIntroductBox4Swiper2 .con,
  .iderQuoteBox6 .con .text {
    padding: 0;
  }
  .iderIntroductBox4Swiper2 .con .text {
    padding: 3% 0;
  }
  .iderIntroductBox5 .text li {
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
  .iderIntroductBox6Swiper2 .img {
    margin: 15px 0 0;
  }
  .iderIntroductBox5 .text li .icon {
    width: 30px;
    margin-right: 10px;
  }
  .iderIntroductBox6Swiper2 .time {
    font-size: 20px;
    padding-bottom: 8px;
    margin-bottom: 5px;
  }
  .iderIntroductBox6Swiper2 {
    margin-top: 15px;
  }
  .iderIntroductBox6Swiper1 {
    border-right: none;
    overflow: hidden;
  }
  .iderIntroductBox6Swiper1 .time {
    margin-left: 15px;
  }
  .iderQuoteBox7 .text .com-mores2,
  .iderPlanBox1Con .item .text .mores,
  .iderClassificationBox3 .top .com-ls30 {
    margin-top: 10px;
  }
  .iderContactBox1 .rt,
  .iderQuoteBox1 .con,
  .iderQuoteBox1 .text,
  .iderQuoteBox2 .con,
  .iderQuoteBox6 .con,
  .iderWorkingBox2Swiper .con .text,
  .iderWorkingBox2Swiper .con .lt,
  .iderWorkingBox8 .text {
    padding: 4%;
  }
  .iderNavigation.inner {
    margin: 0;
  }
  .iderQuoteBox2 ul,
  .iderWorkshopBox2 ul {
    gap: 15px;
  }
  .iderQuoteBox3 .lt .com-ls30 {
    margin: 10px 0 15px 0;
  }
  .iderQuoteBox2 li .icon {
    width: 40px;
  }
  .iderQuoteBox6 .con .text .com-ls30 p {
    margin-top: 5px;
  }
  .iderQuoteBox3 .lt {
    margin: 0 0 15px 0;
  }
  .comQuotes {
    width: fit-content;
    padding: 0 25px;
    height: 38px;
    line-height: 38px;
  }
  .iderQuoteBox7 .text .ls,
  .iderProductBox3 .lt .img,
  .iderChooseBox7Con .text .com-ls36 p {
    margin-top: 8px;
  }
  .iderQuoteBox7 .bg {
    height: 35vh;
  }
  .iderWorkingBox2 .Toplt {
    top: 60px;
    margin: 0;
    gap: 0 10px;
    position: static;
    padding-top: 10px;
    display: grid;
    background-color: #fff;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .iderWorkingBox2 .Toprt .top .com-ls24 {
    margin: 8px 0 0;
  }
  .iderWorkingBox2 .Toprt .top .com-ls24 p,
  .iderWorkingBox2Swiper .con .type {
    margin-bottom: 5px;
  }
  .iderWorkingBox2Con {
    padding: 0 4%;
  }
  .iderWorkingBox3Con .tl {
    margin: 10px 0 15px 0;
  }
  .iderWorkingBox3Con .item {
    margin: 0 0 14px 0 !important;
    transform: translateX(0) !important;
  }
  .iderWorkingBox3Con .item::after,
  .iderWorkingBox3Con .con::before,
  .iderWorkingBox3Con .item::before {
    display: none;
  }
  .iderWorkingBox4Con .imgList,
  .iderWorkingBox8 .img,
  .iderChooseBox7Con .img {
    position: static;
  }
  .iderWorkingBox4Con .lt,
  .iderChooseBox5 .text {
    padding: 0;
  }
  .iderWorkingBox5 ul {
    gap: 12px;
  }
  .iderWorkingBox6 li .text {
    padding: 4% 0 3% 0;
  }
  .iderWorkingBox7 .text {
    margin: 0 0 15px 0;
  }
  .iderWorkingBox7 .text .com-ls30 {
    margin: 5px 0 14px 0;
  }
  .iderWorkingBox7 ul li {
    margin-bottom: 12px;
  }
  .iderWorkingBox7 ul .icon {
    width: 40px;
    margin-right: 7px;
  }
  .iderPlanBox1 .tl {
    margin: 8px 0;
  }
  .iderPlanBox1 .navItem .item {
    margin-right: 3%;
  }
  .iderPlanBox1 .navItem .item {
    padding-bottom: 8px;
    margin-bottom: 5px;
  }
  .iderPlanBox1 .navItem {
    justify-content: flex-start;
  }
  .iderPlanBox2 .lt {
    margin: 0 0 15px 0;
  }
  .iderPlanBox2 .lt .com-ls30 {
    margin-bottom: 10px;
  }
  .iderPlanBox2Con li {
    padding: 8px 0;
  }
  .iderPlanBox2Con li .com-ls30 {
    margin-left: 3%;
  }
  .iderProductBox1 li .text {
    padding: 8px 0 10px 0;
  }
  .iderProductBox1 ul,
  .iderProductBox3 ul,
  .iderProductDelBox4 ul,
  .iderProductDelBox2Item3 ul,
  .iderChooseBox4 ul,
  .iderChooseBox6 ul,
  .iderWorkshopBox1Con .item ul,
  .iderPlanDelBox3 ul,
  .iderPlanDelBox6 ul,
  .iderPlanDelBox9 ul {
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }

  .iderProductBox3 .lt {
    margin: 0 0 15px 0;
  }
  .iderClassificationBox1 .top .com-tl {
    margin: 0 0 10px 0;
  }
  .iderClassificationBox1 .bottom .navItem a {
    padding-bottom: 8px;
    margin-right: 3%;
  }
  .iderProductDelBox2Item5Con .text {
    padding: 4% 0 0;
  }
  .iderProductDelBox2Item5Con .imgList img {
    width: 58px;
  }
  .iderPlanDelBox8Swiper .maxImg {
    width: 60%;
    margin-right: 2%;
    height: auto;
    max-height: 400px;
  }
  .iderPlanDelBox8Swiper .minImg {
    flex: none;
    height: auto;
    width: 38%;
    max-height: 400px;
  }
  .iderClassificationBox3 .videos .icon {
    width: 50px;
    height: 50px;
  }
  .iderClassificationBox4 ul {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(35%, 1fr));
  }
  .iderClassificationBox4 li .name {
    margin: 8px 0 12px 0;
  }
  .iderClassificationBox4 li .icon {
    height: 50px;
  }
  .iderProductDelBox4 li .text {
    padding: 3% 3% 4% 3%;
  }
  .iderProductDelBox4 ul li {
    padding: 0 !important;
    border-right: none;
  }
  .iderClassificationBox2 .navItem .item {
    padding-bottom: 8px;
  }
  .iderProductDelBox1Con .downs {
    height: 38px;
    width: fit-content;
    padding: 0 25px;
  }
  .iderProductDelBox2 a {
    margin: 0 3% 5px 0;
    padding-bottom: 6px;
  }
  .iderProductDelBox2.fixed {
    top: 60px;
  }
  .iderProductDelBox2Item2 .title {
    margin: 7px 0 10px 0;
  }
  .iderProductDelBox2Item5 .iderProductDelBox2Item5Con .text {
    padding: 3%;
  }
  .iderChooseBox2 ul {
    gap: 15px;
    padding: 0;
  }
  .iderChooseBox3 .text,
  .iderChooseBox7Con .text {
    padding: 0;
  }
  .iderChooseBox6 li .icon {
    height: 45px;
  }
  .iderWorkshopBox3 .img {
    transform: translateX(0);
  }
  .iderWorkshopBox3 .lt li .icon {
    width: 35px;
    margin-right: 10px;
  }
  .iderPlanDelBox1 .text li {
    padding: 7px 0;
  }
  .iderPlanDelBox4 .text,
  .iderPlanDelBox4 .item:nth-child(2n) .text {
    margin: 0;
  }
  .iderPlanDelBox4 .item:nth-child(2n) .text {
    margin-bottom: 15px;
  }
  .iderPlanDelBox4 .item {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .headerSwiper .com-mores {
    margin-top: 10px;
  }
  .header-pagination {
    bottom: 2% !important;
  }
  .iderIndexBox1 .navItem {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .iderIndexBox1 .navItem .item {
    width: calc(100% / 3);
    margin: 0 0 10px 0;
  }
  .iderIndexBox2Swiper .con.active {
    margin-top: 6%;
  }
  .iderIndexBox5Con {
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .iderIndexBox6Swiper .con {
    padding-right: 10px;
  }
  .formCon .item,
  .footer .top,
  .footer .bto,
  .iderWorkingBox3Con .item.flex,
  .iderWorkshopBox4 li,
  .iderPlanDelBox9 li .text {
    flex-wrap: wrap;
  }
  .iderWorkingBox3Con .item,
  .iderWorkshopBox4 li,
  .iderWorkshopBox4 li .img {
    height: auto;
  }
  .iderWorkingBox3Con .item .text,
  .iderWorkshopBox4 li .text {
    flex: none;
    width: 100%;
  }
  .formCon .itemInput,
  .iderIntroductBox2 .img,
  .iderIntroductBox5 .text ul,
  .iderWorkingBox2 .Toprt .img,
  .iderChooseBox5 .img {
    width: 100%;
  }
  .footer .top .lt {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .iderIntroductBox5 .text ul {
    margin-top: 15px;
  }
  .footer .top .lt .com-ls30 {
    margin: 15px 0;
  }
  .iderIntroductBox5 .text {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .iderQuoteBox4 .bg {
    height: 40vh;
  }
  .iderChooseBox3 .text .textCon {
    gap: 15px;
  }
  .iderQuoteBox5 .form button {
    width: 50%;
    margin-top: 15px;
  }
  .iderProductBox1 ul,
  .iderChooseBox3 .text .textCon {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .iderClassificationBox3 .videos .logo {
    width: 60px;
  }
  .iderWorkshopBox4 li .text {
    padding: 3% 0;
  }
  .iderPlanDelBox9 li .text {
    height: 40%;
    padding: 10px;
  }
}
@media screen and (max-width: 500px) {
  .iderIndexBox1 .navItem .item {
    width: calc(100% / 2);
  }
  .jumpLinkBox a,
  .iderPlanBox1 .navItem .item,
  .iderPlanBox2Con li .name,
  .iderPlanBox2Con li .name {
    width: 100%;
    margin-right: 0;
  }
  .iderIndexBox1Con .item .text {
    height: auto;
    padding: 2%;
    width: 96%;
    left: 2%;
  }
  .iderIndexBox4 .bg {
    height: 35vh;
  }
  .iderIndexBox5Con .item {
    height: auto;
    padding: 3%;
  }
  .iderIndexBox5Con .item .img {
    margin-top: 15px;
  }
  .iderIndexBox5Con,
  .iderClassificationBox4 ul,
  .iderProductDelBox4 ul,
  .iderProductDelBox2Item3 ul,
  .iderChooseBox6 ul,
  .iderWorkshopBox1Con .item ul,
  .iderPlanDelBox3 ul,
  .iderPlanDelBox9 ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .iderContactBox1Top,
  .iderPlanBox1Con,
  .iderProductBox3 ul,
  .iderPlanDelBox5 ul {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .iderIndexBox5Con .item .dot {
    display: none;
  }
  .formCon button {
    width: 70%;
  }
  .iderPlanBox1 .navItem {
    display: grid;
    gap: 0 5px;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .footer .bto .com-ls30,
  .iderQuoteBox7 .text .tl {
    width: 100%;
    text-align: center;
  }
  .iderContactBox1Top ul li {
    margin-bottom: 10px;
  }
  .iderIntroductBox5 .bg,
  .iderQuoteBox7 .bg {
    height: 35vh;
  }
  .iderWorkingBox3Con .item .img,
  .iderWorkshopBox4 li .img {
    width: 100%;
    height: auto;
  }
  .iderQuoteBox3 .rt .con {
    padding: 8px 3%;
  }
  .iderQuoteBox4 .text {
    left: 4%;
    padding: 2%;
  }
  .iderProductBox2Swiper .img {
    height: auto;
    min-height: 90px;
  }
  .iderQuoteBox3 .rt .dot {
    height: 39px;
    width: 40px;
  }
  .iderPlanBox2Con li .com-ls30 {
    margin-left: 0%;
  }
  .iderPlanBox2Con li .name {
    margin: 10px 0;
  }
}
@media screen and (max-width: 420px) {
  .headerSwiper .bg {
    height: 40vh;
  }
  .iderIndexBox2Swiper .con.active {
    margin-top: 0;
  }
  .iderIndexBox6Swiper .con {
    border-right: none;
    padding: 0 10px;
  }
  .iderIndexBox6Swiper .con .text {
    padding: 3% 2% 4% 2%;
  }
  .iderIndexBox6Swiper .con .com-ls24 {
    margin: 10px 0 15px 0;
  }
  .iderBnnaer .bg {
    height: 45vh;
  }
  .iderQuoteBox4 .bg {
    height: 60vh;
  }
  .iderClassificationBox1 .bottom .navItem a {
    margin-bottom: 4px;
  }
  .iderClassificationBox1 .bottom .navItem {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 360px) {
  .headerSwiper .bg {
    height: 60vh;
  }
  .iderIndexBox1 .navItem .item {
    width: 100%;
  }
  .iderIntroductBox5 .bg {
    height: 60vh;
  }
  .iderQuoteBox4 .bg {
    height: 85vh;
  }
  .iderQuoteBox7 .bg {
    height: 55vh;
  }
  .iderPlanBox1 .navItem,
  .iderChooseBox4 ul,
  .iderPlanDelBox6 ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
/* #endregion  Response style */
