@charset "utf-8";
/*公共样式*/
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
p,
body {
	padding: 0;
	margin: 0;
}
ul,
li {
	list-style: none;
}
img {
	border: 0 none;
}
input,
textarea {
	outline: none;
}
a {
	text-decoration: none;
	color: #000;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
a:hover {
	text-decoration: none;
	color: #C6010C;
}
body {
	font-size: 16px;
	font-family: "微软雅黑";
	line-height: 30px;
	color: #666;
	overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
	body {
		font-size: 14px;
		line-height: 26px;
	}
	#banner .swiper-slide img {
		height: 100vh;
	}
}
.fl {
	float: left;
	display: inline;
}
.fr {
	float: right;
	display: inline;
}
.clear {
	clear: both;
}
.bg_none {
	background: none !important;
}
.bd_none {
	border: none !important;
}
html,
body {
	-webkit-text-size-adjust: none;
}
/*头部*/
header {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 30;
	height: 112px;
	width: 100%;
}
header.fixed {
	position: fixed;
	background: #fff;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	z-index: 9999;
}
header .container {
	height: 112px;
	position: relative;
	padding: 0;
	margin: 0 auto;
}
.container {
	padding: 0;
}
.logo {
	margin: 31px 0 0 0;
	float: left;
}
.logo img {
	height: 50px;
}
.logo img:first-child {
	display: block;
}
.logo img:nth-child(2) {
	display: none;
}
header.fixed .logo img:first-child {
	display: none;
}
header.fixed .logo img:nth-child(2) {
	display: block;
}
.nav {
	float: right;
	position: relative;
}
.nav > li {
	float: left;
	position: relative;
	margin-left: 65px;
}
.nav > li:first-child {
	margin-left: 0;
}
.nav > li.line {
	height: 5px;
	background-color: #ff0000;
	position: absolute;
	left: 0;
	top: 0;
	margin-left: 0;
}
.nav > li > a {
	display: block;
	height: 112px;
	line-height: 107px;
	font-size: 16px;
	color: #fff;
	padding: 0;
	/* border-top: 5px solid transparent; */
}
.nav > li:hover > a {
	background: none;
	color: #fff;
	/* border-top: 5px solid #ff0000; */
}
.nav > li.active > a {
	background: none;
	color: #fff;
	/* border-top: 5px solid #ff0000; */
}
.mobile-menu {
	display: none;
}
header.fixed .nav > li > a {
	color: #333;
}
header.fixed .nav > li:hover > a {
	color: #333;
}
header.fixed .nav > li.active > a {
	color: #333;
}
#navToggle {
	display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: none;
	padding: 0;
	right: 0px;
	top: 0px;
	z-index: 999;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
#navToggle::before {
	margin-top: -7px;
}
#navToggle::after {
	margin-top: 7px;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
	height: 2px;
	width: 22px;
	top: 50%;
	left: 50%;
	margin-left: -11px;
	background: #fff;
	position: absolute;
	display: block;
	content: "";
	text-indent: -9999px;
	transition: all 300ms ease-in-out;
}
#navToggle.show span {
	opacity: 0;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
	height: 3px;
	width: 22px;
	top: 50%;
	left: 50%;
	margin-left: -11px;
	background: #fff;
	position: absolute;
	display: block;
	content: "";
	text-indent: -9999px;
	transition: all 300ms ease-in-out;
}
header.fixed #navToggle span,
header.fixed #navToggle::after,
header.fixed #navToggle::before {
	background: #C5000A;
}
#navToggle.show::before {
	margin-top: 0;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#navToggle.show::after {
	margin-top: 0;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.mask {
	height: 100vh;
	width: 100vw;
	background-color: rgba(0, 0, 0, 0.6);
	position: fixed;
	z-index: 900;
	left: 0;
	top: 0;
	display: none;
}
#mobileMenu {
	position: fixed;
	right: -250px;
	top: 0;
	margin: 0;
	width: 250px;
	height: 100vh;
	background-color: #fff;
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	-moz-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: 1110;
	background: #fff;
}
#mobileMenu .hello {
	height: 70px;
	background-color: #fff;
	border-bottom: 1px solid #f0f0f0;
	padding-left: 25px;
	position: relative;
	padding-top: 8px;
}
#mobileMenu .hello h3 {
	font-size: 20px;
	color: #000;
	font-weight: bold;
	line-height: 54px;
}
#mobileMenu .hello .cha {
	cursor: pointer;
	height: 40px;
	width: 40px;
	position: absolute;
	right: 15px;
	top: 15px;
	background: url(../images/cha.png) no-repeat;
}

#mobileMenu .menu li > a {
	display: block;
	font-size: 14px;
	padding-left: 25px;
	color: #666;
	line-height: 45px;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
}
#mobileMenu .menu li > a::after {
	content: "";
	display: block;
	background: url(../images/arrow_icon.png) no-repeat;
	width: 16px;
	height: 9px;
	position: absolute;
	right: 25px;
	top: 18px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
