:root {
  --primary-color: #005bac;
  --secondary-color: #003366;
  --dark-color: #002244;
  --light-color: #c8e8fa;
  --bg-color: #0a1929;
  --card-bg: rgba(0, 91, 172, 0.2);
  --text-color: #e0e0e0;
  --highlight-color: #c8e8fa;
  --highlight-color1: #1ee5ff;

  --primary-dark: #002244;       /* 深海军蓝 - 基础背景 */
  --primary-blue: #005bac;       /* 主品牌蓝 - 重要元素 */
  --electric-blue: #0066ff;      /* 电光蓝 - 高亮元素 */
  --neon-cyan: #00f2ff;         /* 霓虹青 - 强调/悬停 */
  --steel-blue: #0077b6;        /* 钢铁蓝 - 次要元素 */
  --light-accent: #c8e8fa;      /* 浅冰蓝 - 文字/边框 */
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
  transition: all 0.5s ease;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--highlight-color1);
  border-radius: 3px;
}

/* 招商方向卡片特殊样式 */
.investment-card {
  grid-row: 4;
}

/* 全景背景图 */
.background-panorama {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('../images/skz1.png') no-repeat center center;
  background-size: cover;
  filter:brightness(0.3) hue-rotate(28deg);
}

.container {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 80px 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 5px 10px 0;
  box-sizing: border-box;
}

.header-container {
  grid-column: 1 / span 4;
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  animation: slideInFromTop 1s ease-out forwards;
  transform: translateY(-100%);
}

@keyframes slideInFromTop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 更新SVG渐变颜色 */
.header-bg svg defs {
  /* 更新所有渐变颜色为蓝色调 */
  --gradient-color-1: #005bac;
  --gradient-color-2: #c8e8fa;
}


.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.header-title {
  font-size: 2rem;
  letter-spacing: 0.15rem;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 10px rgba(251, 213, 176, 0.2);
  position: relative;
  display: inline-block;
  animation: fadeIn 1.5s ease-out;
  font-weight: bold;
  background: linear-gradient(to bottom, #17f9ff, #0075fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes expandLine {
  0% { width: 0; opacity: 0; }
  100% { width: 40%; opacity: 1; }
}

/*左侧栏目*/
.nav{
        z-index: 2;
    position: absolute;
    top: 2rem;
    left: 3.5rem;
    width: 30%;
}
.nav-right{
    
    right: 3.5rem;
    left:unset
}
.nav ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
}
.nav ul li{
  list-style: none;
    
    line-height: 1;;
}
.nav ul li a{
      width: 100%;
    text-decoration: none;
    color: var(--highlight-color);
    display: inline-block;
    background: url(../images/lanmu.png) center no-repeat;
    background-size: contain;
    padding: 0.5rem 0 0.8rem;
    text-align: center;
    font-size: 1rem;
}

.nav ul li a:hover{
  background-image: url(../images/lanmu_hover.png) ;
}


.card {
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 91, 172, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  background: 
    linear-gradient(135deg, rgba(0, 91, 172, 0.3) 0%, rgba(0, 34, 68, 0.5) 100%);
  border: 1px solid rgba(0, 242, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 91, 172, 0.5);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 91, 172, 0.4);
  border-color: var(--primary-color);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #005cff, #61f4ff, #0046d0);
  background-size: 200% 200%;
  animation: glow1 5s ease infinite;

  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 242, 255, 0.7) 50%, 
    transparent 100%);
  animation: circuitGlow 3s linear infinite;
}

@keyframes circuitGlow {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

@keyframes glow1 {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--highlight-color);
  display: flex;
  align-items: center;
}


.card-title i {
  margin-right: 8px;
  color: var(--highlight-color1);
  text-shadow: 
    0 0 10px rgba(0, 242, 255, 0.7),
    0 0 20px rgba(0, 91, 172, 0.5);
}

.chart-container {
  flex: 1;
  width: 100%;
  height: calc(100% - 30px);
}

.overview-card {
  grid-column: 1 / span 1;
  grid-row: 2 / span 4;
  display: flex;
  flex-direction: column;
}

