@font-face {
  font-family: 'icomoon';
  src: url('../font/icomoon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon', serif !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-avatar:before {
  content: "\e900";
}
.icon-magnifying-glass:before {
  content: "\e901";
}
.icon-pin:before {
  content: "\e902";
}
.icon-email:before {
  content: "\e903";
}
.icon-phone:before {
  content: "\e904";
}
.icon-shopping-cart:before {
  content: "\e905";
}
.icon-right-arrow:before {
  content: "\e906";
}
.icon-innovation:before {
  content: "\e907";
}
.icon-cyber-security:before {
  content: "\e908";
}
.icon-webpage:before {
  content: "\e909";
}
.icon-check:before {
  content: "\e90a";
}
.icon-computer:before {
  content: "\e90b";
}
.icon-conversation:before {
  content: "\e90c";
}
.icon-app-development:before {
  content: "\e90d";
}
.icon-cloud-storage:before {
  content: "\e90e";
}
.icon-social-media:before {
  content: "\e90f";
}
.icon-artificial-intelligence:before {
  content: "\e910";
}
.icon-ai:before {
  content: "\e911";
}
.icon-right-quote:before {
  content: "\e912";
}
.icon-customer:before {
  content: "\e913";
}
.icon-play-button:before {
  content: "\e914";
}
.icon-learning:before {
  content: "\e915";
}
.icon-verify:before {
  content: "\e916";
}
.icon-cloud:before {
  content: "\e917";
}
.icon-laptop:before {
  content: "\e918";
}
.icon-teaching:before {
  content: "\e919";
}
.icon-health-check:before {
  content: "\e91a";
}
.icon-bank:before {
  content: "\e91b";
}
.icon-telephone:before {
  content: "\e91c";
}
.icon-map:before {
  content: "\e91d";
}
.icon-email-1:before {
  content: "\e91e";
}
.icon-phone-call:before {
  content: "\e91f";
}


.text-border {
    border-left: 5px solid green; /* 创建左侧的绿色边框 */
    color: white; /* 字体颜色 */
    font-size: 24px; /* 字体大小 */
    line-height: 1.5; /* 行高，也可以用来控制容器的高度 */
    margin: 10px 0; /* 上下外边距，根据需要进行调整 */
    padding: 15px 10px;
}
.text-border p {
  font-size: 18px;
}





.carousel-container {
  width: 100%; /* 设置轮播图容器宽度为100% */
  position: relative; /* 设置相对定位，以便子元素可以绝对定位相对于此容器 */
  overflow: hidden; /* 隐藏超出容器的部分，例如未显示的幻灯片 */
}

.carousel-slide {
  display: none; /* 默认不显示所有轮播图 */
  width: 100%; /* 轮播图宽度与容器相同 */
  text-align: center; /* 图片和文本居中对齐 */
}

.carousel-slide img {
  width: 400px; /* 图片宽度铺满整个轮播图 */
  height: 600px; /* 高度自适应，保持图片比例 */
}

.carousel-slide:first-child {
  display: block; /* 默认显示第一个轮播图 */
}

.image-description {
  /* 文本样式，此处可自定义文本的CSS样式 */
}

#prevBtn, #nextBtn {
  position: absolute; /* 绝对定位，相对于.carousel-container */
  top: 50%; /* 按钮位于容器垂直中心 */
  transform: translateY(-50%); /* 垂直居中调整 */
  background-color: transparent; /* 按钮背景透明 */
  border: none; /* 无边框 */
  cursor: pointer; /* 鼠标悬停时显示手形指针 */
  z-index: 1000; /* 确保按钮在图片之上 */
}

#prevBtn {
  left: 10px; /* “上一张”按钮位于左侧 */
}

#nextBtn {
  right: 10px; /* “下一张”按钮位于右侧 */
}

.arrow {
  display: inline-block; /* 以内联块显示，用于箭头样式 */
  width: 30px; /* 箭头宽度 */
  height: 30px; /* 箭头高度 */
  border-top: 10px solid black; /* 箭头上边框 */
  border-right: 10px solid black; /* 箭头右边框 */
}

