@charset "UTF-8";
.piece {
  padding: 80px 12px;
}
.piece .title {
  position: relative;
  overflow: hidden;
}
.piece .title h2, .piece .title h3 {
  font-weight: bold;
  margin-bottom: 0;
}
.piece .title a.btn-link {
  position: absolute;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 20px;
  background: linear-gradient(45deg, #04acc5, #5aa52d);
  bottom: 0;
  border-radius: 30px;
}
.piece .wtitle {
  position: relative;
  border-bottom: 4px solid #f5f5f5;
  padding-bottom: 6px;
  text-align: center;
  margin-bottom: 20px;
}
.piece .wtitle::after {
  position: absolute;
  content: "";
  width: 12rem;
  height: 4px;
  bottom: -4px;
  left: 50%;
  margin-left: -6rem;
  background-color: #50a63f;
}
.piece .wtitle h2 {
  font-weight: bold;
}
.piece .wtitle h3 {
  font-size: 12px;
  margin-bottom: 0;
}
.piece .datetime {
  display: block;
  position: relative;
  color: #aaa;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 10px;
}
.piece .datetime::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 50%;
  margin-top: -3px;
  border-radius: 50%;
  background-color: #50a63f;
}
.piece .content .pro {
  background-color: #fff;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
}
.piece .content .pro .imgbox {
  overflow: hidden;
}
.piece .content .pro img {
  width: 100%;
  transition: transform 0.3s ease;
}
.piece .content .pro img:hover {
  transform: scale(1.2);
}
.piece .content .pro .protext {
  padding: 20px 20px 10px 20px;
  border-top: 1px solid #ececee;
}
.piece .content .pro .porimg {
  overflow: hidden;
}
.piece .content .pro .porimg img {
  width: 100%;
  transition: transform 0.3s ease;
  border-radius: 20px;
}
.piece .content .pro .porimg img:hover {
  transform: scale(1.2);
}
.piece .content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.piece .content .model {
  display: block;
  font-size: 14px;
  color: #999;
  padding-bottom: 6px;
}
.piece .content p {
  font-size: 14px;
  color: #999;
  margin-bottom: 0;
}
.piece .content a.nav-link:hover {
  color: #ff6600;
}

.jshuimage {
  position: relative;
  overflow: hidden;
  cursor: pointer; /* 鼠标悬停显示手型 */
  margin-bottom: 10px;
  border-radius: 20px;
  /* 容器样式 - 核心是相对定位，让内部元素可以绝对定位 */
  /* 图片样式 */
  /* 文字层样式 - 默认隐藏 */
  /* 鼠标悬停时的效果 */
  /* 文字样式美化（可选） */
}
.jshuimage img {
  width: 100%;
  height: 100%;
  transition: all 0.3s; /* 过渡动画，让效果更丝滑 */
}
.jshuimage .image-text {
  position: absolute; /* 绝对定位，覆盖在图片上 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* 初始透明背景 */
  color: white; /* 文字颜色 */
  display: flex; /* 弹性布局，方便居中文字 */
  flex-direction: column; /* 垂直排列文字 */
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  opacity: 0; /* 初始完全透明 */
  transition: all 0.3s; /* 过渡动画 */
  padding: 20px;
  box-sizing: border-box;
}
.jshuimage:hover img {
  filter: brightness(0.5); /* 图片亮度降低到50%，实现变暗效果 */
}
.jshuimage:hover .image-text {
  opacity: 1; /* 文字层显示 */
  background-color: rgba(0, 0, 0, 0.2); /* 可选：增加一层半透明背景 */
}
.jshuimage .image-text h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
}
.jshuimage .image-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.technologyText {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  border-radius: 20px;
  height: 100%;
}
.technologyText h2 {
  color: #666;
  width: 100%;
  text-align: center;
  font-size: calc(1vw + 12px); /* 字体大小随视口宽度变化，同时保证有一个最小的基础大小 */
  font-weight: bold;
}
.technologyText ul {
  padding: 0;
}
.technologyText ul li {
  width: 100%;
  font-size: 16px;
  list-style: none;
  line-height: 200%;
  color: #999;
}

/* 容器样式 - 控制圆圈大小和居中 */
.pieChart {
  width: 70%;
  gap: 20px; /* 圆形之间的间距 */
}

