@charset "utf-8";
/* CSS Document */
@import url(reset.css);
@import url(style.css);
@import url(hover.css);
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700,900&display=swap');
/*html, body {
	position: relative;
	overflow-x: hidden;
}*/
body {
	font-family: "Noto Sans TC", Arial, "微軟正黑體", "新細明體";
	width: 100%;
	background-image: url(../images/bg1.jpg);
	background-repeat: repeat;
	background-position: left top;
}
.main_bg {
	position: relative;
	overflow-x: hidden;
	width: 100%;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat;
	background-position: left top;
	background-size: 50px auto;
	max-width: 1160px;
	margin: auto;
	overflow-y: hidden;
}
input, button, textarea, select {
	font-family: "Noto Sans TC", Arial, "微軟正黑體", "新細明體";
	outline: none;
}
/* --------------------
   loading
-------------------- */
.loadingArea {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: 100vh;
	transition: all .3s ease-out;
	z-index: 9999999;
	background-image: url(../images/sky_bg.png);
	background-repeat: repeat;
	background-size: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
}
.loading_box {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}
.loadingArea.show {
	opacity: 0;
	transition-delay: 2s;
	pointer-events: none;
}
.loadingArea.show .loadingLogo {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.loadingArea.show .loadingLogoText::before {
	width: 0;
	transition-delay: .7s;
}
.loadingLogo {
	margin-bottom: 20px;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
	line-height: 0;
	width: 30%;
	margin: auto;
	text-align: center;
	position: absolute;
	left: 35%;
	bottom: 10%;
	z-index: 888;
	animation-name: aa;
	animation-duration: 2s;
	animation-delay: 1s;
}
@keyframes aa {
 from {
 opacity:1;
}
to {
 opacity:0;
}
}
.loadingLogo img {
	width: 100%;
	max-width: 350px;
}
.door_area {
	width: 100%;
	position: relative;
	padding-top: 150px;
	z-index: 10;
}
.door_l {
	width: 50%;
	float: left;
	clear: left;
	z-index: 10;
	position: relative;
}
.door_l img {
	width: 100%;
}
.o_door_l {
	width: 30%;
	position: absolute;
	bottom: 0%;
	z-index: 0;
	right: 50%;
	animation-name: oxxo;
	animation-duration: 2s;
	animation-delay: 1s;
}
@keyframes oxxo {
 from {
 left:15%;
}
to {
 left:0%;
}
}
.o_door_l img {
	width: 100%;
}
.door_r {
	width: 50%;
	float: right;
	clear: right;
	z-index: 10;
	position: relative;
}
.door_r img {
	width: 100%;
}
.o_door_r {
	width: 30%;
	position: absolute;
	bottom: 0%;
	z-index: 0;
	left: 50%;
	animation-name: dd;
	animation-duration: 2s;
	animation-delay: 1s;
}
@keyframes dd {
 from {
 left:55%;
}
to {
 left:70%;
}
}
.o_door_r img {
	width: 100%;
}
.loading_footer {
	width: 100%;
	height: 90px;
	background-image: url(../images/footer_pic.png);
	background-repeat: repeat;
	float: left;
	clear: none;
	position: relative;
	z-index: 999;
	margin-top: -1px;
}
/*翻牌样式*/
.flip-container {
	perspective: 1000;
	-webkit-perspective: 1000px;
	/*父类容器中 perspective 子类允许透视*/
	-moz-perspective: 1000px;
	-ms-perspective: 1000px;
	-o-perspective: 1000px;
	perspective: 1000px;
	margin: 0px auto;
	float: left;
}
.flip-container:hover .back {
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	z-index: 2;
}
.flip-container:hover .front {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	z-index: 1
}
.flip-container, .front, .back {
	width: 100%;
	margin: auto 0;
}
.flipper {
	transition: transform 0.6s ease-out;
	transition: transform .5s ease-in-out;
	-webkit-transition: transform .5s ease-in-out;
	-moz-transition: transform .5s ease-in-out;
	-ms-transition: transform .5s ease-in-out;
	-o-transition: transform .5s ease-in-out;
	-webkit-transform-style: preserve-3d;
	/*使其子类变换后得以保留 3d转换后的位置*/
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	display: block;
	position: relative;
}
.front, .back {
	backface-visibility: hidden;
	transition: 0.6s ease-out;
	-webkit-transition: .6s ease-out;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	position: absolute;
	top: 0;
	left: 0;
}
.front img, .back img {
	width: 100%;
}
.front {
	z-index: 2;
	transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
}
.back {
	z-index: 1;
	transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
}
/*editor*/
.text_editor {
	width: 100%;
	min-height: 150px;
	line-height: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.text_editor iframe {
	width: 100%;
	min-height: 250px;
}
.text_editor img {
	max-width: 100%;
	width: auto;
	height: auto;
}
.text_editor h1 {
	font-size: 2em;
	line-height: 45px;
	margin-bottom: 15px;
}
.text_editor h2 {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 10px;
	letter-spacing: 2px;
}
.text_editor h3 {
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 10px;
}
.text_editor h4 {
	line-height: 28px;
	margin-bottom: 15px;
	font-size: 16px;
}
.text_editor p {
	line-height: 25px;
	margin-bottom: 15px;
	font-size: 16px;
	letter-spacing: 3px;
}
.text_editor h5 {
	font-size: .83em;
	line-height: 30px;
	margin-bottom: 10px;
}
.text_editor h6 {
	font-size: .75em;
	line-height: 30px;
	margin-bottom: 10px;
}
.text_editor strong {
	font-weight: bolder;
}
.text_editor em {
	font-style: italic;
}
.text_editor ul {
	padding-left: 40px;
	margin-bottom: 30px;
}
.text_editor ul li {
	margin: 5px 0;
	list-style-type: disc;
	font-size: 16px;
}
.text_editor ol {
	padding-left: 40px;
}
.text_editor ol li {
	margin: 5px 0;
	list-style-type: decimal;
	font-size: 16px;
}
/*圖片反白*/
.brightness {
	-webkit-filter: brightness(0) invert(1);
}
.m_none {
	display: none;
}
.p_none {
	display: inherit;
}
.row {
	margin: auto;
	width: 100%;
	float: none;
	clear: none;
	position: relative;
	max-width: 1200px;
}
.row_page {
	margin: auto;
	width: 90%;
	float: none;
	clear: none;
	position: relative;
	max-width: 1200px;
}
.h_padding {
	padding-top: 50px;
	padding-bottom: 50px;
}
.fRight {
	float: right;
	clear: right;
}
.fLeft {
	float: left;
	clear: left;
}
#top_bg {
	width: 100%;
	height: 30px;
	background-image: url(../images/top_bg.png);
	background-position: left top;
	background-size: 100% auto;
}
/*movie*/
.movie_area {
	position: relative;
}
#movie_bg {
	background-image: url(../images/movie-bg.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 250px;
	margin: auto;
	z-index: 5;
	position: relative;
}
#movie_bg video {
	margin: auto;
	width: 76%;
	float: none;
	clear: both;
	position: absolute;
	top: 36.5%;
	left: 12%;
	height: 135px;
}
#movie_bg iframe {
	margin: auto;
	width: 76%;
	float: none;
	clear: both;
	position: absolute;
	top: 36.5%;
	left: 12%;
	height: 135px;
}
#burner_bg {
	background-image: url(../images/bg1.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	margin: auto;
	z-index: 0;
	position: relative;
}
.burner_pic {
	width: 30%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}
