@charset "utf-8";

/*========== Article ===========*/
.article_area {
	position: relative;
	overflow: hidden;
	padding-top: 50px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 60px;
	margin-top: -5px;
}

.article_area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    z-index: -1;
}

.article_area:after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 62.5%;
    height: 100%;
    background-color: #FFF;
    z-index: -1;
    -webkit-transform: skew(-18deg) translateX(100%);
    -ms-transform: skew(-18deg) translateX(100%);
    transform: skew(-18deg) translateX(100%);
    -webkit-transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 0.8s;
    -o-transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 0.8s;
    transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 0.8s;
    opacity: 0;
}

.article_area.active:after {
    -webkit-transform: skew(-18deg) translateX(0);
    -ms-transform: skew(-18deg) translateX(0);
    transform: skew(-18deg) translateX(0);
    opacity: 1;
}

.article_area.active .Img,
.article_area.active .right {
    -webkit-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    opacity: 1;
}

.article_area .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
}

.article_area .Img {
    -webkit-transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 1s 0.5s;
    -o-transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 1s 0.5s;
    transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 1s 0.5s;
    -webkit-transform: translateX(60px);
    -ms-transform: translateX(60px);
    transform: translateX(60px);
    opacity: 0;
}

.article_area img {
    display: block;
    width: 100%;
}

.article_area .right {
    -webkit-transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 1s 1s;
    -o-transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 1s 1s;
    transition: all cubic-bezier(0.16, 1.08, 0.38, 0.98) 1s 1s;
    -webkit-transform: translateX(60px);
    -ms-transform: translateX(60px);
    transform: translateX(60px);
    opacity: 0;
    max-width: 480px;
    padding-top: 30px;
}

.article_area .title_box {
	position: relative;
}

.article_area .title_box h2 {
	position: absolute;
	left: 54px;
	top: 15px;
	display: block;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: .05em;
}

.article_area .title_box em {
	display: block;
	font-size: 30px;
	font-family: "Libre Baskerville", serif;
	color: #151515;
	text-transform: uppercase;
	letter-spacing: .11em;
}

.article_area .title_box em:first-letter {
	font-size: 70px;
	color: #215493;
}

.article_area .topic {
	margin-top: 10px;
	margin-bottom: 5px;
}

.article_area .topic a {
	color: #666;
	font-size: 24px;
    font-weight: bold;
}

.article_area .txt {
	width: 90%;
	color: #999;
	font-size:16px;
	line-height: 1.6;
    font-weight: normal;
}

.article_area .btn {
    padding-top: 40px;
}

.article_area .btn a {
	position: relative;
	display: block;
	width: 220px;
	height: 45px;
	line-height: 45px;
	background-color: #215493;
	color: #FFF;
	text-align: center;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	overflow: hidden;
	z-index: 1;
	padding-right: 15px;
}

.article_area .btn a:hover {
	padding-right: 0;
}

.article_area .btn a:hover:before {
	content: '';
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.article_area .btn a:hover:after {
	content: '';
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.article_area .btn a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #b5b5b5;
	z-index: -1;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	-o-transition: transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
}

.article_area .btn a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 50px;
	display: block;
	width: 14px;
	height: 45px;
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
	vertical-align: top;
}



/*========== News ===========*/
.news_area {
	background-image: url(../images/home_news_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 60px;
	padding-bottom: 60px;
}

.news_area .title_box {
	position: relative;
}

.news_area .title_box h2 {
	position: absolute;
	left: 54px;
	top: 15px;
	display: block;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: .05em;
	color: #fff;
	width: 220px;
}

.news_area .title_box em {
	display: block;
	font-size: 30px;
	font-family: "Libre Baskerville", serif;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .11em;
}

.news_area .title_box em:first-letter {
	font-size: 70px;
	color: #8dc0ff;
}

.news_area ul {
	padding-top:30px;
	margin-left:-15px;
}

.news_area ul li {
	padding: 10px 20px;
	overflow:hidden;
	float:left;
	height:350px;
	width:33.3%;
}

.news_area .Img {
	position:relative;
	width:100%;
}

.news_area .Img img {
	width:100%;
}

.news_area .Img a {
	display:block;
	position:relative;
	float:left;
	overflow:hidden;
	background:#000;
}

.news_area ul li .Img a img {
	float:left;
	opacity:1;
}

.news_area .Img a:hover img {
	float:left;
	background:#000;
	opacity:0.4;
}

.news_area .txt {	
	float: left;
	width: 100%;
	overflow: hidden;
	margin-top: 24px;
}

.news_area ul li .txt h3 a {
	word-wrap:break-word;
	font-size: 22px;
	line-height:1.5;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;

	text-align: center;
}

.news_area ul li .txt h3 a:hover {
	color: #8dc0ff;
}

.news_area ul li .txt .date {
	color: #ffea34;
	font-size: 14px;
	font-family: "Raleway", sans-serif;
	margin: 5px 0 5px;
}

.news_area ul li .txt p {
	line-height: 1.5;
	font-size: 16px;
	color: #fff;
	font-weight: normal;
}

.news_area .btn {
    padding-top: 50px;
	display: flex;
	justify-content: center;
}

.news_area .btn a {
	position: relative;
	display: block;
	width: 220px;
	height: 45px;
	line-height: 45px;
	background:#215493;
	color: #FFF;
	text-align: center;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	overflow: hidden;
	z-index: 1;
	padding-right: 15px;
}

.news_area .btn a:hover {
	padding-right: 0;
}

.news_area .btn a:hover:before {
	content: '';
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.news_area .btn a:hover:after {
	content: '';
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.news_area .btn a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #b5b5b5;
	z-index: -1;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	-o-transition: transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
}

.news_area .btn a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 50px;
	display: block;
	width: 14px;
	height: 45px;
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
	vertical-align: top;
}



/*========== Goods ===========*/
#goods_area {
	background-image:url(../images/home_goods_bg.jpg);
	background-position:center top;
	background-size: cover;
	width:100%;
	padding-top:50px;
	padding-bottom:50px;
}