#mobileMenu .menu li.none > a::after {
	display: none;
}
.phone-number {
	color: #666;
	line-height: 50px;
	border-bottom: 1px solid #e6e6e6;
	font-size: 14px;
	padding-left: 25px;
}
/*#mobileMenu .menu li>a:hover{
	background-color: #C6010C;
    text-decoration: none;
    color:#fff;
}*/
#mobileMenu .menu li.active > a {
	background-color: #C6010C;
	text-decoration: none;
	color: #fff;
}
#mobileMenu .menu li.on > a {
	background-color: #C6010C;
	color: #fff;
}
#mobileMenu .menu li.on > a::after {
	transform: rotate(180deg);
}
.mobile_search {
	border-bottom: 1px solid #e6e6e6;
}
.sub-dl {
	display: none;
}
.sub-dl dd a {
	height: 40px;
	line-height: 40px;
	padding-left: 40px;
	font-size: 14px;
	color: #666;
	background: #f9f9f9;
	display: block;
}
#mobileMenu .menu li.login-li > a::after {
	display: none;
}

#mobileMenu.show {
	-webkit-transform: translateX(-250px);
	transform: translateX(-250px);
}
#page.show {
	/*-webkit-transform: translateX(200px);
    transform: translateX(200px);*/
	width: 100vw;
	height: 100vh;
}
#page {
	transition: all 0.3s ease-out;
	overflow: hidden;
}
.show {
	display: block !important;
}
html.show,
body.show {
	overflow: hidden;
	height: 100vh;
	width: 100%;
	position: fixed;
	-webkit-overflow-scrolling: auto;
	-webkit-transform: translateZ(0px);
}
@media only screen and (max-width: 1600px) {
	.nav li {
		margin-left: 40px;
	}
}

@media only screen and (max-width: 1199px) {
	header {
		height: 70px;
		top: 0;
	}
	.search-icon {
		display: none;
	}
	header .nav {
		display: none;
	}
	#navToggle {
		display: block;
	}
	header .container {
		width: 100%;
		padding: 0 15px;
		height: 70px;
	}
	.header-icon {
		display: none;
	}
	.logo {
		margin-top: 19px;
		height: 32px;
	}
	.logo img {
		height: 32px;
	}
	.container {
		padding: 0 15px;
	}
	.sub-company,
	.language,
	.header-icon {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.mobile-menu {
		background: #f7f7f7;
    border-bottom: 1px solid #e7e7e7;
		display: block;
	}
	.mobile-menu ul {
    padding: 0.5em 0;
		margin: 0 10px;
		overflow: hidden;
	}
	.mobile-menu ul li {
		width: 33.33%;
		display: block;
    float: left;
	}
	.mobile-menu ul li a {
		display: block;
		line-height: 40px;
		color: #333;
		font-size: 14px;
		padding: 0;
    margin: 0;
    text-align: center;
	}
	.mobile-menu ul li a:hover {
		color: #C5000C;
	}
}
/*banner*/
#banner .pagination {
	display: flex;
	height: 3px;
	border-bottom: rgba(0, 0, 0, .5);
}
#banner .swiper-pagination-bullet {
	height: 3px;
	width: 70px;
	background: transparent;
	opacity: 1;
	background: none;
	border-radius: 0;
}
#banner .swiper-pagination-bullets {
	bottom: 40px;
}
#banner .swiper-pagination-bullet {
	background: #fff;
}
#banner .swiper-pagination-bullet-active {
	background: #C6010C;
}
#banner .swiper-slide img {
	width: 100%;
	display: block;
	min-height: 200px;
	object-fit: cover;
}
#banner .swiper-slide img:nth-child(1) {
	display: block;
}
#banner .swiper-slide img:nth-child(2) {
	display: none;
}
.swiper-container-horizontal > .swiper-pagination-bullets {
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: auto;
	display: flex;
	display: flex;
	height: 3px;
}
#banner .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 8px;
}
@media only screen and (max-width: 767px) {
	#banner .swiper-pagination-bullets {
		bottom: 10px;
	}
	#banner .swiper-pagination-bullet {
		width: 50px;
	}
}

