/*** 按钮 ***/
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}

.btn.btn-dark {
  color: var(--bs-white);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--bs-primary);
  background: var(--bs-light);
}
/*** 按钮 ***/


/*** 导航栏 ***/
.responsive-icon2 {
  display: none;
}

.responsive-icon1 {
  display:block; 
  margin:auto;
}

@media (max-width: 992px) {
  .responsive-icon1 {
    display: none;
  }
  
  .responsive-icon2 {
      display: inline-block;
      margin: 0 5px;
  }
}

.responsive-icon2 {
  display: block;
  margin: auto;
}

@media (min-width: 992px) {
  .responsive-icon2 {
      display: none;
  }
}

.nav-bar {
    background: var(--body-color);
    transition: 1s;
  }
  
  .navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
  }
  
  .nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
  }
  
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;  
  }
  
  .navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
  }
  
  .navbar-light .navbar-nav .nav-item:hover,
  .navbar-light .navbar-nav .nav-item.active,
  .navbar-light .navbar-nav .nav-item:hover .nav-link,
  .navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
  }
  
  @media (min-width: 1200px) and (max-width: 1400px) {
    .carousel-inner{
      height: 700px;
    }
  }  
  @media (min-width: 991px) and (max-width: 1200px) {
    .carousel-inner{
      height: 650px;
    }
  }  

  @media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }
  
    .navbar .navbar-nav .nav-link {
        padding: 0;
    }
  
    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
  
    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }
  
    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }
  
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 3px 7px;
        border: 0px solid var(--bs-primary);
        color: var(--bs-primary);
    }
    
    .hidden-content {
        display: none; /* 初始隐藏按钮展开内容 */
    }
  }
  
  .navbar .dropdown-toggle::after {
    border: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
  }

  .dropdown .dropdown-menu .dropdown-item {
    height: 50px;
  }
  
  .dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: all 0.5s ease;
  }
  
  .dropdown-divider {
    margin: 0px 0;
    border-top: 1px solid #e9ecef; /* 设置横线的颜色和样式 */
  }
  
  @media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }
  
    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }
  
    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }
  
    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }
  
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 5;
        border-radius: 0px;
        transition: .5s;
        opacity: 0;
    }
  
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
  }
  /*** 导航栏 ***/

  
  /*** 轮播图 ***/

  .carousel-caption {
    bottom: 20px; /* 调整底部间距 */
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    padding: 10px;
    border-radius: 5px;
  }

  /* 定义动画 */
  @keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
  }

  /* 应用动画 */
  .slide-in-from-left1 {
    animation: slideInFromLeft 1s ease-in-out;
  }
  .slide-in-from-left2 {
    animation: slideInFromLeft 1.05s ease-in-out;
  }

  
  /* 定义动画 */
  @keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
  }

  /* 应用动画 */
  .slide-in-from-right1 {
      animation: slideInFromRight 1.05s ease-in-out;
  }
  .slide-in-from-right2 {
    animation: slideInFromRight 1s ease-in-out;
  }

/*** 轮播图 ***/


/*关于威美*/
#weimei00 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .8s ease-in-out;
}
#weimei00.show {
  opacity: 1;
  transform: translateY(0);
}

#weimei11 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .9s ease-in-out;
}
#weimei11.show {
  opacity: 1;
  transform: translateY(0);
}

#weimei22 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.1s ease-in-out;
}
#weimei22.show {
  opacity: 1;
  transform: translateY(0);
}

#weimei33 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#weimei33.show {
  opacity: 1;
  transform: translateY(0);
}

#weimei44 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.5s ease-in-out;
}
#weimei44.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-area {
  padding: 80px 0 70px;
}
.single-feature-box {
  background: var(--header-color);
  filter: drop-shadow(0 0 9px rgba(2,2,2,0.1));
  padding: 40px 23px 16px;
  text-align: center;
  border-radius: 20px;
  margin: 40px 0 30px;
  position: relative;
  z-index: 1;
}
.single-feature-box i{
  color: var(--iocn-color)
}
.single-feature-box a{
  background: #1062ec;
}

.single-feature-box:before {
  position: absolute;
  content: "";
  background-color: #1062ec;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: .9s;
z-index: -1;
border-radius: 20px;
transform:scale(0);
}

.feature-title h3 {
  font-size: 22px;
  padding: 9px 0 10px;
  transition:.5s;
}
.feature-text p {
  transition: .5s;
}

.Section-title h3 {
  font-size: 35px;
  line-height: 34px;
}
.Section-title p {
  width: 90%;
  padding: 16px 0 4px;
}
.feature-area .Section-title p {
  width: 74%;
  float: right;
  transition: .5s;
  margin: 0;
}
.single-feature-box:hover:before {
  transform:scale(1);
}
.single-feature-box:hover .feature-title h3 {
  color:#fff;
}
.single-feature-box:hover .feature-text p {
  color:#fff;
}

.single-feature-box:hover .feature-thumb i {
  color: #fff;
}
/*关于威美*/