#goods_area .title_box {
	position: relative;
}

#goods_area .title_box h2 {
	position: absolute;
	left: 44px;
	top: 15px;
	display: block;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: .05em;
}

#goods_area .title_box em {
	display: block;
	font-size: 30px;
	font-family: "Libre Baskerville", serif;
	color: #151515;
	text-transform: uppercase;
	letter-spacing: .11em;
}

#goods_area .title_box em:first-letter {
	font-size: 70px;
	color: #215493;
}

#goods_area .btn {
 	position: absolute;
	top: 10px;
	right: 0px;
}

#goods_area .btn a {
	position: relative;
	display: block;
	width: 220px;
	height: 45px;
	line-height: 45px;
	background-color: #215493;
	color: #FFF;
	text-align: center;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	overflow: hidden;
	z-index: 1;
	padding-right: 15px;
}

#goods_area .btn a:hover {
	padding-right: 0;
}

#goods_area .btn a:hover:before {
	content: '';
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

#goods_area .btn a:hover:after {
	content: '';
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

#goods_area .btn a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #b5b5b5;
	z-index: -1;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	-o-transition: transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
}

#goods_area .btn a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 50px;
	display: block;
	width: 14px;
	height: 45px;
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
	vertical-align: top;
}

.pro_box {
	width: 100%;
	position: relative;
	border: 0;
	margin-right: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border:1px solid #ccc;
	padding:20px;
	background-color:#FFF;
}

.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;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height:200px;
}

.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_name {
	width: 100%;
	text-align: left;
	font-size: 22px;
	line-height: 25px;
	color: #195fae;
	z-index: 5;
	padding-bottom: 10px;
	padding-top: 10px;
	text-overflow : ellipsis;
	overflow-y: hidden;
	font-weight:700;
	text-align:center;
}

a:hover .pro_name {
	color: #333;
}

.pro_box p {
	font-size:16px;
	line-height:1.6;
    font-weight: normal;
	color:#666;
}


/*========== custom ===========*/
.custom_area {
	background-image: url(../images/home_custom_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 110px;
	padding-bottom: 110px;
}

.custom_area .title_box {
	position: relative;
}

.custom_area .title_box h2 {
	position: absolute;
	left: 47px;
	top: 15px;
	display: block;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: .05em;
	color: #fff;
}

.custom_area .title_box em {
	display: block;
	font-size: 30px;
	font-family: "Libre Baskerville", serif;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .11em;
}

.custom_area .title_box em:first-letter {
	font-size: 70px;
	color: #8dc0ff;
}

.custom_area .btn {
 	position: absolute;
	top: 10px;
	right: 0px;
}

.custom_area .btn a {
	position: relative;
	display: block;
	width: 220px;
	height: 45px;
	line-height: 45px;
	background-color: #215493;
	color: #FFF;
	text-align: center;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	overflow: hidden;
	z-index: 1;
	padding-right: 15px;
}

.custom_area .btn a:hover {
	padding-right: 0;
}

.custom_area .btn a:hover:before {
	content: '';
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.custom_area .btn a:hover:after {
	content: '';
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.custom_area .btn a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #b5b5b5;
	z-index: -1;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	-o-transition: transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
}

.custom_area .btn a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 50px;
	display: block;
	width: 14px;
	height: 45px;
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
	vertical-align: top;
}


.custom_area ul {
	padding-top:30px;
	margin-left:-15px;
}

.custom_area ul li {
	padding: 10px 20px;
	overflow:hidden;
	float:left;
	height:450px;
	width:25%;
}

.custom_area .Img {
	position:relative;
	width:100%;
}

.custom_area .Img img {
	width:100%;
}

.custom_area .Img a {
	display:block;
	position:relative;
	float:left;
	overflow:hidden;
	background:#000;
}

.custom_area ul li .Img a img {
	float:left;
	opacity:1;
}

.custom_area .Img a:hover img {
	float:left;
	background:#000;
	opacity:0.4;
}


@media (max-width: 1180px) {
	.article_area {
		padding-bottom: 60px;
	}

	.article_area .wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
	}

	.article_area .right {
        max-width: 705px;
	}

	.article_area .btn {
        padding-top: 20px;
	}
}



@media (max-width: 1180px) {
	.news_area {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.news_area .title_area {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        max-width: 900px;
        padding-bottom: 20px;
	}

    .news_list {
		width: 100%;
	}
}


@media (max-width: 800px) {
	.news_area ul li {
		height:400px;
		width:50%;
	}

	.custom_area ul li {
		height:450px;
		width:50%;
	}
}


@media (max-width: 640px) {
	.news_area ul {
		padding-top:10px;
		margin-left:0px;
	}

	.news_area ul li {
		height:auto;
		width:100%;
		padding: 20px 0px;
	}

	#goods_area .title_area > .btn {
        display: none;
	}
	
	.custom_area ul {
		padding-top:10px;
		margin-left:0px;
	}

	.custom_area ul li {
		height:auto;
		width:100%;
		padding: 20px 0px;
	}

	.custom_area .title_area > .btn {
        display: none;
	}
}


