@charset "UTF-8";

/*---------------------------------
              main
---------------------------------*/
@media screen and (max-width: 980px) {
.item-img2 {
  position: relative;
  width: 300px;
  height: 346px;
  overflow: hidden;
  margin: 0 5px;
}
.item-img2 a {
  display    : block;
  position   : absolute;
  overflow   : hidden;
  width      : 300px;
  height     : 300px;
}
.item-img2 img {
  width: 300px;
  height: auto;
  overflow: hidden;
}
.item-img2 p {
  display    : block;
  position   : absolute;
  font-size: 32px;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 310px;
}





.item2 {
  margin: 0 4px;
  height: 430px;
}
.item2 a,
.all-btn {
  text-decoration: none;
}


.other-btn {
  width: 800px;
  font-size: 30px !important;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #333333;
  margin: 40px 0 40px 0;
  padding: 25px 0;
  border-radius: 15px;
}


/*---------------------------------
          slider item
---------------------------------*/
.slider-item2 {
  position: relative;
  width: 300px;
  height: 300px;
  padding-left: 0px;
  margin: 0 5px;
  overflow: hidden;
}
.images {
  position: absolute;
  overflow: hidden;
  height: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  animation: image-switch-animation 10s infinite;
}
@keyframes image-switch-animation {
  0%{ opacity: 0; height: auto;}
  0.1%{ opacity: 1;}
	15%{ opacity: 1;}
  20%{ opacity: 1;}
	21%{ opacity: 0;}
	100%{ opacity: 0;}
}
.images:nth-of-type(1) {
  animation-delay: 0s;
}
.images:nth-of-type(2) {
  animation-delay: 2s;
}
.images:nth-of-type(3) {
  animation-delay: 4s;
}
.images:nth-of-type(4) {
  animation-delay: 6s;
}
.images:nth-of-type(5) {
  animation-delay: 8s;
}

.slide-name-container {
  position: relative;
}
.slide-name {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  font-size: 32px;
  opacity: 0;
  animation: name-switch-animation 10s infinite;
}
@keyframes name-switch-animation {
  0%{ opacity: 0;}
  0.1%{ opacity: 1;}
	15%{ opacity: 1;}
  20%{ opacity: 1;}
	21%{ opacity: 0;}
	100%{ opacity: 0;}
}
.slide-name:nth-of-type(1) {
  animation-delay: 0s;
}
.slide-name:nth-of-type(2) {
  animation-delay: 2s;
}
.slide-name:nth-of-type(3) {
  animation-delay: 4s;
}
.slide-name:nth-of-type(4) {
  animation-delay: 6s;
}
.slide-name:nth-of-type(5) {
  animation-delay: 8s;
}









}