.burner_pic img {
	width: 100%;
}
.s_w {
	width: 65%;
	margin: auto;
}
.s_w img {
	width: 100%;
}
.s_w_r {
	width: 30%;
	position: absolute;
	top: 20%;
	right: 2%;
}
.s_w_r img {
	width: 100%;
}
.s_w_l {
	width: 30%;
	position: absolute;
	top: 20%;
	left: 2%;
}
.s_w_l img {
	width: 100%;
}
/*menu*/
#menu_bg {
	z-index: 1;
	position: relative;
	width: 100%;
	background-image: url(../images/menu_bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
}
ul.menu_area {
	display: none;
}
.m_menu {
	display: inline-block;
	padding-top: 30px;
	margin-bottom: 50%;
	width: 80%;
	margin-left: 10%;
}
.menu_info {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	color: #333;
	font-size: 14px;
	line-height: 24px;
}
.menu_pic {
	width: 100%;
	max-width: 300px;
	margin: auto;
	text-align: center;
}
.menu_pic img {
	width: 100%;
}
#tree_l {
	width: 40%;
	position: absolute;
	left: 0px;
}
#tree_l img {
	width: 100%;
}
#tree_r {
	width: 40%;
	position: absolute;
	right: 0px;
}
#tree_r img {
	width: 100%;
}
/*top_area*/
#top_area {
	position: relative;
	width: 100%;
	margin-top: 15%;
	background-image: url(../images/A_area/a_bg.png);
	background-position: left top;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.top_box {
	width: 100%;
	position: relative;
	right: 0px;
	top: 0px;
	background-image: url(../images/A_area/m_a2.png);
	background-repeat: no-repeat;
	margin-right: 0px;
	float: right;
	clear: none;
	background-position: center top;
	margin-bottom: 50px;
	background-size: cover;
	z-index: 5;
	margin-top: 30%;
	height: 500px;
}
.top_info_box {
	position: relative;
	margin-top: 8%;
	margin-bottom: auto;
	width: 80%;
	float: none;
	clear: none;
	margin-left: 10%;
}
.m_t_info_img {
	width: 50%;
	margin: auto;
}
.m_t_info_img img {
	width: 100%;
}
.top_title {
	width: 80%;
	margin: auto;
	text-align: center;
	margin-top: -30px;
}
.top_title img {
	width: 100%;
}
.top_r_after_pic {
	z-index: 0;
	position: absolute;
	top: 20px;
	right: 0px;
	width: 30%;
}
.top_r_after_pic img {
	width: 100%;
}
.top_r_before_pic {
	z-index: 10;
	position: absolute;
	top: 10%;
	right: -3%;
	width: 15%;
}
.top_r_before_pic img {
	width: 100%;
}
.top_l_after_pic {
	z-index: 0;
	position: absolute;
	top: 0%;
	left: 0px;
	width: 40%;
}
.top_l_after_pic img {
	width: 100%;
}
.top_l_before_pic {
	z-index: 10;
	position: absolute;
	left: -8%;
	width: 50%;
	bottom: 0%;
}
.top_l_before_pic img {
	width: 100%;
}
.top_l_people_pic {
	z-index: 5;
	position: absolute;
	left: 5%;
	width: 15%;
	bottom: 30%;
	display: none;
}
.top_l_people_pic img {
	width: 100%;
}
.stop_l_people_pic {
	z-index: 5;
	position: absolute;
	right: 5%;
	width: 30%;
	bottom: 0%;
}
.stop_l_people_pic img {
	width: 100%;
}
/*blog_area*/
#blog_area {
	position: relative;
	background-image: url(../images/B_area/b_bg.png);
	background-position: left top;
	background-size: 100% auto;
	margin-top: 15%;
}
.blog_box {
	width: 100%;
	position: relative;
	top: 0px;
	background-image: url(../images/B_area/m_b4.png);
	background-repeat: no-repeat;
	margin-right: 0px;
	float: left;
	clear: left;
	background-position: center top;
	z-index: 5;
	margin-top: 35%;
	left: 0px;
	background-size: cover;
	min-height: 400px;
}
.blog_title {
	width: 75%;
	margin: auto;
	text-align: center;
	margin-top: -25px;
}
.blog_title img {
	width: 100%;
}
.blog_r_after_pic {
	display: none;
}
.blog_r_after_pic img {
	width: 100%;
}
.sblog_r_after_pic {
	z-index: 0;
	position: absolute;
	top: 10%;
	right: 0px;
	width: 25%;
	display: inherit;
}
.sblog_r_after_pic img {
	width: 100%;
}
.blog_r_before_pic {
	display: none;
}
.blog_r_before_pic img {
	width: 100%;
}
.blog_r_people_pic {
	z-index: 9999;
	position: absolute;
	width: 25%;
	bottom: -15%;
	right: 10%;
}
.blog_r_people_pic img {
	width: 100%;
}
.blog_l_after_pic {
	z-index: 0;
	position: absolute;
	top: 10%;
	left: 0px;
	width: 10%;
}
.blog_l_after_pic img {
	width: 100%;
}
.blog_l_before_pic {
	z-index: 10;
	position: absolute;
	left: 5%;
	width: 30%;
	bottom: -10%;
}
.blog_l_before_pic img {
	width: 100%;
}
.blog_cloud {
	display: none;
}
.blog_cloud img {
	width: 100%;
}
.blog_info_box {
	width: 100%;
	position: absolute;
	top: 30%;
	left: 0%;
}
.pro_pic {
	line-height: 0px;
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	overflow-y: hidden;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	float: none;
	clear: none;
	width: calc(100% - 20px);
	height: 90px;
	margin-bottom: 10px;
	background-color: #fff;
	padding: 1px;
}
.pro_pic img {
	-webkit-filter: opacity(100%); /* Safari */
	filter: opacity(100%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	transform: scale(1, 1);
}
a:hover .pro_pic img {
	-webkit-filter: opacity(50%); /* Safari */
	filter: opacity(50%);
	transform: scale(1.1, 1.2);
}
.pro_title {
	width: 90%;
	text-align: center;
	font-size: 16px;
	line-height: 25px;
	color: #333;
	z-index: 5;
	margin-left: auto;
	margin-right: auto;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	height: 50px;
}
a:hover .pro_title {
	color: #C33;
}
/*story_area*/
#story_area {
	position: relative;
	background-image: url(../images/C_area/c_bg.png);
	background-position: left top;
	background-size: 100% auto;
	margin-top: 30%;
}
.story_box {
	width: 100%;
	position: relative;
	right: 0px;
	top: 0px;
	background-image: url(../images/C_area/m_c3.png);
	background-repeat: no-repeat;
	margin-right: 0px;
	float: right;
	clear: right;
	background-position: center top;
	background-size: 100% 100%;
	z-index: 5;
	margin-top: 28%;
	height: 510px;
}
.story_info_box {
	position: relative;
	margin: auto;
	width: 80%;
	float: none;
	clear: none;
	margin-left: 10%;
	margin-top: 10%;
}
.story_title {
	width: 80%;
	margin: auto;
	text-align: center;
	margin-top: -15%;
}
.story_title img {
	width: 100%;
}
.story_r_after_pic {
	z-index: 0;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 20%;
}
.story_r_after_pic img {
	width: 100%;
}
.story_l_after_pic {
	z-index: 0;
	position: absolute;
	top: 0%;
	left: 0px;
	width: 40%;
}
.story_l_after_pic img {
	width: 100%;
}
.story_l_before_pic {
	display: none;
}
.story_l_before_pic img {
	width: 100%;
}
.story_cloud {
	display: none;
}
.story_cloud img {
	width: 100%;
}
/*desk_area*/
.desk_area {
	width: 100%;
}
.desk_area img {
	width: 100%;
	line-height: 0px;
}/*footer*/
#footer_bg {
	background-color: #000000;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #FFFFFF;
	text-align: center;
	font-size: 14px;
	line-height: 25px;
}
#footer_bg a {
	color: #FFFFFF;
}
/*blog list*/
.blog_bg {
	background-image: url(../images/blog/b_bg.jpg);
	background-repeat: repeat;
	width: 100%;
	margin-top: 100px;
}
#b_top_bg {
	background-image: url(../images/blog/b_logo_bg.jpg);
	background-repeat: repeat;
	width: 100%;
	padding-bottom: 5px;
	padding-top: 5px;
	display: none;
}
.b_logo_area {
	width: 30%;
	margin: auto;
	max-width: 300px;
}
.b_logo_area img {
	width: 100%;
}
#b_menu_bg {
	background-image: url(../images/blog/b_.jpg);
	background-repeat: repeat;
	width: 100%;
	display: none;
}
ul.b_menu_area {
	width: 100%;
	padding: 10px 0px;
	max-width: 1160px;
	margin: auto;
	text-align: center;
}
ul.b_menu_area li {
	display: inline-block;
	float: none;
	clear: none;
}
ul.b_menu_area a li {
	padding: 5px 5px;
	margin: auto 5px;
	color: #893c00;
	background-color: #faca63;
	border-radius: 10px;
	border: 2px solid #8d3f36;
	font-size: 16px;
	line-height: 30px;
	-webkit-box-shadow: 0px 0px 0px 2px #FACA63;
	box-shadow: 0px 0px 0px 2px #FACA63;
	font-weight: 600;
	letter-spacing: 2px;
}
ul.b_menu_area a:hover li {
	color: #bb0f0f;
}
.b_banner_pic {
	width: 100%;
	line-height: 0px;
}
.b_banner_pic img {
	width: 100%;
}
#b_banner_pic {
	margin-bottom: 30px;
}
.list_box {
	border: 2px solid #FFF;
	border-radius: 10px;
	margin: auto 10px;
}
.l_pic {
	line-height: 0px;
	position: relative;
	overflow-x: hidden;
	overflow-y: hidden;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	float: none;
	clear: none;
	height: 200px;
	background-color: #fff;
	z-index: 0;
	border-radius: 10px;
}
.l_pic img {
	-webkit-filter: opacity(100%); /* Safari */
	filter: opacity(100%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	transform: scale(1, 1);
	border-radius: 10px;
}
a:hover .l_pic img {
	-webkit-filter: opacity(50%); /* Safari */
	filter: opacity(50%);
	transform: scale(1.1, 1.2);
}
.l_title {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: calc(100% - 20px);
	padding: 10px 10px;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	height: 45px;
}
a .l_title {
	color: #FFF;
	font-size: 18px;
	line-height: 25px;
}
/*內頁*/
#extend_bg {
	background-color: #d1ad93;
}
.sb_title {
	border-bottom: 3px solid #8d3f36;
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
}
.date_area {
	display: inline-block;
	float: right;
	clear: none;
	color: #666;
	font-size: 16px;
	font-weight: 400;
}
a.back_btn {
	background-image: url(../images/blog/back_btn.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 80% auto;
	width: 80px;
	padding: 20px 80px;
}
a.back_btn1 {
	background-image: url(../images/blog/back_btn1.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 80% auto;
	padding: 20px 80px;
}
/*products*/
ul.products_area {
	float: none;
	clear: none;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
ul.products_area li {
	width: calc(100% - 20px);
	display: table;
	text-align: center;
	margin-bottom: 30px;
	margin-left: 10px;
	border: 0;
	margin-right: 10px;
}
.pro_box {
	width: 100%;
	position: relative;
	background-color: #fff;
}
.lpro_pic {
	line-height: 0px;
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	overflow-y: hidden;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	float: none;
	clear: none;
	height: 140px;
}
.lpro_pic img {
	-webkit-filter: opacity(100%); /* Safari */
	filter: opacity(100%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	transform: scale(1, 1);
}
a:hover .lpro_pic img {
	-webkit-filter: opacity(50%); /* Safari */
	filter: opacity(50%);
	transform: scale(1.1, 1.1);
}
.lpro_title {
	width: 90%;
	text-align: center;
	font-size: 16px;
	line-height: 25px;
	color: #333;
	z-index: 5;
	margin-left: auto;
	margin-right: auto;
	height: 50px;
	text-overflow : ellipsis;
	overflow-y: hidden;
	margin-bottom: 10px;
	margin-top: 10px;
}
a:hover .lpro_title {
	color: #f44336;
}
.banner_area {
	font-size: 28px;
	font-weight: 700;
	color: #893c00;
	text-align: center;
	line-height: 35px;
	margin-bottom: 30px;
	letter-spacing: 2px;
}
.banner_area img {
	width: auto;
	max-width: 250px;
}
.bpro_pic {
	line-height: 0px;
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	overflow-y: hidden;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	float: none;
	clear: none;
	height: 140px;
}
.bpro_pic img {
	-webkit-filter: opacity(100%); /* Safari */
	filter: opacity(100%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	transform: scale(1, 1);
}
a:hover .bpro_pic img {
	-webkit-filter: opacity(50%); /* Safari */
	filter: opacity(50%);
	transform: scale(1.1, 1.1);
}

@media only screen and (min-width: 360px) {
#top_bg {
	height: 80px;
}
/*movie*/
#movie_bg {
	height: 285px;
}
#movie_bg video {
	height: 150px;
}
#movie_bg iframe {
	height: 150px;
}
.burner_pic {
	padding-top: 80px;
}
.s_w_r {
	top: 25%;
}
.s_w_l {
	top: 25%;
}
/*menu*/
.m_menu {
	padding-top: 50px;
	display: inherit;
}
/*top*/
.top_box {
	height: 550px;
}
/*blog_area*/
.blog_l_before_pic {
	bottom: -5%;
}
.blog_box {
	min-height: 420px;
}
.pro_pic {
	height: 110px;
}
.story_box {
	height: 540px;
}
.lpro_pic {
	height: 160px;
}
.bpro_pic {
	height: 160px;
}
}

@media only screen and (min-width: 375px) {
#top_bg {
	height: 50px;
}
/*movie*/
#movie_bg {
	height: 300px;
}
#movie_bg video {
	height: 165px;
}
#movie_bg iframe {
	height: 165px;
}
/*blog_area*/
.blog_box {
	min-height: 450px;
}
.pro_pic {
	height: 120px;
}
.lpro_pic {
	height: 170px;
}
.bpro_pic {
	height: 170px;
}
}

