.headContent{
	text-align: center;
}


.headContent img{
    width: 100%;
    height: auto;
}
@media screen and (min-width: 1024px)  and (min-width: 1200px){

 .headContent .container{
    max-width: 1024px;
    width: 1024px;
}

}


.goTop {
position: fixed;
bottom: 5px; /* 與下方的距離, 也可改為百分比, 即為距離螢幕下方的百分比 */
right: 5px; /* 與右方的距離 */
opacity: 0.4; /* 按鈕原始透明度 */
z-index: 100;
cursor: pointer;
transition: all .5s; /* 動畫效果 持續期間 */
-webkit-transition: all .5s;
-moz-transition: all .5s;
}
.goTop:hover { /* 滑鼠經過按鈕時 */
opacity: 1; /* 透明度 */
}