/*动画效果*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleXout {
  0% {
    transform: scale(0.98,1);
  }
  50% {
    transform: scale(1.02,1);
  }
  100% {
    transform: scale(0.98,1);
  }
}

@keyframes slideIn {
  0% {
    margin-top: -1.5%;
		opacity: 0;
  }
	70%{
		margin-top: +1.5%;
	}
  100% {
    margin-top: 0%;
		opacity: 1;
  }
}

@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
@keyframes leftIn {
  0% {
    margin-left: -10%;
  }
  100% {
    margin-left: 0%;
  }
}
@keyframes bounceScaleIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slideIn1 {
  0% {
    margin-top: -1.2%;
  }
	50% {
	  margin-top: 0%;
	}
  100% {
    margin-top: -1.2%;
  }
}
@keyframes slideIn2 {
  0% {
    margin-top: -1.2%;
  }
	50% {
	  margin-top: +1.1%;
	}
  100% {
    margin-top: 0%;
  }
}
@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes animation-down {
  from {
      opacity: 0;
      transition: all 1s ease 0s, opacity 1.5s ease 0s;
      transform: translateY(-40px);
  }
  to {
      opacity: 1;
      transition: all 1s ease 0s, opacity 1.5s ease 0s;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideWidthInFromLeft {
  0%{
    width:0%;
  }
  50%{
    width:50%;
  }
  100%{
    width:100%;
  }
}


@keyframes backgroundChange {
  0% { background-color: #000; }
  50% { background-color: #3b3b3b; }
  100% { background-color: #000; } /* 可以选择回到起始颜色，也可以不返回 */
}

@keyframes backgroundChangeHui {
  0% { background-color: #fff;}
  50% { background-color: #e5e5e5;}
  100% { background-color: #fff;} /* 可以选择回到起始颜色，也可以不返回 */
}

@keyframes imgBgIn {
  0% {
    background-position: 30rem 10rem;
    opacity: 0.5;
  }
  100% {
    background-position: 30rem -1rem;
    opacity: 1;
  }
}
@keyframes listHeightIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveUp {
  from {
      max-height: 17.5rem;
  }
  to {
      max-height: 30rem;
  }
}

.articleInFromLeft {
  animation: slideWidthInFromLeft 0.5s ease-out forwards;
}

.all-an-down {
  animation: animation-down 2s 1;
}


/*特效样式*/
.overflow-hidden {
  overflow: hidden;
}

.b-radius {
  border-radius: 1rem;
}

.b-radius1 {
  border-radius: 1.5rem;
}

.b-radius2 {
  border-radius: 0.2rem;
}

.rotate-images {
  cursor: pointer;
  animation: rotate 1s linear;
}

.scale-images {
  cursor: pointer;
}

.scale-images:hover {
  transform: scale(1.1);
  transition: all 1s ease-out;
}

.scale-box {
  cursor: pointer;
}

.scale-box:hover {
  transform: scale(1.1);
  transition: all 1s ease-out;
}

.scale-text {
  cursor: pointer;
}

.scale-text:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-out;
}

.fadeIn {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.fadeOut {
  opacity: 1;
  animation: fadeOut ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.imageLeftIn {
  opacity: 1;
  animation: leftIn 1s;
}

.case-fade {
  cursor: pointer;
  opacity: 0.3;
}

.case-fade:hover {
  opacity: 1;
  animation: slideIn1 2s;
}
.tisheng-bounceScaleIn{
  opacity: 1;
  animation: bounceScaleIn 1s;
}

.bjts-width {
  cursor: pointer;
  opacity: 0.8;
}

.bjts-width:hover {
  opacity: 1;
}

.tisheng-case {
  cursor: pointer;
  opacity: 0.8;
}

.tisheng-case:hover {
  opacity: 1;

}

.gongyi-jingsai-hover {
  cursor: pointer;
  opacity: 0.8;
}

.gongyi-jingsai-hover:hover {
  opacity: 1;
}
/*第三方独立样式*/
/*图片遮罩效果*/
.card {
  cursor: pointer;
  width: 27.3rem;
  height: 47.4rem;
  padding: 2rem 1rem;
  background: #fff;
  position: relative;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  transition: 0.5s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(5px);
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
  z-index: 2;
  transition: all 0.5s;
  opacity: 0;
}

.card:hover:before {
  opacity: 1;
}

.card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}

.card .info {
  position: relative;
  z-index: 3;
  color: #fff;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.5s;
  height: 47.4rem;
}

.card:hover .info {
  opacity: 1;
  transform: translateY(0px);
}

.card .info span {
  color: #494949;
  font-size: 1.4rem;
  font-family: PingFangScThin;
  font-weight: bold;
  display: block;
  margin-top: 7.4rem;
}

.card .info p {
  text-align: center;
}

.card .info .btn {
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
}

.card .info .btn:hover {
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}

/*图片通栏滚动效果*/
#container {
  height: 23rem;
}

#container2 {
  height: 23rem;
}

#container3 {
  height: 23.6rem;
}
#container4 {
  height: 23.6rem;
}
#container5 {
  height: 23.6rem;
}

.programs-roll-row {
  overflow: hidden;
  position: relative;
}

.programs-roll-row ul {
  width: 2000rem;
  position: absolute;
}


/*三图层叠切换swiper6*/
#certify {
	position: relative;
	width: 140rem;
	margin: 0 auto
}

#certify .swiper-container {
	padding-bottom: 60px;
}

#certify  .swiper-slide {
	width: 767px;
	height: 604px;
}
#certify  .swiper-slide img{
	display:block;
}
#certify  .swiper-slide p {
	line-height: 98px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 1.1em;
	margin: 0;
}

#certify .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #00aadc;
	background-color: #fff;
}

#certify .swiper-button-prev {
	left: -30px;
	width: 45px;
	height: 45px;
	background: url(../images/wm_button_icon.png) no-repeat;
	background-position: 0 0;
	background-size: 100%;
}

#certify .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}

#certify .swiper-button-next {
	right: -30px;
	width: 45px;
	height: 45px;
	background: url(../images/wm_button_icon.png) no-repeat;
	background-position: 0 -93px;
	background-size: 100%;
}

#certify .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}
#certify .swiper-button-prev::after,#certify .swiper-button-next::after{
	content: '';
}