/*介绍*/
.introduce-box {
	margin: 110px auto 150px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.introduce-box::before,
.introduce-box::after {
	content: '';
	display: none;
}
.introduce-item {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.introduce-icon {
	height: 150px;
	transition: transform .5s;
}
.introduce-item:hover .introduce-icon {
	transform: rotateY(180deg);
}
.introduce-icon1 {
	width: 153px;
	background: url(../images/index-icon1.png) no-repeat center;
	background-size: contain;
}
.introduce-item:hover .introduce-icon1 {
	background: url(../images/index-icon1-a.png) no-repeat center;
	background-size: contain;
}
.introduce-icon2 {
	width: 150px;
	background: url(../images/index-icon2.png) no-repeat center;
	background-size: contain;
}
.introduce-item:hover .introduce-icon2 {
	background: url(../images/index-icon2-a.png) no-repeat center;
	background-size: contain;
}
.introduce-icon3 {
	width: 126px;
	background: url(../images/index-icon3.png) no-repeat center;
	background-size: contain;
}
.introduce-item:hover .introduce-icon3 {
	background: url(../images/index-icon3-a.png) no-repeat center;
	background-size: contain;
}
.introduce-icon4 {
	width: 120px;
	background: url(../images/index-icon4.png) no-repeat center;
	background-size: contain;
}
.introduce-item:hover .introduce-icon4 {
	background: url(../images/index-icon4-a.png) no-repeat center;
	background-size: contain;
}
.introduce-item p {
	margin-top: 35px;
	font-size: 22px;
	color: #505050;
}
@media only screen and (max-width: 1199px) {
	.introduce-icon {
		height: 100px;
	}
	.introduce-icon1 {
		width: 128px;
	}
	.introduce-icon2 {
		width: 122px;
	}
	.introduce-icon3 {
		width: 103px;
	}
	.introduce-icon4 {
		width: 100px;
	}
	.introduce-item p {
		font-size: 20px;
	}
}
@media only screen and (max-width: 991px) {
	.introduce-box {
		margin: 50px auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.introduce-item {
		width: 50%;
		margin-top: 30px;
	}
}
@media only screen and (max-width: 767px) {
	.introduce-icon {
		height: 70px;
	}
	.introduce-icon1 {
		width: 89px;
	}
	.introduce-icon2 {
		width: 85px;
	}
	.introduce-icon3 {
		width: 72px;
	}
	.introduce-icon4 {
		width: 70px;
	}
	.introduce-item p {
		font-size: 14px;
		margin-top: 15px;
	}
	.introduce-box {
		margin: 10px auto 30px;
	}
	#banner .swiper-slide img:nth-child(1) {
		display: none;
	}
	#banner .swiper-slide img:nth-child(2) {
		display: block;
	}
}

/*服务项目*/
.serve-object {
	margin-bottom: 100px;
}
.common-title {
	text-align: center;
}
.common-title h3 {
	font-size: 34px;
	color: #000;
	margin-bottom: 25px;
}
.common-title h4 {
	font-size: 58px;
	color: #ddd;
}
.serve-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 110px;
}
.serve-item {
	width: calc(50% - 32px);
	margin-bottom: 60px;
}
.serve-item>a {
	display: block;
	position: relative;
	overflow: hidden;
}
.serve-item>a img {
	display: block;
	width: 100%;
	transition: transform .3s;
}
.serve-item>a:hover img {
	transform: scale(1.1);
}
.serve-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 120px;
	color: #C7000B;
	font-weight: bold;
	transition: opacity .3s;
}
.serve-item-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 60px;
	opacity: 0;
	transition: opacity .3s;
}
.serve-item-box h3 {
	font-size: 80px;
	color: #C7000B;
}
.serve-item-box h4 {
	margin-top: 5px;
	font-size: 22px;
	color: #C7000B;
}
.serve-item-ul {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.serve-item-ul li {
	width: calc(50% - 10px);
	font-size: 18px;
	line-height: 36px;
	color: #000;
}
.serve-item>a:hover .serve-item-ul li {
	color: #000;
}
.serve-item>a:hover .serve-item-box {
	opacity: 1;
}
.serve-item>a:hover .serve-title {
	opacity: 0;
}

@media only screen and (max-width: 1599px) {
	.serve-item-box {
		padding: 0 30px;
	}
	.serve-item-ul {
		margin-top: 20px;
	}
}
@media only screen and (max-width: 1199px) {
	.introduce-box {
		margin: 70px auto;
	}
	.serve-object {
		margin-bottom: 70px;
	}
	.common-title h3 {
		margin-bottom: 15px;
	}
	.common-title h4 {
		font-size: 36px;
	}
	.serve-list {
		margin-top: 50px;
	}
	.serve-item {
		width: calc(50% - 15px);
		margin-bottom: 30px;
	}
	.serve-title {
		font-size: 80px;
	}
	.serve-item-box {
		padding: 0 15px;
	}
	.serve-item-box h3 {
		font-size: 40px;
	}
	.serve-item-box h4 {
		font-size: 20px;
	}
	.serve-item-ul li {
		font-size: 16px;
		line-height: 30px;
	}
}
@media only screen and (max-width: 991px) {
	.serve-item-ul {
		margin-top: 10px;
	}
	.serve-item-ul li {
		font-size: 14px;
		line-height: 24px;
		width: calc(50% - 5px);
		height: 24px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.introduce-box {
		margin: 45px auto;
	}
	.serve-list {
		margin-top: 30px;
	}
	.serve-object {
		margin-bottom: 45px;
	}
	.common-title h3 {
		font-size: 30px;
	}
	.common-title h4 {
		font-size: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.serve-item {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.serve-item:last-child {
		margin-bottom: 10px;
	}
	.serve-item>a {
		max-width: 400px;
	}
	.serve-list {
		margin-top: 20px;
	}
	.serve-object {
		margin-bottom: 30px;
	}
	.common-title h3 {
		margin-bottom: 10px;
		font-size: 24px;
	}
	.common-title h4 {
		font-size: 24px;
	}
	.serve-title {
		font-size: 60px;
	}
}

.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*底部内容*/
footer {
	background: #3E3A39;
}
.footer-content {
	padding: 60px 0 100px;
	position: relative;
}
.footer-left {
	float: left;
	overflow: hidden;
}
.footer-logo {
	width: 270px;
	display: block;
}
.footer-logo img {
	display: block;
	width: 100%;
}
.footer-nav {
	display: flex;
	margin-top: 20px;
	height: 30px;
	color: #727171;
}
.footer-nav a {
	margin: 0 10px;
	color: #727171;
}
.footer-nav a:hover {
	color: #fff;
}

.footer-right select option {
	line-height: 30px;
	font-size: 14px;
}
.share-icon {
	float: right;
	display: flex;
}
.share-icon a {
	width: 78px;
	height: 66px;
	display: flex;
	margin-left: 40px;
	border-radius: 5px;
	background-color: #C6000B;
	position: relative;
	cursor: pointer;
	margin-top: 50px;
}
.share-icon a .ewm-box {
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	z-index: 10;
	width: 126px;
	height: 136px;
	padding: 22px 12px 12px 12px;
	display: none;
	background: url(../images/ewm-box.png) no-repeat center;
	background-size: 100%;
}
.share-icon a .ewm-box img {
	display: block;
	width: 100px;
	height: 100px;
}
.share-icon a:hover .ewm-box {
	display: block;
}
.share-icon1::after {
	content: '';
	display: block;
	position: absolute;
	width: 83px;
	height: 36px;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/footer-icon1.png) no-repeat center;
	background-size: 100%;
}
.share-icon2::after {
	content: '';
	display: block;
	position: absolute;
	width: 44px;
	height: 36px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url(../images/footer-icon2.png) no-repeat center;
	background-size: 44px 36px;
} 
.share-icon3::after {
	content: '';
	display: block;
	position: absolute;
	width: 45px;
	height: 35px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url(../images/footer-icon3.png) no-repeat center;
	background-size: 45px 35px;
} 
.copyright {
	line-height: 30px;
	padding: 30px 0;
	color: #898989;
}
.copyright>span:first-child {
	float: left;
}
.copyright>span:last-child {
	float: right;
}
#main {
	margin: 100px auto;
}
.news-title{
	line-height:30px;
	font-size:24px;
	font-weight:bold;
	text-align:center;
	margin-bottom:5px;	
	color:#181616;
	margin-top: 20px;
}
.news-content{
	margin: 20px 0px;
	min-height: 200px;
	line-height: 30px;
}
.inside-page{
	width:100%; 
	line-height:40px; 
	text-align:left; 
	margin-top:20px; 
	border-top:solid 1px #CCCCCC;	
	padding-top:5px;
}
@media only screen and (max-width:1199px ) {
	.share-icon a{
		margin-top: 0;
		margin-left: 30px;
	}
	.share-icon a:first-child {
		margin-left: 0;
	}
	.footer-content {
		padding: 50px 0;
	}
	#main {
		margin: 60px auto;
	}
}

@media only screen and (max-width:991px ) {
	.share-icon {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 30px;
	}
	.footer-logo {
		margin: 0 auto;
	}
	.footer-left {
		width: 100%;
	}
	.footer-nav {
		justify-content: center;
	}
	.footer-content {
		padding-bottom: 10px;
	}
	.copyright {
		text-align: center;
	}
	#main {
		margin: 45px auto;
	}
}
@media only screen and (max-width:767px ) {
	.footer-logo {
		width: 180px;
	}
	.footer-content {
		padding: 30px 15px 0;
	}
	.footer-nav {
		display: none;
	}
	.share-icon a {
		transform: scale(.5);
		margin-left: -15px;
	}
	.share-icon a .ewm-box {
		transform: translateX(-50%) scale(1.5);
		transform-origin: top center;
	}
	.copyright {
		padding: 15px;
		line-height: 24px;
	}
	#main {
		margin: 30px auto;
	}
	.share-icon {
		margin-top: 10px;
	}
}