.overview-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-y: auto;
    padding-right: 5px;
    text-indent: 1.8rem;
}

.overview-text p{
  padding: 0;
  margin: 0;
}
 
.investment-category {
  margin-bottom: 15px;
}
 
.investment-category-title {
  font-size: 1rem;
  color: #53c6ff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
 
.investment-category-title i {
  margin-right: 6px;
}
 
.investment-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
 
/* 更新投资项样式 */
.investment-item {
  background: rgb(0 112 211 / 49%);
    padding: 6px;
    border-radius: 16px;
    font-size: 0.85rem;
    border-left: 3px solid #01a7e1;
    transition: all 0.3s ease;
    color: var(--highlight-color);
}

.investment-item:hover {
  background: rgba(0, 91, 172, 0.3);
  transform: translateX(5px);
}

/* 添加滚动容器样式 */
.enterprise-scroll-container {
  height:120px;
  overflow: hidden;
  position: relative;
}

.enterprise-list {
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 更新企业项样式 */
.enterprise-item {
  padding: 3px 10px;
  margin-bottom: 8px;
  background-color: rgba(0, 91, 172, 0.2);
  border-radius: 4px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.enterprise-item:hover {
  background-color: rgba(0, 91, 172, 0.3);
  transform: translateX(5px);
}

.data-highlight {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

/* 更新数据项样式 */
.data-item {
  text-align: center;
  padding: 5px 10px;
  background: rgba(0, 34, 68, 0.3);
  border-radius: 6px;
  flex: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
  background: url(../images/1.png) center no-repeat;
  background-size: cover;
}

.data-item:hover {
  background-color: rgba(0, 91, 172, 0.3);
  box-shadow: 0 0 15px rgba(0, 91, 172, 0.2);
}

.data-item {
  position: relative;
  overflow: hidden;
}

.data-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 242, 255, 0.3),
    transparent);
  animation: dataFlow 2s infinite;
}

@keyframes dataFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

.data-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--highlight-color);
  margin: 0 0 5px 0;
}

.data-label {
  font-size: 0.8rem;
  color: var(--light-color);
}

.glow {
  animation: glow 2s infinite alternate;
}

/* 更新glow动画 */
@keyframes glow {
  from { box-shadow:0 0 5px rgb(30 229 255 / 65%); }
  to { box-shadow:0 0 10px rgb(16 90 156 / 80%); }
}

/* 更新tooltip样式 */
.tooltip {
  position: absolute;
  background-color: rgba(0, 34, 68, 0.9);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 8px;
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
}