.arrow:hover {
  border-top: 10px solid red;
  border-right: 10px solid red;
}

#prevBtn .arrow {
  transform: rotate(-135deg); /* 将“上一张”箭头旋转形成左箭头 */
}

#nextBtn .arrow {
  transform: rotate(45deg); /* 将“下一张”箭头旋转形成右箭头 */
}





/* ...原有的轮播图样式... */

.carousel-preview {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* 调整间距 */
}

.preview-image {
  width: 46px; /* 预览图大小 */
  height: auto;
  margin: 0 5px; /* 两侧间距 */
  cursor: pointer;
  opacity: 0.6; /* 未选中的预览图更透明 */
  transition: opacity 0.3s;
}

.preview-image.active {
  opacity: 1; /* 选中的预览图不透明 */
}




.distribution-map {
  width: 100%; /* 容器宽度 */
  text-align: center; /* 文本居中对齐 */
}

.info-card {
  display: flex;
  justify-content: center; /* 水平居中 */
  flex-direction: column; /* 垂直堆叠内容 */
  padding: 20px;
  border-bottom: 2px solid blue; /* 底部蓝色边框，可以根据实际颜色调整 */
  margin-bottom: 10px; /* 与下一个元素的距离 */
}
.info-card p {
  text-align: left;
  padding: 10px;
}
.info-card h3 {
  font-size: 40px;
  transform: translateX(20px);
}
.info-icon {
  margin-bottom: 15px; /* 与内容的间隔 */
}

.info-icon img {
  width: 50px; /* 图标大小，可根据需要调整 */
  height: auto;
}

.info-content h3 {
  margin: 0 0 10px 0; /* 标题的上下边距 */
  font-size: 42px; /* 标题大小，可根据需要调整 */
}

.info-content p {
  margin: 5px 0; /* 段落间距 */
  color: #555; /* 文本颜色，可根据需要调整 */
  text-align: left;
  display: flex;
  justify-content: center;
  font-size: 32px;
}
.info-content span {
  margin: 5px 0; /* 段落间距 */
  color: #555; /* 文本颜色，可根据需要调整 */
  text-align: left;
  display: flex;
  justify-content: center;
  font-size: 32px;
  transform: translateX(-150px);
}
.info-content .left-info {
  display: grid;
  justify-content: left;
  transform: translateX(35%);
}
.info-content-map-1 .info-content-map-2 {
  margin: 5px 0; /* 段落间距 */
  opacity: 0.8; /* 透明度，可根据需要调整 */;
}
.info-content-map-1 h3 {
  padding-bottom: 20px;
  font-size: 42px;
}
.info-content-map-1 p {
  font-size: 28px;
  padding: 5px;
  margin: 0;
}
.info-content-map-2 p {
  transform: translateX(15%);
  font-size: 28px;
}
.info-content-map-1 h2{
  opacity: 0.8;
}
.info-content-map-2 h2{
  opacity: 0.8;
}

.body-box {
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  height: auto;
}
.info-icon svg {

}


/*-------------------------------------------*/
/* 容器类样式 */
.container {
  max-width: 900px; /* 为容器设置最大宽度 */
  margin: 0 auto; /* 水平居中容器 */
}

/* 标题和链接部分样式 */
.title-and-link {
  justify-content: center; /* 水平居中弹性项 */
  align-items: center; /* 垂直居中弹性项 */
  flex-direction: column; /* 将弹性项垂直堆叠 */
}

/* 更多信息链接样式 */
.more-info-link {
  font-size: 1em; /* 设置字体大小为1em */
  color: #007bff; /* 设置文本颜色为蓝色 */
  text-decoration: none; /* 移除链接的下划线 */
  margin-top: 10px; /* 在链接和上面的元素之间添加空间 */
}

