body {
	padding-top: 90px;
	color: #000;
	background: #fff;
}
body > div {
	transition: all 0.5s;
}
body.fixed {
	overflow: hidden;
}
a {
	color: #000;
}
a:hover {
	color: #C8362F;
}
.header{
	width: 100%;
	height: 90px;
	background: rgba(255,255,255,0.9);
	/*-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 5px rgba(0,0,0,0.1);
	box-shadow: 0 0 5px rgba(0,0,0,0.1);*/
	border-bottom: 2px solid rgba(74,74,74,0.1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
}
/*.front .header{
	transform: translate3d(0,-90px,0);
}
body.fixed .header {
	transform: translate3d(0,-90px,0);
}
body.slide-in .header {
	animation: headerIn 0.5s ease-out both;
}
body.toolbar.slide-in .header {
	animation: none;
	top: 30px;
}
@keyframes headerIn {
	from {
		transform: translate3d(0,-76px,0);
	}
	to {
		transform: translate3d(0,0,0);
	}
}*/
body.has-top-banner	.header {
	background: rgba(255,255,255,0);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.front-wrapper {
	width: 100%;
	/*transform: translate3d(0, 100%, 0);*/
	background: #fff;
	transition: all 0.5s;
	/*opacity: 0;*/
	position: relative;
	z-index: 2;
	/*transform: translate3d(0,200px,0);*/
}
body.fixed .front-wrapper {
	position: fixed;
	top: 100%;
	left: 0;
}
body.slide-in .front-wrapper {
	transform: translate3d(0,0,0);
	opacity: 1;
}
.open-screen {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	display: none;
	overflow: hidden;
	transition: all 0.5s ease;
}
body.fixed .open-screen {
	display: block;
}
/*body.slide-in .open-screen {
	display: block;
}*/
.open-screen video {
	width: 100%;
}
.videobox {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.videobox video {
	width: 100%;
}
.logo {
	padding: 30px 0;
	float: left;
	margin-right: 40px;
}
.logo img {
	height: 100%;
	float: left;
}

div.nav-btn-wrapper li {
	margin-left: 22px;
}
div.nav-btn-wrapper li a {
	line-height: 90px;
	color: #000;
}
.wx {
	padding-top: 26px;
	float: right;
	margin-left: 20px;
}
.wx a {
	width: 24px;
	height: 24px;
	display: block;
	background: url("../images/wx.svg") no-repeat center center;
}
.nav-btn {
	float: right;
	width: 25px;
	height: 25px;
	box-sizing: border-box;
	transition: all 0.3s;
	position: relative;
	margin-left: 40px;
	margin-top: 32px;
	cursor: pointer;
	/*display: none;*/
}
.nav-btn span {
	display: block;
	width: 100%;
	position: absolute;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	left: 0;
	line-height: 0px;
	background: #000;
	/*border-radius: 2px;*/
}
.nav-btn span:before,
.nav-btn span:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	line-height: 0px;
	background: #000;
	left: 0;
	/*border-radius: 2px;*/
}
.nav-btn span:before {
	top: -9px;
}
.nav-btn span:after {
	bottom: -9px;
}
.lang-box {
	float: right;
	padding-top: 30px;
}
.lang-box li {
	display: inline-block;
	margin-left: 5px;
}
.lang-box li a {
	display: block;
	width: 24px;
	height: 24px;
	color: #000;
	text-align: center;
	font-size: 16px;
	line-height: 1.875;
	float: left;
	transition: all 0.5s;
	opacity: 0.3;
}
.lang-box li a:hover {
	opacity: 1;
}
.lang-box li.active a {
	/*background: #CA3C35;*/
	opacity: 1;
}
.nav {
	float: right;
	overflow: hidden;
	padding-top: 30px;
}
.nav li {
	float: left;
	margin-right: 40px;
}
.nav a {
	font-size: 16px;
	line-height: 1.875;
	color: #000;
	transition: all 0.5s;
}
.nav a:hover {
	color: #CA3C35;
}
.nav li.active-trail a,
.nav a.active {
	color: #CA3C35;
}
.top-banner {
	width: 100%;
	position: relative;
	z-index: 3;
	border-bottom: 1px solid rgba(151,151,151,0.23);
	background: #CA3C35;
	/*overflow: hidden;*/
}
.top-banner:after {
	content: '';
	display: block;
	width: 100%;
	height: 45px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: url("../images/white-arc.svg") no-repeat bottom center;
	background-size: 100% 100%;
	z-index: 12;
}
.top-banner .swiper-pagination {
	bottom: 56px;
}
.top-banner .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 10px;
	opacity: 0.3;
	margin: 0 5px;
	transition: all 0.5s;
}
.top-banner.white-style .swiper-pagination .swiper-pagination-bullet {
	background: #000;
	opacity: 0.1;
}
.top-banner .swiper-pagination .swiper-pagination-bullet-active {
	width: 22px;
	opacity: 1;
}
.top-banner.white-style .swiper-pagination .swiper-pagination-bullet-active {
	background: #DA231A;
	opacity: 1;
}
.top-banner {
	overflow: hidden;
	position: relative;
	border-bottom: none;
}
.top-banner img {
	width: 100%;
	float: left;
}
.top-banner .swiper-slide {
	width: 100%;
	background: #CA3C35;
	overflow: hidden;
}
.more-link {
	display: inline-block;
	overflow: hidden;
}
.more-link span {
	padding-right: 41px;
	font-size: 24px;
	color: #fff;
	/*background: url("../images/more.svg") no-repeat right center;*/
}
body.fixed .front-banner {
	display: none;
	/*opacity: 0;*/
}
/*body.slide-in .top-banner {
	display: block;
	margin-top: 0;
}*/
.swiper-slide video {
	width: 100%;
}



.footer {
	font-size: 14px;
	color: #fff;
	padding: 50px 0;
	background: #161616;
}
.footer-logo {
	width: 168px;
	float: left;
}
.footer-logo img {
	width: 100%;
}
.footer-nav {
	float: left;
}
.footer-nav ul li {
	display: inline-block;
	margin-right: 30px;
	float: left;
}
.footer-nav ul li a {
	line-height: 32px;
	color: #fff;
}
.footer-b {
	padding-top: 15px;
}
.footer-b a {
	margin-left: 30px;
	color: #fff;
}
.footer-b-left {
	float: left;
	opacity: 0.5;
}
.footer-b-right {
	float: right;
}
.footer-b-right a {
	width: 35px;
	height: 35px;
	display: block;
	float: left;
	margin-left: 30px;
	background-repeat: no-repeat;
	background-size: 100%;
}
.footer-b-right a.mail {
	background-image: url("../images/mail.svg");
}
.footer-b-right a.wechat {
	background-image: url("../images/wechat.svg");
}
.footer-b-right a.weibo {
	background-image: url("../images/weibo.svg");
}
.footer-top {
	border-top: 1px solid rgba(151,151,151,0.23);
}
.footer-top .w {
	display: flex;
}
.footer-top a {
	flex: 1;
	display: block;
	float: left;
	padding: 50px 0;
	text-align: center;
	border-right: 1px solid rgba(151,151,151,0.23);
}
.footer-top a:last-of-type {
	border-right: none;
}
.footer-top a span {
	display: block;
	text-align: center;
}
.footer-top a span.icon {
	margin-bottom: 15px;
}
.footer-top a span.title {
	font-size: 30px;
	margin-bottom: 20px;
}
.footer-top a span.more {
	background: url("../images/more.svg") no-repeat center center;
	height: 18px;
}
.footer-top a span.more.left {
	transform: rotate(180deg);
}
.dls dl {
	margin-right: 94px;
	float: left;
}
.dls dl:last-of-type {
	margin-right: 0;
}
.dls dt {
	font-size: 80px;
	color: #C8362F;
	position: relative;
	margin-bottom: 30px;
}
.font-din {
	font-family: "DIN Alternate","Conv_Bebas-Regular";
}
.dls dt:after {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	overflow: hidden;
	background: #C8362F;
	position: absolute;
	bottom: -10px;
	left: 0;
}
.dls dt sub {
	font-size: 23px;
	color: #000;
	position: relative;
	top: -13px;
}
.dls dd {
	font-size: 16px;
	opacity: 0.24;
}

#layer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(0,0,0,0.4);
	display: none;
	transition: all 0.5s;
}