.progress-circle {
  flex: 1; /* 均分外层宽度 */
  aspect-ratio: 1/1; /* 强制宽高比1:1，保证正圆形 */
  border-radius: 50%; /* 圆形核心属性 */
  position: relative; /* 为内部文字定位做准备 */
  /* 锥形渐变实现30%填充效果：
      前30%是蓝色，剩下70%是浅灰色（背景）
      from -90deg 让渐变从顶部开始（默认从右侧）
  */
  background: conic-gradient(#ff6600 30%, #e5e7eb 0);
  /* 可选：添加阴影增强视觉效果 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 覆盖层 - 制作空心效果 + 居中文字 */
.progress-circle::after {
  content: "";
  position: absolute;
  top: 8px; /* 内圈与外圈的间距 */
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 50%;
  background: white; /* 白色覆盖层，形成空心效果 */
}

/* 数字文本样式 */
.pieChart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
}

.numerical {
  flex: 1; /* 均分外层宽度 */
}
.numerical p {
  text-align: center;
  padding-top: 10px;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 绝对居中 */
  font-size: 24px;
  font-weight: bold;
  color: #333;
  z-index: 1; /* 确保文字在最上层 */
}

.mycenter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
}

.fuwutext {
  padding: 60px;
  width: 90%;
}
.fuwutext h2, .fuwutext p {
  color: #fff;
}
.fuwutext input, .fuwutext textarea {
  background: #262626;
  border: none;
  color: #999;
}
.fuwutext input:focus, .fuwutext textarea:focus {
  background: #262626;
  border: none;
  outline: none;
  color: #999;
}
.fuwutext input::-webkit-input-placeholder {
  color: #666;
}
.fuwutext input:-moz-placeholder {
  color: #666;
}
.fuwutext input::-moz-placeholder {
  color: #666;
}
.fuwutext input:-ms-input-placeholder {
  color: #666;
}
.fuwutext textarea::-webkit-input-placeholder {
  color: #666;
}
.fuwutext textarea:-moz-placeholder {
  color: #666;
}
.fuwutext textarea::-moz-placeholder {
  color: #666;
}
.fuwutext textarea:-ms-input-placeholder {
  color: #666;
}
.fuwutext button {
  background: #ff6600;
  border: none;
  padding: 10px 60px;
}

/*广告*/
.hdbg {
    padding: 0;
    background-image: url("/images/hg1.webp");
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: fixed;
    background-color: #2a2b2d;
}

.mytitle {
  text-align: center;
  margin-bottom: 60px;
}
.mytitle h1 {
  font-weight: bold;
  font-size: 32px;
}
.mytitle .title-xian {
  border-bottom: 2px solid #b5b5b5;
  width: 30%;
  margin: 0 auto;
}
.mytitle .title-kuai {
  border-bottom: 4px solid #ff6600;
  width: 30%;
  margin: 0 auto;
}

.jishubg {
  padding: 0;
  background-image: url(/images/jishu01.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: fixed;
  background-color: #343434;
}
.jishubg .jishukuai {
  padding: 120px 20px;
  overflow: hidden;
}
.jishubg .jishukuai h1 {
  font-weight: bold;
  color: #777;
}
.jishubg .jishukuai p {
  color: #777;
}
.jishubg .jishukuai .jishuData {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.jishubg .jishukuai .jishuData .number {
  flex: 1 1 33.333%;
}
.jishubg .jishukuai .jishuData .number h2 {
  font-size: 42px;
  font-weight: bold;
  color: #ff6600;
  border-right: 2px solid #777;
  padding: 0 10px;
  text-align: center;
}
.jishubg .jishukuai .jishuData .number p {
  text-align: center;
}

.gongsi {
  background: #ececee;
}
.gongsi .gstext {
  display: flex;
  align-items: flex-end;
}
.gongsi .gstext p {
  color: #777777;
  font-size: 18px;
  text-indent: 2em;
}
.gongsi .gstext .gsimgp {
  padding-top: 40px;
  margin-bottom: 0;
  text-indent: 0;
}

.fuwubg {
  background-image: url(../images/fuwubg.jpg);
  background-repeat: no-repeat;
  background-position: right;
  background-color: #161618;
}

.chakanall a {
  display: block;
  background-color: #e1e1e1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 20px;
  color: #999;
}

.chakanall a:hover {
  color: #666;
}

.onlianxi {
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  border-radius: 25px;
}

/* 自定义媒介开始 */
@media screen and (max-width: 991.98px) {
  /* 针对大屏幕设备的样式 */
  .piece {
    padding: 30px 12px;
  }
  .piece .title a.btn-link {
    font-size: 12px;
    right: 12px;
    bottom: 10px;
  }
  .piece .datetime {
    color: #aaa;
    font-size: 12px;
  }
  .piece .content h3 {
    font-size: 16px;
  }
  .piece .content p {
    font-size: 12px;
    color: #666;
  }
  .pieChart {
    width: 100%;
  }
  .numerical {
    flex: none;
    width: 40%;
  }
  .pieChart {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991.98px) {
  .numerical {
    flex: none;
    width: 20%;
  }
}
@media screen and (max-width: 575.98px) {
  .numerical {
    flex: none;
    width: 40%;
  }
  .fuwutext {
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */