/* CSS 样式 */



.carousel-aa {
  max-width: 100%; /* 容器宽度最大不超过父容器的宽度 */
  overflow: hidden; /* 防止图片溢出 */
  display: flex; /* 使用 Flexbox */
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
    margin-top: 10px; /* 上边距为10像素 */
  margin-bottom: 10px; /* 下边距为10像素 */
}

.carousel-aa img {
  max-width: 100%; /* 图片宽度最大不超过容器的宽度 */
  max-height: 100%; /* 图片高度最大不超过容器的高度 */
  width: auto; /* 图片宽度自适应 */
  height: auto; /* 图片高度自适应 */
  object-fit: contain; /* 图片完整显示在容器内 */
}

@media screen and (max-width: 767px) {
  .carousel-aa {
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .carousel-aa {
    height: 80%;
  }
}

@media screen and (min-width: 992px) {
  .carousel-aa {
    height: 60%;
  }
}





    .video-container {
        position: relative;
        width: 100%;
        max-width: 500px; /* 设置视频最大宽度 */
        margin: 0 auto; /* 居中显示 */
    }

    .video-container video {
        width: 100%;
        height: auto;
    }

    .watermark {
        position: absolute;
        top: 20px; /* 调整水印位置 */
        left: 30px; /* 调整水印位置 */
        font-size: 16px;
        color: white;
        background-color: rgba(0, 0, 0, 0.0); /* 水印背景颜色，可根据需要调整透明度 */
        padding: 5px 10px;
        text-decoration: none; /* 移除链接下划线 */
        display: flex;
        align-items: center;
    }

    .watermark img {
        width: 60px; /* 设置图片宽度 */
        margin-right: 5px; /* 设置图片和文本间距 */
    }
.watermark {
    text-decoration: none !important;
}








/* 移除特定链接的颜色和下划线 */  
.no-link-style {  
    color: inherit; /* 继承父元素的颜色 */  
    text-decoration: none; /* 移除下划线 */  
}  
  
/* 移除特定链接在鼠标悬停时的颜色变化和下划线 */  
.no-link-style:hover {  
    color: inherit; /* 保持继承的颜色 */  
    text-decoration: none; /* 保持无下划线 */  
}





       #suggestions {
    display: none;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: rgba(221, 246, 246, 0.9); /* 90% 不透明度的灰色背景 */
    border-top-left-radius: 0;
border-bottom-left-radius: 20px;
border-top-right-radius: 0;
border-bottom-right-radius: 20px;

    }
        .suggestion {
            padding: 8px;
            cursor: pointer;
        }
        .suggestion:hover {
            background-color: #f2f2f2;
        }



#currentPage {
   

    margin-left: 10px; /* 左外边距10px */
    margin-right: 10px; /* 右外边距10px */
    /* 其他样式规则 */
}



#totalPages {
   

    margin-left: 10px; /* 左外边距10px */
    margin-right: 10px; /* 右外边距10px */
    /* 其他样式规则 */
}




#pagination {
    text-align: center;
  }

#prevPage , #nextPage {
    text-align: center;
    background-color: #007bff; /* 背景颜色 */
    color: #fff; /* 文本颜色 */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 8px; /* 圆角 */
  text-align: center; /* 文本居中 */
  font-size: 14px;
  }
        /* 鼠标悬停时的效果 */
        #prevPage:hover, #nextPage:hover {
            background-color: #0056b3; /* 鼠标悬停时的背景颜色 */
            transform: translateY(-1px);
            box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
        }

        /* 鼠标按下时的效果 */
        #prevPage:active, #nextPage:active {
            background-color: #0056b3; /* 鼠标悬停时的背景颜色 */
            transform: translateY(1px);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        }



  .top-section {
            height: 150px;
            background-color: #f0f0f0;
            position: fixed;
            top: 0px;
            left: 0;
            right: 0;
            z-index: 1;
            box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
        }
        
        .bottom-section {
            margin-top: 150px; /* 上半部分高度的一半，使其重叠 */
            padding: 0px; /* 可以根据需要添加内边距 */

        }
        

        
/* 搜索框类容样式 */
#searchContainer {
  display: flex; /* 使用Flex布局 */
  align-items: center;
  justify-content: center; /* 水平居中 */
  margin: 5px auto;
  font-size: 16px;
  padding-right: 5px;
  padding-left: 5px;
  z-index: 1;
  margin-top: 60px;
}
#searchContainer h5 {
  padding-top: 5px;
  padding-bottom: 5px; /* 左右各添加16像素的内边距 */
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 100%;
}
#searchInput {
  padding: 5px 5px; /* 左右各添加16像素的内边距 */
  border: 1px solid #ccc;
  border-radius: 10px; /*  设置圆角半径 */
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: rgba(255, 255, 255, 0.5); /* 白色背景，透明度为50% */
}
#searchButton {
  background-color: #FF4400;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 35px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
        /* 鼠标悬停时的效果 */
        #searchInput:hover {
            transform: translateY(-1px);
            box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
        }

        /* 鼠标按下时的效果 */
        #searchInput:active {
            transform: translateY(1px);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        }
        /* 鼠标悬停时的效果 */
        #searchButton:hover {
            transform: translateY(-1px);
            box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
        }

        /* 鼠标按下时的效果 */
        #searchButton:active {
            transform: translateY(1px);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        }








/* 媒体查询：电脑 */
@media screen and (min-width: 1024px) { 
 
  #searchInput {
    width: 600px;
  }
    
   #suggestions{
    width: 618px;
  }
  #searchButton {
    width: 100px;
  }
}
/* 媒体查询：平板 */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  #searchInput {
    width: 500px;
  }
  #suggestions{
    width: 518px;
  }
  #searchButton {
    width: 80px;
  }
}
/* 媒体查询：手机 */
@media screen and (max-width: 767px) and (min-width: 351px) {
  #searchInput {
     width: 250px
  }
  #suggestions{
    width: 268px;
  }
  #searchButton {
    width: 50px;
  }
  #searchContainer h5 {
    display: none;
  }
}
   
/* 媒体查询：手机 */

@media screen and (max-width: 350px) {
  #searchInput {
     width: 200px
  }
    #suggestions{
    width: 218px;
  }
  #searchButton {
    width: 40px;
  }
  #searchContainer h5 {
    display: none;
  }
}   
   
   
.center-container {
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  height: 30vh; /* 使用视口高度来充满整个屏幕 */
  padding: 0 10px; /* 左右内边距为10px，上下内边距为0 */
}


  
  
  
  

  .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
   /* 将卡片元素移到下层，使 z-index 较小 */
  z-index: 0;
}





.container {
            display: flex;
            flex-direction: column;
            align-items: center; /* 垂直居中 */
            text-align: center; /* 文本居中 */
            padding: 20px;
            font-size: 14px;
            
        }

        .card-text {

            white-space: nowrap; /* 不换行 */
            overflow: hidden; /* 处理文本溢出 */
            text-overflow: ellipsis; /* 超出部分用省略号表示 */
            max-width: 100%; /* 最大宽度为容器宽度 */
            display: flex; /* 使用弹性盒子布局 */
            align-items: center; /* 垂直居中 */
            justify-content: center; /* 水平居中 */
            font-size: 14px;
        }

        .myInput {
            width: 100%; /* 让输入框的宽度与外部容器一致 */
            box-sizing: border-box; /* 让输入框的宽度包含边框 */
            padding: 5px;
            border: none;
            background-color: transparent; /* 去掉背景色 */
            font-size: 0.1rem;
            text-align: center; /* 文本居中 */
             align-items: center; /* 垂直居中 */
        }

        
        
        
        
        
        

.button-container {
            display: flex; /* 使用弹性盒子布局 */
            align-items: center; /* 垂直居中 */

        }

        .button-container a,
        .button-container button {
            flex: 1; /* 均分可用空间 */
            margin: 5px; /* 调整按钮之间的间距 */
            background-color: #007bff; /* 背景颜色 */
            color: #fff; /* 文本颜色 */
            border: none; /* 去除边框 */
            cursor: pointer;
            text-decoration: none;
            border-radius: 8px; /* 圆角 */
            text-align: center; /* 文本居中 */
            height: 25px; /* 固定按钮高度为14px */
            line-height: 25px; /* 使文本垂直居中 */
            font-size: 14px;
        }

        .button-container a:hover,
        .button-container button:hover {
            background-color: #0056b3; /* 鼠标悬停时的背景颜色 */
            box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
        }













.card-img-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 90px;

}


.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
        height: 90px;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
padding-top: 0rem;
padding-right: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 0.5rem;
}
.card-title {
  margin-bottom: 0.5rem;
}





.gallery {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
            column-count: 4; /* 列数为4 */
            column-gap: 10px; /* 列之间的间隔为10px */
            align-items: flex-start; /* 顶端对齐 */
        }
        .image {
            width: 100%; /* 每个项目的宽度为100% */
            background-color: #FFFFFF;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            margin-bottom: 10px; /* 垂直间距为10px */
            break-inside: avoid-column; /* 避免跨列分割 */
            padding: 5px;
            box-sizing: border-box;
            
        }
                .image:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: brightness(0.9); /* 鼠标经过时使图像变暗 */
}

    .image img {
    width: 100%;
    height: auto;
    display: block;

} 




        .image-ab {
            width: 100%; /* 每个项目的宽度为100% */
           /* background-color: #FFFFFF; */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 10px; /* 垂直间距为10px */
            break-inside: avoid-column; /* 避免跨列分割 */
            padding: 15px;
            box-sizing: border-box;
            display: flex;  
    align-items: center; /* 垂直居中 */  
    justify-content: center; /* 水平居中，如果需要的话 */
    
            
        }









        /* 响应式布局 */
        @media screen and (max-width: 1024px) {
            .gallery {
                column-count: 3; /* 列数为3 */
            }
        }

        @media screen and (max-width: 768px) {
            .gallery {
                column-count: 2; /* 列数为1 */
            }
        }











.container-02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 5px;

}



  
.box-02 {
    flex: 1;

 min-width: calc(25% - 5px); /* 电脑端一排4容器 */
margin-bottom: 10px;
   padding: 5px; 
    box-sizing: border-box;

            background-color: #FFFFFF;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
           
           
            
        }
                .box-02:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: brightness(0.9); /* 鼠标经过时使图像变暗 */
}

         .box-02 img {
     width: 100%;
     height: auto;
    display: block;

} 




/* 媒体查询：电脑 */
@media screen and (max-width: 1024px) {

    .box-02 {
        min-width: calc(33.33% - 5px); /* 平板一排3容器 */
    }
}

/* 媒体查询：平板和手机共享样式 */
@media screen and (max-width: 1023px) and (max-width: 768px) {


    ..box-02 {
        min-width: calc(50% - 5px); /* 每行两张图片，每张图片占据1/2的宽度 */
    }



}

/* 媒体查询：手机 */
@media screen and (max-width: 767px) {


    .box-02 {
        min-width: calc(100% - 5px); /* 手机一排1容器 */
    }



}






         /*                     首页样式                */


.galleryz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}




.imagez {
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
    height: 90px;
     background-color: #f3f3f3; /* 添加背景色 */
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.imagez:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: brightness(0.8); /* 鼠标经过时使图像变暗 */
}


.image-container{
    width: 90px;
    height: 90px;
    float: left;
    margin-right: 20px;
    transition: opacity 0.5s ease-in-out; /* 添加透明度过渡效果 */
    background-repeat: no-repeat; /* 防止背景图片重复 */
}
.image-container02 {
    width: 80%;
    height: 500px;
    float: left;
    margin-right: 20px;
    transition: opacity 0.5s ease-in-out; /* 添加透明度过渡效果 */
    background-repeat: no-repeat; /* 防止背景图片重复 */
    background-size: contain; /* 确保背景图片完整显示在容器中而不变形 */
}


/*.imagez img {
    width: 90px;
    height: 90px;
    float: left;
    margin-right: 20px;
    transition: opacity 0.5s ease-in-out; 
} 添加透明度过渡效果 */


.contentkk {
    margin: 0; /* 清除默认的段落外边距 */
    font-size: 12px; /* 设置字体大小为14px */
    color: #333333; /* 设置字体颜色为灰色 */
padding: 5px;

}
.contentkk p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 设置文本最大行数 */
        -webkit-box-orient: vertical;
    }

.contenthh {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 设置文本最大行数 */
        -webkit-box-orient: vertical;
        color: #333333ab;
    }

.title {
    font-size: 14px;
    margin: 0;
    color: black; /* 设置字体颜色为黑色 */

}
.titlegg {
    font-size: 16px;
    margin: 0;
    color: black; /* 设置字体颜色为黑色 */
    font-weight: bold; /* 将字体加粗 */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 设置文本最大行数 */
        -webkit-box-orient: vertical;
}

/* 媒体查询：电脑 */
@media screen and (min-width: 1024px) {

    .imagez {
        flex-basis: calc(33.33% - 10px); /* 每行三张图片，每张图片占据1/3的宽度 */
    }
}

/* 媒体查询：平板和手机共享样式 */
@media screen and (max-width: 1023px) {


    .imagez {
        flex-basis: calc(50% - 10px); /* 每行两张图片，每张图片占据1/2的宽度 */
    }



}

/* 媒体查询：手机 */
@media screen and (max-width: 767px) {


    .imagez {
        flex-basis: 100%; /* 每行一张图片，每张图片占据100%的宽度 */
    }



}