/*内页样式*/
/*关于我们*/
.inside-about {
	padding: 120px 0;
}
.inside-about-content {
	font-size: 18px;
	line-height: 30px;
	color: #000;
	margin-top: 50px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}
.inside-about-content.show-all {
	-webkit-line-clamp: 99;
}

@media only screen and (max-width:1199px ) {
	.inside-about {
		padding: 60px 0;
	}
}
@media only screen and (max-width:991px ) {
	.inside-about {
		padding: 45px 0;
	}
	.inside-about-content {
		font-size: 16px;
	}
}
@media only screen and (max-width:767px ) {
	.inside-about {
		padding: 30px 15px;
	}
	.inside-about-content {
		font-size: 14px;
		line-height: 24px;
		margin-top: 20px;
	}
}

/*秦凰文化*/
.culture-list {
	display: flex;
	margin-top: 100px;
}
.culture-item {
	width: 14%;
	margin-right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 444px;
	transition: all .3s;
}
.culture-item.active {
	width: calc(100% - 56% - 32px);
}
.culture-item:last-child {
	margin-right: 0;
}
.culture-item:first-child {
	background: url(../images/culture-bg1.jpg) no-repeat center;
	background-size: cover;
}
.culture-item:nth-child(2) {
	background: url(../images/culture-bg2.jpg) no-repeat center;
	background-size: cover;
}
.culture-item:nth-child(3) {
	background: url(../images/culture-bg3.jpg) no-repeat center;
	background-size: cover;
}
.culture-item:nth-child(4) {
	background: url(../images/culture-bg4.jpg) no-repeat center;
	background-size: cover;
}
.culture-item:nth-child(5) {
	background: url(../images/culture-bg5.jpg) no-repeat center;
	background-size: cover;
}
.culture-item-title {
	font-size: 24px;
	color: #fff;
	transition: all .3s;
	background: url(../images/footer-icon1.png) no-repeat center top;
	background-size: 74px 32px;
	padding-top: 40px;
}
.culture-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #dcdcdc;
	padding: 38px 38px 0;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transition: all .3s;
}
.culture-box h3 {
	font-size: 22px;
	color: #181818;
	background: url(../images/culture-icon.png) no-repeat 100px center;
	flex-shrink: 0;
}
.culture-box p {
	margin-top: 15px;
	flex-shrink: 0;
}
.culture-img {
	margin-top: 30px;
	flex-grow: 1;
	overflow: hidden;
}
.culture-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.culture-item.active .culture-item-title {
	opacity: 0;
}
.culture-item.active .culture-box {
	opacity: 1;
}
@media only screen and (max-width:1199px ) {
	.culture-list {
		margin-top: 60px;
	}
	.culture-item {
		height: 300px;
	}
}
@media only screen and (max-width:991px ) {
	.culture-list {
		margin-top: 45px;
	}
	.culture-item.active {
		width: calc(100% - 56%);
	}
	.culture-item {
		margin-right: 0;
	}
	.culture-item-title {
		font-size: 22px;
	}
	.culture-box {
		padding: 15px 15px 0;
	}
	.culture-img {
		margin-top: 20px;
	}
}
@media only screen and (max-width:767px ) {
	.culture-list {
		margin-top: 30px;
		flex-wrap: wrap;
	}
	.culture-item.active {
		width: 100%;
		flex-shrink: 0;
		max-width: 400px;
		margin: 0 auto 20px;
	}
	.culture-box {
		height: 300px;
		max-height: none;
	}
	.culture-item {
		max-width: 400px;
		margin: 0 auto 20px;
		width: 100%;
		flex-shrink: 0;
		height: 300px;
		max-height: none;
	}
	.culture-item .culture-box {
		opacity: 1;
	}
	.culture-box h3 {
		font-size: 20px;
	}
	.culture-box p {
		margin-top: 5px;
	}
	.culture-item:last-child {
		margin-right: auto;
	}
}

