
/* 顶部固定 */
.header-box {
  position: fixed;
  z-index: 9998;
  width: 100%;
}
.header-box-shadow {
  height: 82px;
}

/* 滑动轮播 */
.swiper-container {
  /*height: 450px;*/
}

/* tab切换 */
.part-scenes-box {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.part-scenes-box.selected {
  opacity: 1;
  transform: scale(1);
}
.hide {
  display: none;
}

/* 核心功能特效 */
.function-list {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.function-list.show {
  transform: scale(1);
  opacity: 1;
}
.par-list-box{
  transform: scale(1);
  
  transition: all 0.5s ease-in-out;
}
.par-list-box.show1{
  transform: scale(1.2);
  
}

.par-list-box.show2{
  transform: scale(1);
}
.part-left-main{
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.part-left-main.show {
  transform: scale(1);
  opacity: 1;
}
.ut-main-box{
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.ut-main-box.show {
  transform: scale(1);
  opacity: 1;
}

.part-right-main{
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.part-right-main.show {
  transform: scale(1);
  opacity: 1;
}

