/*==========================================
               樣式
===========================================*/
button { border:0 none; 
    background:transparent; cursor:pointer; 
}
#touchSlider6 {
    background: #ccc;
    position: relative;
    overflow: hidden;
}
#touchSlider6 ul {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
#touchSlider6 ul li {
    background: #cdcdcd;
    font-size: 14px;
    color: #fff;
}
#touchSlider6 img {
    width: 100%;
}
@media screen and (max-width: 680px){
    #touchSlider6 .pic {
    	overflow: hidden;
    	position: relative;
    	height: 200px;
    	width: 100%;
    	max-width: 100%;
    	margin: auto;
    	background-color: #E6E6E6;
    }
    #touchSlider6 .pic img {
        position: absolute;
    	height: 200px;
        width: auto;
    	transition: all 0.3s linear;
        -webkit-backface-visibility: hidden;
    	-webkit-transform: translate(-50%, -50%);
    	transform: translate(-50%,-50%);
        top: 50%;
        left: 50%;
    }
}
.slider-controls {
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}
.slider-controls .prev {
    display: block;
    width: 100px;
    height: 36px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
}
.slider-controls .next {
    display: block;
    width: 100px;
    height: 36px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
}
.slider-controls .paging {
    box-sizing: border-box;
    width: 100%;
    height: 36px;
    padding-top: 8px;
    text-align: center;
}
.slider-controls .page {
    display: inline-block;
    width: 12px;
    height: 0;
    max-height: 12px;
    padding-top: 11px;
    margin-left: 9px;
    border-radius: 10px;
    background: rgba(155, 155, 155, 0.8);
    box-shadow: 0px 0px 2px #000;
    overflow: hidden;
}
.slider-controls .page:first-child {
    margin-left: 0;
}
.slider-controls .page.on {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 3px #000;
}
/*==========================================
               video
===========================================*/
/* video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container video, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}