/* 产品导航按钮样式 */
.product-navigation button {
  background-color: #007bff; /* 设置按钮背景色为蓝色 */
  color: white; /* 设置文本颜色为白色 */
  border: none; /* 移除边框 */
  padding: 10px 20px; /* 在按钮内部添加填充 */
  cursor: pointer; /* 鼠标悬停时改变光标为指针 */
  border-radius: 5px; /* 按钮边角圆滑化 */
  margin-top: 20px; /* 在按钮和上面的元素之间添加空间 */
}

/* 按钮悬停效果 */
.product-navigation button:hover {
  background-color: #0056b3; /* 悬停时改变背景颜色 */
}


.topology-image {
  width: 100%;
  height: auto;
}

/*-------------------------------------------------*/
.container-product {
  text-align: center;
  margin-right: 250px;
  margin-left: 250px;
}
.container-product span {
  font-size: 25px;
  color: black;
}
.container-product h1 {
  color: white;
  font-size: 50px;
  text-align: center;
  border: #000000;
  border-radius: 18px;
  display: inline-block;
  background-color: #0d6efd;
  padding: 20px;
  margin-top: 20px;
}
.container-product a {
  color: white;
}
.container-product h1:hover {
  color: white;
  background-color: red;
}
.container-product h3 {
  font-size: 30px;
  text-align: center;
  border: #000000;
  border-radius: 18px;
  display: inline-block;
  background-color: #0d6efd;
  padding: 20px;
  color: white;
  margin-bottom: 20px;
}
.product-img button {
  border-radius: 18px;
  border: none;
  background-color: blue;
  display: inline-block;
  padding: 10px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
.product-img button:hover {
  background-color: darkblue; /* 鼠标悬停时背景颜色变深 */
}

#prevProduct,#nextProduct {
  border-radius: 18px;
  border: none;
  background-color: blue;
  display: inline-block;
  padding: 10px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  margin-bottom: 20px;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
  transform: translate(480%,  -0%); /* 从中心点向上和向左偏移自身的50% */
}
#prevProduct:hover,#nextProduct:hover {
  background-color: darkblue;
  color: red;
}

.container-box .container-img {
  width: 900px;
  height: auto;
  margin-left: 100px;
  margin-right: 100px;
}

/*微信、抖音、微博的二维码*/
.image-preview {
  display: none;
  position: absolute;
  /* 其他样式，如宽度、高度、边框等 */
}

.image-preview img {
  width: 100%;
  height: auto;
}

.container-product ul {
  list-style-type: none;
}
.container-box-one {
  background-color: #1b1825;
  position: relative;
}

.container-box-one img {
  width: 100%;
  height: auto;
  opacity: 80%;
}
.text-overlay {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: blue;
  font-size: 90px;
}

.text-slide-in {
  animation: slideInFromLeft 1s ease-out; /* 动画名称，持续时间，缓动函数 */
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-50%); /* 开始时，文本在左侧不可见 */
    opacity: 0; /* 开始时，文本完全透明 */
  }
  100% {
    transform: translateX(0); /* 结束时，文本在最终位置 */
    opacity: 1; /* 结束时，文本完全不透明 */
  }
}

.slide-in-text {
  animation: 2s ease-out 0s 1 slideInFromLeft; /* 动画时间，速度曲线，延迟，次数，动画名称 */
}



/*解决方案的样式*/
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out; /* 平滑过渡效果 */
  margin: 10px 200px;
  text-align: center;
  /* 其他样式，比如内边距、背景等 */
}

.accordion-title {
  cursor: pointer; /* 鼠标悬停时显示为指针，表示可点击 */
  border-radius: 10px;
  border: black 1px;
  font-size: 35px;
  color: black;
  margin: 10px 300px;
  /* 其他样式，比如内边距、背景等 */
}

.accordion-title .accordion-icon {
  transition: transform 0.3s ease-in-out; /* 图标旋转的平滑过渡 */
  float: right; /* 将图标放在标题的右侧 */
}