/*关于威美2*/
#weimei2-00 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#weimei2-00.show {
  opacity: 1;
  transform: translatex(0);
}
#weimei2-11 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1s ease-in-out;
}
#weimei2-11.show {
  opacity: 1;
  transform: translatex(0);
}

#weimei2-22-11 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#weimei2-22-11.show {
  opacity: 1;
  transform: translatex(0);
}
#weimei2-22-22 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.425s ease-in-out;
}
#weimei2-22-22.show {
  opacity: 1;
  transform: translatex(0);
}
#weimei2-22-33 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.55s ease-in-out;
}
#weimei2-22-33.show {
  opacity: 1;
  transform: translatex(0);
}
#weimei2-22-44 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.675s ease-in-out;
}
#weimei2-22-44.show {
  opacity: 1;
  transform: translatex(0);
}

#weimei2-33 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.2s ease-in-out;
}
#weimei2-33.show {
  opacity: 1;
  transform: translatex(0);
}
#weimei2-44 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.325s ease-in-out;
}
#weimei2-44.show {
  opacity: 1;
  transform: translatex(0);
}
#weimei2-55 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.45s ease-in-out;
}
#weimei2-55.show {
  opacity: 1;
  transform: translatex(0);
}
#weimei2-66 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.575s ease-in-out;
}
#weimei2-66.show {
  opacity: 1;
  transform: translatex(0);
}
/*关于威美2*/

/*** 管理系统 ***/
#guanlixitong {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .8s ease-in-out;
}
#guanlixitong.show {
  opacity: 1;
  transform: translateY(0);
}

#xtgl {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .9s ease-in-out;
}
#xtgl.show {
  opacity: 1;
  transform: translateY(0);
}
#lcgl {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.1s ease-in-out;
}
#lcgl.show {
  opacity: 1;
  transform: translateY(0);
}
#xsgl {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#xsgl.show {
  opacity: 1;
  transform: translateY(0);
}
#scgl {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.5s ease-in-out;
}
#scgl.show {
  opacity: 1;
  transform: translateY(0);
}

#ckgl {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .9s ease-in-out;
}
#ckgl.show {
  opacity: 1;
  transform: translateY(0);
}
#cggl {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.1s ease-in-out;
}
#cggl.show {
  opacity: 1;
  transform: translateY(0);
}
#cwgl {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#cwgl.show {
  opacity: 1;
  transform: translateY(0);
}
#sjap {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.5s ease-in-out;
}
#sjap.show {
  opacity: 1;
  transform: translateY(0);
}




.s22{
  font-size: 2.5em;
}
.service .service-item {
  border-radius: 10px;
}
.service .service-item .service-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.1);
}

.shadow-effect {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 水平偏移, 垂直偏移, 模糊半径, 阴影颜色 */
  transition: box-shadow 0.3s; /* 添加过渡效果使阴影变化更平滑 */
}
.shadow-effect:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* 鼠标悬停时增加阴影大小 */
}

.service .service-item .service-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.service .service-item:hover .service-img::after {
  height: 100%;
}

.service .service-item .service-img .service-icon {
  position: absolute;
  width: 70px;
  bottom: 0;
  right: 25px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 9;
}

.service .service-item .service-img .service-icon i {
  color: var(--iocn-color);
  transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
  transform: rotateX(360deg);
  color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
  bottom: 0;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.service .service-content {
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--body-color);
}

.service .service-item .service-content .service-content-inner {
  position: relative;
  z-index: 9;
}

.service .service-item .service-content .service-content-inner .h2,
.service .service-item .service-content .service-content-inner p {
  transition: 0.5s;
  color: var(--title2-color);
}

.service .service-item:hover .service-content .service-content-inner .h2,
.service .service-item:hover .service-content .service-content-inner p {
  color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
  color: var(--bs-primary);
  background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h2:hover {
  color: var(--title2-color);
}

.service .service-item .service-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 1;
}

.service .service-item:hover .service-content::after {
  height: 100%;
}
/*** 管理系统 ***/

/*** 常见问题 ***/
#cjwt1 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#cjwt1.show {
  opacity: 1;
  transform: translatex(0);
}

#cjwt2 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1s ease-in-out;
}
#cjwt2.show {
  opacity: 1;
  transform: translatex(0);
}
/*** 常见问题 ***/



/*** 经典案例 ***/
#jingdiananli {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .8s ease-in-out;
}
#jingdiananli.show {
  opacity: 1;
  transform: translateY(0);
}

#cj1 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .9s ease-in-out;
}
#cj1.show {
  opacity: 1;
  transform: translateY(0);
}
#cj2 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.1s ease-in-out;
}
#cj2.show {
  opacity: 1;
  transform: translateY(0);
}
#cj3 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#cj3.show {
  opacity: 1;
  transform: translateY(0);
}
#cj4 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.5s ease-in-out;
}
#cj4.show {
  opacity: 1;
  transform: translateY(0);
}

