.header .box .product .arrow-down path{
  stroke:#fff
}

.header:hover .box .product .arrow-down path{
  stroke: #333;
}


.container{
  background-image: url('/images/index_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #01040e;
  min-width: 1200px;
}

.container .content-header .title{
  text-align: center;
  padding-top: 40px;
  color: #fff;
  font-size: 28px;
  margin-bottom: 100px;
}
.container .content-header .title img{
  width: 390px;
  height: 111px;
}
.content-bottom-pic{
  margin-top: 40px;
}
.content-main{
  position: relative;
  height: 690px;
}
.content-main .main-bg{
  text-align: center;
}
.content-main .main-bg img{
  width: 938px;
}
.content-main .product .list{
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-main .product .list .text{
  color: #fff;
  height: 112px;
  margin-top: -112px;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  font-size: 20px;
  z-index: 8;
    position: relative;
    width: 120px;
}

.content-main .product .list .text .en-text{
  font-size: 14px;
}


.content-main .product .list .list-active{
  display: none;
}

.content-main .product .list .box{
  cursor: pointer;
}


.content-main .product .item-1{
  left: 140px;
}

.content-main .product .item-2{
  left: 350px;
  top: 40px;
}
.content-main .product .item-3{
  left: 390px;
  top: 230px;
}
.content-main .product .item-4{
  left: 600px;
  top: 230px;
}
.content-main .product .item-5{
  left: 680px;
  top: 40px;
}
.content-main .product .item-6{
  left: 920px;
  top: 0px;
}

.content-main .product .item-7{
  left: 510px;
  top: 450px;
}

.content-main .product .item-7 .list-active{
  display: block!important;
}


.content-main .product .highlight .ball{
  display: none;
} 

.content-main .product .highlight .list-active{
  display: block;
  position: relative;
}

.content-main .product .svg-line{
  display: none;
}


.content-main .product .highlight .svg-line{
  display: block;
  position: absolute;
  left: 57px;
  top: -58px;
}




.content-main .product .highlight .desc-line{
 visibility: hidden;
}

.content-main .product .highlight .list-active .active-cricle{
  animation: rotate 8s linear infinite; /* 应用动画 */
  position: absolute;
  left: 0px;
}
 /* 定义旋转动画 */
 @keyframes rotate {
  from {
      transform: rotate(0deg); /* 从0度开始 */
  }
  to {
      transform: rotate(360deg); /* 旋转到360度 */
  }
}


.content-main .product .list .popup{
  position: absolute;
  width: 400px;
  background: linear-gradient(180deg, rgba(79, 176, 255, 0.5) 0%, rgba(169, 242, 255, 0.1) 100%);
  border-radius: 8px;
  z-index: 9;
  padding: 12px;
  top: 140px;
  border: 1px solid #5f7c9e;
  display: none;
  backdrop-filter: blur(30px);
}

.content-main .product .list.item-7 .popup{
  top: 50px;
}


.content-main .product .list .popup.help{
  width: 470px;
}

.content-main .product .list .popup.help .btn-group .btn:nth-child(2){
  color: #36C9FF;
  background-color: rgba(54,201,255,0.2);
}

.content-main .product .list .popup.help .btn-group .btn:nth-child(3){
  color: #36FFBF;
  background-color: rgba(54,255,191,0.2);
}


.content-main .product .list .popup .title{
  color:#fff;
  font-size: 18px;
  margin-bottom: 12px;
  text-align: left;
} 
.content-main .product .list .popup .desc{
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  text-align: left;
} 

.content-main .product .list .popup .no-finsh{
  font-size: 12px;
    color: #BCBABA;
    float: right;
    margin-top: 6px;
}


.content-main .product .list .popup .btn-group{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
}

.content-main .product .list .popup .btn-group .btn{
  border-radius: 4px;
  padding: 6px 15px;
  flex: 1;
  cursor: pointer;
}
.content-main .product .list .popup .btn-group .btn:nth-child(1){
  color: #36C9FF;
  background-color: rgba(54,201,255,0.2);
}

.content-main .product .list .popup .btn-group .btn:nth-child(2){
  color: #36FFBF;
  background-color: rgba(54,255,191,0.2);
}

.content-main .product .list .popup .btn-group .btn:nth-child(3){
  color: #FFD38D;
  background-color: rgba(255,211,141,0.2); ;
}
.content-main .product .list .popup .btn-group .btn img{
  vertical-align: middle;
  margin-right: 2px;
}
.parentHighlight .desc-line{
  visibility: hidden;
}

/* 模态框 */

/* 模态框 */
/* 模态框背景 */
.modal {
  display: none; /* 默认隐藏 */
  position: fixed; /* 固定定位 */
  z-index: 1000; /* 在最上层 */
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  width: 100%; /* 100% 宽 */
  height: 100%; /* 100% 高 */
  overflow: auto; /* 启用滚动条 */
  background-color: rgb(0,0,0); /* 背景颜色 */
  background-color: rgba(0,0,0,0.4); /* 半透明黑色 */
}

/* 模态框内容 */
.modal-content {
  background-color: #131419;
  padding: 20px;
  border: 1px solid #111;
  width: 800px;
    /* height: 600px; */
    border-radius:8px;
}

/* 关闭按钮 */
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  margin-top: -10px;
  color: #fff;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}