/* 当内容展开时，我们将添加一个类来改变图标的方向 */
.accordion-title.active .accordion-icon {
  transform: rotate(-90deg); /* 翻转图标，指向上方 */
}

.accordion-content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.box-run img {
  width: 500px;
  height: auto;
  margin-top: 5px;
  margin-bottom: 5px;
}

.accordion-content ul {
  list-style-type: none;
  font-size: 30px;
  color: black;
  padding: 5px;
}



/*.arrow-box {*/
/*  background-color: blue; !* 长方形部分的颜色 *!*/
/*  width: 100%; !* 长方形部分的宽度 *!*/
/*  height: auto; !* 长方形部分的高度 *!*/
/*  font-size: 28px;*/
/*  color: white;*/
/*  padding-top: 50px;*/
/*  padding-bottom: 5px;*/
/*  text-align: right;*/
/*  margin-left: 100px;*/
/*}*/
.container-item {
  display: flex;
  width: 100%;
  height: auto;
}
.container-item .item-box {
  width: 100%;
  height: auto;
}
.item-box-one {
  width: 200px;
  height: auto;
  margin-right: 20px;
  font-size: 18px;
  color: black;
}
.item-box-one .arrow-box {
  margin-top: 50%;
  border: 5px solid red;
  border-radius: 10px;
  padding: 5px;
}
.item-box-two {
  width: 100%;
  height: auto;
}

.list-label {
  display: flex;
  width: 100%;
  height: 100%;
}
.square {
  width: 100%;
  height: 100%;
  padding: 5px 1px 1px 1px;
}

.text-01 {
  border: solid;
  border-radius: 50px;
  font-size: 28px;
  background-color: #37bdd5;
  margin-right: 200px;
  margin-left: 200px;
  color: #e8b345;
  padding: 5px 5px 5px 5px;
}
.square ul {
  font-size: 18px;
  color: black;
}