#cj5 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform .9s ease-in-out;
}
#cj5.show {
  opacity: 1;
  transform: translateY(0);
}
#cj6 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.1s ease-in-out;
}
#cj6.show {
  opacity: 1;
  transform: translateY(0);
}
#cj7 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.3s ease-in-out;
}
#cj7.show {
  opacity: 1;
  transform: translateY(0);
}
#cj8 {
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1.5s ease-in-out;
}
#cj8.show {
  opacity: 1;
  transform: translateY(0);
}



.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.team .team-item .team-img .team-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin-bottom: -100%;
  transition: 0.5s;
  z-index: 9;
  font-size: 13px;
  text-align:center;
}

.team .team-item:hover .team-img .team-icon {
  margin-bottom: 0;
}

.team .team-item .team-title {
  color: var(--bs-white);
  background: var(--body2-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.5s;
}

.team .team-item .team-title h4 {
  color: var(--text-color);
}
.team .team-item .team-icon p {
  color: black;
}

.team .team-item:hover .team-title {
  background: #1062ec;
}
.team .team-item:hover .team-title h4 {
  color: #fff;
}
.team .team-item:hover .team-icon p {
  color: black;
}
/*** 经典案例 ***/


/*** 新闻动态 ***/
#xinwendongtai {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1s ease-in-out;
}
#xinwendongtai.show {
  opacity: 1;
  transform: translatex(0);
}

#new1 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.4s ease-in-out;
}
#new1.show {
  opacity: 1;
  transform: translatex(0);
}
#new2 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1.2s ease-in-out;
}
#new2.show {
  opacity: 1;
  transform: translatex(0);
}
#new3 {
  position: relative;
  opacity: 0;
  transform: translatex(-200%);
  transition: opacity 1s, transform 1s ease-in-out;
}
#new3.show {
  opacity: 1;
  transform: translatex(0);
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.news-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 60px); /* 减去日期部分的宽度 */
  margin-left: -20px; /* 设置左侧外边距 */
}

.icon22 {
  vertical-align: middle; /* 垂直居中对齐 */
  margin-right: 7px; /* 右侧间距 */
  font-size: 7px;
}

.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
  background: var(--body-color);
}

.blog .blog-item .blog-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(1, 95, 201, .2);
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 10px;
  display: inline-flex;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 9;
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--body-color);
}

.blog .blog-item .blog-content a.btn {
  color: var(--bs-dark);
}

.blog .blog-item .blog-content a {
  color: var(--title-color);
  text-decoration: none;
}

.blog .blog-item:hover .blog-content a.btn:hover {
  color: var(--bs-primary);
}
/*** 新闻动态 ***/


/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
  position: relative;
  overflow: hidden;
}

.footer .footer-item .footer-instagram img {
  transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
  transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
  opacity: 1;
  background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
  background: var(--bs-light);
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-white);
}
/*** Footer End ***/



/* 回到顶部 */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 194px;
  right: 20px;
  padding: 0px 8px;
  background-color: var(--buttonbdc11-color);
  color: var(--buttonc11-color);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 32px;
  transition: background-color 0.3s;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#backToTopBtn:hover {
  color: var(--button11hover-color);
}

/* 平滑滚动效果 */
html {
  scroll-behavior: smooth;
}
/* 回到顶部 */



/* 微信二维码 */
.button-container {
  position: fixed;
  bottom: 146px;
  right: 20px;
  display: inline-block;
}

.image-button {
  padding: 7px 13px;
  background-color: var(--buttonbdc11-color);
  color: var(--buttonc11-color);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: none; /* 初始状态下隐藏按钮 */
  font-size: 22px;
}

.image-button:hover {
  background: var(--button11hover-color);
}

.image-preview {
  display: none;
  position: absolute;
  top: -87px; /* 调整图片的位置 */
  right: 60px;
  width: 150px;
  height: 220px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 5px;
  }

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 微信二维码 */

/* QQ二维码 */
.button-container2 {
  position: fixed;
  bottom: 98px;
  right: 20px;
  display: inline-block;
}

.image-button2 {
  padding: 7px 16px;
  background-color: var(--buttonbdc11-color);
  color: var(--buttonc11-color);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: none; /* 初始状态下隐藏按钮 */
  font-size: 22px;
}

.image-button2:hover {
  background: var(--button11hover-color);
}

.image-preview2 {
  display: none;
  position: absolute;
  top: -87px; /* 调整图片的位置 */
  right: 60px;
  width: 150px;
  height: 220px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 5px;
  }

.image-preview2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QQ二维码 */


/* 收藏 */
#bookmarkButton {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
  padding: 7px 13px;
  background-color: var(--buttonbdc22-color);
  color: var(--buttonc22-color);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 22px;
  transition: background-color 0.3s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

#bookmarkButton:hover {
  background-color: var(--button22hover-color);
}

/* 收藏 */




/* 返回首页 */
#homeButton {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
  padding: 7px 13px;
  background-color: var(--buttonbdc22-color);
  color: var(--buttonc22-color);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 22px;
  transition: background-color 0.3s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

#homeButton:hover {
  background-color: #0056b3; /* 鼠标悬停时的背景颜色 */
}

#homeButton.show {
  display: block;
  opacity: 1;
}
/* 返回首页  */