.front-banner .swiper-slide {
	overflow: hidden;
	position: relative;
	/*height: 540px;*/
}
.swiper-slide video,
.swiper-slide img {
	max-width: 100%;
}
.banner-content {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.banner-main {
	position: relative;
	width: 75%;
}
.front-banner .banner-main {
	width: 56%;
}
.banner-main img {
	max-width: 100%;
}
.banner-content h2 {
	font-size: 50px;
	color: #fff;
	line-height: 120%;
	margin-bottom: 25px;
	font-weight: normal;
}

.banner-content h3 {
	font-size: 32px;
	line-height: 120%;
}
.banner-content .content {
	min-height: 144px;
}
.banner-content p {
	font-size: 18px;
	line-height: 150%;
	opacity: 0.7;
	color: #fff;
	/*width: 53.75%;*/
}
.top-banner.white-style .banner-content h2 {
	color: #313131;
}
.top-banner.white-style .banner-content p {
	color: #9F9F9F;
}
.banner-content p.main {
	font-size: 36px;
	opacity: 1;
}
.top-banner.white-style .banner-content p.main {
	color: #313131;
}
.about-banner .banner-content p {
	margin: 30px 0;
}
.btns-wrapper {
	height: 73px;
	overflow: hidden;
	position: relative;
	z-index: 5;
}
.btns-wrapper a.btn {
	display: block;
	float: left;
	font-size: 24px;
	line-height: 71px;
	height: 100%;
	color: #fff;
	transition: all 0.5s;
	border: 1px solid #FFFFFF;
	padding: 0 65px;
}

.top-banner.white-style  .btns-wrapper a.btn {
	border-color: #DA231A;
	color: #DA231A;
}
.btns-wrapper.center {
	text-align: center;
}
.btns-wrapper.center a.btn {
	float: none;
	display: inline-block;
}
.btns-wrapper a.btn-white {
	background: #fff;
	color: #333;
	margin-right: 30px;

}

.box {
	position: relative;
	background-color: #fff;
	padding: 80px 0;
}
h2.title {
	font-size: 50px;
	color: #212121;
	line-height: 120%;
	margin: 0 0 80px;
	text-align: left;
	position: relative;
	padding-bottom: 15px;
}
h2.title:after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background-image: linear-gradient(90deg, #D23E47 4%, #2D1851 100%);
	border-radius: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}
h2.title span.cn {
	z-index: 3;
	position: relative;
}
h2.title span.en {
	z-index: 2;
	left: -50px;
	top: 30px;
	position: absolute;
	opacity: 0.2;
	font-family: 'Conv_Bebas-Regular';
	font-size: 102px;
	color: #9B9B9B;
	letter-spacing: 10.3px;
	line-height: 78px;
	font-weight: normal;
}
h2.title.right {
	text-align: right;
}
h2.title.right span.en {
	left: inherit;
	right: -50px;
}
.front-first {
	height: 438px;
	background: url("../images/bg-dashuju.jpg") no-repeat center center;
	background-size: 100%;
}
.front-first .w {
	height: 100%;
}
.front-first dl {
	/*padding-top: 135px;*/
	color: #313131;
	cursor: pointer;
	transition: all 0.5s;
}
.front-first dl:hover {
	color: #B9252C;
}
.front-first dt strong {
	font-size: 80px;
	font-weight: normal;
}
.front-first dt small {
	font-weight: bold;
	font-size: 32px;
}
.front-first dd {
	font-size: 18px;
	line-height: 150%;
	text-align: center;
}
.ceo-say {
	height: 778px;
	background-image: linear-gradient(-180deg, #FFFFFF 4%, #F3F3F3 100%);
	position: relative;
	overflow: hidden;
}
.bg-logo {
	width: 616px;
	height: 622px;
	position: absolute;
	right: 20%;
	top: 50%;
	margin-top: -311px;
	background: url("../images/timg.svg") no-repeat;
}
.bg-circle {
	width: 367px;
	height: 367px;
	border-radius: 100%;
	background-image: linear-gradient(-235deg, #32417C 0%, #243856 63%);
	box-shadow: 0 60px 106px 0 rgba(41,62,94,0.21);
	position: absolute;
	right: -30px;
	top: 50%;
	margin-top: -183.5px;
}
.ceo-say .seo-say-container {
	z-index: 5;
	height: 100%;
}
.ceo-company {
	margin-bottom: 40px;
	overflow: hidden;
	padding-top: 80px;
}
.ceo-company-logo {
	height: 64px;
	float: left;
	margin-right: 10px;
}
.ceo-company-logo img {
	width: auto;
	height: 100%;
}
.ceo-company-info {
	float: left;
}
.ceo-company-info span {
	display: block;
}
.ceo-company-info span.ceo-company-name {
	font-size: 24px;
	color: #313131;
}
.ceo-company-info span.ceo-company-intro {
	font-size: 20px;
	color: #9F9F9F;
}
.ceo-talk {
	font-size: 40px;
	color: #313131;
	line-height: 150%;
	padding-top: 56px;
	background: url("../images/yinhao.svg") no-repeat;
	background-size: 54px;
	width: 47.8%;
}
.ceo {
	width: 820px;
	height: 780px;
	position: absolute;
	bottom: 0;
	right: -7%;
}
.ceo img {
	width: 100%;
}
.ceo-intro {
	opacity: 0.94;
	background-image: radial-gradient(41% 91%, #F1515E 31%, #C32830 100%);
	box-shadow: 0 66px 92px 0 rgba(187,48,54,0.30);
	border-radius: 100%;
	width: 220px;
	height: 220px;
	bottom: 77px;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	position: absolute;
}
.ceo-name {
	font-size: 24px;
	color: #FFFFFF;
	line-height: 150%;
	margin-bottom: 10px;
}
.ceo-offer {
	font-size: 20px;
	color: #FFFFFF;
	line-height: 120%;
}
.seo-say-container .swiper-slide {
	position: relative;
	height: 778px;
}
.seo-say-pagination {
	bottom: 154px;
	left: 0;
	width: 100%;
	position: absolute;
	z-index: 6;
}
.seo-say-pagination .swiper-button-prev,
.seo-say-pagination .swiper-button-next {
	width: 40px;
	height: 40px;
	position: static;
	float: left;
	margin: 0;
}
.seo-say-pagination .swiper-button-prev {
	background: url("../images/prev-v2.svg") no-repeat center;
}
.seo-say-pagination .swiper-button-next {
	background: url("../images/next-v2.svg") no-repeat center;
}
.seo-say-pagination .swiper-pagination {
	float: left;
	padding: 0 20px;
	font-size: 28px;
	line-height: 40px;
	color: #DA231A;
	position: static;
	width: auto;
}
.title-region {
	text-align: left;
	position: relative;
	z-index: 3;
	padding-top: 30px;
	width: 50%
}

.box-team-pic {
	width: 479px;
	height: 479px;
	float: left;

}
.box-team-pic ul {
	width: 100%;
	height: 100%;
	position: relative;
}
.box-team-pic li {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.5s;
}
.box-team-pic li.current {
	opacity: 1;
}
.box-team-pic img {
	width: 100%;
	height: 100%;
}
.box-team-pic span {
	font-size: 57px;
	color: #C8362F;
	position: absolute;
	width: 218px;
	height: 218px;
	text-align: center;
	top: 50%;
	left: 50%;
	margin: -109px 0 0 -109px;
	line-height: 218px;
	letter-spacing: 4.84px;
}
.box-team .title-region {
	width: calc(100% - 570px);
	float: right;
}
.box-team {
	padding: 100px 0;
}
.team-detail {
	padding: 80px 0 85px;
}
.front-last {
	/*background: url("../images/front-last.jpg") no-repeat center bottom;
	background-size: 1100px;*/
	/*height: 1020px;*/
}
.front-last .w {
	height: 850px;
}
.bg-video {
	width: 100%;
	padding-top: 450px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}
.bg-video video{
	width: 1100px;
	height: 570px;
}
.footer-top {

}

.text-gradient {
	display: inline-block;
	color: #212121;
	background-image: -webkit-gradient(linear, 0 0, 90% bottom, from(rgba(155, 15, 29, 1)), to(rgba(59, 53, 87, 1)));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.front-box {
	padding: 80px 0 0;
}
.investment-fields {
	height: 630px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.5s;
	background-color: #001145;
}
.investment-fields:before,
.investment-fields:after  {
	content: '';
	display: block;
	width: 100%;
	height: 22px;
	position: absolute;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	z-index: 5;
	display: none;
}
.investment-fields:before {
	top: 0;
	background-image: url("../images/arc-up.png");
}
.investment-fields:after {
	bottom: 0;
	background-image: url("../images/arc-down.png");
}
.investment-fields ul {
	display: flex;
	height: 100%;
}
.investment-fields li {
	flex: 1;
	color: #fff;
	border-right: 2px solid rgba(255,255,255,0.3);
	position: relative;
	height: 100%;
}
.investment-fields li:after {
	width: 100%;
	height: 100%;
	position: absolute;
	content: '';
	display: block;
	opacity: 0;
	transition: all 0.5s;
	background-image: linear-gradient(-180deg, rgba(201,17,17,0.30) 0%, rgba(0,32,94,0.30) 100%);
}
.investment-fields li:hover:after {
	opacity: 0.5;
}
.investment-fields li:last-of-type {
	border-right: 0;
}
.investment-fields li dl {
	width: 240px;
	margin:  0px auto;
	position: relative;
	z-index: 3;
}
.investment-fields li dt {
	text-align: center;
	font-size: 30px;
	line-height: 150%;
	margin-bottom: 30px;
}
.investment-fields li dd {
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 0.5s;
}
.investment-fields li:hover dd {
	height: 240px;
	opacity: 1;
}
.investment-fields li dd p {
	opacity: 0.8;
	text-align: justify;
	margin-bottom: 50px;
}
.investment-fields li dd a.more {
	display: block;
	width: 180px;
	height: 65px;
	margin: 0px auto;
	border: 1px solid #fff;
	font-size: 20px;
	color: #FFFFFF;
	line-height: 63px;
	text-align: center;
	/*background: url("../images/more-white.svg") no-repeat center;*/
}
.shengtai-container{
	margin-top: -90px;
	margin-bottom: 80px;
}
.shengtai-container .swiper-wrapper {
	background: url("../images/bg-shengtai.jpg") no-repeat center bottom;
	background-size: 100% 526px;
}
.shengtai-container .swiper-slide {
	height: 693px;
}
.st-logos {
	width: 594px;
	height: 500px;
	/*height: 500px;*/
	margin: 0px auto 30px;
	transform: scale(0.5);
	opacity: 0;
	transition: all 0.5s;
}
.swiper-slide-duplicate-active .st-logos,
.swiper-slide-active .st-logos {
	transform: scale(1);
	opacity: 1;
}
.st-logos img {
	width: 100%;
}
.st-main {
	width: 56%;
	margin: 0px auto;
	opacity: 0.7;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	line-height: 150%;
}
.shengtai-prev,
.shengtai-next {
	width: 152px;
	height: 152px;
	transition: all 0.5s;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: 20px;
	z-index: 6;
	cursor: pointer;
}
.shengtai-prev {
	left: -56px;
}
.shengtai-next {
	right: -56px;
}
/*投资团队*/
.nav-second {
	padding-top: 80px;
	padding-bottom: 80px;
}
.nav-second li {
	float: left;
	margin-right: 60px;
}
.nav-second li:last-of-type {
	margin-right: 0;
}
.nav-second li.active a {
	color:#C8362F;
}
.nav-second a {
	font-size: 24px;
	line-height: 46px;
}

.member-list {
	position: relative;
	padding: 0;
	text-align: left;
	color: #000;
}
.member1:before {
	content: '';
	display: block;
	height: 320px;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #EBEBEB;
}
.border-b {
	position: relative;
}
.border-b:after {
	content: '';
	display: block;
	width: 1280px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: -40px;
	background: #d8d8d8;
}
.border-b:last-of-type:after {
	display: none;
}
.member-list h3 {
	font-size: 60px;
	margin-bottom: 80px;
}

.member-list li {
	float: left;
	margin-bottom: 40px;
}
.member-list .col2 li {
	width: calc((100% - 44px)/2);
	margin-right: 44px;
	text-align: center;
}
.member-list .col2 li:nth-of-type(2n) {
	margin-right: 0;
}
.member-list .col3 li {
	width: calc((100% - 76px)/3);
	margin-right: 38px;
}
.member-list .col3 li:nth-of-type(3n) {
	margin-right: 0;
}
.member-list .col4 li {
	width: calc((100% - 60px)/4);
	margin-right: 20px;
}
.member-list .col4 li:nth-of-type(4n) {
	margin-right: 0;
}
.member-list li .member-avatar {
	height: 208px;
	padding: 30px 40px 0;
	display: block;
	overflow: hidden;
	text-align: center;
	background: #EBEBEB;
}
.member-list.member1 .member-avatar {
	padding: 68px 0 0;
	height: 320px;
	background: none;
}
.member-avatar img {
	max-width: 100%;
}
.member-list li .member-name {
	display: block;
	font-size: 24px;
	line-height: 150%;
	margin: 40px 0 10px;
	text-align: center;
}
.member-list li .member-position {
	opacity: 0.25;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	display: block;
}
.person-wrapper {
	height: 585px;
	background: #DADADA url("../images/bg-team.jpg") no-repeat right bottom;
	background-size: 100%;
}
.person-wrapper .w {
	height: 100%;
	position: relative;
}
.prev-page,
.next-page {
	display: block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	transition: all 0.5s;
}
.prev-page {
	left: -20px;
	background-image: url("../images/prev.svg");
}
.next-page {
	right: -20px;
	background-image: url("../images/next.svg");
}
.prev-page:hover {
	background-image: url("../images/prev-h.svg");
}
.next-page:hover {
	background-image: url("../images/next-h.svg");
}
.p-pic {
	width: 44%;
	height: 100%;
	left: 0;
	position: absolute;
	bottom: 0;
}
.p-pic img {
	width: 82%;
	height: auto!important;
	position: absolute;
	bottom: 0;
	left: 5%;
}
.p-info {
	width: 56%;
	float: right;
	height: 100%;
	padding-right: 6%;
}
.p-info .member-name {
	font-size: 40px;
	margin-bottom: 10px;
	font-weight: normal;
}
.p-info .member-position {
	font-size: 16px;
	margin-bottom: 20px;
}
.p-info .investment-region {
	font-size: 24px;
	color: #1E2B59;
	margin-bottom: 20px;
}
.p-info .info-main {
	font-size: 16px;
	color: #000000;
	line-height: 150%;
}
.person-related {
	padding: 60px 0;
}
.person-related-nav {
	text-align: center;
	margin-bottom: 30px;
}
.person-related-nav ul {
	overflow: hidden;
}
.person-related-nav li {
	display: inline-block;
	font-size: 24px;
	padding: 0 40px;
}
.person-related-nav li a {
	color: #000;
}
.person-related-nav li.active a,
.person-related-nav li a:hover {
	color: #C8362F
}
.related-portfolio-list ul.portfolio-list {
	overflow: hidden;
	border-bottom: none;
}
.related-portfolio-list ul.portfolio-list li {
	width: calc((100% - 100px)/5);
	margin: 0 25px 20px 0;
	height: 166px;
	display: block;
	padding: 0;
	float: left;
}
.related-portfolio-list ul.portfolio-list li:nth-of-type(5n) {
	margin-right: 0;
}
.related-portfolio-list ul.portfolio-list li img {
	width: 100%;
	height: auto!important;
}
.pager-load-more {
	text-align: center;
	width: 100%;
	height: 80px;
	background: #f7f7f7;
	margin: 60px 0;
}
.pager-load-more a {
	/*padding-left: 38px;*/
	font-size: 16px;
	line-height: 80px;
	/*background: url("../images/page-more.svg") no-repeat left center;*/
	display: inline-block;
}
.quicktabs-tabpage {
	display: none;
}
.quicktabs-tabpage.active {
	display: block;
}
	/*投资组合*/
.portfolio-nav {
	/*text-align: center;*/
}
.portfolio-nav ul {
	display: inline-block;
}
.portfolios {
	/*padding-top: 15px;*/
}
.portfolio-lists {
	/*display: none;*/
}
.portfolio-lists.active {
	display: block;
}
.portfolio-list {
	width: calc((100% - 100px)/5);
	margin-right: 25px;
	font-size: 24px;
	float: left;
	text-align: center;
	position: relative;
	transition: all 0.5s;
	z-index: 2;
}
.portfolio-list:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(151,151,151,0.23);
	overflow: hidden;
	z-index: 2;
}

.portfolio-list:nth-of-type(5n) {
	margin-right: 0;
}
.portfolio-brand {
	padding: 20px;
	height: 176px;
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.portfolio-arrow {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid  #C8362F;
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -10px;
	z-index: 5;
	transform: translate3d(0,-10px,0);
	opacity: 0;
}
.portfolio-arrow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid  #fff;
	bottom: -13px;
	position: absolute;
	left: 50%;
	margin-left: -10px;
}
.portfolio-list:hover {
	z-index: 6;
	background: rgba(255,255,255,0.92);
	box-shadow: 0 2px 50px 0 rgba(0,0,0,0.08);
}
.portfolio-list:hover .portfolio-arrow {
	animation: slideUp 0.5s both ease;
}

.portfolio-box {
	position: absolute;
	overflow: hidden;
	top: 185px;
	left: 0;
	padding: 40px;
	width: calc(300% + 50px);
	background: #fff;
	text-align: left;
	border-top: 2px solid #C32830;
	transition: all 0.5s;
	opacity: 0;
	transform: translate3d(0,-10px,0);
	background: rgba(255,255,255,0.95);
	box-shadow: 0 2px 25px 0 rgba(0,0,0,0.08);
	display: none;
}
.portfolio-list:nth-of-type(5n) .portfolio-box {
	left: inherit;
	right: 0;
}
.portfolio-list:nth-of-type(5n+2) .portfolio-box,
.portfolio-list:nth-of-type(5n+3) .portfolio-box,
.portfolio-list:nth-of-type(5n+4) .portfolio-box {
	left: 50%;
	transform: translate3d(-50%,-10px,0);
}
.portfolio-list:hover .portfolio-box {
	z-index: 4;
	display: block;
	animation: slideUp 0.5s both ease;
}
@keyframes slideUp {
	to {
		opacity: 1;
		transform: translate3d(0,0,0);
	}
}
@keyframes slideUp2 {
	to {
		opacity: 1;
		transform: translate3d(-50%,0,0);
	}
}
.portfolio-list:nth-of-type(5n+2):hover .portfolio-box,
.portfolio-list:nth-of-type(5n+3):hover .portfolio-box,
.portfolio-list:nth-of-type(5n+4):hover .portfolio-box {

	animation: slideUp2 0.5s both ease;
}
.portfolio-list:hover:before {
	display: none;
}
.portfolio-introduction {
	/*display: none;*/
	height: 100%;
	text-align: left;
}
.portfolio-box h3 {
	font-weight: normal;
	overflow: hidden;
	margin-bottom: 10px;
}
.portfolio-box span.portfolio-name {
	font-size: 24px;
	line-height: 150%;
	float: left;
	margin-right: 12px;
}
.portfolio-box span.p-type {
	height: 24px;
	padding: 0 8px;
	border: 1px solid #C8362F;
	font-size: 14px;
	display: inline-block;
	color: #C8362F;
	line-height: 22px;
	float: left;
	margin-top: 6px;
}
.portfolio-box p {
	font-size: 20px;
	color: #797979;
	line-height: 150%;
	margin-bottom: 20px;
}
.portfolio-box a.outlink {
	display: block;
	/*width: 100%;*/
	font-size: 16px;
	color: #C8362F;
	/*background: url("../images/redArrow.svg") no-repeat right center;*/
}

.portfolio-logo {
	text-align: center;
	height: 100px;
	overflow: hidden;
	display: block;
}
.portfolio-logo img {
	width: auto;
	height: 100%;
}


.portfolio-list .portfolio-public,
.portfolio-list .portfolio-fund{
	font-size: 24px;
	line-height: 60px;
}
/*a.outlink {
	width: 28px;
	height: 28px;
	display: inline-block;
	background: url("../images/outlink.svg") no-repeat;
	background-size: 100%;
}
a.outlink:hover {
	background: url("../images/outlink-h.svg") no-repeat;
	background-size: 100%;
}*/
.location-list-wrapper {
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	background-color: #fff;
	overflow: hidden;
	transition: all 0.5s;
	min-height: 500px;
	max-height: 694px;
	width: 100%;
}
.location-list-wrapper .w {
	height: 100%;
}
.location-list {
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.location-list dl {
	width: 100%;
	cursor: pointer;
}
.location-list dt {
	font-size: 30px;
	margin-bottom: 18px;
	opacity: 0.2;
	color: #151A34;
}
.location-list dl.active dt {
	opacity: 1;
}
.location-list dd {
	font-size: 16px;
	line-height: 150%;
	color: #151A34;
	margin-bottom: 18px;
	display: none;
}
.location-list dl.active dd {
	display: block;
}
.location-list dd ul {
	overflow: hidden;
	display: flex;
}
.location-list dd li {
	flex: 1;
	padding-right: 50px;
}
.paging-wrapper {
	padding: 60px 0;
	text-align: center;
}
.paging-wrapper ul {
	overflow: hidden;
}
.paging-wrapper li {
	display: inline-block;
	padding: 0 10px;
	color: #C8362F;
	font-family: 'Conv_Bebas-Regular';
}
.paging-wrapper li a {
	color: #000;
}
/* 新闻 */

.news-list .news-date {
	font-size: 40px;
	line-height: 48px;
	margin: 0 0 10px;
	font-family: DINAlternate-Bold, 'Conv_Bebas-Regular';
}
.news-list ul {
	margin-bottom: 40px;
}
.news-list ul:last-of-type {
	margin-bottom: 0;
}
.news-list li {
	width: calc((100% - 60px)/3);
	margin-right: 30px;
	float: left;
	padding: 20px 0 25px;
	border-bottom: 1px solid rgba(151,151,151,0.23);
}
.news-list li:nth-of-type(3n) {
	margin-right: 0;
}

.news-list .news-type {
	display: block;
	color: #797979;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 10px;
}
.news-list h4 {
	font-size: 24px;
	line-height: 150%;
	height: 108px;
	font-weight: normal;
}
.news-detail {
	padding: 80px 0 85px;
}
.news-detail-main {
	width: calc(100% - 378px);
	float: left;
}
.news-related {
	width: 308px;
	float: right;
	margin-bottom: 25px;
}
.news-type {
	opacity: 0.5;
	font-size: 16px;
	color: #000000;
	margin-bottom: 25px;
}
.news-detail .back {
	margin-bottom: 25px;
}

.back a {
	display: block;
	width: 40px;
	height: 40px;
	background: url("../images/back.svg") no-repeat center;
	background-size: 100%;
}
.news-detail-main h2 {
	font-size: 40px;
	font-weight: normal;
	margin-bottom: 25px;
}
.news-source {
	font-size: 16px;
	color: #797979;
	line-height: 150%;
}
.news-main {
	padding-top: 40px;
}
.news-main img {
	max-width: 100%;
	margin: 0px auto;
}
.news-main p {
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 1.2em;
}
.news-filter {
	border: 1px solid rgba(151,151,151,0.5);
	border-radius: 23px;
	width: 226px;
	height: 46px;
}
.news-filter input.form-text {
	border: none;
	background: none;
	height: 100%;
	width: 180px;
	border-radius: 50% 0 0 50%;
	padding-left: 20px;
	float: left;
}
.news-filter button {
	width: 44px;
	height: 44px;
	float: right;
	border: none;
	background: url("../images/search.svg") no-repeat center center;
}
.news-related h2 {
	margin-bottom: 20px;
	font-weight: normal;
	opacity: 0.5;
	font-size: 16px;
	color: #000000;
}
.news-related-item li {
	border: 1px solid rgba(151,151,151,0.23);
	padding: 20px;
	margin-bottom: 30px;
}
.news-related-item li span {
	display: block;
	margin-bottom: 10px;
}
.news-related-item li span.news-date {
	font-size: 16px;
	color: #767676;
	margin-bottom: 0;
}
.news-related-item li span.news-date strong {
	font-size: 30px;
	color: #000;
	margin-right: 5px;
}

.team-buliding {
	padding-top: 70px;
	margin-bottom: 90px;
}
.team-buliding img {
	width: 100%;
}
.team-building-pager {
	width: 410px;
	height: 75px;
	position: absolute;
	top: 40%;
	left: 50%;
	margin: -37.5px 0 0 -205px;
	z-index: 10;
	text-align: center;
}
.team-building-pager p {
	width: 100%;
	text-align: center;
	font-size: 50px;
	color: #fff;
}
.team-building-pager p span {
	margin-right: 20px;
}
.team-building-pager p span:last-of-type {
	margin-right: 0;
}
.ppn {
	display: block;
	position: absolute;
	width: 180px;
	bottom: 200px;
	left: 50%;
	margin-left: -90px;
	z-index: 10;
}
.ppn .swiper-button-white {
	width: 40px;
	height: 40px;
	-webkit-background-size: 100%;
	background-size: 100%;
	display: inline-block;
	margin: 0;
	position: static;
	transition: all 0.5s;
	float: left;
}
.ppn .swiper-button-prev {
	background-image: url("../images/bprev.svg");
}
.ppn .swiper-button-next {
	background-image: url("../images/bnext.svg");
}
.ppn .swiper-button-prev:hover {
	background-image: url("../images/bprev-hover.svg");
}
.ppn .swiper-button-next:hover {
	background-image: url("../images/bnext-hover.svg");
}
.ppn .swiper-pagination {
	display: inline-block;
	font-size: 28px;
	line-height: 40px;
	color: #FFFFFF;
	position: static;
	float: left;
	width: 100px;
	text-align: center;
}


.investment {
	background: url("../images/investment-1.jpg") no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	height: 580px;
}
.investment ul {
	height: 100%;
}
.investment li {
	position: relative;
	flex: 1;
	height: 100%;
	border-right: 2px solid rgba(255,255,255,.3);
}
.investment li:last-of-type {
	border-right: none;
}
.investment li span {
	position: absolute;
	bottom: 66px;
	left: 10%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	height: 80px;
	font-size: 24px;
	color: #fff;
	text-align: center;
	line-height: 150%;
	transition: .5s all;
	z-index: 2;
}
.investment li:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #C8362F;
	transition: all 0.5s;
}
.investment li:hover:after {
	opacity: 0.2;
}
.investment li:hover span {
	bottom: 50%;
	margin-bottom: -40px;
}

.honor {
	height: 566px;
	background: #f7f7f7 url("../images/bg-honor.jpg") no-repeat right center;
	background-size: auto 100%;
	position: relative;
	padding: 60px 0;
	margin-bottom: 60px;
}
.honor .w {
	z-index: 3;
	height: 100%;
}
.honor-tab {
	width: 25%;
	float: left;
	height: 100%;
}
.honor-tab li {
	margin-bottom: 30px;
	overflow: hidden;
}
.honor-tab li a {
	font-size: 24px;
	color: #000;
	transition: all 0.5s;
	cursor: pointer;
	padding-bottom: 10px;
	border-bottom: 2px solid transparent;
	display: block;
	float: left;
}
.honor-tab li:last-of-type {
	margin-bottom: 0;
}
.honor-tab a {

}
.honor-tab li a:hover,
.honor-tab li.active a {
	color: #C8362F;
}
.honor-tab li.active a {
	border-bottom: 2px solid #C8362F;
}
.honor-lists {
	width: 75%;
	float: right;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
}
.honor-lists dt {
	font-size: 60px;
	line-height: 120%;
	margin-bottom: 30px;
}
.honor-list {
	margin-bottom: 40px;
}
.honor-list .honor-from {
	color: #7b7b7b;
	font-size: 16px;
	position: relative;
	margin-bottom: 20px;
	padding-left: 10px;
}
.honor-list .honor-from:before {
	background: #C8362F;
	border-radius: 2px;
	width: 3px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: 50%;
	margin-top: -8px;
}
.honor-list .honor-name {
	font-size: 20px;
	line-height: 150%;
	color: #000;
}
.honor-list .honor-name p {
	margin-bottom: 15px;
}
.honor-list .honor-name p:last-of-type {
	margin-bottom: 0;
}
.honor-name span.c-name {
	display: block;
	width: 7em;
	float: left;
}


.scroll-pane {
	width: 100%;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	display: none;
}
.scroll-pane.active {
	display: block;
}
.jspVerticalBar {
	background: none;
}
.jspTrack {
	width: 2px;
	background: rgba(59,53,87,0.3);
}
.jspDrag {
	width: 6px;
	margin-left: -2px;
	border-radius: 12px;
}
.jspVerticalBar {
	transform-origin: center center;
	transform: scaleY(0.3);
}
.item-list {
	text-align: center;
}
.related-portfolio-list a.more {
	padding-left: 38px;
	font-size: 16px;
	line-height: 28px;
	background: url("../images/page-more.svg") no-repeat left center;
	display: inline-block;
	margin: 40px 0;
}
.related-portfolio-list.active a.more {
	background: url("../images/page-more-active.svg") no-repeat left center;
}
.related-portfolio-list.active .portfolio-list-text {
	display: block;
}
.portfolio-list-text {
	display: none;
	overflow: hidden;
}
.portfolio-list-text li {
	float: left;
	width: calc((100% - 100px)/5);
	height: 84px;
	font-size: 24px;
	color: #000;
	text-align: center;
	margin: 0 25px 0 0;
}
.portfolio-list-text li:nth-of-type(5n) {
	margin-right: 0;
}
.pop-nav {
	width: 450px;
	height: 100%;
	position: fixed;
	z-index: 100;
	background: rgba(255,255,255,0);
	top: 0;
	right: -31.25%;
	display: flex;
	/*justify-content: center;*/
	align-items: center;
	/*transform: scale(0.5);*/
	transition: all 0.4s;
	padding-right: 130px;
}
.pop-nav.show {
	z-index: 100;
	right: 0;
	/*transform: scale(1);*/
	background: rgba(255,255,255,0.85);
}
.pop-nav ul {
	/*transition: all 0.5s;*/
	width: 100%;
}
.pop-nav li {
	margin-bottom: 40px;
	text-align: right;
	width: 100%;
}
.pop-nav li a  {
	font-size: 40px;
	color: #151A34;
	letter-spacing: 3.44px;
	line-height: 150%;
	/*transition: all 0.5s;*/
}
.pop-nav li a:hover {
	color: #D7261D;
}
.pop-close {
	display: block;
	width: 58px;
	height: 58px;
	position: absolute;
	top: 70px;
	right: 130px;
	background: url("../images/pop-close.svg") no-repeat;
	/*transition: all 0.5s;*/
}
/*.pop-nav.show ul {
	z-index: 2;
	opacity: 1;
}
.pop-nav.show .pop-close {
	z-index: 2;
	opacity: 1;
}*/
.no-val {
	padding: 100px 0;
	font-size: 20px;
	color: #787878;
	text-align: center;
}
.member-honors {
	overflow: hidden;
	padding-top: 20px;
}
.member-honors dl {
	float: left;
	width: calc((100% - 100px)/3);
	margin-right: 50px;
	margin-bottom: 50px;
	border-left: 2px solid rgba(151,151,151,0.23);
	padding-left: 18px;
}
.member-honors dl:nth-of-type(3n) {
	margin-right: 0;
}
.member-honors dt{
	opacity: 0.5;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 10px;
}
.member-honors dt span.font-din {
	margin-right: 10px;
}
.member-honors dd {
	font-size: 20px;
	color: #000;
	line-height: 150%;
	margin-bottom: 5px;
}
.member-honors dd:last-of-type {
	margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 1023px){
	.w {
		width: 100%;
		padding: 0 10px;
	}
	.header {
		height: 60px;
	}
	body {
		padding-top: 60px;
	}
	.front .header {
		transform: translate3d(0,0,0);
	}
	.logo {
		padding: 12px 0;
		margin-right: 0;
	}
	.nav-btn {
		width: 60px;
		height: 60px;
		display: block;
		margin-right: -10px;
		margin-left: 10px;
	}
	.nav {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: #fff;
		display: none;
	}
	.lang-box {
		padding-top: 18px;
	}
	#toolbar {
		display: none;
	}
	.banner-content h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}
	.btns-wrapper a.btn,
	.more-link span {
		font-size: 18px;
		line-height: 32px;
		background-size: 24px;
	}
	.news-lastest {
		margin-bottom: 20px;
	}
	.news-lastest-pic {
		width: 120px;
		height: 73px;
	}
	.news-lastest-info {
		width: calc(100% - 130px);
	}
	.news-lastest-info h2 {
		font-size: 24px;
		line-height: 150%;
		margin-top: 10px;
		margin-bottom: 0;
	}
	.news-lastest-info span.source-time {
		font-size: 16px;
	}
	.case-box {
		width: 100%;
		min-width: inherit;
		min-height: inherit;
		height: 460px;
		padding-bottom: 60px;
		background-size: auto 400px;
		background-position: top right;
	}
	.box h2 {
		font-size: 36px;
		margin-bottom: 40px;
	}
	.case-nav li {
		margin-bottom: 10px;
	}
	.case-nav li a {
		font-size: 18px;
	}
	.front-case-wrapper {
		width: 28%;
		padding-bottom: 28%;
		height: 0;
		top: 39%;
		right: 11%;
	}
	.front-case-wrapper .swiper-container {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.front-case-wrapper .swiper-slide {
		height: 100%;
	}
	.case-logo {
		height: 52px;
		margin-bottom: 15px;
	}
	.case-title {
		font-size: 16px;
	}
	.case-pagination.swiper-pagination-custom {
		bottom: 30px;
	}
	.swiper-button-next.case-next {
		right: 20px;
		top: 135px;
	}
	.swiper-button-prev.case-prev {
		left: 20px;
		top: 135px;
	}
	.box-team {
		padding: 50px 0;
	}
	.box-team-pic {
		width: 50%;
		height: 0%;
		padding-bottom: 50%;
		position: relative;
	}
	.box-team-pic ul {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.box-team-pic span {
		font-size: 40px;
	}
	.box-team .title-region {
		width: 50%;
		padding-left: 5%;
		padding-top: 10%;
	}
	.bg-video video {
		width: 100%;
	}
	.front-last .w {
		height: 660px;
	}
}
@media screen and (max-width: 767px) {
	.banner-content h2 {
		font-size: 24px;
		margin-bottom: 5px;
	}
	.btns-wrapper a.btn,
	.more-link span {
		font-size: 14px;
		line-height: 32px;
		background-size: 16px;
	}
	.more-link span {
		padding-right: 21px;
	}
	.news-lastest {
		margin-bottom: 20px;
		padding: 15px 0;
	}
	.news-lastest .more-link {
		margin-top: 10px;
		clear: both;
		display: block;
		position: static;
	}
	.news-lastest-list {
		width: 100%;
		float: none;
		overflow: hidden;
	}
	.news-lastest-pic {
		width: 80px;
		height: 52px;
	}
	.news-lastest-info {
		width: calc(100% - 90px);
	}
	.news-lastest-info h2 {
		font-size: 14px;
		line-height: 150%;
		margin-top: 5px;
		margin-bottom: 0;
	}
	.news-lastest-info span.source-time {
		font-size: 12px;
	}
	.title-region {
		padding-top: 15px;
		/*width: 50%;*/
	}
	.case-box {
		background-size: auto 200px;
	}
	.box h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.case-nav li {
		margin-bottom: 10px;
	}
	.case-nav li a {
		font-size: 14px;
	}
	.front-case-wrapper {
		width: 26%;
		padding-bottom: 26%;
		height: 0;
		top: 30%;
		right: 10%;
	}

	.case-logo {
		height: 36px;
		margin-bottom: 5px;
	}
	.case-title {
		font-size: 14px;
	}
	.case-pagination.swiper-pagination-custom {
		bottom: 0;
	}
	.swiper-button-next.case-next {
		right: 0px;
	}
	.swiper-button-prev.case-prev {
		left: 0px;
	}
	.swiper-button-next, .swiper-button-prev {
		top: 60px;
		background-size: auto 10px;
	}
	.box-team {
		padding: 40px 0;
	}
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {

}
