body, html {
    margin: 0;
    padding: 0;
}
body{
    font-family: Microsoft YaHei UI;
    user-select: none;           /* 标准语法 */
      -webkit-user-select: none;   /* Chrome/Safari */
      -moz-user-select: none;      /* Firefox */
      -ms-user-select: none;       /* IE/Edge */
}
h1,h2,h3,h4,h5,p{padding:0;margin:0;}
.header{width:100%;height:68px;border:0 solid blue;margin:0 auto;display:flex;position:fixed;top:0;left:0;z-index:9999;background-color:#fff;box-shadow: 0px 4px 4px 0px #00000040;}
.header .head{width:1044px;margin:0 auto;display:flex;justify-content: space-between;align-items:center;}
.header .head .logo{width:220px;}
.header .head .nav a{margin-right:20px;color:#000;text-decoration: none;}
.header .head .right{display:flex;flex-direction:row;align-items:center;}
.header .head .search{width:120px;height:28px;border:1px solid #000;border-radius:4px;display:flex;justify-content:space-between;align-items:center;}
.header .head .search input{width:80px;border:none;outline:unset;}
.header .head .search img{width:24px;height:24px;}
h1{font-weight:900 !important;}
/* 基础导航样式 */
.nav-menu {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1000;
}

.menu-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

/* 一级下拉菜单样式 */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 4px 4px;
    padding: 5px 0;
    z-index: 1001;
}

/* 二级下拉菜单样式 */
.submenu.level-2 {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

.submenu-item {
    display: block;
    padding: 8px 15px;
    color: #555;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

.submenu-item:hover {
    background-color: #f0f0f0;
    color: #222;
}

/*.has-submenu::after {*/
/*    content: "›";*/
/*    position: absolute;*/
/*    right: 10px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    color: #999;*/
/*}*/

/*.submenu .has-submenu::after {*/
/*    content: "›";*/
/*    right: 10px;*/
/*}*/
.imgThree{width:100%;display:flex;justify-content:space-between;}
.imgThree .img{width:calc(100% / 3 - 10px);margin-right:10px;height:240px;}
.imgThree .img img{width:100%;height:220px;}
.imgThree .img:last-child{margin-right:0;}

.imgTwo{width:100%;display:flex;justify-content:space-between;}
.imgTwo .img{width:48%;}
.imgTwo .img img{width:100%;height:280px;}

.container{width:100%;text-align:Center;display:flex;justify-content:center;flex-direction:column;padding:40px 0;}
.container p{font-size:24px;}
.container .btitle{width:1044px;margin: 0 auto;display:flex;justify-content:space-between;}
.container .btitle .l{display:flex;flex-direction:row;}

.container .btitle .l h1{font-weight:900 !important;font-size:30px;}
.container .btitle .l p{color:#333;font-size:12px;padding:0 20px 6px 20px;display:flex;align-items:end;}
.container .btitle .r{display:flex;flex-direction:row;background-color:#fff;padding:0 10px;height:26px;border-radius:5px;align-self:end;align-items:center;margin-right:20px;cursor:pointer;}
.container .btitle .r p{font-size:12px;}
.container .btitle .r img{width:14px;height:14px;margin-left:4px;}

/* 滑动图片容器 */
        .slider-container {
            position: relative;
            margin: 30px 0 50px;
        }
        
        .slider-wrapper {
            /*overflow-x: auto;*/
            /*scroll-snap-type: x mandatory;*/
            /*scroll-behavior: smooth;*/
            /*-webkit-overflow-scrolling: touch;*/
            display: flex;
            gap: 15px;
            padding: 10px 0;
            margin-right: calc(-50vw + 522px);
            padding-right: calc(50vw - 522px);
        }
        
        .slider-wrapper::-webkit-scrollbar {
            height: 5px;
        }
        
        .slider-wrapper::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }
        
        /* 图片卡片 */
        .image-card {
            scroll-snap-align: start;
            flex: 0 0 auto;
            width: 310px;
            height: 125px;
            border-radius: 8px;
            overflow: hidden;
            /*box-shadow: 0 3px 10px rgba(0,0,0,0.1);*/
            position: relative;
            background-color: #F2F2F2;
            cursor: pointer;
            padding: 10px;
            
        }
        
        .image-card .t {
            padding: 10px 0;
            display: flex;justify-content: space-between;
            align-items: center;
        }
        .image-card h2 {
            font-weight: 800;
        }
        .image-card span {
            background-color: #CCCCCC;
            color:#fff;
            padding: 4px 10px;
            border-radius: 10px;
        }
        
        .image-card:hover .t h2 {
            transform: scale(1.05);
        }
        .image-card:hover p {
            color: #3476A7;
        }
        .image-card:hover .t span {
            background-color: #3476A7;
        }
        
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 10px;
            font-size: 14px;
        }
        .imgContainer{width:1044px;margin:0 auto;padding:30px 0;}
        .slider-wrapper {
              overflow-x: auto;
              -ms-overflow-style: none;  /* IE & Edge */
              scrollbar-width: none;     /* Firefox */
            }
            
            .slider-wrapper::-webkit-scrollbar {
              display: none;             /* Chrome/Safari */
            }
        /* 内容区块 */
        .content-section {
            margin:0 auto;
            width:1044px;
            
        }
        
        .content-section h1{font-weight: 900 !important;font-size:30px;}
        .content-section h1 label{font-size:14px;color:#333;font-weight:400;padding-left:10px;}
        


.imgLis{width:3000px;overflow-x:auto;position:absolute;left:0;top:0;display:flex;flex-direction:row;flex-wrap:nowrap;}

.imgList{width:1044px;margin:20px auto;display:flex;flex-direction:row;flex-wrap:wrap;position:relative;}
.imgList .li{width:calc(100% / 4 - 20px);margin-right:20px;display:flex;flex-direction:column;margin-bottom:20px;cursor:pointer;background-color:#ffffff;border-radius:10px;overflow:hidden;position:relative;}

.imgList .li:hover span b{transform: scale(1.05);}
.imgList .li:hover span label{color:#3477A7;}
.imgList .li img{width:100%;height:148px;}
.imgList .li .more{position:absolute;top:calc(100% - 98px);right:0;background-color:#fff;color:#fff;padding:4px 0 0 4px;border-radius:5px 0 0 5px;}
.imgList .li .more h4{background-color:#000;color:#fff;padding:2px 6px;border-radius:5px;font-size:12px;display:flex;align-items: center;
}
.imgList .li h4 img{width:14px;height:14px;}
.imgList .li span{background-color:#778D9E;line-height:17px;display:flex;justify-content:center;flex-direction:column;cursor:pointer;}
.imgList.white .li span{background-color:#ffffff !important;padding: 10px 10px;text-align: left;}
.imgList.white .li span b{font-weight:900;font-size:16px;padding-bottom:6px;}

.imgList .li span label{font-size:12px;color:#000;}
.imgList .li:nth-child(4n){margin-right:0;}
img.full{width:100%;}
p.center{width:100%;text-align:center;text-indent:unset !important;}

.indeMap{padding:0 0 40px 0;background-color:#ffffff;width:100%;display:flex;justify-content:center;}
.indeMap .mapMain{width:1024px;height:680px;border-radius:42px;overflow:hidden;
box-shadow: 
    30px 35px 45px 0px #D1D9E67A, 
    30px 28px 38px 0px #D1D9E666, 
    30px 24px 34px 0px #D1D9E657, 
    30px 54px 67px 0px #D1D9E6AB;

}
.indeMap img{width:100%;height:800px;}

.otherTit{width:100%;text-align:center;font-size:20px;}

.twoSlider{display:flex;justify-content:space-between;}
.twoSlider .left{display:flex;flex-direction:column;width:45%;}
.twoSlider .right{display:flex;flex-direction:column;width:45%;}
.twoSlider .right img{width:100%;}

/***home/about***/
.datas{width:1044px;margin:0 auto;padding:30px 0;list-style-type: none;}
.datas h2{margin-top:20px;}
.datas p{text-indent:2em;line-height:30px;}
.datas ul{list-style-type: square;list-style-position: inside;line-height:30px;}
.datas ul li{list-style: unset !important;}
.datas table th,td{vertical-align: top;line-height:34px;font-weight:400;font-size:14px;}

.team{width:1044px;margin:0 auto;padding:30px 0;list-style-type: none;}
.team h2{margin-top:20px;}
.team p{text-indent:2em;line-height:30px;}
.team ul{list-style-type: disc;list-style-position: inside;line-height:30px;}
.team ul li{list-style: unset !important;}
.two{display:flex;justify-content:space-between;}
.two p{text-indent:unset !important;}
.two .twoLeft{width:64%;}
.two .twoRight{width:34%;display:flex;flex-direction:column;}

table.cityTable {
    width: 80%;
    border-collapse: collapse;
    margin: 20px 0;
}

table.cityTable th, td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

table.cityTable th {
    background-color: #4a6fa5;
    color: white;
    font-weight: bold;
}

table.cityTable tr:nth-child(even) {
    background-color: #f2f2f2;
}
table.cityTable td {
    padding:10px;
}
table.cityTable tr:hover {
    background-color: #e6f2ff;
}

table.cityTable .highlight {
    color: #d9534f;
    font-weight: bold;
}

.navss{width:1044px;margin:0 auto;padding-top:20px;}

.footer{width:100%;display:flex;flex-direction:column;}
.footer .footer1{width:100%;background-color:#073150;margin:0 auto;display:flex;align-items:center;}
.footer .footer1 .footer1s{width:980px;border:0 solid white;margin:0 auto;display:flex;justify-content:space-around;color:#fff;padding:30px 0;}

.footer .footer1 .footer1s .left{width:300px;display:flex;justify-content:right;}
.footer .footer1 .footer1s img.flogo {width:24px;height:24px;position:absolute;left:-60px;top:0;}
.footer .footer1 .footer1s .left .fleftList{color:#fff;font-size:12px;margin-top:80px;}
.footer .footer1 .footer1s .left .fleftList a{color:#fff;font-size:12px;}

.footer .footer1 .footer1s .right{width:700px;display:flex;justify-content:space-between;}
.footer .footer1 .footer1s .li{display:flex;flex-direction:column;position:relative;}
.footer .footer1 .footer1s .li a{color:#fff;font-size:12px;margin-bottom:10px;text-decoration:none;}
.footer .footer1 .footer1s .li h2{color:#fff;font-size:16px;}

.footer .footer2{width:100%;background-color:#073150;text-align:center;color:#fff;font-size:12px;line-height:18px;padding-bottom:10px;}
.footer .footer2 a{color:#fff;}


/*.footer .footer1 .footer1s .left{width:300px;display:flex;flex-direction:column;}*/
/*.footer .footer1 .footer1s .left .flogo{display:flex;align-items:center;font-weight:900;font-size:20px;}*/
/*.footer .footer1 .footer1s .left .flogo img{width:24px;height:24px;margin-right:10px;}*/
/*.footer .footer1 .footer1s .left .fleftList{color:#fff;font-size:12px;margin-top:80px;}*/
/*.footer .footer1 .footer1s .left .fleftList a{color:#fff;font-size:12px;}*/

/*.footer .footer1 .footer1s .right{width:700px;display:flex;justify-content:space-between;}*/
/*.footer .footer1 .footer1s .right .li{display:flex;flex-direction:column;}*/
/*.footer .footer1 .footer1s .right .li a{color:#fff;font-size:12px;margin-bottom:10px;text-decoration:none;}*/
/*.footer .footer1 .footer1s .right .li h2{color:#fff;font-size:16px;margin-bottom:30px;}*/

/*.footer .footer2{width:100%;height:30px;background-color:#3476A7;text-align:center;color:#fff;font-size:12px;line-height:30px;}*/
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height:680px;
  padding:0;
  line-height: 0;
  overflow: hidden;
  box-sizing: border-box; /* 包含 border 和 padding 在高度内 */
  border: 0;
  top: 0;
}
.carousel-container-small {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height:180px;
  padding:0;
  line-height: 0;
  overflow: hidden;
  box-sizing: border-box; /* 包含 border 和 padding 在高度内 */
  border: 0;
  top: 0;
}

.carousel {
    height:680px;
    width: 100%;
  display: flex;
  transition: transform 0.5s ease;
  object-fit: cover; /* 保持宽高比，覆盖整个容器 */
  object-position: center; /* 图片居中显示 */
}

.carousel img {
  width: 100%;
  min-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* 保持宽高比，覆盖整个容器 */
  object-position: center; /* 图片居中显示 */
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  font-size: 24px;
  user-select: none;
}

.carousel-arrow.prev {
  left: 15px;
}

.carousel-arrow.next {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: white;
}
/* 确保上方元素无 margin */
.above-carousel-div {
    margin-bottom: 0 !important;
}

table.cityTable th, td{border:unset !important;}