@media only screen and (min-width: 411px) {
/*movie*/
#movie_bg {
	height: 325px;
}
#movie_bg video {
	height: 180px;
}
#movie_bg iframe {
	height: 180px;
}
.burner_pic {
	padding-top: 100px;
}
.s_w_r {
	top: 30%;
}
.s_w_l {
	top: 30%;
}
/*top*/
.top_box {
	height: 600px;
}
/*story_area*/
.story_box {
	height: 580px;
}
/*blog_area*/
.blog_box {
	min-height: 500px;
}
.blog_l_before_pic {
	bottom: -3%;
}
.pro_pic {
	height: 130px;
}
.lpro_pic {
	height: 185px;
}
.bpro_pic {
	height: 185px;
}
}

@media only screen and (min-width: 480px) {
/*movie*/
#movie_bg {
	height: 380px;
}
#movie_bg video {
	height: 200px;
}
#movie_bg iframe {
	height: 200px;
}
.menu_info {
	width: 90%;
	padding: 5%;
	font-size: 18px;
	line-height: 28px;
}
/*top*/
.top_box {
	height: 750px;
}
/*story_area*/
.story_box {
	height: 700px;
}
/*blog_area*/
.blog_box {
	min-height: 500px;
}
.blog_title {
	margin-top: -30px;
}
.blog_l_before_pic {
	bottom: -10%;
}
.pro_pic {
	height: 150px;
}
ul.products_area li {
	width: calc(50% - 20px);
}
.lpro_pic {
	height: 105px;
}
.bpro_pic {
	height: 105px;
}
}