/*发展历程*/
.inside-history {
	margin: 120px auto;
	background: url(../images/events-bg.png) no-repeat right bottom;
}
.history-box {
	overflow: hidden;
	padding: 0 150px;
	position: relative;
	margin-top: 130px;
}
.history-box .owl-prev {
	position: absolute;
	cursor: pointer;
	overflow: hidden;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	height: 31px;
	background: url(../images/arrow-left.png) no-repeat;
	background-size: 100%;
}
.history-box .owl-prev:hover {
	background: url(../images/arrow-left-a.png) no-repeat;
	background-size: 100%;
}
.history-box .owl-next {
	position: absolute;
	cursor: pointer;
	overflow: hidden;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	height: 31px;
	background: url(../images/arrow-right.png) no-repeat;
	background-size: 100%;
}
.history-box .owl-next:hover {
	background: url(../images/arrow-right-a.png) no-repeat;
	background-size: 100%;
}
.history-box::before {
	content: "";
	position: absolute;
	left: 80px;
	right: 80px;
	height: 1px;
	display: block;
	background: #6F7272;
	top: 135px;
}
.history-box .owl-controls {
	display: block !important;
}
.history-box .item {
	height: 135px;
	position: relative;
	padding-left: 25px;
}
.history-box .item::before {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	display: block;
	left: 0;
	top: 15px;
	background: #C7000B;
}
.history-box .item::after {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	height: 111px;
	left: 4px;
	bottom: 0;
	background: #6F7272;
}
.history-box .item h4 {
	font-size: 30px;
	color: #C7000B;
	font-weight: bold;
}
.history-box .item p {
	margin-top: 25px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.history-box .owl-wrapper .owl-item:nth-child(2n) {
	margin-top: 135px;
}
.history-box .owl-wrapper .owl-item:nth-child(2n) .item {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.history-box .owl-wrapper .owl-item:nth-child(2n) .item p {
	margin-bottom: 25px;
	margin-top: 0;
}
.history-box .owl-wrapper .owl-item:nth-child(2n) .item::before {
	bottom: 15px;
	top: unset;
}
.history-box .owl-wrapper .owl-item:nth-child(2n) .item::after {
	top: 0;
	bottom: unset;
}

@media only screen and (max-width:1199px ) {
	.inside-history {
		margin: 60px auto;
	}
	.history-box {
		margin-top: 60px;
	}
}
@media only screen and (max-width:991px ) {
	.inside-history {
		margin: 45px auto;
	}
	.history-box {
		margin-top: 45px;
	}
}
@media only screen and (max-width:767px ) {
	.inside-history {
		margin: 30px auto;
	}
	.history-box {
		margin-top: 30px;
		padding: 0;
	}
	.history-box .owl-prev,
	.history-box .owl-next {
		display: none;
	}
	.history-box::before {
		left: 0;
		right: 0;
	}
}

/*服务客户*/
.news-scroll {
	margin: 0 auto 110px;
}
.news-box {
	overflow: hidden;
}
.news-img {
	float: left;
	width: calc(50% - 60px);
}
.news-img a {
	display: block;
	width: 100%;
	height: 415px;
	overflow: hidden;
}
.news-img a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
.news-img a:hover img {
	transform: scale(1.1);
}
.news-right {
	float: right;
	width: 50%;
}
.news-right h4 {
	line-height: 87px;
	border-bottom: 1px solid #929292;
	display: flex;
	justify-content: space-between;
}
.news-right h4 span {
	font-size: 46px;
	color: #c7000b;
	font-weight: bold;
}
.news-right h4 em {
	font-size: 18px;
	font-style: normal;
}
.news-right-title {
	margin-top: 30px;
	margin-bottom: 45px;
}
.news-right-title a {
	font-size: 24px;
}
.news-nr {
	font-size: 18px;
	color: #666;
	line-height: 26px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	height: 130px;
	overflow: hidden;
}
.news-more {
	display: block;
	width: 80px;
	height: 31px;
	background: url(../images/arrow-right-a.png) no-repeat center;
	background-size: 100%;
	margin-top: 35px;
}
.owl-pagination {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 80px;
}
.owl-page {
	width: 14px;
	height: 14px;
	border-radius: 7px;
	cursor: pointer;
	background: #D5D5D5;
	margin-right: 18px;
}
.owl-page:last-child {
	margin-right: 0;
}
.owl-page.active {
	background: #C7000B;
}
.clients-scroll {
	margin-top: 50px;
}
.clients-scroll .item {
	padding: 10px 8px;
}
.client-box {
	max-width: 274px;
	height: 125px;
	margin: 0 auto 17px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* border: 1px solid #BFBFBF; */
	box-shadow: 0 0 12px rgba(0,0,0,0.15);
	transition: all .3s;
}
.client-box:hover {
	transform: scale(1.05);
	box-shadow: 0 0 8px 0 rgb(183 28 34 / 50%);
}
.client-box img {
	max-height: 80%;
	max-width: 80%;
	display: block;
}
.client-box:last-child {
	margin-bottom: 0;
}
@media only screen and (max-width:1199px ) {
	.news-img {
		width: calc(50% - 30px);
	}
	.news-img a {
		height: 300px;
	}
	.news-right h4 {
		line-height: 50px;
	}
	.news-right h4 span {
		font-size: 30px;
	}
	.news-right-title {
		margin: 15px 0;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.news-right-title a {
		font-size: 20px;
	}
	.news-nr {
		font-size: 16px;
	}
	.news-more {
		margin-top: 15px;
	}
	.owl-pagination {
		margin-top: 40px;
	}
	.clients-scroll {
		margin-top: 40px;
	}
	.news-scroll {
		margin-bottom: 45px;
	}
}
@media only screen and (max-width:767px )  {
	.news-img {
		width: 100%;
	}
	.news-right {
		width: 100%;
		margin-top: 10px;
	}
	.news-right h4 span {
		font-size: 20px;
	}
	.news-nr {
		font-size: 14px;
	}
	.owl-pagination {
		margin-top: 20px;
	}
	.clients-scroll {
		margin-top: 20px;
	}
	.clients-scroll .owl-controls {
		display: none !important;
	}
	.news-scroll {
		margin-bottom: 30px;
	}
}
@media only screen and (max-width:499px ) {
	.news-img a {
		height: 200px;
	}
}

/*联系我们*/
.contact-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact-item {
	width: calc(50% - 30px);
	display: flex;
	margin-bottom: 90px;
}
.contact-item:nth-last-child(1), .contact-item:nth-last-child(2){
	margin-bottom: 0;
}
.contact-img {
	width: 260px;
	height: 260px;
	margin-right: 23px;
	flex-shrink: 0;
}
.contact-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	flex-grow: 1;
}
.contact-right {
	height: 260px;
	display: flex;
	align-items: center;
	position: relative;
}
.contact-right h3 {
	font-size: 34px;
	color: #C7000B;
	margin-right: 60px;
	flex-shrink: 0;
}
.contact-right h4 {
	position: absolute;
	font-size: 16px;
	color: #1e1e1e;
	font-weight: bold;
	transform: translate(-50%, 0) rotate(90deg);
    left: 98px;
    transform-origin: center;
}
.contact-nr {
	font-size: 16px;
	color: #666;
	line-height: 28px;
	flex-grow: 1;
}
@media only screen and (max-width:1599px ) {
	.contact-img {
		width: 200px;
		height: 200px;
	}
	.contact-right {
		height: 200px;
	}
	.contact-right h3 {
		font-size: 30px;
	}
	.contact-right h4 {
		left: 78px;
	}
	.contact-right h3 {
		margin-right: 40px;
	}
	.contact-item {
		width: calc(50% - 20px);
	}
}
@media only screen and (max-width:1199px ) {
	.contact-item {
		margin-bottom: 50px;
		width: calc(50% - 15px);
		flex-wrap: wrap;
		flex-direction: column;
	}
	.contact-img {
		width: 200px;
		height: 200px;
	}
	.contact-right {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
	}
	.contact-right h4 {
		position: relative;
		font-weight: bold;
		transform: none;
		left: 0;
		margin: 10px 0;
	}
}
@media only screen and (max-width:991px ) {
	.contact-right {
		width: 100%;
	}
	.contact-img {
		margin: 0 auto 20px;
	}
	.contact-right h3 {
		font-size: 25px;
		text-align: center;
		width: 100%;
	}
	.contact-right h4 {
		text-align: center;
		width: 100%;
	}
	.contact-item {
		margin-bottom: 30px;
	}
}
@media only screen and (max-width:767px ) {
	.contact-item {
		width: 100%;
	}
	.contact-img {
		margin: 0 auto 10px;
	}
	 .contact-item:nth-last-child(2){
		margin-bottom: 30px;
	}
	.contact-nr {
		font-size: 14px;
		text-align: center;
		width: 100%;
	}
	.contact-right h3 {
		font-size: 22px;
	}
}

.slogan {
	font-size: 22px;
	line-height: 36px;
	padding: 29px 15px;
	text-align: center;
	color: #fff;
	background: #C6000B;
} 
.club {
	background: url(../images/club-bg.png) no-repeat left center;
}
.club-img {
	margin: 0 auto;
	display: block;
}
.club-title {
	text-align: center;
	margin-top: -10px;
	color: #C6000B;
	transition: transform .3s;
	transform-origin: center top;
}
.club-title:hover {
	transform: scale(1.1);
}
.club-title h3 {
	font-size: 24px;
}
.club-title h4 {
	font-size: 36px;
	margin-top: 20px;
}
.number-box {
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
}
.number-item {
	text-align: center;
}
.number-item h3 {
	margin-bottom: 30px;
	font-size: 22px;
	vertical-align: bottom;
}
.number-item h3 span {
	font-size: 68px;
	color: #C6000B;
	position: relative;
	top: 30px;
}
.number-item p {
	font-size: 34px;
	margin-top: 28px;
	opacity: 0;
	transition: opacity .3s;
}
.number-item:hover p {
	opacity: 1;
}
.investor-serve {
	margin: 110px auto;
}
.serve-scroll {
	margin-top: 80px;
}
.serve-scroll .item {
	margin: 0 16px;
}
.serve-scroll .item-box {
	width: calc(25% - 32px);
	float: left;
	margin: 0 16px;
}
.serve-scroll-item {
	margin: 0 auto;
	width: 100%;
	max-width: 336px;
	background: #C6000B;
	overflow: hidden;
	position: relative;
}
.serve-scroll-item img {
	display: block;
	width: 100%;
	transition: all .3s;
}
.serve-scroll-item a {
	display: block;
	overflow: hidden;
}
.serve-scroll-item a img {
	display: block;
	width: 100%;
	transition: all .3s;
}
.serve-scroll-item a:hover img {
	transform: scale(1.1);
}
.serve-scroll-item p {
	line-height: 50px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background: #C6000B;
	border-top: 19px solid #fff;
	position: relative;
	z-index: 2;
}
.serve-scroll-item:hover img {
	opacity: .8;
	transform: scale(1.2);
}
.serve-scroll-item .hover-box {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 69px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	color: #fff;
	font-weight: bold;
	opacity: 0;
	transition: opacity .3s;
}
.serve-scroll-item:hover .hover-box {
	opacity: 1;
}
.about-more {
	font-size: 16px;
	color: #C6000B;
	margin-top: 15px;
	display: inline-block;
}
.investor-about {
	background: url(../images/club-about-bg2.png) no-repeat right bottom;
}
.investor-about .container {
	background: url(../images/club-about-bg1.png) no-repeat left top;
}
@media only screen and (max-width:1199px ) {
	.club-img {
		width: 300px;
	}
	.number-box {
		margin-top: 60px;
	}
	.investor-serve {
		margin: 60px auto;
	}
	.serve-scroll {
		margin-top: 40px;
	}
	.serve-scroll .item-box {
		width: calc(50% - 32px);
		float: left;
		margin: 0 16px 32px;
	}
}
@media only screen and (max-width:991px ) {
	.slogan {
		font-size: 20px;
		line-height: 26px;
		padding: 15px;
	}
	.club-img {
		width: 200px;
	}
	.number-box {
		margin-top: 45px;
	}
	.club-title h3 {
		font-size: 30px;
	}
	.club-title h4 {
		font-size: 30px;
		margin-top: 15px;
	}
	.number-item h3 {
		margin-bottom: 0;
	}
	.number-item h3 span {
		font-size: 35px;
		position: relative;
		top: 12px;
	}
	.number-item p {
		margin-top: 15px;
		font-size: 24px;
	}
	.investor-serve {
		margin: 45px auto;
	}
	.serve-scroll {
		margin-top: 30px;
	}
	.serve-scroll-item p {
		margin-top: 0;
		font-size: 16px;
	}
}
@media only screen and (max-width:767px ) {
	.slogan {
		font-size: 16px;
	}
	.club {
		background: url(../images/club-bg.png) no-repeat left 40%;
		background-size: 80vw auto;
	}
	.club-img {
		margin: -20px auto 10px;
	}
	.club-title {
		margin-top: 0;
	}
	.number-box {
		margin-top: 45px;
	}
	.club-title h3 {
		font-size: 24px;
	}
	.club-title h4 {
		font-size: 24px;
		margin-top: 10px;
	}
	.number-item h3 {
		font-size: 20px;
	}
	.number-item h3 span {
		font-size: 30px;
		position: relative;
		top: 8px;
	}
	.number-item p {
		margin-top: 15px;
		font-size: 20px;
		opacity: 1;
	}
	.investor-serve {
		margin: 70px auto 50px;
	}
	.serve-scroll {
		margin-top: 20px;
	}
	.serve-scroll-item p {
		line-height: 40px;
		font-size: 14px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.serve-scroll .item {
		margin: 0;
	}
	.investor-about {
		background: url(../images/club-about-bg2.png) no-repeat right bottom;
		background-size: 80vw auto;
	}
	.investor-about .container {
		background: url(../images/club-about-bg1.png) no-repeat left top;
		background-size: 38vw auto;
	}
	.serve-scroll-item .hover-box {
		bottom: 59px;
		font-size: 60px;
	}
	.serve-scroll-item {
		max-width: 500px;
	}
}
@media only screen and (max-width:550px ) {
	.serve-scroll .item-box {
		width: 100%;
		float: left;
		margin: 0 0 20px;
	}
}
.customer-news {
	margin-bottom: 80px;
}
.customer-news .serve-scroll {
	margin-top: 0;
}
/*banner*/
.fullwidthbanner-container {
	width: 100% !important;
	position: relative;
	padding: 0;
	overflow: hidden;
}
.fullwidthbanner-container .fullwidthabnner {
	width: 100% !important;
	position: relative;
}
@media(max-width: 991px){
	.fullwidthbanner-container {
		top: 0px;
		margin-bottom: 0px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.banner,
	.bannercontainer {
		width: 768px;
		height: 309px;
	}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.banner,
	.bannercontainer {
		width: 480px;
		height: 193px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
	.banner,
	.bannercontainer {
		width: 320px;
		height: 129px;
	}
}
@media only screen and (max-width: 319px) {
	.banner,
	.bannercontainer {
		width: 240px;
		height: 97px;
	}
}
.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected {
	background: #fff !important;
}
.tp-leftarrow:hover,
.tp-rightarrow:hover {
	background-color: #C5000C !important;
}
/** BULLETS **/
.tp-bullets {
	z-index: 1001;
	position: absolute;
	bottom: 25px !important;
}
.tp-bullets.simplebullets.round .bullet {
	cursor: pointer;
	position: relative;
	background: #fff;
	width: 14px;
	height: 14px;
	border: 1px solid #fff;
	background: none;
	border-radius: 50%;
	float: left;
	margin: 0px 8px;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
}
.tp-leftarrow.large {
	z-index: 100;
	cursor: pointer;
	position: relative;
	background: #393939 url(../images/slider-left-arrow.png) no-Repeat;
	width: 42px;
	height: 43px;
	margin-left: 0px;
	margin-top: -21px;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.tp-rightarrow.large {
	z-index: 100;
	cursor: pointer;
	position: relative;
	background: #393939 url(../images/slider-right-arrow.png) no-Repeat 0 0;
	width: 42px;
	height: 43px;
	margin-left: 0;
	margin-top: -21px;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.tp-bullets.tp-thumbs {
	z-index: 100;
	position: absolute;
	padding: 3px;
	background-color: #fff;
	width: 500px;
	height: 50px;
	margin-top: -50px;
}
.fullwidthbanner-container .tp-thumbs {
	padding: 3px;
}
.tp-bullets.tp-thumbs .tp-mask {
	width: 500px;
	height: 50px;
	overflow: hidden;
	position: relative;
}
.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer {
	width: 5000px;
	position: absolute;
}
.tp-bullets.tp-thumbs .bullet {
	width: 100px;
	height: 50px;
	cursor: pointer;
	overflow: hidden;
	background: none;
	margin: 0;
	float: left;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/*filter: alpha(opacity=50);	*/
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
}
.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}
.tp-thumbs img {
	width: 100%;
}
.tp-bannertimer {
	width: 100%;
	height: 10px;
	position: absolute;
	z-index: 200;
	z-index: 5000;
}
.tp-bannertimer.tp-bottom {
	bottom: 0px !important;
	height: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
	
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.responsive .tp-bullets.tp-thumbs {
		width: 300px !important;
		height: 30px !important;
	}
	.responsive .tp-bullets.tp-thumbs .tp-mask {
		width: 300px !important;
		height: 30px !important;
	}
	.responsive .tp-bullets.tp-thumbs .bullet {
		width: 60px !important;
		height: 30px !important;
	}
}
@media only screen and (min-width: 0px) and (max-width: 479px) {
	.responsive .tp-bullets {
		display: none;
	}
	.responsive .tparrows {
		display: none;
	}
}
.tp-simpleresponsive img {
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}
.tp-simpleresponsive a {
	text-decoration: none;
}
.tp-simpleresponsive ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tp-simpleresponsive>ul>li {
	list-stye: none;
	position: absolute;
	visibility: hidden;
}
.caption.slidelink a div,
.tp-caption.slidelink a div {
	width: 10000px;
	height: 10000px;
}
.tp-loader {
	background: url(../images/loader.gif) no-repeat 10px 10px;
	background-color: #fff;
	margin: -22px -22px;
	top: 50%;
	left: 50%;
	z-index: 10000;
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.login-box {
	background-color: #fff;
	width: 780px;
	height: 455px;
	margin: 70px auto 0;
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	padding: 0 15px;
}
.login-content {
	width: 100%;
	max-width: 550px;
	margin: 0 auto;
	padding-top: 90px;
}
.login-item {
	height: 60px;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.login-item img {
	display: block;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	margin-right: 30px;
}
.login-item input {
	flex-grow: 1;
	height: 60px;
	border: none;
	background: none;
	border-bottom: 1px solid #cdcdcd;
	line-height: 60px;
	font-size: 24px;
	color: #333;
}
.login-item input::placeholder {
	color: #a9a9a9;
}
.submit {
	margin: 75px auto 0;
	display: block;
	width: 220px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	background-color: #C3221B;
	border-radius: 8px;
	border: none;
}
@media only screen and (max-width:767px ) {
	.login-box {
		width: calc(100% - 30px);
	}
	.login-box {
		height: auto;
		margin: 30px auto 0;
	}
	.login-content {
		width: 100%;
		max-width: 450px;
		margin: 0 auto;
		padding: 50px 0;
	}
	.login-item {
		height: 50px;
		margin-bottom: 30px;
	}
	.login-item img {
		display: block;
		width: 50px;
		height: 50px;
		flex-shrink: 0;
		margin-right: 20px;
	}
	.login-item input {
		flex-grow: 1;
		height: 50px;
		border: none;
		background: none;
		border-bottom: 1px solid #cdcdcd;
		line-height: 50px;
		font-size: 18px;
		color: #333;
	}
	.submit {
		margin: 55px auto 0;
		display: block;
		width: 180px;
		height: 46px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		color: #fff;
		background-color: #C3221B;
		border-radius: 8px;
		border: none;
	}
	.customer-news {
		margin-bottom: 30px;
	}
}
	