body {
	font-family: Microsoft JhengHei;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
	font-size: large;
}

a {
    color: #000;
    text-decoration: none;
}
  
a:hover{
    color: #ff0000;
    text-decoration: none;
}

.slider_container {
    margin: 20px auto;
    width: 600px;
    height: 380px;
    position: relative;

}

.slider_container div {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.slider_container div {
    -webkit-animation: round 20s linear infinite;
            animation: round 20s linear infinite;
}

@-webkit-keyframes round {
    5% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    25% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}
@keyframes round {
    5% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    25% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}
.slider_container div:nth-child(5) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.slider_container div:nth-child(4) {
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
}

.slider_container div:nth-child(3) {
    -webkit-animation-delay: 8s;
            animation-delay: 8s;
}

.slider_container div:nth-child(2) {
    -webkit-animation-delay: 12s;
            animation-delay: 12s;
}

.slider_container div:nth-child(1) {
    -webkit-animation-delay: 16s;
            animation-delay: 16s;
}

.slider_container:hover div {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
}

.mobile {
	width: 600px;
	height: 380px;
}

.float, .half{
	float:left; width:50%; padding-top:10px;
}

.center {
    margin: auto;
    width: 90%;
    padding: 10px;
}

.icon {
	float: left;
	padding-right: 8px;

}