@media only screen and (min-width: 533px) {
.pro_pic {
	height: 160px;
}
.lpro_pic {
	height: 115px;
}
.bpro_pic {
	height: 115px;
}
}

@media only screen and (min-width: 600px) {
.pro_pic {
	height: 180px;
}
.lpro_pic {
	height: 130px;
}
.bpro_pic {
	height: 130px;
}
}

@media only screen and (min-width: 640px) {
#top_bg {
	height: 30px;
}
/*movie*/
#movie_bg {
	height: 510px;
}
#movie_bg video {
	height: 270px;
}
#movie_bg iframe {
	height: 270px;
}
.top_box {
	height: 1000px;
}
/*menu*/
.menu_info {
	font-size: 20px;
	line-height: 30px;
}
/*blog_area*/
.blog_box {
	height: 800px;
}
.pro_title {
	font-size: 20px;
	line-height: 35px;
}
.pro_pic {
	height: 160px;
}
.blog_title {
	margin-top: -40px;
}
.story_box {
	height: 850px;
}
.blog_info_box {
	top: 45%;
}
.lpro_pic {
	height: 140px;
}
.bpro_pic {
	height: 140px;
}
}

@media only screen and (min-width: 768px) {
#top_bg {
	height: 80px;
}
/*movie*/
.movie_area {
	height: auto;
}
#movie_bg {
	height: 610px;
}
#movie_bg video {
	height: 330px;
}
#movie_bg iframe {
	height: 330px;
}
/*blog_area*/
.blog_box {
	min-height: 350px;
}
.blog_title {
	margin-top: -50px;
}
.blog_l_before_pic {
	bottom: -10%;
}
.blog_info_box {
	top: 35%;
}
.pro_pic {
	height: 250px;
}
.pro_title {
	height: 70px;
}
ul.products_area li {
	width: calc(33.3% - 20px);
}
.lpro_pic {
	height: 110px;
}
.bpro_pic {
	height: 110px;
}
.banner_area {
	font-size: 35px;
	line-height: 40px;
}
}

