#nicedit_0 {
    font-size: 15px;
    color: #222;
    line-height: 2;
}
#wrap {
    max-width: 1080px;
}
#side {
    display: none;
}
#main {
    width: 100%;
}

/*換圖語法*/
.slideshow {
    border: 1px solid  rgba(255, 255, 255, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    width: 600px;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin: 0px auto;
}
@media only screen and (max-width: 767px) {   
  .slideshow{  
    width: 600px;
    height: 0px;
    padding-bottom:50%
  }}
.slideshow > img {
    -webkit-animation:slideshow 30s infinite;
    animation:slideshow 30s infinite;
    opacity: 0;
    position: absolute;
    width:100%;
}
@-webkit-keyframes slideshow{   
   3.3% {opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/}
   16.6% {opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/}
   20% {opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/}
}
@keyframes slideshow{   
   3.3% {opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/}
   16.6% {opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/}
   20% {opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/}
}
.slideshow {
    max-width: 100%;
}
.slideshow > img:nth-child(6){
  -webkit-animation-delay:0s;
  animation-delay:0s;
}
.slideshow > img:nth-child(5){
  -webkit-animation-delay:5s;
  animation-delay:5s;
}
.slideshow > img:nth-child(4){
  -webkit-animation-delay:10s;
  animation-delay:10s;
}
.slideshow > img:nth-child(3){
  -webkit-animation-delay:15s;
  animation-delay:15s;
}
.slideshow > img:nth-child(2){
  -webkit-animation-delay:20s;
  animation-delay:20s;
}
.slideshow > img:nth-child(1){
  -webkit-animation-delay:25s;
  animation-delay:25s;
}