/*产品介绍样式*/
.container-box-two {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.sidebar { /*产品标题容器*/
  width: 300px;
  margin-left: 20px;
  height: auto;
  position: relative;
}

.product-list { /*标题容器*/
  list-style: none;
  padding: 0;
  margin: 5px 5px 5px 5px;
  /*position: fixed; !* 固定定位，相对于视口 *!*/
  width: 250px;
  place-items: center;
}

.product-list li {
  padding: 10px;
  cursor: pointer;
  border: solid;
  border-radius: 15px;
  margin-bottom: 5px;
  text-align: center;
  background-color: blue;
  color: white;
}

.product-info {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin-left: 20px;
}
.product-info h1 {
  text-align: center;
  font-size: 100px;
  font-weight: 900;
  color: #0d6efd;
}
.product-info p {
  /*color: black;*/
  margin: 5px;
  padding: 5px;
  font-size: 22px;
}
.product-info span {
  margin: 5px;
  padding: 5px;
  /*font-size: 24px;*/
  font-weight: bold;
  color: black;
}
.product-info-img {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 0;
  margin: 0;
}
.product-info-img img {
  width: 800px;
  height: auto;
  text-align: center;
}

.product-info h1 a{
  color: white;
  font-size: 60px;
  text-align: center;
}
.product-info h1 a:hover {
  color: red;
}

.box-list-one {
  display: inline-flex;
  color: #2EA6DF;
  font-size: 34px;
  align-items: center;
  line-height: 30px;
  margin-bottom: 2px;
  font-weight: 500;
}
.list-one .span-ts span{
  width: 1000px;
}
.box-list-one::before {
  content: '';
  background-color: var(--thm-extra);
  width: 10px;
  height: 2px;
  margin-right: 10px;
}
.round {
  border-radius: 50%;
  background-color: black;
  width: 10px;
  height: 10px;
}
.icon-img-list {
  margin: 10px 0 10px 10px;
}
.icon-img-list span {
  font-size: 28px;
  color: black;
}
.news-container {
  width: 100%;
  height: auto;
  display: flex;

}
.news-list {
  width: 350px;
  height: auto;
  background-color: green;
  border: 0 red solid;
  border-radius: 20px;
  text-align: center;
  color: white;
  margin: 5px 5px 5px 5px;
  padding: 2px 2px 2px 2px;
  display: none;
}
.news-list a {
  color: white;
}
.news-body {
  width: 85%;
  height: auto;
  color: #333;
  background: #fff;  /* fallback for old browsers */

  /* background: -webkit-linear-gradient(to right, #004e92, #000428);  */
   /* Chrome 10-25, Safari 5.1-6 */
  /* background: linear-gradient(to right, #004e92, #000428);  */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding-top: 20px;
  padding-bottom: 80px;
  padding-left: 20%;
}
.news-body h1 {
  font-size: 34px;
  color: #333;
  text-align: center;
  width: 80%;
  margin: 10px auto 20px;
}
.news-img {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
}
.news-list-ul {
  transform: translateX(30%);
}
.product-info-img-01 {
  text-align: center;
}
.product-info-img-01 img {
  width: 400px;
  height: auto;
}
.product-info-img-02 {
  text-align: center;
}
.product-info-img-02 img {
  width: 400px;
  height: auto;
}
.product-info-img-02 .img-01 {
  width: 700px;
  height: auto;
}
.product-info-img-01 .img-02 {
  width: 600px;
  height: auto;
}
.product-info-img-03 img {
  width: 100%;
  height: 500px;
}
.product-info-img-02 .img-03 {
  width: 100%;
  height: auto;
  margin: 2px 2px 2px 2px;
}
.product-info-img-02 .img-flex {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: flex;
  text-align: center;
}
.text-container p{
  text-align: center;
}
.disc {
  list-style-type: disc;
}
.introduce span {
  color: #2EA6DF;
}
.introduce p {
  padding: 2px 2px 2px 2px;
  color: white;
}
.flex-one {
  display: flex;
  background-color: black;
}
.flex-one p {
}
.plate-one span {
  color: #2EA6DF;
  text-align: center;
}
.plate-one h3 {
  text-align: center;
  color: white;
  font-size: 35px;
}
.image-product {
  width: 100%;
  height: auto;
}
.image-text-product-box {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  padding: 30px;
}

/*培训页面样式结束*/
.image-text-product-box p {
  color: white;
}
/*.section-bottom {*/
/*  transform: translateY(-15%);*/
/*}*/
/*.section-text {*/
/*  transform: translateY(1%);*/
/*}*/
.accordion-item {
  background: #000428;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.round-h3 {
  border-radius: 50%;
  background-color: black;
  width: 20px;
  height: 20px;
  text-align: center;
}
.container-round {
  width: 100%;
  height: auto;
  text-align: center;
}
.product-info .round-h3 {
  text-align: center;
  transform: translateX(3000%);
}
.product-info .container-round {
  text-align: center;
}
.info-card-email {
  display: flex;
  justify-content: left; /* 水平居中 */
  flex-direction: column; /* 垂直堆叠内容 */
  padding: 20px;
  border-bottom: 2px solid blue; /* 底部蓝色边框，可以根据实际颜色调整 */
  margin-bottom: 10px;
}
.info-card-email p {
  font-size: 38px;
}
.info-card-phone {
  flex-direction: column; /* 垂直堆叠内容 */
  padding: 20px;
  border-bottom: 2px solid blue; /* 底部蓝色边框，可以根据实际颜色调整 */
  margin-bottom: 10px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.info-card-phone p {
  font-size: 36px;
  padding: 10px;
}
.news-text {
  width: 85%;
  margin: 0 auto;
}
.news-text p {
  margin-top: 8px;
  text-indent: 35px;
  margin-bottom: 5px;
}
.news-img img {
  width: 90%;
  height: auto;
}
.news-img .image {
  width: 200px;
  height: 200px;
}
/* 模态窗口样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 120px;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background-color: #ee0303 !important;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  border: none;
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0);
}

