body{
    font-size: 16px;
}
.background{
    background-image: url(../img/background.png);
    background-repeat: repeat-x;
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}
.wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}
.content::after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
nav.menu{
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.6);
    padding: 10px 5%;
}
nav.menu>ul{
    width: 400px;
    overflow: hidden;
    margin: auto;
}
nav.menu>ul>li{
    width:  50%;
    float:  left;
    margin: 10px 0px;
    padding: 0px 10px;
    text-align:  center;
}
nav.menu>ul>li a{
    display: block;
}
nav.menu>ul>li a>span{
    color: #fc8f37;
    border: 2px #fc8f37 solid;
    border-radius: 20px;
    background-color: #fff;
    padding: 0px 20px;
    font-size: 125%;
    font-weight: bold;
    letter-spacing: 0px;
    display: block;
    line-height: 40px;
    text-align: center;
}
nav.menu>ul>li a.current>span,
nav.menu>ul>li a:hover>span{
    background-color: #ff6600;
    color: #fff;
}
nav.menu .title{
    width: 80%;
    margin: 0 auto 10px;
}
nav.menu .title>img{
    display: block;
    margin: auto;
}
/*選單的按鈕*/
.menuBtn{
    width: 70px;
    height: 70px;
    display: none;
    border-radius: 100%;
    background-color: #fff;
    position: relative;
    z-index: 3;
}
.menuBtn::before{
    content: '台湾十岛';
    display: block;
    color: #fff;
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}
.menuBtn span,
.menuBtn span::before,
.menuBtn span::after{
    content: '';
    width: 40px;
    height: 3px;
    background-color: #1598a3;
    display: block;
    position: absolute;
    left: calc((100% - 40px)/2);
    top: calc((100% - 3px)/2);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.menuBtn span{
    text-indent: -9999px;
}
.menuBtn span::before{
    margin-top: -10px;
}
.menuBtn span::after{
    margin-top: 10px;
}

.menuBtn.open span{
    background-color: rgba(0, 0, 0, 0);
}
.menuBtn.open span::before{
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menuBtn.open span::after{
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*menu選單*/
.selectBox>ul>li {
    display: inline-block;
    margin: 6px 10px;
}
.selectBox>ul>li a {
    display: inline-block;
    width: 104px;
}
.selectBox>ul>li a span {
    color: #fc8f37;
    border: 2px #fc8f37 solid;
    border-radius: 20px;
    background-color: #fff;
    padding: 0px 20px;
    font-size: 125%;
    font-weight: bold;
    letter-spacing: 0px;
    display: block;
    line-height: 40px;
    text-align: center;
    -webkit-box-shadow: 2px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 2px rgba(0,0,0,0.2);
    -o-box-shadow: 2px 2px rgba(0,0,0,0.2);
    -ms-box-shadow: 2px 2px rgba(0,0,0,0.2);
    box-shadow: 2px 2px rgba(0,0,0,0.2);
}
.selectBox>ul>li a.current span {
    background-color: #ff6600;
    color: #fff;
}

.menuBtn.current{
    position: fixed;
    right: 5%;
    z-index: 10;
    background: #e52564 url(../img/icon/close.png) no-repeat center;
}
.menuBtn.current>span{
    display: none;
}
footer,
footer a{
    color: #04959c;
    font-size: 100%;
	font-weight: bolder !important;
}
footer .logo{
    width: 121px;
    height: 45px;
    float: left;
    position: relative;
}
footer .logo img{
    width: 100%;
    height: 100%;
    position: absolute;
}
footer .copyright{
    float: left;
    padding-left: 50px;
}
footer .copyright p{
    display: inline-block;
    margin: 5px;
	font-weight:bolder !important;
}
footer .copyright p:first-child{
    display: block;
}
.address{
    border: 1px #6ba8c7 solid;
    padding: 2px 10px;
    display: inline-block;
}
.address::after{
    content: '';
    background: url(../img/icon/address.png) no-repeat center/contain;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
}
.top{
    position: fixed;
    right: 5%;
    bottom: 5%;
}
.topBtn{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #fff;
    display: table;
}
.topBtn > span{
    display: table-cell;
    vertical-align: middle;
    color: #ff6600;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 840px) {
    footer{
        padding: 10px 5%;
    }
    footer .logo{
        margin: auto;
        float: none;
    }
    footer .copyright{
        padding: 0;
        float: none;
    }
    footer .copyright p{
        display: block;
        margin: 10px 0px;
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .menuBtn{
        width: 60px;
        height: 60px;
        display: block;
        border-radius: 100%;
    }
    nav.menu>ul{
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .menuBtn{
        width: 50px;
        height: 50px;
    }
    .menuBtn::before{display: none;}
    .menuBtn span, .menuBtn span::before, .menuBtn span::after{
        width: 30px;
        left: calc((100% - 30px)/2);
    }
    .menuBtn span::before {
        margin-top: -8px;
    }
    .menuBtn span::after {
        margin-top: 8px;
    }
    nav.menu>ul>li{
        margin: 5px 0px;
        padding: 0px 5px;
    }
    nav.menu .title>img{
        width: 100%;
    }
    footer .copyright p{
        font-size: 90%;
        line-height: 1.4em;
        margin: 5px 0px;
    }
}
@media screen and (max-width: 400px) {
    footer{
        padding: 10px;
    }
}     