@media only screen and (min-width: 800px) {
#top_bg {
	height: 100px;
}
/*movie*/
#movie_bg {
	height: 635px;
}
#movie_bg video {
	height: 340px;
}
#movie_bg iframe {
	height: 340px;
}
.pro_pic {
	height: 300px;
}
.lpro_pic {
	height: 115px;
}
.bpro_pic {
	height: 115px;
}
}

@media only screen and (min-width: 900px) {
/*blog_area*/
.blog_box {
	min-height: 480px;
}
.blog_title {
	margin-top: -60px;
}
.bpro_pic {
	height: 130px;
}
}

@media only screen and (min-width: 960px) {
.lpro_pic {
	height: 140px;
}
.bpro_pic {
	height: 140px;
}
}

@media only screen and (min-width: 1024px) {
@keyframes oxxo {
 from {
 left:38%;
}
to {
 left:30%;
}
}
@keyframes dd {
 from {
 left:50%;
}
to {
 left:60%;
}
}
body {
	background-size: 190px auto;
}
/*loading*/
.o_door_l {
	width: 10.5%;
}
.o_door_r {
	width: 10.5%;
}
.m_none {
	display: inherit;
}
.p_none {
	display: none;
}
.text_editor ul li {
	font-size: 20px;
}
.loadingLogo {
	width: 15%;
	left: 42.5%;
	bottom: 5%;
}
/*movie*/
.m_none {
	display: inherit;
}
.p_none {
	display: none;
}
#top_bg {
	height: 80px;
}
/*movie*/
#movie_bg {
	height: 800px;
}
#movie_bg video {
	height: 430px;
	top: 36%;
}
#movie_bg iframe {
	height: 430px;
	top: 36%;
}
.s_w {
	width: 35%;
}
.s_w_r {
	width: 15%;
	top: 27%;
	right: 10%;
}
.s_w_l {
	width: 15%;
	top: 27%;
	left: 10%;
}
.burner_pic {
	padding-top: 30px;
}
/*tree*/
#tree_l {
	width: 35%;
	position: absolute;
	left: 0px;
}
#tree_r {
	width: 35%;
	position: absolute;
	right: 0px;
}
/*menu*/
#menu_bg {
	height: 800px;
}
.m_menu {
	display: none;
}
ul.menu_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	float: none;
	clear: both;
	margin-top: 30px;
}
ul.menu_area li {
	width: 25%;
	display: inline-block;
	float: left;
	clear: none;
	z-index: 999;
}
ul.menu_area li:nth-child(2) {
	margin-top: 15%;
	position: relative;
	margin-left:-15px;
}
ul.menu_area li:nth-child(3) {
	margin-top: 15%;
	position: relative;
		margin-left: 35px;
}
	ul.menu_area li:nth-child(4) {

	position: relative;
		margin-left: -20px;
}
/*top_area*/
.top_box {
	width: 75%;
	position: relative;
	right: 0px;
	top: 0px;
	background-image: url(../images/A_area/a2.png);
	background-repeat: no-repeat;
	margin-right: 0px;
	float: right;
	clear: right;
	background-position: center top;
	margin-bottom: 50px;
	min-height: 150px;
	background-size: 100% 100%;
	z-index: 5;
	margin-top: 30%;
	height: 500px;
}
.top_r_after_pic {
	top: 0px;
	right: 0px;
	width: 30%;
}
.top_l_after_pic {
	top: 10%;
	left: 0px;
	width: 40%;
}
.top_r_before_pic {
	top: 0%;
	right: -3%;
	width: 15%;
}
.top_title {
	width: 65%;
	margin: auto;
	text-align: center;
	margin-top: -15%;
}
.top_info_box {
	width: 85%;
	margin-top: 10%;
}
.top_l_people_pic {
	z-index: 5;
	position: absolute;
	left: 5%;
	width: 15%;
	bottom: 30%;
	display: inherit;
}
.stop_l_people_pic {
	display: none;
}
.top_l_before_pic {
	left: -8%;
	width: 30%;
	bottom: -5%;
}
.menu_box {
	position: relative;
	clear: both;
	float: none;
	margin: auto;
	width: 90%;
}
.menu_box img {
	width: 100%;
}
.menu_before {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
}
.menu_box:hover .menu_after {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 5;
}
/*blog*/
.blog_box {
	width: 75%;
	position: relative;
	top: 0px;
	background-image: url(../images/B_area/b4.png);
	background-repeat: no-repeat;
	margin-right: 0px;
	float: left;
	clear: left;
	background-position: center top;
	margin-bottom: 50px;
	background-size: 100% 100%;
	z-index: 5;
	margin-top: 28%;
	left: 0px;
	height: 500px;
}
.blog_title {
	width: 65%;
	margin: auto;
	text-align: center;
	margin-top: -15%;
}
.blog_r_after_pic {
	z-index: 0;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 25%;
	display: inherit;
}
.sblog_r_after_pic {
	display: none;
}
.blog_cloud {
	z-index: 15;
	position: absolute;
	width: 30%;
	top: 10%;
	right: 10%;
	display: inherit;
}
.blog_r_before_pic {
	z-index: 0;
	position: absolute;
	right: 20%;
	width: 10%;
	bottom: 20%;
	display: inherit;
}
.blog_r_people_pic {
	position: absolute;
	width: 15%;
	bottom: -10%;
	right: 10%;
}
.blog_l_before_pic {
	z-index: 10;
	position: absolute;
	left: 5%;
	width: 15%;
	bottom: 0%;
}
/*blog_area*/
.blog_box {
	min-height: 535px;
}
.blog_title {
	margin-top: -60px;
}
.pro_pic {
	height: 180px;
}
.blog_info_box {
	top: 35%;
	width: 80%;
	left: 10%;
}
/*story_area*/
#story_area {
	margin-top: 15%;
}
.story_box {
	width: 75%;
	position: relative;
	right: 0px;
	top: 0px;
	background-image: url(../images/C_area/c3.png);
	background-repeat: no-repeat;
	margin-right: 0px;
	float: right;
	clear: right;
	background-position: center top;
	background-size: 100% 100%;
	z-index: 5;
	margin-top: 28%;
	height: 500px;
}
.story_info_box {
	width: 85%;
	margin-top: 5%;
}
.story_title {
	width: 65%;
	margin-top: -50px;
}
.story_cloud {
	z-index: 15;
	position: absolute;
	width: 25%;
	top: 10%;
	left: 25%;
	display: inherit;
}
.story_l_before_pic {
	z-index: 10;
	position: absolute;
	left: 0%;
	width: 30%;
	bottom: -15%;
	display: inherit;
}
.story_l_after_pic {
	z-index: 0;
	position: absolute;
	top: 15%;
	left: 0px;
	width: 25%;
}
/*blog list*/
.blog_bg {
	margin-top: 0px;
}
#b_top_bg {
	display: inherit;
}
#b_menu_bg {
	display: inherit;
}
.l_pic {
	height: 250px;
}
.lpro_pic {
	height: 150px;
}
.bpro_pic {
	height: 150px;
}
}

@media only screen and (min-width: 1160px) {
#top_bg {
	height: 100px;
}
/*movie*/
#movie_bg {
	height: 925px;
}
#movie_bg video {
	height: 500px;
	top: 36%;
}
#movie_bg iframe {
	height: 500px;
	top: 36%;
}
.top_box {
	height: 550px;
}
/*blog_area*/
.blog_box {
	min-height: 600px;
}
.blog_title {
	margin-top: -90px;
}
.blog_l_before_pic {
	bottom: -12%;
}
.blog_info_box {
	top: 30%;
}
.pro_pic {
	height: 220px;
}
.story_box {
	min-height: 550px;
}
ul.b_menu_area a li {
	padding: 5px 10px;
}
.lpro_pic {
	height: 195px;
}
.bpro_pic {
	height: 195px;
}
}

@media only screen and (min-width: 1300px) {
.lpro_pic {
	height: 220px;
}
.bpro_pic {
	height: 220px;
}
}
