/* ==========================================================================
   One Page Scroll with Animations styles
   ========================================================================== */
body, html {
  margin: 0;
  overflow: hidden;
  -webkit-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  transition: opacity 400ms;
  
}

body, .onepage-wrapper, html {
  display: block;
  position: static;
  padding: 0;
  width: 100%;
  height: 100%;

}

.onepage-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 0;
  -webkit-transform-style: preserve-3d;

}

.onepage-wrapper .section {
  width: 100%;
  height: 100%;

}

.onepage-wrapper .ops-section {
    width: 100%;
    height: 100%;
    position: relative;
	background-color: rgb(0 0 0 / 0.1);
	width:100%;
	height:100%;
}

.onepage-wrapper .ops-section:before{
    width: 100%;
    height: 100%;
    position: absolute;
	content:'';
	top:0;
	left:0;
	background-color: rgb(0 0 0 / 0.1);
	width:100%;
	height:100%;
}


.main section {
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-content{
	position: relative;
    top: 35%;
	padding: 0 15px;
	max-width: 1200px;
	margin: 0 auto 0;
}

	.bannertextArea {
		transition: transform .6s .9s;
	}
	/*初始位置*/
	.fadeup {
		transform:translate3d(0, 400%, 0);
	}
	/*飛入位置*/
	.ops-section.active .bannertextArea {
		transform: translate3d(0, 0, 0) !important;
	}



/* ==========================================================================
   右側點點樣式
   ========================================================================== */
.onepage-pagination {
  position: absolute;
  right: 25px;
  top: 50%;
  z-index: 5;
  list-style: none;
  margin: 0;
  padding: 0;
}
.onepage-pagination li {
  padding: 0;
  text-align: center;
}
.onepage-pagination li a{
  padding: 10px;
  width: 4px;
  height: 4px;
  display: block;
  
}
.onepage-pagination li a:before{
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

.onepage-pagination li a.active:before{
  width: 10px;
  height: 10px;
  background: none;
  border: 1px solid #eee;
  margin-top: -4px;
  left: 8px;
}
