@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900&display=swap");
ul,li{list-style:none;margin:0;padding:0}
body{margin:0;padding:0;overflow-x: hidden;font-family: "Poppins", sans-serif;}
div,img,h3,h4,p,dd,dl,em{margin: 0; padding: 0; border: 0;}
h1{font:bold 1.26em Arial, Sans-Serif;letter-spacing:0px;margin:0;padding:0}
h2{letter-spacing:0px;font-size:16px;color:#000;background:inherit;margin:0 0 5px;padding:0}
p{margin:0 auto}
a{text-decoration:none;}

 .spkd {width:100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0px 0px;
        }
        .video-section {
            height: 50vw;
            display: flex;
           /*flex-direction: column;*/
            align-items: center;
            justify-content: center;
            padding: 0px 0px;
            position: relative;
            overflow: hidden;
			margin-top: -20vw;z-index: 99;
        }
        
        .content-section {
            background: #f8f9fa;
            padding: 100px 0;
		}
        
        .scroll-down {
            margin-top: 30px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            color: white;
            font-weight: 500;
            text-decoration: none;
        }
        
        .scroll-down i {
            font-size: 2rem;
            margin-top: 10px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }
        
        .video-spkd {
            width: 50%;
            height: 50%;
            border-top-right-radius: 20px;border-bottom-right-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            transform-origin: center;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .video-spkd.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scalable-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .video-description {
            color: white;
            margin-top: 40px;
            font-size: 1.5rem;
            text-align: center;
            max-width: 800px;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
        
        .progress-indicator {
            position: fixed;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            display: none;
            flex-direction: column;
            align-items: center;
            z-index: 100;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 10px;
            border-radius: 30px;
        }
        
        .progress-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 10px 0;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .progress-dot.active {
            background: white;
            transform: scale(1.4);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }
        
        .progress-dot::after {
            content: attr(data-label);
            position: absolute;
            top: 50%;
            right: 25px;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .progress-dot:hover::after {
            opacity: 1;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #343a40;
        }
        
        .video-controls {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 10;
            display: flex;display: none;
            gap: 12px;
        }
        
        .control-btn {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .control-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        .size-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s ease;    display: none;
        }
        
        .scroll-hint {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1.1rem;
            z-index: 100;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse 2s infinite;
        }
        
        .scroll-to-video {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .scroll-to-video:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateX(-50%) scale(1.05);
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            p { font-size: 1rem; }
            .video-description { font-size: 1.2rem; }
            .progress-indicator { right: 15px; }
            .scroll-hint { width: 90%; text-align: center; }
        }

.dachengall{width:100%;overflow: hidden;}
/* banner */	
#ticker{height:auto; padding: 0.6em 0; margin: 0 0 0em 0; border-top:0px solid #efefef; border-bottom:0px solid #efefef; position: absolute;z-index: 99;
    top: 19vw;
    left: 6%;}
#ticker h2{margin-bottom: 0.8em;font-size: 3.5vw;color: #fff;}

.banner {position: relative;
            width: 100%;
            height:100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin:-7vw 0 0px 0;
            transition: transform 0.3s ease-out;}
.banner dd{color: #fff;font-size: 1.1vw;font-weight:normal;position: absolute;z-index: 99;
    top: 25vw;
    left: 6%;}

.bg{width: 100%;
    height: 91%;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;}

/*about*/
.aboutall{background:#fff;width:100%;overflow: hidden;padding:2vw 0 8vw 0;position: relative;margin-top: -5vw;}
.aboutall .dise {
  position: absolute;
  left: 0;
  top: 8vw;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.aboutall .dise .animate-1 {
  border-radius: 50%;
  background: #6db5eb;
  filter: blur(150px);
  position: absolute;
  top: -3%;
  left: -14%;
  animation: animate1 80s linear infinite alternate;
  width: clamp(350px, 25.438vw, 550px);
  height: clamp(350px, 25.438vw, 550px);
}
@keyframes animate1 {
  0% {
    left: 50%;
    top: 0%;
  }
  20% {
    left: 0%;
    top: 32%;
  }
  40% {
    left: 10%;
    top: 70%;
  }
  60% {
    left: 50%;
    top: 0%;
  }
  80% {
    left: 95%;
    top: 30%;
  }
  100% {
    left: 0%;
    top: 0%;
  }
}
.about{width:88%;margin:0vw auto;padding:5vw 0;position: relative;z-index: 99;}
.aboutl{float: left;width: 65%;/*background: url(../images/mianfen.png) no-repeat;background-size: 100%;*/position: relative;}
.aboutf{width: 66%;float: left;z-index: 99;
    position: relative;}
.aboutl dd{margin-left: 0vw;transition: all 2s;opacity: 0; color: #222;font-size: 1vw;line-height: 1.5vw; margin-bottom: 4vw;font-weight:bold;animation: fadeInUp 1s ease 1s both;    border-bottom: 0px solid #ddd;
    width: 30%;}     

.aboutl dd img{width:1.2vw;position: relative;top: 0.25vw;margin-right: 0.5vw;}
.aboutl h3{font-size: 2.5vw;color: #222;line-height: 3.2vw;margin-bottom: 1.5vw;margin-left: 0vw;transition: all 2s;opacity: 0;animation: fadeInUp 1s ease 1s both;}
.aboutl p{color: #666;font-size: 0.9vw;line-height: 1.8vw; margin-bottom: 6vw;}
.aboutl a{display: inline-block;
    padding: 0 2vw;
    margin-top: 5vw;
    border: #00b0bc 1px solid;
    font-size: 1vw;
    color: #00b0bc;
    overflow: hidden;
    width: 7vw;
    line-height: 3vw;
    border-radius: 35px;}
.aboutl a img {
    background: none;
    position: relative;
    top: 0.65vw;
    margin-right: 0.5vw;
    padding: 0;
    border-radius: 0;
    width: 2vw;
    float: right;}
.ztu{width: 50%;margin-top: -8vw;margin-bottom:8vw;z-index: 99;
    position: relative;margin-left:4%;}
.ztu h4{position: absolute;font-family: "Poppins", sans-serif;line-height: 3vw; font-weight: 750;
    left: 9vw;
    top: 16vw;
    color: #fff;
    font-size: 3vw;
    z-index: 999;}
.ztu img{width:11vw;border-radius: 20px;position: absolute;left: 3vw;
    top: 10vw;
    z-index: 99;
  height: 11vw; /* 你可以根据需要调整大小 */
  border-radius: 50%; /* 使其成为圆形 */
  margin: 50px; /* 添加一些外边距以便观察 */
  animation: spin 2s linear infinite; /* 应用动画 */
	}
@keyframes spin {
  from {
    transform: rotate(0deg); /* 开始旋转的角度 */
  }
  to {
    transform: rotate(360deg); /* 结束旋转的角度 */
  }
}

.aboutr{float: right;width: 28%;margin-top:0vw;background: url(../images/aboutlbg.png) no-repeat;background-size: 100%;}

/*数字*/
.digital{width:100%;height: auto;padding:0 0px;color: #fff;margin:0vw auto;z-index: 99;position: relative;}
.mainall{width: 100%;height: auto;margin:0 auto;font-size: 0;}
.mumping_mun li{width:90%;display: inline-block;margin:0vw 1vw 0 0;/*background-color: hsla(0,0%,100%,.6);border-radius: 15px;*/padding:3.5% 5%;/*box-shadow: 3px 0px 15px 0px #efefef;*/}
.mumping_mun li:nth-child(2n){margin-right:0px;}
.mun_top{margin-top: 2vw;text-align:left;border-bottom: 1px solid #555;}
.mumping_mun{width: 100%;list-style: none;}
.mumping_mun dd{font-size:1vw;width: 100%;display: block;clear: both;color: rgba(35, 38, 38, .5);font-weight:bold;text-align: left;line-height: 3vw;}
.mumping_mun p{font-size: 12px;width: 100%;display: block;clear: both;color: #666;}
.mumping_mun h2{font-size:4.5vw;font-weight:bold;margin:0 10px 0 0px;color:#222;display: inline;    font-family: "Poppins", sans-serif;}
.mumping_mun h2 img{padding:0px 0px 0px 0px;height: 2.6vw;width:auto;}
.mumping_mun span{color:#222;font-weight:bold;font-size: 1.2vw;position: relative;top: -0.5vw;}
.mumping_mun img{padding:0px 0px 0px 0px;width: 2.2vw;height:auto;}

.fudong{position: relative;z-index: 999;}
.container {
            position: relative;
            margin-top: -15vw;
            left: 0;
            width: 100%;
            height: 45vw;
            display: flex;}
        
        .left-panel, .right-panel {
            height: 100%;
            transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
        }
        
        .left-panel {border-top-right-radius: 30px;
            width: 50%;
            position: relative;
            overflow: hidden;
            background: #000;
        }
        
        .video-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s ease;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .text-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            margin: 15px 0;
            font-size: 2.2rem;
            font-weight: 700;            
            max-width: 80%;
        }
        
        .text-element:nth-child(1) {
            color: #fff;
            transition-delay: 0.1s;
			font-size:3vw;
        }
        
        .text-element:nth-child(2) {
            color: #feb47b;
            transition-delay: 0.4s;
        }
        
        .text-element:nth-child(3) {
            color: #00c9ff;
            transition-delay: 0.6s;
        }
        
        .right-panel {
            width: 50%;
            background: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            transition: width 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
        }
        
        .text-content {
            padding: 40px;
            font-size: 1.5rem;
            color: #333;
            line-height: 1.6;
            max-width: 90%;
            border-left: 5px solid #3498db;
            background: rgba(240, 240, 240, 0.8);
            border-radius: 0 12px 12px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: opacity 0.3s ease;
        }
        
       
        
        @media (max-width: 768px) {
			.banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -14vw 0 0px 0;
    transition: transform 0.3s ease-out;
}
            .text-element {
                font-size: 1.5rem;
            }
            
            .text-content {
                font-size: 1.2rem;
                padding: 20px;
            }
        }

/*数字1*/
.digitalq{width:20%;float:left;height: auto;padding:0 0px;color: #fff;margin:0vw 0 3vw 6%;z-index:99;}
.digitalq img{border-radius: 13px;width: 107%;}
.mainallq{width: 100%;height: auto;margin:0 auto;font-size: 0;}
.mumping_munq li{width:80%;display: inline-block;margin:0vw 0.5vw .6vw 0;background-color: rgba(255, 255, 255, .6);border-radius: 15px;padding:3% 5%;box-shadow: 3px 0px 15px 0px #efefef;float:left;}
.mumping_munq li:nth-child(3){margin-right:0px;}
.mun_topq{margin-top: 0.5vw;text-align:left;}
.mumping_munq{width: 100%;list-style: none;}
.mumping_munq dd{font-size:0.9vw;width: 100%;display: block;clear: both;color: #777;font-weight:normal;text-align: left;line-height: 2.2vw;}
.mumping_munq p{font-size: 12px;width: 100%;display: block;clear: both;color: #666;}
.mumping_munq h2{font-size: 1.6vw;font-weight:bold;margin:0 10px 0 0px;color:#222;display: inline;font-family: "Poppins", sans-serif;}
.mumping_munq h2 img{padding:1vw 0px 0px 0px;height: 2vw;width:auto;}
.mumping_munq span{color:#222;font-weight:normal;font-size: .8vw;position: relative;top: -0.5vw;}
.mumping_munq img{padding:0px 0px 0px 0px;width:25px;height:auto;border-radius: 0;}

.ry{width:88%;margin:0 auto 4vw auto;overflow: hidden;}
.marqueeleft{width:100%;overflow:hidden;margin:0px auto;}
.marqueeleft ul{float:left;padding: 10px;}
.marqueeleft li{float:left;margin:0 15px;display:inline;width:160px;overflow:hidden;background-color: rgba(255, 255, 255, .6);padding: 15px;box-shadow: 3px 0px 15px 0px #efefef;border-radius: 15px;}
.marqueeleft li .pic{display:block;border:#ccc 0px solid;width:160px;padding:2px;overflow:hidden;}
.marqueeleft li .txt{text-align:center;height:23px;line-height:23px;}
.marqueeleft li img{width:98%;}

.qqbg{position: absolute;
    left: 0;
    bottom: -15vw;}
.qqbg img{}


/*解决方案*/
.jjfa{position: relative;width: 100%;padding: 0px;background:url(../images/jjfa.jpg) bottom no-repeat fixed;height:54vw;}
.jjfa dd{font-family: "Poppins", sans-serif;color: #fff;font-size: 3.5vw;font-weight:750;text-transform: uppercase;padding:9vw 0% 1vw 6%;line-height: 4vw;}
.jjfa h3{color: #fff;font-size: 1.3vw;padding-left: 6%;}

.fenlei{margin-left:6%;}
.fenlei a{display: inline-block;margin-right:2%;font-weight: bold;
    padding: 3% 2vw;
    margin-top: 19vw;
    background: rgba(255, 255, 255, 0.18);border: 1px solid rgba(255, 255, 255, 0.35);backdrop-filter: blur(8px);
    font-size: 1vw;
    color: #fff;
    overflow: hidden;
    width: 8.5vw;
    line-height: 1.5vw;
    border-radius: 35px;}
.fenlei a img {
    background: none;
    position: relative;
    top: 1vw;
    margin-right: 0.5vw;
    padding: 0;
    border-radius: 0;
    width: 2vw;
    float: left;}
        

/*椤圭洰*/
.xm{background:#f6f6f6 url(../images/quanqiu.jpg) center no-repeat;height: 42vw;
    background-size: cover;
    padding: 0vw 0 0vw 0;
    overflow: hidden;
    margin:0vw auto 0 auto;
    position: relative;}
.video-quanqiu{width: 62%;
    float: right;
    right: 6%;
    position: relative;
    border-radius: 20px;}
.map-service{position:relative;height:25vw;background-size: cover;}
.map-service-right{padding-top:0px;text-align: center;position: relative;}
.map-service-right h3{font-size: 2.4em;color: #fff;text-align: center;margin-bottom: 5px;}
.map-service-right p{font-size: 18px;color: #fff;text-align: center;line-height: 45px;margin-bottom: 60px;}
.china-map{width:62%;height:30vw;background:url(../images/map.png) center no-repeat;position:absolute;margin:-15vw auto;border-radius: 30px;float:right;right:6%;background-size: cover;}
.region-list{position:absolute;left:0;top:0}

.fwzc{width:88%;margin:0 auto;border-top: 0px solid #ddd;padding-top: 7vw;}
.fwzc dd{color: #222;font-size: 1vw;line-height: 1.5vw; margin-bottom: 4vw;font-weight:bold;}
.fwzc dd img{width:1.2vw;position: relative;top: 0.25vw;margin-right: 0.5vw;}
.fwzc h3{font-size: 2.5vw;
    color: #222;
    line-height: 3.2vw;
    margin-bottom: 3.5vw;}
.fwzc p{color: #666;margin: 1vw 0 4vw 0;
    width: 28vw;
    text-align: left;
    font-size: 0.9vw;
    line-height: 1.8vw;
    margin-bottom: 4vw;}

@-webkit-keyframes warn{
0%{-webkit-transform:scale(0);transform:scale(0);opacity:1}
100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}
}
@-moz-keyframes warn{
0%{-moz-transform:scale(0);transform:scale(0);opacity:1}
100%{-moz-transform:scale(1);transform:scale(1);opacity:0}
}
@-o-keyframes warn{
0%{-o-transform:scale(0);transform:scale(0);opacity:1}
100%{-o-transform:scale(1);transform:scale(1);opacity:0}
}
@keyframes warn{
0%{-webkit-transform:scale(0);-moz-transform:scale(0);-o-transform:scale(0);transform:scale(0);opacity:1}
100%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}
}
.area-box .dot{position:absolute;left:-3px;top:-3px;width:20px;height:20px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;background:#f1592a;opacity:1;filter:alpha(opacity=100)}
.area-box .pulse{position:absolute;top:-28px;left:-28px;height:66px;width:66px;border:2px solid #f1592a;-webkit-border-radius:48px;-moz-border-radius:48px;border-radius:48px;-webkit-box-shadow:0 0 4px #f1592a,0 0 10px #f1592a inset;-moz-box-shadow:0 0 4px #f1592a,0 0 10px #f1592a inset;box-shadow:0 0 4px #f1592a,0 0 10px #f1592a inset;opacity:.12;filter:alpha(opacity=0);-webkit-animation:warn 2s ease-out both;-moz-animation:warn 2s ease-out both;-o-animation:warn 2s ease-out both;animation:warn 2s ease-out both;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;background:0 0}
.area-box .delay-01{-webkit-animation-delay:0;-moz-animation-delay:0;-o-animation-delay:0;animation-delay:0}
.area-box .delay-02{-webkit-animation-delay:.4s;-moz-animation-delay:.4s;-o-animation-delay:.4s;animation-delay:.4s}
.area-box .delay-03{-webkit-animation-delay:.8s;-moz-animation-delay:.8s;-o-animation-delay:.8s;animation-delay:.8s}
.area-box .delay-04{-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s;-o-animation-delay:1.2s;animation-delay:1.2s}
.area-box .delay-05{-webkit-animation-delay:1.6s;-moz-animation-delay:1.6s;-o-animation-delay:1.6s;animation-delay:1.6s}
.area-box .delay-06{-webkit-animation-delay:2s;-moz-animation-delay:2s;-o-animation-delay:2s;animation-delay:2s}
.area-box .delay-07{-webkit-animation-delay:2.4s;-moz-animation-delay:2.4s;-o-animation-delay:2.4s;animation-delay:2.4s}
.area-box .delay-08{-webkit-animation-delay:-.4s;-moz-animation-delay:-.4s;-o-animation-delay:-.4s;animation-delay:-.4s}
.area-box .delay-09{-webkit-animation-delay:-.8s;-moz-animation-delay:-.8s;-o-animation-delay:-.8s;animation-delay:-.8s}
.area-box .delay-10{-webkit-animation-delay:-1.2s;-moz-animation-delay:-1.2s;-o-animation-delay:-1.2s;animation-delay:-1.2s}
.area-box .delay-11{-webkit-animation-delay:4s;-moz-animation-delay:4s;-o-animation-delay:4s;animation-delay:4s}
.region-list.active .area-box .dot{background:#f1592a;}
.region-list.active .area-box .pulse{border-color:#f1592a;top:-39px;left:-39px;height:88px;width:88px;-webkit-box-shadow:0 0 12px #f1592a,0 0 20px #f1592a inset;-moz-box-shadow:0 0 12px #f1592a,0 0 20px #f1592a inset;box-shadow:0 0 12px #f1592a,0 0 20px #f1592a inset}
.region-list.waite .area-box .dot{background:#f1592a}
.region-list.waite .area-box .pulse{border-color:#f1592a}
.show-regin{position:absolute;left:2px;height:0;top:0;width:11px;opacity:0;-o-transition:all .5s ease-in-out;-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;transition:all .5s ease-in-out}
.online-node .show-regin,.region-list:hover .show-regin,.underline-node .show-regin,.waite-node .show-regin{height:127px;opacity:1}
.show-regin span{width:80px;position:absolute;left:8px;top:-11px;padding:6px 10px;font-size:14px;color:#ccc;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;text-align:center;white-space:nowrap;}
.postition-10 .show-regin span{left:0}
.postition-6 .show-regin span{left:-72px}
.area-box{z-index:77}
.show-regin{z-index:66}
.region-list.active .show-regin span{position:relative;color:#ccc}
.region-list.waite .show-regin span{color:#ccc}
.postition-1{left:8vw;top:5vw}
.postition-2{left:17vw;top:18vw}
.postition-3{left:18vw;top:24vw}
.postition-4{left:49vw;top:18vw}
.postition-5{left:39vw;top:7vw}
.postition-6{left:53vw;top:23vw}
.postition-7{left:49vw;top:10vw}
.postition-7.region-list.active .area-box .pulse{top:-50px;left:-50px;width:110px;height:110px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}
.postition-8{left:48vw;top:5vw}
.postition-9{left:33vw;top:15vw}
.postition-9.region-list.active .area-box .pulse{top:-50px;left:-50px;width:110px;height:110px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}
.postition-10{left:54vw;top:9vw}
.postition-11{left:43vw;top:12vw}
.postition-13{left:13vw;top:10vw}
.douhao{width:0}

.zzsc{border-top:1px solid #f1f1f1;width:100%; height:auto; margin:0px auto;position: relative;}
.zzsc .xuanxiang{ overflow:hidden;position: absolute;top: 7vw;width: 88%;margin: 0 6%;}
.zzsc .xuanxiang a{ display:block; padding:30px 1vw; float:left; text-decoration:none; color:#333;background-color: rgba(255, 255, 255, .6);margin-left: 0.5vw;margin-bottom: 0.5vw;border-radius: 15px;box-shadow:3px 0px 15px 0px #efefef;}
.zzsc .xuanxiang a:hover{ background:#168ce3; color:#fff; text-decoration:none;}
.zzsc .xuanxiang a.on{ background:#168ce3; color:#fff; text-decoration:none;}
.zzsc .qhcontent{ overflow:hidden; padding:0px;}
.zzsc .qhcontent li{ display:none;height: 52vw;}
.cpxq{
    padding-left: 6%;
    padding-top: 25vw;}
.cpbt{float: left;
    font-size: 1vw;
    font-weight: bold;}
.cpbtr{float: right;padding: 8px;width: 34%;}
.cpxq h5{font-size: 2.5vw;margin: 0 0 1.5vw 0;}
.cpxq p{margin: 0;
    color: #666;
    font-size: 0.9vw;
    line-height: 1.7vw;
    width: 25%;}
.cpxq a{display: inline-block;
    padding: 0 2vw;
    margin-top: 6vw;
    background: #168ce3;
    font-size: 1vw;
    color: #fff;
    overflow: hidden;
    width: 8.5vw;
    line-height: 3vw;
    border-radius: 35px;}
.cpxq a img {
    background: none;
    position: relative;
    top: 0.65vw;
    margin-right: 0.5vw;
    padding: 0;
    border-radius: 0;
    width: 2vw;
    float: right;}

.zigongsi{width:88%;margin:8vw auto 0 auto;}
.zigongsi dd{font-size: 8vw;font-family: "Poppins", sans-serif;
    font-weight: bold;
    color: #168ce31c;}
.zigongsi h3{font-size: 2.5vw;left: 3vw;
    position: relative;
    top: -5vw;}
.zigongsi p{font-size: 0.9vw;
    position: relative;
    left: 58vw;color: #666;
    width: 33%;
    margin: 0;
    line-height: 1.8vw;
    top: -3vw;}

.slider {margin-top: 26vw;margin-bottom: -9vw;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 85vw;
  height: 45vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.slider__slides {
  display: -webkit-box;
  display: flex;
}

.slide {
  --h: 65vw;
  --w: calc(var(--h) * var(--m));
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin-right: 5rem;
  overflow: hidden;
}
.slide__inner {/*background: #fafbfc;*/
  position: relative;
  height: var(--h);
  width: var(--w);
  overflow: hidden;
}
.wenzi{padding: 5%;
   padding:5% 5% 5.2% 5%;
    float: right;
    width: 26%;
    background: #fafbfc;
    height: 17.1vw;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;}
.wenzi img{margin-top:0vw;}
.wenzi h5{font-size: 1.3vw;color: #222;margin: 1vw 0 0.6vw 0;display: none;}
.wenzi p{font-size: 0.75vw;
    color: #666;
    line-height: 1vw;text-align: justify;}
.wenzi a{display: inline-block;
    padding: 0 2vw;
    margin-top: 6vw;
    background: #168ce3;
    font-size: 1vw;
    color: #fff;
    overflow: hidden;
    width: 8.5vw;
    line-height: 3vw;
    border-radius: 35px;}
.wenzi a img {margin-top: 0;
    background: none;
    position: relative;
    top: 0.65vw;
    margin-right: 0.5vw;
    padding: 0;
    border-radius: 0;
    width: 2vw;
    float: right;}

video::-webkit-media-controls {
  display: none !important;
}

/* 隐藏所有控制条界面 */
video::-webkit-media-controls-panel {
  display: none !important;
}

/* 隐藏播放按钮 */
video::-webkit-media-controls-play-button {
  display: none !important;
}

/* 隐藏进度条 */
video::-webkit-media-controls-timeline {
  display: none !important;
}

/* 隐藏声音控制 */
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider {
  display: none !important;
}

/* 隐藏全屏按钮 */
video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* 隐藏剩余时间显示 */
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

/* 隐藏轨道（字幕）按钮 */
video::-webkit-media-controls-toggle-closed-captions-button {
  display: none !important;
}

/* 隐藏下载按钮 */
video::-webkit-media-controls-download-button {
  display: none !important;
}

/* 对于Firefox等浏览器，可以使用以下方式隐藏控制条 */
video::-moz-media-controls {
  display: none !important;
}

/* 对于IE和Edge */
video::-ms-media-controls {
  display: none !important;
}

/* 标准语法（目前可能还没有被广泛支持） */
video::media-controls {
  display: none !important;
}

.play-btn {
            position: absolute;
            top: 5%;
            left: 13%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .play-btn:hover {
            background-color: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.05);
        }
        
        .play-btn::before {
            content: '';
            width: 0;
            height: 0;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 13px solid #3498db;
            margin-left: 5px;
        }
        
        .play-btn.hidden {
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, -50%) scale(0.5);
        }

.fuzeren{width: 8.6vw;position: absolute;
    left: 8%;
    top: 17vw;
        background-color: rgba(255, 255, 255, 0.9);
    padding: 1vw 2vw;
    border-radius: 50px;}
.fuzeren img{width: 2vw !important;margin-right: .6vw;top: 4px !important;
    position: relative !important;
    float: left;}
.fuzeren dt{line-height: 1.2vw;font-size: 0.85vw;}
.fuzeren dt span{font-size: 0.7vw;color: #777;display: block;}

.slide__img {width:65%;
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.slide__img img {border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:auto;
  pointer-events: none;}

/*应用领域*/
.ztyy{width:88%;padding:9vw 6% 8vw 6%;margin:0vw auto 0vw auto;overflow: hidden;position: relative;}
.ztyy .dise {
  position: absolute;
  left: 0;
  top: 8vw;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ztyy .dise .animate-1 {
  border-radius: 50%;
  background: #6db5eb;
  filter: blur(150px);
  position: absolute;
  top: -3%;
  left: -14%;
  animation: animate1 80s linear infinite alternate;
  width: clamp(350px, 25.438vw, 550px);
  height: clamp(350px, 25.438vw, 550px);
}
@keyframes animate1 {
  0% {
    left: 50%;
    top: 0%;
  }
  20% {
    left: 0%;
    top: 32%;
  }
  40% {
    left: 10%;
    top: 70%;
  }
  60% {
    left: 50%;
    top: 0%;
  }
  80% {
    left: 95%;
    top: 30%;
  }
  100% {
    left: 0%;
    top: 0%;
  }
}
.yingyong{width: 33%;z-index: 99;
    position: relative;
    margin: 0vw 0 2vw 0%;
    float: left;}
.yingyong dd{font-size: 1vw;
    font-weight: bold;
    color: #222;}
.yingyong h3{font-size: 2.5vw;left: 0vw;
    position: relative;margin: .5vw 0 3vw 0;
    top: 0vw;}
.yingyong p{font-size: 0.9vw;
    position: relative;
    left: 0vw;color: #666;
    width: 70%;
    margin: 0;
    line-height: 1.8vw;
    top: 0vw;}
.yingyong a{display: inline-block;
    padding: 0 2vw;
    margin-top: 6vw;
    background: #168ce3;
    font-size: 1vw;
    color: #fff;
    overflow: hidden;
    width: 8.5vw;
    line-height: 3vw;
    border-radius: 35px;}
.yingyong a img {
    background: none;
    position: relative;
    top: 0.65vw;
    margin-right: 0.5vw;
    padding: 0;
    border-radius: 0;
    width: 2vw;
    float: right;}

.arrow-left {
    left: 3vw;
    border-bottom: 2px solid #85365f;
    border-left: 2px solid #85365f;
}
.arrow-right {
    right: 32vw;
    border-top: 2px solid #85365f;
    border-right: 2px solid #85365f;
}
.arrow {
    position: absolute;
    content: "";
    top: calc(115% - 10px);
    width: 25px;
    height: 25px;
    transform: rotate(45deg);
    transition: all 200ms;
    cursor: pointer;
}

.linshiyy {position: relative;z-index: 99;
  display: block;
    flex-wrap: wrap;
    justify-content: center;
    width: 55%;
    margin: 0px 0 0px;
    float: right;
}

.yycard {
  width: 100%;
  margin: 10px;}
.yycard:hover .card__caption {
  top: 50%;
  transform: translateY(-50%);
}
.yycard:hover .card__image {
  transform: translateY(-10px);
}
.yycard:hover .card__thumb::after {
  top: 0;
}
.yycard:hover .card__snippet {
  margin: 20px 0;
}
.card__thumb {border-radius: 20px;
  position: relative;
  max-height: 500px;
  overflow: hidden;
}
.card__thumb::after {
  position: absolute;
  top: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  transition: .3s;
}
@media (min-width: 1024px) {
  .card__thumb::after {
    top: calc(100% - 140px);
  }
}
.card__image {width: 100%;
  transition: .5s ease-in-out;
}
.card__caption {
  position: absolute;
  top: 50%;
  z-index: 1;
  padding: 0 60px;
  color: white;
  transform: translateY(-50%);
  text-align: left;
  transition: .3s;
}
@media (min-width: 1024px) {
  .card__caption {
    top: calc(100% - 70px);
    transform: unset;
  }
}
.card__title {color: #fff;
  display: -webkit-box;
  max-height: 85px;
  overflow: hidden;
  font-size: 1.4vw;
  line-height: 28px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card__snippet {
  display: -webkit-box;
  max-height: 150px;
  margin: 20px 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 20px;
  text-overflow: ellipsis;
  transition: .5s ease-in-out;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;}
.card__snippet ul{}
.card__snippet ul li{padding: 5px 20px;
    float: left;
    border: 1px solid #fff;
    margin-right: 1vw;}

@media (min-width: 1024px) {
  .card__snippet {
    margin: 60px 0;
  }
}
.card__button {
  display: inline-block;
  padding: 60px 0px;
  color: white;
  border: 0px solid white;
  font-size: 1vw;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s;
}
.card__button:hover {
  color: black;
  background-color: white;
}

.pulse-container {
            position: absolute;
    width: 100px;
    height: 100px;
    top: 17vw;
    left: 22vw;
        }
.pulse-container1 {
            position: absolute;
    width: 100px;
    height: 100px;
    top: 15vw;
    left: 45vw;}
.pulse-container2 {
            position: absolute;
    width: 100px;
    height: 100px;
    top: 23vw;
    left: 55vw;}
.pulse-container3 {
            position: absolute;
    width: 100px;
    height: 100px;
    top: 37vw;
    left: 8vw;}
.pulse-container4 {
            position: absolute;
    width: 100px;
    height: 100px;
    top: 16vw;
    left: 70vw;}
.pulse-container5 {
            position: absolute;
    width: 100px;
    height: 100px;
    top: 33vw;
    left: 48vw;}
.pulse-container6 {
            position: absolute;
    width: 100px;
    height: 100px;
    top: 30vw;
    left: 78vw;}
        
        .center-circle {
            position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #e4eff5, #0080ff);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 15px #4dc0ff;
    font-size: 30px;
    text-align: center;
    line-height: 35px;
    color: #fff;
        }
        
        .pulse-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: transparent;
            border: 5px solid #fff;
            opacity: 0;
            z-index: 5;
        }
        
        .ring-1 {
            animation: pulse 3s infinite ease-out;
        }
        
        .ring-2 {
            animation: pulse 3s infinite 1s ease-out;
        }
        
        .ring-3 {
            animation: pulse 3s infinite 2s ease-out;
        }
        
        @keyframes pulse {
            0% {
                width: 30px;
                height: 30px;
                opacity: 0.8;
                border-width: 2px;
            }
            50% {
                opacity: 0.4;
            }
            100% {
                width: 100px;
                height: 100px;
                opacity: 0;
                border-width: 1px;
            }
        }

.news{width:94%;padding: 8vw 3% 5vw 3%;overflow: hidden;position: relative;background: #fafbfc;}
.news h3{font-size: 2.5vw;color: #222;position: relative; float: left;}
.news dd {
    color: #222;
    font-size: 1vw;
    line-height: 1.5vw;
    margin-bottom: 1vw;
    font-weight: bold;}
.news ul{padding:0;margin:8vw 0 0 0;overflow: hidden;}
.news ul li{float:left;width:19.5%;margin-right:2%;background:#fff;box-shadow: 0 0.12rem 0.36rem 0 rgba(91,117,127,.15);
    padding: 2%;
    border-radius: 20px;margin-bottom: 4%;padding-bottom: 2%;}
.news ul li:nth-child(4){margin-right:0;}
.news ul li img{width:100%;border-radius: 15px;margin-top: 2vw;transition: all .3s ease;}
.news ul li:hover img{transform: scale(1.05);}
.news ul li dd{font-size:0.8vw;color:#222;padding-top:1vw;}
.news ul li h4{font-size:1.29vw;color:#222;padding:2vw 0 .5vw 0;font-weight:normal;line-height: 1.9vw;height: 11vw;}
.news ul li p{font-size:0.8vw;color:#999;line-height: 1.5vw;}
/* ========== 移动端样式（仅针对最大宽度 768px 设备） ========== */
@media (max-width: 768px) {
    /* 全局调整 */
    body {
        overflow-x: hidden;
        font-size: 14px;
    }

    /* Banner 区域 */
    .banner dd {
        font-size: 3.5vw;
        top: 39vw;
        left: 5%;
        width: 90%;
        line-height: 1.4;
    }

    #ticker {
        top: 28vw;
        left: 5%;
    }

    #ticker h2 {
        font-size: 5vw;
    }

    .banner .video {
        height: 70vw !important;
        object-fit: cover;
    }

    /* 关于我们区域 */
    .aboutall {
        padding: 0vw 0 0vw 0;
        margin-top: -6vw;
    }

    .about {
        width: 92%;
        padding: 0vw 0;
    }

    .aboutl {
        width: 100%;
        float: none;
    }

    .aboutf {
        width: 100%;
    }

    .aboutl dd {
        font-size: 3vw;
        line-height: 5vw;
        width: auto;
        margin-bottom: 2vw;
    }

    .aboutl h3 {
        font-size: 5vw;
        line-height: 6.5vw;
        margin-bottom: 3vw;
    }

    .aboutl p {
        font-size: 3.2vw;
        line-height: 5vw;
        margin-bottom: 8vw;
        width: 100%;
    }

    .aboutl a {
        font-size: 3.5vw;
        width: 28vw;
        line-height: 8vw;
        padding: 0 4vw;
        margin-top: 6vw;
    }

    .aboutl a img {
        width: 5vw;
        top: 1.5vw;
    }

    .aboutr {
        float: none;
        width: 100%;
        margin-top:0vw;
    }

    /* 数字统计 */
    .mumping_mun li {
        width: 100%;
        margin: 0 0 4vw 0;
        padding: 3% 0;
    }

    .mumping_mun h2 {
        font-size:8vw;
    }

    .mumping_mun h2 img {
        height: 6vw;
    }

    .mumping_mun span {
        font-size: 3.5vw;
        top: -1vw;
    }

    .mumping_mun dd {
        font-size: 3.5vw;
        line-height:7vw;
    }

    /* 视频缩放模块 */
    .video-section {
        margin-top: 0;
        height: 60vw;
        padding: 10px 0;
    }

    .video-spkd {
        width: 93% !important;
        height: 100% !important;
        border-radius: 15px;
        margin: 16vw 3.6%;
    }

    .video-description {
        font-size: 3.5vw;
        margin-top: 20px;
        padding: 0 15px;
    }

    .ztu {
        width: 70%;
        margin-top: 0vw;
        margin-bottom: 0vw;
    }

    .ztu h4 {
        font-size: 5vw;
        line-height: 6vw;
        left: 20vw;
        top: 18vw;
    }

    .ztu img {
        width: 25vw;
        height: 25vw;
        left: 5vw;
        top: 12vw;
    }

    /* 子公司区域 */
    .zigongsi {
        width: 92%;
        margin: 12vw auto 0;
    }

    .zigongsi dd {
        font-size: 12vw;
    }

    .zigongsi h3 {
        font-size: 5vw;
        top: -8vw;
        left: 5vw;
    }

    .zigongsi p {
        font-size: 3.2vw;
        left: 0;
        width: 100%;
        top: -2vw;
        line-height: 5vw;
    }

    /* 子公司滑动组件 */
    .slider {
        width: 95vw;
        height: auto;
        margin-top: 15vw;
        margin-bottom: 5vw;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .slider__slides {
        display: flex;
        width: max-content;
    }

    .slide {
        --h: 74vw;
        --w: calc(var(--h)* 1.2);
        margin-right: -6vw;
    }

    .slide__inner {
        display: flex;
        flex-direction: column;
		        height: auto;
    }

    .slide__img {
        width:79%;
        height: auto;
    }

    .slide__img video {
        height:40vw !important;
        border-radius: 15px 15px 0 0;
		width:100% !important;
    }

    .wenzi {
        width: 73%;
        padding: 3%;
        height: 57vw;
        border-radius: 0 0 20px 20px;
        float: right;
        margin-top: 41vw;
        margin-bottom: 6vw;
    }

    .wenzi h5 {
        font-size: 4vw;
    }

    .wenzi p {
        font-size: 3vw;
        line-height:5vw;
    }

    .wenzi a {
        font-size: 3.5vw;
        width: 28vw;
        line-height: 8vw;
        margin-top: 4vw;
    }

    .wenzi a img {
        width: 5vw;
        top: 1.5vw;
    }

    /* 产品系列选项卡 */
    .zzsc .xuanxiang {
        position: relative;
        top: 0;
        width: 94%;
        margin: 0 3%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .cpbt {
        font-size: 4vw;
        margin-bottom: 3vw;
        padding-top: 6vw;
    }

    .cpbtr {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 2vw;
    }
    
    .zzsc .xuanxiang a {
        padding: 2vw 5vw;
        font-size:3.5vw;
        margin-left: 0;
        margin-bottom: 2vw;
        width: auto;
        text-align: center;
    }

    .zzsc .qhcontent li {
        height: auto;
        min-height: 70vw;
        background-position: center;
		margin-bottom: 8vw;
    }

    .cpxq {
        padding-left: 5%;
        padding-top: 35vw;
    }

    .cpxq h5 {
        font-size: 5vw;
    }

    .cpxq p {
        font-size: 3.2vw;
        line-height: 5vw;
        width: 80%;
    }

    .cpxq a {
        font-size: 3.5vw;
        width: 28vw;
        line-height: 10vw;
        margin-top: 6vw;
        padding-left: 4vw;
    }
     .cpxq a img {
    background: none;
    position: relative;
    top:2.5vw;
    margin-right: 2.5vw;
    padding: 0;
    border-radius: 0;
    width: 5vw;
    float: right;
}
    /* 应用领域板块 */
    .jjfa {
        height: auto;
        padding-bottom: 15vw;
        background-attachment: scroll;
    }

    .jjfa dd {
        font-size: 7vw;
        padding: 12vw 0 2vw 5%;
        line-height: 8vw;
    }

    .jjfa h3 {
        font-size: 4vw;
        padding-left: 5%;
    }

    .fenlei {
        margin-left: 5%;
        display: flex;
        flex-wrap: wrap;
        gap: 3vw;
    }

    .fenlei a {
        width: 18vw;
        font-size: 3.5vw;
        padding:5vw 4vw;
        margin-top: 8vw;
        text-align: left;
        line-height: 5vw;
        border-radius: 15px;
    }
	.fenlei a img {
    background: none;
    position: relative;
    top: 1vw;
    margin-right: 0.5vw;
    padding: 0;
    border-radius: 0;
    width: 6vw;
    float: left;
}

    /* 地图服务区域 */
    .xm {
        height: auto;
        padding-bottom: 10vw;
    }

    .fwzc {
        width: 92%;
        padding-top: 10vw;
    }

    .fwzc dd {
        font-size: 3.5vw;
        line-height: 5vw;
    }

    .fwzc h3 {
        font-size: 5vw;
        line-height: 6.5vw;
        margin-bottom: 5vw;
    }

    .fwzc p {
        width: 100%;
        font-size: 3.2vw;
        line-height: 5vw;
    }

    .digitalq {
       width: 84%;
        margin: 0% 4%;
        float: none;
        position: relative;
        top: 24vw;
    }
	.mumping_munq span {
    color: #222;
    font-weight: normal;
    font-size: 4vw;
    position: relative;
    top: -1vw;
}

    .mumping_munq li {
        width: 100%;
        margin: 0 0 3vw 0;
        padding: 4%;
    }

    .mumping_munq h2 {
        font-size: 5vw;
    }

    .mumping_munq dd {
        font-size: 3.5vw;
        line-height: 5vw;
    }

    .map-service {
        height: auto;
        overflow-x: auto;
    }

    .china-map {
        width: 100%;
        height: 75vw;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        margin: 0;
        right: auto;
        float: none;
    }
	
	.area-box .dot {
    position: absolute;
    left: -3px;
    top: -3px;
    width: 3vw;
    height: 3vw;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #f1592a;
    opacity: 1;
    filter: alpha(opacity=100);
}

    /* 地图上的脉冲点位置微调（保持大致位置，避免严重错位） */
    .postition-1 { left: 9vw; top: 18vw; }
    .postition-2 { left: 25vw; top: 22vw; }
    .postition-3 { left: 28vw; top: 32vw; }
    .postition-4 { left: 55vw; top: 26vw; }
    .postition-5 { left: 50vw; top: 35vw; }
    .postition-6 { left: 55vw; top: 45vw; }
    .postition-7 { left: 75vw; top: 37vw; }
    .postition-8 { left: 85vw; top: 50vw; }
    .postition-9 { left: 78vw; top: 28vw; }
    .postition-10 { left: 86vw; top: 20vw; }
    .postition-11 { left: 52vw; top: 18vw; }
    .postition-13 { left: 29vw; top: 51vw; }

    /* 新闻动态 */
    .news {
        width: 92%;
        padding: 12vw 4% 8vw;
    }

    .news h3 {
        font-size: 5vw;
        float: none;
        margin-bottom: 6vw;
    }

    .news dd {
        font-size: 3.5vw;
        margin-bottom: 2vw;
    }

    .news ul li {
        width: 92%;
        margin-right: 0;
        margin-bottom: 6vw;
        padding: 4%;
    }
    .news ul li img {
    width: 96%;
    border-radius: 15px;
    margin-top: 4vw;
    transition: all .3s ease;
    padding: 0 2%;
}
    .news ul li h4 {
        font-size: 4vw;
        height: auto;
        line-height: 6vw;
        padding: 2vw 0 1vw;
    }

    .news ul li p {
        font-size: 3vw;
        line-height: 4.5vw;
    }

    .news ul li dd {
        font-size: 3vw;
    }

    /* 进度指示器隐藏（移动端占用空间且不实用） */
    .progress-indicator {
        display: none !important;
    }

    /* 滚动提示隐藏 */
    .scroll-hint {
        display: none !important;
    }

    /* 控制按钮调整大小 */
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* 其他微调 */
    .fuzeren {
        width: 25vw;
        top: 25vw;
        left: 5%;
        padding: 2vw 4vw;
    }

    .fuzeren img {
        width: 5vw !important;
    }

    .fuzeren dt {
        font-size: 2.8vw;
        line-height: 4vw;
    }

    /* 隐藏部分装饰性过大元素 */
    .dise .animate-1 {
        width: 200px;
        height: 200px;
        filter: blur(80px);
    }

    /* 确保视频控件在移动端不溢出 */
    video {
        max-width: 100%;
        height: auto;
    }
}