.blink {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.policy-list {
    flex: 2;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-y: auto;
    padding-right: 5px;
    text-indent: 1.8rem;
}

.policy-list p{
  padding: 0;
  margin: 0;
}
/* 更新政策项样式 */
.policy-item {
  padding: 8px 10px;
  margin-bottom: 8px;
  background-color: rgba(0, 91, 172, 0.2);
  border-radius: 4px;
  border-left: 3px solid var(--highlight-color);
  transition: all 0.3s ease;
}

.policy-item i {
  margin-right: 8px;
  color: var(--highlight-color);
}

.footer {
  position: relative;
  grid-column: 1 / span 4;
  height: 49px;
  animation: slideInFromBottom 1s ease-out forwards;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

@keyframes slideInFromBottom {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-container marquee {
  color: var(--highlight-color);
  font-size: 1rem;
      position: absolute;
    top: 25px;
    width: 25%;
    right: 5%;
    z-index: 2;
}

/* 更新图表颜色 */
.echarts-chart {
  --chart-color-1: #005bac;
  --chart-color-2: #c8e8fa;
  --chart-color-3: #fbd5b0;
}
/* 投资优势 */
.data-grid1 {
  flex:1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
            max-width: 1200px;
            /* background: #fff; */
        }
        
        .data-card1 {
            background: linear-gradient(135deg, #0033beb0 0%, rgb(0 135 255) 100%);
            border-radius: .5rem;
            padding: 0.5rem;
            box-shadow: 0 0.1rem 1rem rgb(0 193 253 / 35%);
            border: 1px solid rgb(61 214 255 / 77%);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .data-card1::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(10, 189, 227, 0.2) 30%, 
                rgba(156, 136, 255, 0.2) 70%, 
                transparent 100%);
            transform: rotate(30deg);
            z-index: -1;
            animation: shine 6s infinite linear;
        }
        
        .data-card1:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                        var(--glow-intensity) var(--electric-blue);
        }
        
        .data-icon1 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, #06daff, #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            filter: drop-shadow(0 0 5px rgba(74, 219, 251, 0.5));
            position: absolute;
            top: .8rem;
            left: .8rem;
        }
        
        .data-value1 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(to left, #00d9ff, #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
            padding-left: 2rem;
        }
        
        .data-label1 {
            font-size: 0.8rem;
            color: #c8e8fa;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding-left: 2rem;
        }
        
        .data-card1:nth-child(1) {
            --electric-blue: #00a8ff;
            --tech-purple: #487eb0;
        }
        
        .data-card1:nth-child(2) {
            --electric-blue: #00cec9;
            --tech-purple: #0984e3;
        }
        
        .data-card1:nth-child(3) {
            --electric-blue: #6c5ce7;
            --tech-purple: #a29bfe;
        }
        
        .data-card1:nth-child(4) {
            --electric-blue: #00b894;
            --tech-purple: #55efc4;
        }
        
        @keyframes shine {
            0% { transform: rotate(30deg) translate(-30%, -30%); }
            100% { transform: rotate(30deg) translate(30%, 30%); }
        }


/**第二产业*/
    .container2 {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1000px;
      /*height:17rem;*/
      flex:1.5;
    width: 100%;
    }

    .middle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      background: radial-gradient(circle at 30% 30%, #0a97ff, #0042d5);
      padding: .25rem;
      border-radius: 100%;
      box-shadow: 0 0 40px rgba(0, 210, 255, 0.6),
                  inset 0 -10px 20px rgba(0,0,0,0.4),
                  inset 0 10px 20px rgba(255,255,255,0.3);
      z-index: 10;
      width: 5rem;
      height: 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      border: 2px solid rgba(255,255,255,0.2);
    }

    .middle::before {
      content: '';
      position: absolute;
      top: 15%;
      left: 15%;
      width: 25%;
      height: 25%;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
      filter: blur(8px);
    }

    .middle div {
          display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    }

    .middle span {
      font-size: 1rem;
      font-weight: bold;
      text-shadow: 0 0 10px rgba(0, 210, 255, 0.7);
      font-family: 'Arial Black', sans-serif;
    }

    .middle p {
      margin: 0.1rem 0;
      font-size: 0.65rem;
      text-shadow: 0 0 5px rgba(0, 210, 255, 0.5);
      /* letter-spacing: 1px; */
    }

    .item {
      position: absolute;
      width: 5rem;
      height: 5rem;
      background: radial-gradient(circle at 30% 30%, #00a7ff, #0986f4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.65rem;
      box-shadow: 0 0 30px rgba(0, 242, 254, 0.5),
                  inset 0 -10px 20px rgba(0,0,0,0.4),
                  inset 0 10px 20px rgba(255,255,255,0.3);
      animation: rotate 20s linear infinite;
      transition: all 0.3s ease;
      cursor: pointer;
      z-index: 5;
      border: 2px solid rgba(255,255,255,0.2);
    }

    .item:nth-child(5) {
      background: radial-gradient(circle at 30% 30%, #a6ffcb, #12d8fa);
      animation-delay: -5s;
    }

    .item:nth-child(6) {
      background: radial-gradient(circle at 30% 30%, #f857a6, #ff5858);
      animation-delay: -10s;
    }

    .item:nth-child(7) {
      background: radial-gradient(circle at 30% 30%, #ff9966, #ff5e62);
      animation-delay: -15s;
    }

    .item::before {
      content: '';
      position: absolute;
      top: 15%;
      left: 15%;
      width: 25%;
      height: 25%;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
      filter: blur(8px);
    }

    .item:hover {
      transform: scale(1.15) rotate(0deg) translate(250px) rotate(0deg) !important;
      box-shadow: 0 0 50px rgba(0, 242, 254, 0.8),
                  inset 0 -10px 20px rgba(0,0,0,0.4),
                  inset 0 10px 20px rgba(255,255,255,0.4);
      z-index: 20;
    }

    .item .content {
      text-align: center;
      padding: 0.25rem;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

  .item .content div {
          display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    }

  .item .content p {
      margin: 0.1rem 0;
      font-size: 0.65rem;
      text-shadow: 0 0 5px rgba(0, 210, 255, 0.5);
    }

    .item:hover .content {
      transform: scale(1);
    }

    .item .content span {
      font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.7);
    font-family: 'Arial Black', sans-serif;
    }
    @keyframes rotate {
      from {
        transform: rotate(0deg) translate(6rem) rotate(0deg);
      }
      to {
        transform: rotate(360deg) translate(6rem) rotate(-360deg);
      }
    }

/* 选项卡样式 */
.card-tabs {
  display: flex;
  margin-bottom: 10px;
}

.tab-button {
  flex: 1;
  padding: 8px;
  background: none;
  border: 1px solid rgba(0, 168, 255, 0.3);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: rgba(0, 168, 255, 0.2);
  border-color: #00a8ff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
/*选项卡*/

/* 主选项卡样式 */
.main-tab-button {
  flex: 1;
  padding: 10px;
  background: rgba(0, 168, 255, 0.15);
  border: 1px solid rgba(0, 168, 255, 0.4);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
}

.main-tab-button.active {
  background: rgb(253 183 1 / 14%);
  border-color: #fdb701;
  box-shadow: 0 0 10px rgb(255 173 0 / 30%);
}

/* 子选项卡样式 */
.sub-tab-button {
  flex: 1;
  padding: 8px;
  background: url(../images/ztab_bg.png) center no-repeat;
  background-size: cover;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  max-width: 34%;
}

.sub-tab-button.active {
  background: url(../images/ztab_bg_hover.png) center no-repeat;
    background-size: cover;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.content-frame {
    width: 100%;
    height: 600px;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

/*弹出框样式 start*/
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content{
            /*background: linear-gradient(135deg, rgb(64 255 213 / 80%) 0%, rgb(181 222 205 / 90%) 70%);*/
    padding: 0 10px 10px;
    border-radius: 5px;
    width: 80%;
    height: 80%;
    max-width: 1000px;
    position: relative;
        }
        .modal-content::before{
          content: '';
          display: inline-block;
          width: 100%;
          height: 100%;
          background: url(../images/5d5f7cbc4f1577000141d180.png) top left no-repeat;
          background-size: contain;
          position: absolute;
          z-index: 1;
          top: 0;
          left: 0;
        }
        .modal-content::after{
          content: '';
          display: inline-block;
          width: 100%;
          height: 100%;
          background: url(../images/5d5f7cb84f1577000141d10d.png) bottom right no-repeat;
          background-size: contain;
          position: absolute;
          z-index: 1;
          bottom: 0;
          right:  0;
        }
        .modal-iframe {
           width: calc(100% - 40px);
    height: calc(100% - 110px);
    margin: 0 10px 10px;
    padding: 10px;
    border: none;
    background: rgb(0 41 78 / 90%);
    border-bottom-right-radius: 3rem;
    border-top-left-radius: 3rem;
    box-shadow: inset 0px 0px 16px 3px rgb(10 115 185);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.5), 0 0 10px rgba(0, 200, 255, 0.3);
        }
        .close {
                float: right;
    cursor: pointer;
    font-size: 2.5rem;
    line-height: 1;
    color: #0be2fc;
    margin-top: 10px;
    position: relative;
    z-index: 2;
        }

        /* 弹窗遮罩层 (#detailModal) 的入场动画 */
#detailModal[style*="display: flex"],
#detailModal[style*="display:flex"] { /* 针对JS直接设置style的情况 */
    opacity: 0; /* 动画起始透明度 */
    animation: skqynowcomBackdropFadeIn 0.3s ease-out forwards;
}

@keyframes skqynowcomBackdropFadeIn {
    to {
        opacity: 1; /* 动画结束时完全不透明 (依赖于.modal类中定义的background-color的alpha通道) */
    }
}

/* 弹窗内容框 (.modal-content) 的入场动画 */
#detailModal[style*="display: flex"] .modal-content,
#detailModal[style*="display:flex"] .modal-content {
    opacity: 0; /* 动画起始透明度 */
    transform: translateY(40px) scale(0.92); /* 动画起始位置和大小 */
    animation: skqynowcomDialogEntrance 0.45s 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; /* 动画延迟0.1s播放 */

}

@keyframes skqynowcomDialogEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/*弹出框样式 end*/

/*社区管理*/
.ability-list {
  position: absolute;
    z-index: 1111;
    top: 3rem;
    right: 0;
    background: transparent;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    padding: 10px;
}

.ability-list h4 {
font-size: 1rem;
color: #ffffff;
margin-top: 0;
margin-bottom: .5rem;
padding: 0 0.25rem 0.4rem 0.3rem;
text-align: center;
font-family: 'Orbitron', 'Microsoft YaHei', 'PingFang SC', sans-serif;
letter-spacing: .05rem;
position: relative;
background: url(../images/b581a66f-ebfd-48da-8361-342d93d5ac95.png) center bottom no-repeat;
background-size: contain;
}


.ability-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ability-list li {
color: #d3f4ff;
margin-bottom: 5px;
font-size: .8rem;
display: flex;
align-items: center;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.ability-list li::before {
content: '';
position: absolute;
top: 0;
left: -3px;
width: 3px;
height: 100%;
background: #ffb800;
/* transform: scaleY(0); */
transform-origin: top;
transition: transform 0.3s ease;
}

.ability-list li:hover,.ability-list li.active {
background: linear-gradient(95deg, #ac5700 0%, rgb(0 91 172 / 0%) 100%);
transform: translateX(5px);
color: #ffffff;
}

.ability-list li:hover::before,.ability-list li.active::before {
  /* transform: scaleY(1); */
  left:0;
}

.ability-list li .item-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.2rem;
height: 1.2rem;
border-radius: 50%;
background: #005069;
border: 1px solid #01a8dd;
margin-right: 12px;
font-size: .7rem;
color: #fff;
flex-shrink: 0;
transition: all 0.3s ease;
}

.ability-list li:hover .item-icon,.ability-list li.active .item-icon {
background: transparent;
color: #ffffff;
/* transform: rotate(15deg); */
border-color: #ffb800;
}

/* 地图 科技感弹窗样式 */
.tech-info-window {
  background: rgba(0, 20, 40, 0.85);
  border: 1px solid #00a8ff;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
  color: #fff;
  padding: 15px;
  font-family: 'Arial', sans-serif;
  max-width: 350px;
  position: relative;
  opacity: 0.85;
}

.tech-info-window h3 {
  color: #00a8ff;
  margin: 0 0 10px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 168, 255, 0.5);
  padding-bottom: 5px;
}

.tech-info-window p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.close_img{
  position: absolute;
  top:10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.close_img:hover {
  opacity: 0.8;
}

/*全屏、退出全屏按钮*/
.btnFullScreen{
  z-index: 2;position: absolute;top: 0;right: 0;height: 2rem;width: 2rem;
}
.btnFullScreen .btn1{
  width: 100%;height: 100%;border: none;background-size: cover;
}
.btnFullScreen .btn1#btn4{
  background: url(../images/Fullscreen.png) top center no-repeat;
}
.btnFullScreen #btn4:hover{
  background-image: url(../images/Fullscreen_hover.png) ;
}
.btnFullScreen .btn1#btn5{
  background: url(../images/exitFullscreen.png) top center no-repeat;
}
.btnFullScreen #btn5:hover{
  background-image: url(../images/exitFullscreen_hover.png) ;
}