/* 字体-公用的-start */
	@font-face {
		font-family: "SourceHanSansCNLight";
		src: url('fonts/SourceHanSansCN-ExtraLight.otf') format('opentype');
	}
	
	@font-face {
		font-family: "SourceHanSansCNMedium";
		src: url('fonts/SourceHanSansCN-Medium.otf') format('opentype');
	}
	
	@font-face {
		font-family: "SourceHanSansCNRegular";
		src: url('fonts/SourceHanSansCN-Regular.otf') format('opentype');
	}
	
	@font-face {
		font-family: "SryaheiheiheiCNRegular";
		src: url('fonts/SryaheiheiheiCN-Regular.ttf') format('opentype');
	}
	
/* 字体-公用的-end */

/* css-公用的-start */
	*{
		margin: 0;
		padding: 0;
		font-family:'Adobe 黑体 Std';
	}
	
	li {
		list-style: none;
	}
	
	a{
		text-decoration:none
	}
	
	img{
		transition: all 0.6s;   
		vertical-align: bottom;
	}
	
	.wrapper{
		overflow: hidden;
	}
	
	.w {
		width: 73.569%;
		margin: 0 auto;
	}
	
	.english{
		font-family: 'SourceHanSansCNRegular';
	}
	
	.chinese{
		font-family: 'SourceHanSansCNMedium';
	}

	.aligncenter {
		height:	auto;
		display: block;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
/* css-公用的-end */

/* 头部 */
	.header-wrapper{
		width: 100%;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 999;
	}
	
	.header-wrapper .header{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.header-wrapper .header .logo{
		width: 20%;
	}
	
	.header-wrapper .header .logo img{
		width: 100%;
		height: 100%;
	}
	
	.header-wrapper .header .menu-wrapper{
		height: 100%;
		width: 64.286%;
	}
	
	.header-wrapper .header .menu-mobile-wrapper{
		display: none;
	}
	
	.header-wrapper .header .menu-wrapper .menu{
		width: 100%;
		display: grid;
		grid-template-columns: repeat(7, 1fr);
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item{
		width: 100%;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		width: 100%;
		display: block;
		font-size: 16px;
		line-height: 90px;
		text-align: center;
		color: rgba(255, 255, 255, 1);
	}
	
	/* 头部背景 */
	.header-wrapper.header-scroll-item{
		background-color: rgba(0, 0, 0, 0.5);
	}
	
	/* 当前菜单选中项 */
	.header-wrapper .header .menu-wrapper .menu .menu-item.current-menu-item a{
		color: rgba(0, 97, 176, 1)
	}
	
/* 首页 */
	/* 幻灯片 */
		.index-banner{
			width: 100%;
			height: 100vh;
			position: relative;
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.index-banner .mobile-display{
			display: none;
		}
		
		.index-banner .next-page-wrapper{
			width: 100%;
			position: absolute;
			bottom: 2.135%;
		}
		
		.index-banner .next-page-wrapper .next-page{
			width: 2.628%;
			margin: 0 auto;
			cursor: pointer;
		}
		
		.index-banner .next-page-wrapper .next-page img{
			width: 100%;
			height: 100%;
		}
		
	/* 首页-关于我们 */
		.index-about-us{
			width: 100%;
			display: flex;
			padding: 4.204% 0%;
			align-items: center;
			justify-content: flex-end;
			background-image: url('images/background-1.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.index-about-us .content-wrapper{
			display: flex;
			width: 87.231%;
			align-items: stretch;
			justify-content: space-between;
		}
		
		.index-about-us .content-wrapper .content{
			display: grid;
			width: 38.856%;
			padding-top: 1.808%;
			align-content: space-between;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.index-about-us .content-wrapper .content .text .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.index-about-us .content-wrapper .content .text .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 1.551%;
		}
		
		.index-about-us .content-wrapper .content .text .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 6.202%;
			color: rgba(83, 83, 83, 1);
		}
		
		.index-about-us .content-wrapper .content .text .explain p:first-child{
			font-family: 'SourceHanSansCNMedium';
		}
		
		.index-about-us .content-wrapper .content .button a{
			width: 24.497%;
			display: block;
			font-size: 14px;
			line-height: 38px;
			text-align: center;
			color: rgba(0, 97, 176, 1);
			background-color: rgba(255, 255, 255, 1);
			border: 1px solid rgba(119, 157, 203, 1);
		}
		
		.index-about-us .content-wrapper .images{
			width: 56.928%;
		}
		
		.index-about-us .content-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
	/* 首页-项目来源 */
		.index-project{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-2.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.index-project .head-wrapper{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		
		.index-project .head-wrapper .title{
			width: 50%;
		}
		
		.index-project .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.index-project .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 1.429%;
			color: rgba(255, 255, 255, 1);
		}
		
		.index-project .head-wrapper .button{
			display: none;
			width: 11.429%;	
		}
		
		.index-project .head-wrapper .button a{
			display: block;
			font-size: 14px;
			line-height: 38px;
			text-align: center;
			color: rgba(0, 97, 176, 1);
			background-color: rgba(255, 255, 255, 1);
			border: 1px solid rgba(119, 157, 203, 1);
		}
		
		.index-project .content-wrapper{
			width: 100%;
			display: grid;
			margin-top: 2.858%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.index-project .content-wrapper .item{
			width: 100%;
			padding: 8.572% 0%;
			border: 1px solid rgba(255, 255, 255, 0.5);
		}
		
		.index-project .content-wrapper .item .content{
			width: 60%;
			margin: 0% auto;
		}
		
		.index-project .content-wrapper .item .content .upper{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		
		.index-project .content-wrapper .item .content .upper .images{
			width: 15.477%;
		}
		
		.index-project .content-wrapper .item .content .upper .images img{
			width: 100%;
			height: 100%;
		}
		
		.index-project .content-wrapper .item .content .upper .title{
			width: 80%;
		}
		
		.index-project .content-wrapper .item .content .upper .title .chinese{
			line-height: 1;
			font-size: 23px;
			color: rgba(255, 255, 255, 1);
		}
		
		.index-project .content-wrapper .item .content .upper .title .english{
			line-height: 1;
			font-size: 14px;
			margin-top: 3.175%;
			color: rgba(255, 255, 255, 1);
		}
		
		.index-project .content-wrapper .item .content .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 3.572%;
			color: rgba(255, 255, 255, 1);
		}
		
		/* 首页-项目来源-内容-线 */
		.index-project .content-wrapper .item:nth-child(1),
		.index-project .content-wrapper .item:nth-child(2){
			border-top-width: 0px;
		}
		
		.index-project .content-wrapper .item.remove-left-line{
			border-left-width: 0px;
		}
		
		.index-project .content-wrapper .item.remove-right-line{
			border-right-width: 0px;
		}
		
		.index-project .content-wrapper .item:nth-last-child(1),
		.index-project .content-wrapper .item:nth-last-child(2){
			border-bottom-width: 0px;
		}
		
	/* 首页-投资方向 */
		.index-invest{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-1.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.index-invest .head-wrapper .title{
			width: 100%;
			text-align: center;
		}
		
		.index-invest .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.index-invest .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.index-invest .content-wrapper{
			width: 100%;
			display: grid;
			padding: 8% 0%;
			grid-gap: 45px;
			margin-top: 2.858%;
			justify-content: space-between;
			grid-template-columns: repeat(2, 33%); 
			background-image: url('images/background-3.png');
			background-size: 35.715%;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.index-invest .content-wrapper .item{
			width: 100%;
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
		}
		
		.index-invest .content-wrapper .item .images{
			width: 15.152%;
		}
		
		.index-invest .content-wrapper .item .images img{
			width: 100%;
			height: 100%;
		}
		
		.index-invest .content-wrapper .item .content{
			width: 80.087%;
			color: rgba(16, 16, 16, 1);
		}
		
		.index-invest .content-wrapper .item .content .title{
			line-height: 1;
			font-size:23px;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.index-invest .content-wrapper .item .content .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 2.703%;
		}
		
	/* 首页-风控管理 */
		.index-risk-control{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-4.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.index-risk-control .head-wrapper .title{
			width: 100%;
			text-align: center;
		}
		
		.index-risk-control .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.index-risk-control .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(255, 255, 255, 1);
		}
		
		.index-risk-control .head-wrapper .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 1.072%;
			text-align: center;
			color: rgba(255, 255, 255, 1);
		}
		
		.index-risk-control .content-wrapper{
			width: 100%;
			position: relative;
			margin-top: 2.858%;
		}
		
		.index-risk-control .content-wrapper .images{
			width: 20.215%;
			margin: 0 auto;
		}
		
		.index-risk-control .content-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
		.index-risk-control .content-wrapper .item{
			width: 25%;
		}
		
		.index-risk-control .content-wrapper .item .title{
			width: 100%;
			display: flex;
			line-height: 1;
			align-items: center;
		}
		
		.index-risk-control .content-wrapper .item .title p.text{
			font-size: 20px;
			font-family: '微软雅黑';
			color: rgba(255, 255, 255, 1);
		}
		
		.index-risk-control .content-wrapper .item .title p.number{
			font-size: 40px;
			font-weight: bold;
			font-family: '微软雅黑';
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.index-risk-control .content-wrapper .item .title p.mobile-display{
			display: none;
		}
		
		.index-risk-control .content-wrapper .item .title p.computer-display{
			display: block;
		}
		
		.index-risk-control .content-wrapper .item .explain{
			width: 100%;
			font-size: 16px;
			line-height: 26px;
			color: rgba(255, 255, 255, 1);
		}
		
		.index-risk-control .content-wrapper .left-wrapper .title{
			justify-content: flex-end;
		}
		
		.index-risk-control .content-wrapper .left-wrapper .title p.text{
			margin-right: 3.664%;
		}
		
		.index-risk-control .content-wrapper .left-wrapper .explain{
			text-align: right;
		}
		
		.index-risk-control .content-wrapper .right-wrapper .title{
			justify-content: flex-start;
		}
		
		.index-risk-control .content-wrapper .right-wrapper .title p.text{
			margin-left: 3.664%;
		}
		
		.index-risk-control .content-wrapper .right-wrapper .explain{
			text-align: left;
		}
		
		.index-risk-control .content-wrapper .first-item{
			position: absolute;
			top: 10.021%;
			left: 14%;
		}
		
		.index-risk-control .content-wrapper  .second-item{
			position: absolute;
			top: 35.074%;
			right: 14%;
		}
		
		.index-risk-control .content-wrapper .third-item{
			position: absolute;
			top: 60.543%;
			left: 14%;
		}
		
		.index-risk-control .content-wrapper  .fourth-item{
			position: absolute;
			top: 78.497%;
			right: 14%;
		}
		
	/* 首页-新闻中心 */
		.index-news{
			width: 100%;
			display: flex;
			padding: 4.204% 0%;
			justify-content: flex-end;
			background-image: url('images/background-5.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.index-news .content-wrapper{
			display: flex;
			width: 87.231%;
			align-items: stretch;
			justify-content: space-between;
		}
		
		.index-news .text-wrapper{
			display: grid;
			width: 18.073%;
			padding: 0.736% 0%;
			align-content: space-between;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.index-news .text-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.index-news .text-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 3.334%;
			color: rgba(22, 22, 22, 1);
		}
		
		.index-news .text-wrapper .button a{
			width: 52.667%;
			display: block;
			font-size: 14px;
			line-height: 38px;
			text-align: center;
			color: rgba(0, 97, 176, 1);
			background-color: rgba(255, 255, 255, 1);
			border: 1px solid rgba(119, 157, 203, 1);
		}
		
		.index-news .index-news-banner-wrapper{
			display: flex;
			width: 81.928%;
			align-items: flex-end;
			justify-content: space-between;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner{
			width: 84.559%;
			padding: 0.736%;
			padding-right: 0%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide{
			width: 37.827%;
			box-shadow:
			5px 5px 5px rgba(247, 247, 247, 1),
			5px -5px 5px rgba(247, 247, 247, 1),
			-5px 5px 5px rgba(247, 247, 247, 1),
			-5px -5px 5px rgba(247, 247, 247, 1);
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .images{
			width: 100%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .images img{
			width: 100%;
			height: 100%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content{
			width: 80%;
			margin-top: 8.036%;
			margin: 8.036% auto 10.715%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .title{
			line-height: 1;
			font-size: 18px;
			overflow: hidden;
			font-weight: bold;
			white-space: nowrap;
			text-overflow: ellipsis;
			color: rgba(0, 97, 176, 1);
			font-family: 'SourceHanSansCNMedium';
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .date{
			line-height: 1;
			font-size: 14px;
			margin-top: 3.449%;
			color: rgba(16, 16, 16, 1);
			font-family: 'SourceHanSansCNRegular';
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .explain{
			font-size: 16px;
			overflow: hidden;
			line-height: 26px;
			margin-top: 3.449%;
			display: -webkit-box;
			-webkit-line-clamp: 3;
			text-overflow: ellipsis;
			-webkit-box-orient: vertical;
			color: rgba(119, 120, 129, 1);
		}
		
		/* 切换按钮-处理 */
		.index-news .index-news-banner-wrapper .swiper-button{
			width: 14.706%;
			display: flex;
			line-height: 1;
			padding: 0.736% 0%;
			align-items: center;
		}
		
		.index-news .index-news-banner-wrapper .swiper-button-prev,
		.index-news .index-news-banner-wrapper .swiper-button-next{
			width: 20%;
			height: 20%;
			position: static;
			margin-top: auto;
		}
		
		.index-news .index-news-banner-wrapper .swiper-button-prev{
			margin-right: 10%;
		}
		
		.index-news .index-news-banner-wrapper .swiper-button-prev img,
		.index-news .index-news-banner-wrapper .swiper-button-next img{
			width: 100%;
			height: 100%;
		}
		
		.index-news .index-news-banner-wrapper .swiper-button-prev:after,
		.index-news .index-news-banner-wrapper .swiper-button-next:after{
			content: none
		}
		
		/* 首页-项目来源-当前悬停项 */
		.index-project .content-wrapper .item.current-hover-item{
			background-color: rgba(255, 255, 255, 0.2);
		}
		
/* 关于我们 */
	/* 幻灯片 */
		.about-us-banner{
			width: 100%;
		}
		
		.about-us-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 关于我们-内容 */
		.about-us-content-wrapper{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-1.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.about-us-content-wrapper .about-us-content .upper{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content{
			width: 46.429%;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 1.588%;
			color: rgba(22, 22, 22, 1);
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 6.154%;
			color: rgba(83, 83, 83, 1);
		}
		
		.about-us-content-wrapper .about-us-content .content .explain p:first-child{
			margin-bottom: 3.077%;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.about-us-content-wrapper .about-us-content .upper .images{
			width: 48.929%;
		}
		
		.about-us-content-wrapper .about-us-content .upper .images img{
			width: 100%;
			height: 100%;
		}
		
		.about-us-content-wrapper .about-us-content .below{
			width: 100%;
			display: grid;
			grid-gap: 30px;
			margin-top: 3.572%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title{
			width: 100%;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .english{
			line-height: 1;
			font-size: 14px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .chinese{
			line-height: 1;
			font-size: 23px;
			margin-top: 1.460%;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 2.920%;
			color: rgba(83, 83, 83, 1);
		}
		
	/* 关于我们-资质/牌照 */
		.about-us-credentials{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-6.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.about-us-credentials .content-wrapper{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		
		.about-us-credentials .content-wrapper .content{
			width: 52.500%;
		}
		
		.about-us-credentials .content-wrapper .content .title{
			width: 100%;
			border-bottom: 1px solid rgba(255, 255, 255, 0.5);
		}
		
		.about-us-credentials .content-wrapper .content .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.about-us-credentials .content-wrapper .content .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 1.361%;
			color: rgba(255, 255, 255, 1);
		}
		
		.about-us-credentials .content-wrapper .content .title .explain{
			font-size: 26px;
			padding: 5.443% 0%;
			background: linear-gradient(to bottom right, rgba(80, 184, 227, 1), rgba(4, 89, 149, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.about-us-credentials .content-wrapper .content .about-company{
			width: 100%;
			padding: 4.082% 0%;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item{
			width: 100%;
			display: flex;
			font-size: 16px;
			line-height: 26px;
			align-items: flex-start;
			justify-content: flex-start;
			color: rgba(255, 255, 255, 1);
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item .icon{
			margin-right: 1.089%;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item .icon span{
			font-size: 16px;
			background: linear-gradient(to bottom right, rgba(80, 184, 227, 1), rgba(4, 89, 149, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model{
			width: 100%;
			display: grid;
			grid-gap: 40px;
			grid-template-columns: repeat(3, 1fr);
		}
		
		.about-us-credentials .content-wrapper .content .operate-model .model-item{
			width: 100%;
			font-size: 24px;
			line-height: 50px;
			text-align: center;
			-o-transform: skew(-15deg);
			-moz-transform: skew(-15deg);
			color: rgba(255, 255, 255, 1);
			-webkit-transform: skew(-15deg);
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
		}
		
		.about-us-credentials .content-wrapper .images{
			width: 37.500%;
		}
		
		.about-us-credentials .content-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
	/* 关于我们-股东背景 */
		.about-us-shareholder{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-5.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.about-us-shareholder .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.about-us-shareholder .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.about-us-shareholder .content-wrapper{
			width: 100%;
			position: relative;
			margin-top: 2.858%;
		}
		
		.about-us-shareholder .content-wrapper .images-wrapper{
			width: 45.715%;
			margin: 0% auto;
		}
		
		.about-us-shareholder .content-wrapper .images-wrapper .images{
			width: 100%;
		}
		
		.about-us-shareholder .content-wrapper .images-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
		.about-us-shareholder .content-wrapper .item .title p{
			width: 100%;
			font-size: 18px;
			line-height: 1.2;
			overflow: hidden;
			display:-webkit-box;
			-webkit-line-clamp: 2;
			text-overflow:ellipsis;
			-webkit-box-orient:vertical;
			font-family: 'SourceHanSansCNMedium';
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.about-us-shareholder .content-wrapper .item .explain{
			overflow:hidden;
			font-size: 16px;
			line-height: 26px;
			display:-webkit-box;
			-webkit-line-clamp:4;
			text-overflow:ellipsis;
			color: rgba(38, 38, 38, 1);
			-webkit-box-orient:vertical;
		}
		
		.about-us-shareholder .content-wrapper .item.first-item{
			width: 30.715%;
			position: absolute;
			top: 24.659%;
			left: 0%;
		}
		
		.about-us-shareholder .content-wrapper .item.second-item{
			width: 27.500%;
			position: absolute;
			top: 47.555%;
			right: 0%;
		}
		
		.about-us-shareholder .content-wrapper .item.third-item{
			width: 30.715%;
			position: absolute;
			top: 72.213%;
			left: 0%;
		}
		
		.about-us-shareholder .content-wrapper .item.first-item .explain{
			margin-top: 2.564%;
		}
		
		.about-us-shareholder .content-wrapper .item.second-item .explain{
			margin-top: 2.598%;
		}
		
		.about-us-shareholder .content-wrapper .item.third-item .explain{
			width: 85%;
			margin-top: 2.381%;
		}
		
/* 团队管理 */
	/* 幻灯片 */
		.team-banner{
			width: 100%;
		}
		
		.team-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 团队管理-团队员工 */
		.team-personnel{
			width: 100%;
			display: none;
			padding: 4.204% 0%;
		}
		
		.team-personnel .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			text-align: center;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.team-personnel .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			text-align: center;
			color: rgba(16, 16, 16, 1);
		}
		
		.team-personnel .content-wrapper{
			width: 100%;
			display: grid;
			grid-gap: 30px;
			margin-top: 2.858%;
			grid-template-columns: repeat(3, 1fr);
		}
		
		.team-personnel .content-wrapper .item{
			border-radius: 10px;
			padding: 11.194% 8.956% 13.433%;
			background-color: rgba(249, 249, 249, 1);
		}
		
		.team-personnel .content-wrapper .item .images{
			width: 25.862%;
			margin: 0 auto;
		}
		
		.team-personnel .content-wrapper .item .images img{
			width: 100%;
			height: 100%;
			border-radius: 50%;
		}
		
		.team-personnel .content-wrapper .item .content{
			width: 100%;
			margin-top: 5.173%;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper{
			width: 100%;
			display: flex;
			align-items: flex-end;
			justify-content: center;
			color: rgba(16, 16, 16, 1);
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .name{
			line-height: 1;
			font-size: 23px;
			margin-right: 2.587%;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .position{
			line-height: 1;
			font-size: 16px;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.team-personnel .content-wrapper .item .content .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 7.759%;
			color: rgba(87, 87, 87, 1);
		}
		
	/* 团队管理-团队优势 */	
		.team-advantage{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-7.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.team-advantage .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			text-align: center;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.team-advantage .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			text-align: center;
			color: rgba(16, 16, 16, 1);
		}
		
		.team-advantage .content-wrapper{
			width: 100%;
			position: relative;
			margin-top: 2.858%;
		}
		
		.team-advantage .content-wrapper .images{
			width: 53.286%;
			margin: 0 auto;
		}
		
		.team-advantage .content-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
		.team-advantage .content-wrapper .item .title .chinese{
			line-height: 1;
			font-size:  20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.team-advantage .content-wrapper .item .explain{
			font-size: 16px;
			line-height: 26px;
			padding-left: 10px;
			color: rgba(22, 22, 22, 1);
		}
		
		.team-advantage .content-wrapper .item.right-wrapper{
			text-align: right;
		}
		
		.team-advantage .content-wrapper .item.right-wrapper .explain{
			padding-left: 0px;
			padding-right: 10px;
		}
		
		/* 定位 */
		.team-advantage .content-wrapper .item.first-item{
			width: 20.715%;
			position: absolute;
			top: 14.761%;
			left: 4%;
		}
		
		.team-advantage .content-wrapper .item.second-item{
			width: 20.715%;
			position: absolute;
			top: 47%;
			left: 6%;
		}
		
		.team-advantage .content-wrapper .item.third-item{
			width: 23.572%;
			position: absolute;
			top: 74.724%;
			left: 4%;
		}
		
		.team-advantage .content-wrapper .item.fourth-item{
			width: 23.572%;
			position: absolute;
			top: 14.761%;
			right: 1%;
		}
		
		.team-advantage .content-wrapper .item.fifth-item{
			width: 21.421%;
			position: absolute;
			top: 48.65%;
			right: 6%;
		}
		
		.team-advantage .content-wrapper .item.sixth-item{
			width: 21.421%;
			position: absolute;
			top: 81.724%;
			right: 10%;
		}
		
/* 投资方向 */
	/* 幻灯片 */
		.direction-banner{
			width: 100%;
		}
		
		.direction-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 投资方向-地产基金 */
		.direction-real-estate{
			width: 100%;
			display: flex;
			padding: 4.204% 0%;
			justify-content: flex-end;
			background-image: url('images/background-1.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.direction-real-estate .content-wrapper{
			width: 87.231%;
		}
		
		.direction-real-estate .content-wrapper .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-real-estate .content-wrapper .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.direction-real-estate .content-wrapper .content{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		
		.direction-real-estate .content-wrapper .content .text{
			width: 44.579%;
		}
		
		.direction-real-estate .content-wrapper .content .text .item{
			width: 100%;
			display: flex;
			align-items: center;
			margin-bottom: 10.811%;
			justify-content: space-between;
		}
		
		.direction-real-estate .content-wrapper .content .text .item:last-child{
			margin-bottom: 0%;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .number-img{
			width: 8.109%;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .number-img img{
			width: 100%;
			height: 100%;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .title{
			font-size: 26px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .explain{
			width: 78.379%;
			font-size: 16px;
			line-height: 26px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .explain p:first-child{
			font-family: 'SourceHanSansCNMedium';
		}
		
		.direction-real-estate .content-wrapper .content .images{
			width: 49.398%;
		}
		
		.direction-real-estate .content-wrapper .content .images img{
			width: 100%;
			height: 100%;
		}
		
	/* 投资方向-数字文化产业基金 */
		.direction-digital{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-8.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.direction-digital .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			text-align: center;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-digital .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			text-align: center;
			margin-top: 0.715%;
			color: rgba(255, 255, 255, 1);
		}
		
		.direction-digital .content-wrapper{
			width: 100%;
			display: grid;
			grid-gap: 30px;
			margin-top: 2.858%;
			grid-template-columns: repeat(3, 1fr);
		}
		
		.direction-digital .content-wrapper .item{
			width: 100%;
			position: relative;
			transition: all 0.6s;
		}
		
		.direction-digital .content-wrapper .item > .images{
			width: 100%;
		}
		
		.direction-digital .content-wrapper .item > .images img{
			width: 100%;
			height: 100%;
		}
		
		.direction-digital .content-wrapper .item .content{
			padding-top: 11.030%;
			position: absolute;
			top: 0%;
			right: 0%;
			bottom: 0%;
			left: 0%;
		}
		
		.direction-digital .content-wrapper .item .content .avatar-wrapper{
			width: 22.388%;
			margin: 0% auto;
			position: relative;
		}
		
		.direction-digital .content-wrapper .item .content .avatar-wrapper::after{
			content: "";
			width: 120%;
			height: 120%;
			display: block;
			border-radius: 50%;
			background: rgba(16, 114, 185, 0.2);
			position: absolute;
			top: -10%;
			left: -10%;
		}
		
		.direction-digital .content-wrapper .item .content .avatar-wrapper .avatar{
			padding: 10%;
			border-radius: 50%;
			background: rgba(16, 114, 185, 0.5);
		}
		
		.direction-digital .content-wrapper .item .content .avatar-wrapper .avatar img{
			width: 100%;
			height: 100%;
			border-radius: 50%;
		}
		
		.direction-digital .content-wrapper .item .content .text{
			width: 80%;
			margin: 0 auto;
			text-align: center;
			margin-top: 8.824%;
		}
		
		.direction-digital .content-wrapper .item .content .text .title .chinese{
			line-height: 1;
			font-size: 20px;
			color: rgba(18, 18, 18, 1);
		}
		
		.direction-digital .content-wrapper .item .content .text .title .english{
			line-height: 1;
			font-size: 14px;
			margin-top: 2.758%;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-digital .content-wrapper .item .content .text .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 13.788%;
			color: rgba(100, 100, 100, 1);
		}
		
	/* 投资方向-科技产业基金 */
		.direction-technology{
			width: 100%;
			padding: 4.204% 0%;
		}
		
		.direction-technology .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			text-align: center;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-technology .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			text-align: center;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.direction-technology .head-wrapper .title .explain{
			line-height: 1;
			font-size: 16px;
			line-height: 26px;
			text-align: center;
			margin-top: 1.429%;
		}
		
		.direction-technology .content-wrapper{
			width: 100%;
			display: grid;
			grid-gap: 30px;
			margin-top: 2.858%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.direction-technology .content-wrapper .item{
			width: 100%;
			border: 1px solid rgba(209, 209, 209, 0.5);
		}
		
		.direction-technology .content-wrapper .item .upper{
			font-size: 20px;
			padding: 2.920% 10%;
			background-image: url('images/background-10.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.direction-technology .content-wrapper .item .upper p{
			font-family: 'SourceHanSansCNMedium';
		}
		
		.direction-technology .content-wrapper .item .below{
			width: 80%;
			margin: 0% auto;
			padding: 4.380% 0%;
		}
		
		.direction-technology .content-wrapper .item .below .explain{
			font-size: 16px;
			line-height: 26px;
			color: rgba(92, 92, 92, 1);
		}
		
		.direction-technology .content-wrapper .item .below .button{
			width: 100%;
			display: flex;
			display: none;
			align-items: center;
			justify-content: flex-end;
		}
		
		.direction-technology .content-wrapper .item .below .button a{
			display: block;
			width: 29.198%;
			font-size: 14px;
			line-height: 40px;
			border-radius: 5px;
			text-align: center;
			margin-top: 3.650%;
			color: rgba(255, 255, 255, 1);
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
		}
		
	/* 投资方向-成功案例 */
		.direction-cases{
			width: 100%;
			padding: 4.204% 0%;
			background-color: rgba(242, 247, 251, 1);
		}
		
		.direction-cases .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			text-align: center;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-cases .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			text-align: center;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.direction-cases .content-wrapper {
			width: 100%;
			margin-top: 2.858%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper{
			width: 100%;
			position: relative;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner{
			width: 100%;
			padding-top: 4.286%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-wrapper{
			align-items: stretch;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide{
			display: flex;
			width: 61.786%;
			position: relative;
			align-items: center;
			background-color: rgba(255, 255, 255, 1);
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide > img{
			width: 100%;
			height: 100%;
			display: none;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content{
			display: flex;
			padding: 4.625%;
			justify-content: flex-end;
			position: relative;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .images{
			display: none;
			width: 43.313%;
			position: absolute;
			left: 4.625%;
			bottom: 9.314%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .images img{
			width: 100%;
			height: 100%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text{
			width: 100%;
			display: grid;
			position: relative;
			align-content: flex-start;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .number{
			line-height: 1;
			font-size: 55px;
			font-weight: bold;
			color: rgba(22, 120, 190, 0.4);
			font-family: "SryaheiheiheiCNRegular";
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .name{
			width: 100%;
			font-size: 24px;
			overflow: hidden;
			line-height: 1.1;
			margin-top: 8.572%;
			letter-spacing: 2px;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			color: rgba(30, 31, 31, 1);
			-webkit-box-orient: vertical;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .icon span{
			line-height: 1;
			font-size: 35px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .explain{
			font-size: 16px;
			overflow: hidden;
			line-height: 26px;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			color: rgba(30, 31, 31, 1);
			-webkit-box-orient: vertical;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .button a{
			display: none;
			width: 42.703%;
			font-size: 14px;
			line-height: 38px;
			text-align: center;
			color: rgba(255, 255, 255, 1);
			border: 1px solid rgba(255, 255, 255, 1);
		}
		
		/* 切换按钮-处理 */
		.direction-cases .content-wrapper .banner-wrapper .swiper-button{
			display: flex;
			line-height: 1;
			margin: 0% auto;
			width:  64.286%;
			padding: 0.736% 0%;
			align-items: center;
			justify-content: space-between;
			position: absolute;
			top: 50%;
			left: 17.858%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-prev,
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-next{
			width: 4.445%;
			height: 4.445%;
			position: static;
			margin-top: auto;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-prev img,
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-next img{
			width: 100%;
			height: 100%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-prev:after,
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-next:after{
			content: none
		}
		
		/* 投资方向-悬停 */
		.direction-digital .content-wrapper .item.current-hover-item{
			transform: scale(1.05);
		}
		
		/* 投资方向-成功案例-选中 */
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active > img{
			display: block;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content{
			padding: 4.625%;
			position: absolute;
			top: 0%;
			left: 0%;
			right: 0%;
			bottom: 0%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .images{
			display: block;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text{
			width: 47.134%;
			align-content: space-between;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .title .number{
			color: rgba(255, 255, 255, 0.4);
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .title .name{
			margin-top: 0%;
			-webkit-line-clamp: 1;
			color: rgba(255, 255, 255, 1);
			position: absolute;
			top: 11%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .title .icon{
			margin-top: 2.703%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .title .icon span{
			background: rgba(255, 255, 255, 1);
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .explain{
			-webkit-line-clamp: 6;
			color: rgba(255, 255, 255, 1);
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .button a{
			display: none;
		}
		
		/* 投资方向-成功案例-不选中 */
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-prev .content{
			position: absolute;
			top: 0%;
			right: 0%;
			bottom: 0%;
			left: 70.521%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-next .content{
			position: absolute;
			top: 0%;
			right: 70.521%;
			bottom: 0%;
			left: 0%;
		}
		
/* 投资管理 */
	/* 幻灯片 */
		.manage-banner{
			width: 100%;
		}
		
		.manage-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 投资管理-运营模式 */
		.manage-operating-model{
			width: 100%;
			padding: 4.204% 0%;
		}
		
		.manage-operating-model .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.manage-operating-model .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.manage-operating-model .head-wrapper .title .explain{
			width: 100%;
			margin-top: 0.715%;
		}
		
		.manage-operating-model .head-wrapper .title .explain p{
			font-size: 16px;
			line-height: 26px;
			color: rgba(16, 16, 16, 1);
		}
		
		.manage-operating-model .content-wrapper{
			width: 100%;
			display: grid;
			grid-gap: 30px;
			margin-top: 2.858%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.manage-operating-model .content-wrapper .item .images{
			width: 100%;
		}
		
		.manage-operating-model .content-wrapper .item .images img{
			width: 100%;
			height: 100%;
		}
		
		.manage-operating-model .content-wrapper .item.left .images{
			margin-bottom: 7.445%;
		}
		
		.manage-operating-model .content-wrapper .item.right .images{
			margin-top: 7.445%;
		}
		
		.manage-operating-model .content-wrapper .item .images.mobile-display{
			display: none;
		}
		
		.manage-operating-model .content-wrapper .item .images.computer-display{
			display: block;
		}
		
		.manage-operating-model .content-wrapper .item.left .content{
			width: 70%;
			margin: 0% auto;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 1.862%;
			color: rgba(16, 16, 16, 1);
		}
		
		.manage-operating-model .content-wrapper .item .content .explain{
			font-size: 16px;
			overflow: hidden;
			line-height: 26px;
			margin-top: 7.445%;
			display: -webkit-box;
			color: rgba(66, 66, 66, 1);
			-webkit-box-orient: vertical;
		}
		
	/* 投资管理-风控管理 */
		.manage-risk-control{
			width: 100%;
			padding: 4.204% 0%;
			background-image: url('images/background-4.png');
			background-size: cover;
			background-repeat:no-repeat;
			background-position: center;
		}
		
		.manage-risk-control .head-wrapper .title{
			width: 100%;
			text-align: center;
		}
		
		.manage-risk-control .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.manage-risk-control .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(255, 255, 255, 1);
		}
		
		.manage-risk-control .head-wrapper .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 1.072%;
			text-align: center;
			color: rgba(255, 255, 255, 1);
		}
		
		.manage-risk-control .content-wrapper{
			width: 100%;
			position: relative;
			margin-top: 2.858%;
		}
		
		.manage-risk-control .content-wrapper .images{
			width: 20.215%;
			margin: 0 auto;
		}
		
		.manage-risk-control .content-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
		.manage-risk-control .content-wrapper .item{
			width: 25%;
		}
		
		.manage-risk-control .content-wrapper .item .title{
			width: 100%;
			display: flex;
			line-height: 1;
			align-items: center;
		}
		
		.manage-risk-control .content-wrapper .item .title p.text{
			font-size: 20px;
			font-family: '微软雅黑';
			color: rgba(255, 255, 255, 1);
		}
		
		.manage-risk-control .content-wrapper .item .title p.number{
			font-size: 40px;
			font-weight: bold;
			font-family: '微软雅黑';
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.manage-risk-control .content-wrapper .item .title p.mobile-display{
			display: none;
		}
		
		.manage-risk-control .content-wrapper .item .title p.computer-display{
			display: block;
		}
		
		.manage-risk-control .content-wrapper .item .explain{
			width: 100%;
			font-size: 16px;
			line-height: 26px;
			color: rgba(255, 255, 255, 1);
		}
		
		.manage-risk-control .content-wrapper .left-wrapper .title{
			justify-content: flex-end;
		}
		
		.manage-risk-control .content-wrapper .left-wrapper .title p.text{
			margin-right: 3.664%;
		}
		
		.manage-risk-control .content-wrapper .left-wrapper .explain{
			text-align: right;
		}
		
		.manage-risk-control .content-wrapper .right-wrapper .title{
			justify-content: flex-start;
		}
		
		.manage-risk-control .content-wrapper .right-wrapper .title p.text{
			margin-left: 3.664%;
		}
		
		.manage-risk-control .content-wrapper .right-wrapper .explain{
			text-align: left;
		}
		
		.manage-risk-control .content-wrapper .first-item{
			position: absolute;
			top: 10.021%;
			left: 14%;
		}
		
		.manage-risk-control .content-wrapper  .second-item{
			position: absolute;
			top: 35.074%;
			right: 14%;
		}
		
		.manage-risk-control .content-wrapper .third-item{
			position: absolute;
			top: 60.543%;
			left: 14%;
		}
		
		.manage-risk-control .content-wrapper  .fourth-item{
			position: absolute;
			top: 78.497%;
			right: 14%;
		}
		
	/* 投资管理-原则 */	
		.manage-principle{
			width: 100%;
			display: flex;
			padding: 4.204% 0%;
			justify-content: flex-end;
		}
		
		.manage-principle .content-wrapper{
			display: flex;
			width: 87.231%;
			align-items: center;
			justify-content: space-between;
		}
		
		.manage-principle .content-wrapper .right{
			width: 48.193%;
		}
		
		.manage-principle .content-wrapper .right .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.manage-principle .content-wrapper .right .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.manage-principle .content-wrapper .right .title .explain{
			width: 100%;
			margin-top: 3.750%;
		}
		
		.manage-principle .content-wrapper .right .title .explain p{
			font-size: 16px;
			line-height: 26px;
		}
		
		.manage-principle .content-wrapper .right .title .explain p:first-child{
			font-weight: bold;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.manage-principle .content-wrapper .right .content{
			width: 100%;
			display: grid;
			grid-gap: 30px;
			margin-top: 5%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.manage-principle .content-wrapper .right .content .item{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: flex-start;
		}
		
		.manage-principle .content-wrapper .right .content .item .icon{
			width: 15.790%;
			margin-right: 7.895%;
		}
		
		.manage-principle .content-wrapper .right .content .item .icon img{
			width: 100%;
			height: 100%;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:first-child{
			line-height: 1;
			font-size: 24px;
			color: rgba(16, 16, 16, 1);
			font-family: 'SourceHanSansCNMedium';
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:last-child{
			line-height: 1;
			font-size: 16px;
			margin-top: 2.632%;
			color: rgba(16, 16, 16, 1);
		}
		
		.manage-principle .content-wrapper .images{
			width: 48.193%;
		}
		
		.manage-principle .content-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
/* 新闻中心 */
	/* 幻灯片 */
		.news-banner{
			width: 100%;
		}
		
		.news-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 新闻中心-内容 */
		.news-content{
			width: 100%;
			padding: 4.204% 0%;
		}
		
		.news-content .head-wrapper{
			width: 100%;
			padding: 0% 0% 2.858%;
			border-bottom: 1px solid rgba(237, 237, 237, 1);
		}
		
		.news-content .head-wrapper .tab{
			width: 100%;
			display: grid;
			grid-template-columns: repeat(8, 1fr);
		}
		
		.news-content .head-wrapper .tab .tab-item a{
			width: 100%;
			display: block;
			font-size: 16px;
			line-height: 43px;
			text-align: center;
			border-radius: 22.5px;
			color: rgba(13, 13, 13, 1);
		}
		
		.news-content .content-wrapper .item{
			width: 100%;
			display: flex;
			padding: 2.858% 0%;
			align-items: center;
			justify-content: space-between;
			border-bottom: 1px solid rgba(237, 237, 237, 1);
		}
		
		.news-content .content-wrapper .item:last-child{
			padding-bottom: 0%;
			border-bottom-width: 0px;
		}
		
		.news-content .content-wrapper .item .images{
			width: 35.715%;
		}
		
		.news-content .content-wrapper .item .images img{
			width: 100%;
			height: 100%;
		}
		
		.news-content .content-wrapper .item .content{
			width: 50%;
			margin-right: 7.143%;
		}
		
		.news-content .content-wrapper .item .content .title p{
			width: 100%;
			font-size: 22px;
			line-height: 1.2;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.news-content .content-wrapper .item .content .explain{
			width: 100%;
			font-size: 16px;
			overflow: hidden;
			line-height: 26px;
			margin-top: 2.858%;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			text-overflow: ellipsis;
			-webkit-box-orient: vertical;
		}
		
		.news-content .content-wrapper .item .content .button{
			width: 100%;
			margin-top: 5.715%;
		}
		
		.news-content .content-wrapper .item .content .button a{
			width: 22.858%;
			display: block;
			font-size: 14px;
			line-height: 40px;
			text-align: center;
			border-radius: 5px;
			color: rgba(255, 255, 255, 1);
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
		}
		
		.news-content .content-wrapper .on-data{
			width: 100%;
			font-size: 16px;
			line-height: 70px;
			text-align: center;
			color: rgba(175, 185, 191, 1)
		}
		
		/* 分页 */
		.news-content .pagination{
			margin-top: 2.858%;
		}
		
		.news-content .pagination .screen-reader-text{
			display: none;
		}
		
		.news-content .pagination .nav-links{
			display: flex;
			justify-content: center;
		}
		
		.news-content .pagination .nav-links .page-numbers{
			width: 40px;
			display: block;
			font-size: 16px;
			margin: 0% 0.215%;
			line-height: 35px;
			text-align: center;
			color: rgba(200, 200, 200, 1);
			border: 1px solid rgba(225, 225, 225, 1);
		}
		
		.news-content .pagination .nav-links .page-numbers.prev,
		.news-content .pagination .nav-links .page-numbers.next{
			width: 110px;
			margin: 0% 0.429%;
		}
		
		/* 新闻中心-选项卡-选中 */
		.news-content .head-wrapper .tab .tab-item.current-tab-item a{
			border: 1px solid  rgba(0, 97, 176, 1);
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		/* 分页选中 */
		.news-content .pagination .nav-links .page-numbers.current{
			color: rgba(255, 255, 255, 1);
			background-color: rgba(3, 102, 187, 1);
		}
		
/* 新闻详情 */
	/* 幻灯片 */
		.news-details-banner{
			width: 100%;
		}
		
		.news-details-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 新闻详情-内容 */
		.news-details-content{
			width: 100%;
			padding: 4.204% 0%;
		}
		
		.news-details-content .crumb{
			width: 100%;
			display: flex;
			font-size: 16px;
			align-items: center;
			color: rgba(84, 84, 84, 1);
		}
		
		.news-details-content .crumb p{
			font-family: 'SourceHanSansCNRegular';
		}
		
		.news-details-content .crumb p:first-child{
			margin-right: 0.526%;
		}
		
		.news-details-content .crumb .icon{
			margin: 0% 0.263%;
			transform: rotate(90deg);
			-webkit-transform: rotate(90deg);
		}
		
		.news-details-content .crumb .icon span{
			font-size: 18px;
		}
		
		.news-details-content .content-wrapper{
			width: 100%;
		}
		
		.news-details-content .content-wrapper .title{
			font-size: 26px;
			line-height: 1.2;
			padding: 1.429% 0%;
			font-family: 'SourceHanSansCNMedium';
			border-bottom: 1px solid rgba(237, 237, 237, 1);
		}
		
		.news-details-content .content-wrapper .content{
			width: 100%;
			font-size: 16px;
			line-height: 30px;
			padding: 2.143% 0% 3.572%;
			border-bottom: 1px solid rgba(237, 237, 237, 1);
		}
		
		.news-details-content .chapter-wrapper{
			width: 100%;
			display: grid;
			margin-top: 2.143%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.news-details-content .chapter-wrapper .item{
			width: 90%;
			display: flex;
			margin: 0% auto;
			font-size: 16px;
			line-height: 48px;
			border-radius: 5px;
			align-items: center;
			justify-content: center;
			color: rgba(189, 189, 189, 1);
			border: 1px solid rgba(189, 189, 189, 1);
		}
		
		.news-details-content .chapter-wrapper .item p:first-child{
			margin-right: 1.588%;
		}
		
		.news-details-content .chapter-wrapper .item p:last-child{
			width: 70%;
			overflow: hidden;
			white-space: nowrap;
			text-overflow: ellipsis;
		}
		
		/* 当前上下篇悬停项 */
		.news-details-content .chapter-wrapper .item.current-hover-item{
			color: rgba(0, 97, 176, 1);
			border: 1px solid  rgba(119, 171, 213, 1);
		}
		
/* 合作伙伴 */
	/* 幻灯片 */
		.partner-banner{
			width: 100%;
		}
		
		.partner-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 合作伙伴-内容 */
		.partner-content{
			width: 100%;
			padding: 4.204% 0%;
		}
		
		.partner-content .head-wrapper .title .english{
			line-height: 1;
			font-size: 20px;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			-webkit-text-fill-color: transparent;
			-webkit-background-clip: text;
		}
		
		.partner-content .head-wrapper .title .chinese{
			line-height: 1;
			font-size: 26px;
			margin-top: 0.715%;
			color: rgba(16, 16, 16, 1);
		}
		
		.partner-content .swiper-banner-wrapper{
			width: 100%;
			position: relative;
			padding: 2.858% 0%;
			border-bottom: 1px solid rgba(189, 189, 189, 1);
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner{
			width: 96%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide{
			width: 100%;
			display: flex;
			justify-content: space-between;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .images{
			width: 34.971%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .images img{
			width: 100%;
			height: 100%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content{
			width: 59.524%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .title{
			font-size: 26px;
			line-height: 1.2;
			position: relative;
			padding: 2.500% 0%;
			font-family: 'SourceHanSansCNMedium';
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .title::after{
			content: '';
			width: 8.750%;
			display: block;
			padding: 0.188% 0%;
			background: linear-gradient(to bottom right, rgba(0, 97, 176, 1), rgba(24, 132, 201, 1));
			position: absolute;
			bottom: 0%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .explain{
			width: 90%;
			font-size: 16px;
			line-height: 26px;
			margin-top: 3.750%;
		}
		
		/* 切换按钮-处理 */
		.partner-content .swiper-banner-wrapper .swiper-button{
			width: 4.286%;
			display: flex;
			line-height: 1;
			align-items: center;
			justify-content: space-between;
			position: absolute;
			left: 40.858%;
			bottom: 10.443%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-button samp{
			font-size: 16px;
			color: rgba(236, 236, 236, 1);
		}
		
		.partner-content .swiper-banner-wrapper .swiper-button-prev,
		.partner-content .swiper-banner-wrapper .swiper-button-next{
			width: auto;
			height: auto;
			position: static;
			margin-top: auto;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-button-prev:after,
		.partner-content .swiper-banner-wrapper .swiper-button-next:after{
			font-size: 26px;
			color: rgba(107, 107, 107, 1);
		}
		
		.partner-content .images-wrapper{
			width: 100%;
			display: grid;
			grid-gap: 10px;
			margin-top: 2.858%;
			grid-template-columns: repeat(6, 1fr);
		}
		
		.partner-content .images-wrapper .images{
			width: 100%;
			display: block;
		}
		
		.partner-content .images-wrapper .images img{
			width: 100%;
			height: 100%;
		}
		
/* 网站地图 */
	/* 幻灯片 */
		.sitemaps-banner{
			width: 100%;
		}
		
		.sitemaps-banner img{
			width: 100%;
			height: 100%;
		}
		
	/* 内容 */
		.sitemaps-content-wrapper{
			width: 100%;
			padding: 0% 0% 4.204%;
		}
		
		.sitemaps-content-wrapper .head-wrapper{
			width: 100%;
			height: 90px;
			display: flex;
			align-items: center;
			justify-content: flex-start;
		}
		
		.sitemaps-content-wrapper .head-wrapper .homepage-icon span{
			font-size: 26px;
			color: rgba(153, 153, 153, 1);
		}
		
		.sitemaps-content-wrapper .head-wrapper .arrow-icon{
			margin: 0% 0.715%;
			transform: rotate(90deg);
			-webkit-transform: rotate(90deg);
		}
		
		.sitemaps-content-wrapper .head-wrapper .arrow-icon span{
			font-size: 20px;
			color: rgba(153, 153, 153, 1);
		}
		
		.sitemaps-content-wrapper .head-wrapper .text{
			font-size: 16px;
			color: rgba(153, 153, 153, 1);
		}
		
		.sitemaps-content-wrapper .content-wrapper{
			width: 100%;
			margin-top: 2.858%;
		}
		
		.sitemaps-content-wrapper .content-wrapper .title{
			width: 100%;
			font-size: 46px;
			text-align: center;
			color: rgba(16, 16, 16, 1);
			font-family: 'SourceHanSansCNMedium';
		}
		
		.sitemaps-content-wrapper .content-wrapper .content{
			width: 100%;
			margin-top: 1.429%;
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu{
			width: 100%;
			display: grid;
			grid-gap: 20px;
			grid-template-columns: repeat(7, 1fr);
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu .menu-item a{
			width: 100%;
			font-size: 20px;
			line-height: 90px;
			color: rgba(51, 51, 51, 1);
			font-family: 'SourceHanSansCNRegular';
		}
		
/* 底部 */
	.footer-wrapper{
		width: 100%;
		position: relative;
		background-color: rgba(19, 48, 66, 1);
	}
	
	.footer-wrapper::after{
		content: "";
		width: 100%;
		display: block;
		padding: 0.106% 0%;
		background: linear-gradient(to right,  rgba(216, 180, 130, 1), rgba(246, 227, 184, 1));
		position: absolute;
		top: -0.211%;
		left: 0%;
	}
	
	.footer-wrapper .content-wrapper{
		width: 100%;
		padding: 2.102% 0% 3.153%;
		border-bottom: 1px solid rgba(195, 202, 207, 1);
	}
	
	.footer-wrapper .content-wrapper .upper{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.footer-wrapper .content-wrapper .upper .logo{
		width: 20%;
	}
	
	.footer-wrapper .content-wrapper .upper .logo img{
		width: 100%;
		height: 100%;
	}
	
	.footer-wrapper .content-wrapper .upper .menu-wrapper{
		width: 50%;
		border-bottom: 1px solid rgba(175, 185, 191, 1);
	}
	
	.footer-wrapper .content-wrapper .upper .menu-wrapper .menu{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.footer-wrapper .content-wrapper .upper .menu-wrapper .menu .menu-item{
		width: 16.667%;
	}
	
	.footer-wrapper .content-wrapper .upper .menu-wrapper .menu .menu-item a{
		width: 100%;
		display: block;
		font-size: 16px;
		line-height: 90px;
		text-align: center;
		color: rgba(255, 255, 255, 1);
	}
	
	.footer-wrapper .content-wrapper .below{
		width: 100%;
		display: flex;
		margin-top: 2.858%;
		align-items: center;
		justify-content: space-between;
	}
	
	.footer-wrapper .content-wrapper .below .address{
		width: 50%;
	}
	
	.footer-wrapper .content-wrapper .below .address .item{
		width: 100%;
		display: flex;
		margin-bottom: 1.429%;
		align-items: flex-start;
		justify-content: flex-start;
	}
	
	.footer-wrapper .content-wrapper .below .address .item:last-child{
		margin-bottom: 0%;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .icon{
		width: 5%;
		text-align: center;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .icon span{
		font-size: 20px;
		color: rgba(255, 255, 255, 1);
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content{
		width: 90%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content p{
		font-size: 16px;
		color: rgba(255, 255, 255, 1);
		font-family: 'SourceHanSansCNLight';
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content .label{
		margin-right: 1.588%;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content .value{
		width: 47.858%;
	}
	
	.footer-wrapper .content-wrapper .qr-code{
		width: 7.143%;
	}
	
	.footer-wrapper .content-wrapper .qr-code img{
		width: 100%;
		height: 100%;
	}
	
	.footer-wrapper .copyright-wrapper{
		width: 100%;
		display: flex;
		padding: 1.577% 0%;
		align-items: center;
		justify-content: center;
	}
	
	.footer-wrapper .copyright-wrapper span{
		width: 1px;
		display: block;
		height: 14px;
		margin: 0% 0.526%;
		background-color: rgba(255, 255, 255, 1);
	}
	
	.footer-wrapper .copyright-wrapper .filings,
	.footer-wrapper .copyright-wrapper .copyright,
	.footer-wrapper .copyright-wrapper .sitemaps{
		display: block;
		font-size: 16px;
		line-height: 1.2;
		color: rgba(255, 255, 255, 1);
	}
	
/* 响应 1680 */	
@media screen and (max-width: 1680px) {
/* 头部 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 15px;
		line-height: 80px;
	}
	
/* 首页 */		
	/* 幻灯片 */
	
	/* 首页-关于我们 */
		.index-about-us .content-wrapper .content .text .title .english{
			font-size: 18px;
		}
		
		.index-about-us .content-wrapper .content .text .title .chinese{
			font-size: 24px;
		}
		
		.index-about-us .content-wrapper .content .text .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.index-about-us .content-wrapper .content .button a{
			font-size: 13px;
			line-height: 33px;
		}
		
	/* 首页-项目来源 */
		.index-project .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.index-project .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.index-project .head-wrapper .button a{
			font-size: 13px;
			line-height: 33px;
		}
		
		.index-project .content-wrapper .item .content .upper .title .chinese{
			font-size: 22px;
		}
		
		.index-project .content-wrapper .item .content .upper .title .english{
			font-size: 13px;
		}
		
		.index-project .content-wrapper .item .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 首页-投资方向 */
		.index-invest .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.index-invest .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.index-invest .content-wrapper{
			grid-gap: 40px;
		}
		
		.index-invest .content-wrapper .item .content .title{
			font-size:22px;
		}
		
		.index-invest .content-wrapper .item .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 首页-风控管理 */
		.index-risk-control .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.index-risk-control .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.index-risk-control .head-wrapper .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.index-risk-control .content-wrapper .item .title p.text{
			font-size: 18px;
		}
		
		.index-risk-control .content-wrapper .item .title p.number{
			font-size: 38px;
		}
		
		.index-risk-control .content-wrapper .item .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 首页-新闻中心 */
		.index-news .text-wrapper .title .english{
			font-size: 18px;
		}
		
		.index-news .text-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.index-news .text-wrapper .button a{
			font-size: 13px;
			line-height: 33px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .title{
			font-size: 17px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .date{
			font-size: 13px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
/* 关于我们 */
	/* 幻灯片 */

	/* 关于我们-内容 */
		.about-us-content-wrapper .about-us-content .upper .content .title .english{
			font-size: 18px;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .title .chinese{
			font-size: 24px;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.about-us-content-wrapper .about-us-content .below{
			grid-gap: 25px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .english{
			font-size: 13px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .chinese{
			font-size: 22px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 关于我们-资质/牌照 */
		.about-us-credentials .content-wrapper .content .title .english{
			font-size: 18px;
		}
		
		.about-us-credentials .content-wrapper .content .title .chinese{
			font-size: 24px;
		}
		
		.about-us-credentials .content-wrapper .content .title .explain{
			font-size: 24px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item{
			font-size: 15px;
			line-height: 24px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item .icon span{
			font-size: 15px;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model{
			grid-gap: 35px;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model .model-item{
			font-size: 22px;
			line-height: 45px;
		}
		
	/* 关于我们-股东背景 */
		.about-us-shareholder .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.about-us-shareholder .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.about-us-shareholder .content-wrapper .item .title p{
			font-size: 17px;
		}
		
		.about-us-shareholder .content-wrapper .item .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
/* 团队管理 */
	/* 幻灯片 */
	
	/* 团队管理-团队员工 */
		.team-personnel .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.team-personnel .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.team-personnel .content-wrapper{
			grid-gap: 25px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .name{
			font-size: 22px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .position{
			font-size: 15px;
		}
		
		.team-personnel .content-wrapper .item .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 团队管理-团队优势 */	
		.team-advantage .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.team-advantage .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.team-advantage .content-wrapper .item .title .chinese{
			font-size:  19px;
		}
		
		.team-advantage .content-wrapper .item .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
/* 投资方向 */
	/* 幻灯片 */
	
	/* 投资方向-地产基金 */
		.direction-real-estate .content-wrapper .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.direction-real-estate .content-wrapper .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .title{
			font-size: 24px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 投资方向-数字文化产业基金 */
		.direction-digital .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.direction-digital .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.direction-digital .content-wrapper{
			grid-gap: 25px;
		}
		
		.direction-digital .content-wrapper .item .content .text .title .chinese{
			font-size: 19px;
			
		}
		
		.direction-digital .content-wrapper .item .content .text .title .english{
			font-size: 13px;
		}
		
		.direction-digital .content-wrapper .item .content .text .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 投资方向-科技产业基金 */
		.direction-technology .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.direction-technology .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.direction-technology .head-wrapper .title .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.direction-technology .content-wrapper{
			grid-gap: 25px;
		}
		
		.direction-technology .content-wrapper .item .upper{
			font-size: 19px;
		}
		
		.direction-technology .content-wrapper .item .below .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.direction-technology .content-wrapper .item .below .button a{
			font-size: 13px;
			line-height: 35px;
		}
		
	/* 投资方向-成功案例 */
		.direction-cases .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.direction-cases .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .number{
			font-size: 50px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .name{
			font-size: 22px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .icon span{
			font-size: 30px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .button a{
			font-size: 13px;
			line-height: 33px;
		}
		
/* 投资管理 */
	/* 幻灯片 */
	
	/* 投资管理-运营模式 */
		.manage-operating-model .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.manage-operating-model .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.manage-operating-model .head-wrapper .title .explain p{
			font-size: 15px;
			line-height: 24px;
		}
		
		.manage-operating-model .content-wrapper{
			grid-gap: 25px;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .english{
			font-size: 18px;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .chinese{
			font-size: 24px;
		}
		
		.manage-operating-model .content-wrapper .item .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 投资管理-风控管理 */
		.manage-risk-control .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.manage-risk-control .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.manage-risk-control .head-wrapper .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.manage-risk-control .content-wrapper .item .title p.text{
			font-size: 18px;
		}
		
		.manage-risk-control .content-wrapper .item .title p.number{
			font-size: 38px;
		}
		
		.manage-risk-control .content-wrapper .item .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
	/* 投资管理-原则 */
		.manage-principle .content-wrapper .right .title .english{
			font-size: 18px;
		}
		
		.manage-principle .content-wrapper .right .title .chinese{
			font-size: 24px;
		}
		
		.manage-principle .content-wrapper .right .title .explain p{
			font-size: 15px;
			line-height: 24px;
		}
		
		.manage-principle .content-wrapper .right .content{
			grid-gap: 25px;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:first-child{
			font-size: 22px;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:last-child{
			font-size: 15px;
		}
		
/* 新闻中心 */
	/* 幻灯片 */
		
	/* 新闻中心-内容 */
		.news-content .head-wrapper .tab .tab-item a{
			font-size: 15px;
			line-height: 38px;
			border-radius: 20px;
		}
		
		.news-content .content-wrapper .item .content .title p{
			font-size: 20px;
		}
		
		.news-content .content-wrapper .item .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.news-content .content-wrapper .item .content  .button a{
			font-size: 13px;
			line-height: 35px;
		}
		
		.news-content .content-wrapper .on-data{
			font-size: 15px;
			line-height: 65px;
		}
		
		/* 分页 */
		.news-content .pagination .nav-links .page-numbers{
			font-size: 15px;
		}
		
		.news-content .pagination .nav-links .page-numbers.prev,
		.news-content .pagination .nav-links .page-numbers.next{
			width: 100px;
		}
		
/* 新闻详情 */
	/* 幻灯片 */

	/* 新闻详情-内容 */
		.news-details-content .crumb{
			font-size: 15px;
		}
		
		.news-details-content .crumb .icon span{
			font-size: 17px;
		}
		
		.news-details-content .content-wrapper .title{
			font-size: 24px;
		}
		
		.news-details-content .content-wrapper .content{
			font-size: 15px;
			line-height: 28px;
		}
		
		.news-details-content .chapter-wrapper .item{
			font-size: 15px;
			line-height: 43px;
		}
		
/* 合作伙伴 */
	/* 幻灯片 */

	/* 合作伙伴-内容 */
		.partner-content .head-wrapper .title .english{
			font-size: 18px;
		}
		
		.partner-content .head-wrapper .title .chinese{
			font-size: 24px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .title{
			font-size: 24px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .explain{
			font-size: 15px;
			line-height: 24px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-button-prev:after,
		.partner-content .swiper-banner-wrapper .swiper-button-next:after{
			font-size: 24px;
		}
		
/* 网站地图 */
	/* 幻灯片 */

	/* 内容 */
		.sitemaps-content-wrapper .head-wrapper{
			height: 80px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .homepage-icon span{
			font-size: 24px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .arrow-icon span{
			font-size: 19px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .text{
			font-size: 15px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .title{
			font-size: 42px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu{
			grid-gap: 15px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu .menu-item a{
			font-size: 19px;
			line-height: 80px;
		}
		
/* 底部 */
	.footer-wrapper .content-wrapper .upper .menu-wrapper .menu .menu-item a{
		font-size: 15px;
		line-height: 80px;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .icon span{
		font-size: 18px;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content p{
		font-size: 15px;
	}
	
	.footer-wrapper .copyright-wrapper .filings,
	.footer-wrapper .copyright-wrapper .copyright,
	.footer-wrapper .copyright-wrapper .sitemaps{
		font-size: 15px;
	}
}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 头部 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 14px;
		line-height: 70px;
	}
	
/* 首页 */		
	/* 幻灯片 */
	
	/* 首页-关于我们 */
		.index-about-us .content-wrapper .content .text .title .english{
			font-size: 16px;
		}
		
		.index-about-us .content-wrapper .content .text .title .chinese{
			font-size: 22px;
		}
		
		.index-about-us .content-wrapper .content .text .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.index-about-us .content-wrapper .content .button a{
			font-size: 12px;
			line-height: 28px;
		}
		
	/* 首页-项目来源 */
		.index-project .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.index-project .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.index-project .head-wrapper .button a{
			font-size: 12px;
			line-height: 28px;
		}
		
		.index-project .content-wrapper .item .content .upper .title .chinese{
			font-size: 21px;
		}
		
		.index-project .content-wrapper .item .content .upper .title .english{
			font-size: 12px;
		}
		
		.index-project .content-wrapper .item .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 首页-投资方向 */
		.index-invest .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.index-invest .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.index-invest .content-wrapper{
			grid-gap: 35px;
		}
		
		.index-invest .content-wrapper .item .content .title{
			font-size:21px;
		}
		
		.index-invest .content-wrapper .item .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 首页-风控管理 */
		.index-risk-control .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.index-risk-control .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.index-risk-control .head-wrapper .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.index-risk-control .content-wrapper .item .title p.text{
			font-size: 16px;
		}
		
		.index-risk-control .content-wrapper .item .title p.number{
			font-size: 36px;
		}
		
		.index-risk-control .content-wrapper .item .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 首页-新闻中心 */
		.index-news .text-wrapper .title .english{
			font-size: 16px;
		}
		
		.index-news .text-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.index-news .text-wrapper .button a{
			font-size: 12px;
			line-height: 28px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .title{
			font-size: 16px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .date{
			font-size: 12px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
/* 关于我们 */
	/* 幻灯片 */

	/* 关于我们-内容 */
		.about-us-content-wrapper .about-us-content .upper .content .title .english{
			font-size: 16px;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .title .chinese{
			font-size: 22px;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.about-us-content-wrapper .about-us-content .below{
			grid-gap: 20px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .english{
			font-size: 12px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .chinese{
			font-size: 21px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 关于我们-资质/牌照 */
		.about-us-credentials .content-wrapper .content .title .english{
			font-size: 16px;
		}
		
		.about-us-credentials .content-wrapper .content .title .chinese{
			font-size: 22px;
		}
		
		.about-us-credentials .content-wrapper .content .title .explain{
			font-size: 22px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item{
			font-size: 14px;
			line-height: 22px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item .icon span{
			font-size: 14px;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model{
			grid-gap: 30px;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model .model-item{
			font-size: 20px;
			line-height: 40px;
		}
		
	/* 关于我们-股东背景 */
		.about-us-shareholder .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.about-us-shareholder .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.about-us-shareholder .content-wrapper .item .title p{
			font-size: 16px;
		}
		
		.about-us-shareholder .content-wrapper .item .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
/* 团队管理 */
	/* 幻灯片 */
	
	/* 团队管理-团队员工 */
		.team-personnel .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.team-personnel .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.team-personnel .content-wrapper{
			grid-gap: 20px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .name{
			font-size: 21px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .position{
			font-size: 14px;
		}
		
		.team-personnel .content-wrapper .item .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 团队管理-团队优势 */	
		.team-advantage .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.team-advantage .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.team-advantage .content-wrapper .item .title .chinese{
			font-size:  18px;
		}
		
		.team-advantage .content-wrapper .item .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
/* 投资方向 */
	/* 幻灯片 */
	
	/* 投资方向-地产基金 */
		.direction-real-estate .content-wrapper .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.direction-real-estate .content-wrapper .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .title{
			font-size: 22px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 投资方向-数字文化产业基金 */
		.direction-digital .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.direction-digital .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.direction-digital .content-wrapper{
			grid-gap: 20px;
		}
		
		.direction-digital .content-wrapper .item .content .text .title .chinese{
			font-size: 18px;
			
		}
		
		.direction-digital .content-wrapper .item .content .text .title .english{
			font-size: 12px;
		}
		
		.direction-digital .content-wrapper .item .content .text .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 投资方向-科技产业基金 */
		.direction-technology .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.direction-technology .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.direction-technology .head-wrapper .title .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.direction-technology .content-wrapper{
			grid-gap: 20px;
		}
		
		.direction-technology .content-wrapper .item .upper{
			font-size: 18px;
		}
		
		.direction-technology .content-wrapper .item .below .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.direction-technology .content-wrapper .item .below .button a{
			font-size: 12px;
			line-height: 30px;
		}
		
	/* 投资方向-成功案例 */
		.direction-cases .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.direction-cases .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .number{
			font-size: 45px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .name{
			font-size: 20px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .icon span{
			font-size: 25px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .button a{
			font-size: 12px;
			line-height: 28px;
		}
		
/* 投资管理 */
	/* 幻灯片 */
	
	/* 投资管理-运营模式 */
		.manage-operating-model .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.manage-operating-model .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.manage-operating-model .head-wrapper .title .explain p{
			font-size: 14px;
			line-height: 22px;
		}
		
		.manage-operating-model .content-wrapper{
			grid-gap: 20px;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .english{
			font-size: 16px;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .chinese{
			font-size: 22px;
		}
		
		.manage-operating-model .content-wrapper .item .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 投资管理-风控管理 */
		.manage-risk-control .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.manage-risk-control .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.manage-risk-control .head-wrapper .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.manage-risk-control .content-wrapper .item .title p.text{
			font-size: 16px;
		}
		
		.manage-risk-control .content-wrapper .item .title p.number{
			font-size: 36px;
		}
		
		.manage-risk-control .content-wrapper .item .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 投资管理-原则 */
		.manage-principle .content-wrapper .right .title .english{
			font-size: 16px;
		}
		
		.manage-principle .content-wrapper .right .title .chinese{
			font-size: 22px;
		}
		
		.manage-principle .content-wrapper .right .title .explain p{
			font-size: 14px;
			line-height: 22px;
		}
		
		.manage-principle .content-wrapper .right .content{
			grid-gap: 20px;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:first-child{
			font-size: 20px;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:last-child{
			font-size: 14px;
		}
		
/* 新闻中心 */
	/* 幻灯片 */
		
	/* 新闻中心-内容 */
		.news-content .head-wrapper .tab .tab-item a{
			font-size: 14px;
			line-height: 33px;
			border-radius: 17.5px;
		}
		
		.news-content .content-wrapper .item .content .title p{
			font-size: 18px;
		}
		
		.news-content .content-wrapper .item .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.news-content .content-wrapper .item .content  .button a{
			font-size: 12px;
			line-height: 30px;
		}
		
		.news-content .content-wrapper .on-data{
			font-size: 14px;
			line-height: 60px;
		}
		
		/* 分页 */
		.news-content .pagination .nav-links .page-numbers{
			width: 35px;
			font-size: 14px;
			line-height: 30px;
		}
		
		.news-content .pagination .nav-links .page-numbers.prev,
		.news-content .pagination .nav-links .page-numbers.next{
			width: 90px;
		}
		
		
/* 新闻详情 */
	/* 幻灯片 */

	/* 新闻详情-内容 */
		.news-details-content .crumb{
			font-size: 14px;
		}
		
		.news-details-content .crumb .icon span{
			font-size: 16px;
		}
		
		.news-details-content .content-wrapper .title{
			font-size: 22px;
		}
		
		.news-details-content .content-wrapper .content{
			font-size: 14px;
			line-height: 26px;
		}
		
		.news-details-content .chapter-wrapper .item{
			font-size: 14px;
			line-height: 38px;
		}
		
/* 合作伙伴 */
	/* 幻灯片 */

	/* 合作伙伴-内容 */
		.partner-content .head-wrapper .title .english{
			font-size: 16px;
		}
		
		.partner-content .head-wrapper .title .chinese{
			font-size: 22px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .title{
			font-size: 22px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-button-prev:after,
		.partner-content .swiper-banner-wrapper .swiper-button-next:after{
			font-size: 22px;
		}
	
/* 网站地图 */
	/* 幻灯片 */

	/* 内容 */
		.sitemaps-content-wrapper .head-wrapper{
			height: 70px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .homepage-icon span{
			font-size: 22px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .arrow-icon span{
			font-size: 18px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .text{
			font-size: 14px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .title{
			font-size: 38px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu .menu-item a{
			font-size: 18px;
			line-height: 70px;
		}
		
/* 底部 */
	.footer-wrapper .content-wrapper .upper .menu-wrapper .menu .menu-item a{
		font-size: 14px;
		line-height: 70px;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .icon span{
		font-size: 16px;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content p{
		font-size: 14px;
	}
	
	.footer-wrapper .copyright-wrapper .filings,
	.footer-wrapper .copyright-wrapper .copyright,
	.footer-wrapper .copyright-wrapper .sitemaps{
		font-size: 14px;
	}
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {
/* 头部 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 13px;
		line-height: 60px;
	}
	
/* 首页 */		
	/* 幻灯片 */
	
	/* 首页-关于我们 */
		.index-about-us .content-wrapper .content .text .title .english{
			font-size: 14px;
		}
		
		.index-about-us .content-wrapper .content .text .title .chinese{
			font-size: 20px;
		}
		
		.index-about-us .content-wrapper .content .text .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 首页-项目来源 */
		.index-project .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.index-project .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.index-project .content-wrapper .item .content .upper .title .chinese{
			font-size: 20px;
		}
		
		.index-project .content-wrapper .item .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 首页-投资方向 */
		.index-invest .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.index-invest .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.index-invest .content-wrapper{
			grid-gap: 30px;
		}
		
		.index-invest .content-wrapper .item .content .title{
			font-size: 20px;
		}
		
		.index-invest .content-wrapper .item .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 首页-风控管理 */
		.index-risk-control .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.index-risk-control .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.index-risk-control .head-wrapper .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
		.index-risk-control .content-wrapper .item .title p.text{
			font-size: 14px;
		}
		
		.index-risk-control .content-wrapper .item .title p.number{
			font-size: 34px;
		}
		
		.index-risk-control .content-wrapper .item .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 首页-新闻中心 */
		.index-news .text-wrapper .title .english{
			font-size: 14px;
		}
		
		.index-news .text-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .title{
			font-size: 15px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
/* 关于我们 */
	/* 幻灯片 */

	/* 关于我们-内容 */
		.about-us-content-wrapper .about-us-content .upper .content .title .english{
			font-size: 14px;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .title .chinese{
			font-size: 20px;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
		.about-us-content-wrapper .about-us-content .below{
			grid-gap: 15px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .chinese{
			font-size: 20px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 关于我们-资质/牌照 */
		.about-us-credentials .content-wrapper .content .title .english{
			font-size: 14px;
		}
		
		.about-us-credentials .content-wrapper .content .title .chinese{
			font-size: 20px;
		}
		
		.about-us-credentials .content-wrapper .content .title .explain{
			font-size: 20px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item{
			font-size: 13px;
			line-height: 20px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item .icon span{
			font-size: 13px;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model{
			grid-gap: 25px;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model .model-item{
			font-size: 18px;
			line-height: 35px;
		}
		
	/* 关于我们-股东背景 */
		.about-us-shareholder .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.about-us-shareholder .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.about-us-shareholder .content-wrapper .item .title p{
			font-size: 15px;
		}
		
		.about-us-shareholder .content-wrapper .item .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
/* 团队管理 */
	/* 幻灯片 */
	
	/* 团队管理-团队员工 */
		.team-personnel .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.team-personnel .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.team-personnel .content-wrapper{
			grid-gap: 15px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .name{
			font-size: 20px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .position{
			font-size: 13px;
		}
		
		.team-personnel .content-wrapper .item .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 团队管理-团队优势 */	
		.team-advantage .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.team-advantage .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.team-advantage .content-wrapper .item .title .chinese{
			font-size:  17px;
		}
		
		.team-advantage .content-wrapper .item .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
/* 投资方向 */
	/* 幻灯片 */
	
	/* 投资方向-地产基金 */
		.direction-real-estate .content-wrapper .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.direction-real-estate .content-wrapper .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .title{
			font-size: 20px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 投资方向-数字文化产业基金 */
		.direction-digital .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.direction-digital .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.direction-digital .content-wrapper{
			grid-gap: 15px;
		}
		
		.direction-digital .content-wrapper .item .content .text .title .chinese{
			font-size: 17px;
		}
		
		.direction-digital .content-wrapper .item .content .text .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 投资方向-科技产业基金 */
		.direction-technology .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.direction-technology .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.direction-technology .head-wrapper .title .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
		.direction-technology .content-wrapper{
			grid-gap: 15px;
		}
		
		.direction-technology .content-wrapper .item .upper{
			font-size: 17px;
		}
		
		.direction-technology .content-wrapper .item .below .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 投资方向-成功案例 */
		.direction-cases .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.direction-cases .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .number{
			font-size: 40px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .name{
			font-size: 18px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .icon span{
			font-size: 20px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
/* 投资管理 */
	/* 幻灯片 */
	
	/* 投资管理-运营模式 */
		.manage-operating-model .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.manage-operating-model .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.manage-operating-model .head-wrapper .title .explain p{
			font-size: 13px;
			line-height: 20px;
		}
		
		.manage-operating-model .content-wrapper{
			grid-gap: 15px;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .english{
			font-size: 14px;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .chinese{
			font-size: 20px;
		}
		
		.manage-operating-model .content-wrapper .item .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 投资管理-风控管理 */
		.manage-risk-control .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.manage-risk-control .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.manage-risk-control .head-wrapper .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
		.manage-risk-control .content-wrapper .item .title p.text{
			font-size: 14px;
		}
		
		.manage-risk-control .content-wrapper .item .title p.number{
			font-size: 34px;
		}
		
		.manage-risk-control .content-wrapper .item .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
	/* 投资管理-原则 */
		.manage-principle .content-wrapper .right .title .english{
			font-size: 14px;
		}
		
		.manage-principle .content-wrapper .right .title .chinese{
			font-size: 20px;
		}
		
		.manage-principle .content-wrapper .right .title .explain p{
			font-size: 13px;
			line-height: 20px;
		}
		
		.manage-principle .content-wrapper .right .content{
			grid-gap: 15px;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:first-child{
			font-size: 18px;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:last-child{
			font-size: 13px;
		}
		
/* 新闻中心 */
	/* 幻灯片 */
		
	/* 新闻中心-内容 */
		.news-content .head-wrapper .tab .tab-item a{
			font-size: 13px;
		}
		
		.news-content .content-wrapper .item .content .title p{
			font-size: 16px;
		}
		
		.news-content .content-wrapper .item .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
		.news-content .content-wrapper .on-data{
			font-size: 13px;
			line-height: 55px;
		}
		
		/* 分页 */
		.news-content .pagination .nav-links .page-numbers{
			font-size: 13px;
		}
		
		.news-content .pagination .nav-links .page-numbers.prev,
		.news-content .pagination .nav-links .page-numbers.next{
			width: 80px;
		}
		
/* 新闻详情 */
	/* 幻灯片 */

	/* 新闻详情-内容 */
		.news-details-content .crumb{
			font-size: 13px;
		}
		
		.news-details-content .crumb .icon span{
			font-size: 15px;
		}
		
		.news-details-content .content-wrapper .title{
			font-size: 20px;
		}
		
		.news-details-content .content-wrapper .content{
			font-size: 13px;
			line-height: 24px;
		}
		
		.news-details-content .chapter-wrapper .item{
			font-size: 13px;
			line-height: 33px;
		}
		
/* 合作伙伴 */
	/* 幻灯片 */

	/* 合作伙伴-内容 */
		.partner-content .head-wrapper .title .english{
			font-size: 14px;
		}
		
		.partner-content .head-wrapper .title .chinese{
			font-size: 20px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .title{
			font-size: 20px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .explain{
			font-size: 13px;
			line-height: 20px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-button-prev:after,
		.partner-content .swiper-banner-wrapper .swiper-button-next:after{
			font-size: 20px;
		}
		
/* 网站地图 */
	/* 幻灯片 */

	/* 内容 */
		.sitemaps-content-wrapper .head-wrapper{
			height: 60px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .homepage-icon span{
			font-size: 20px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .arrow-icon span{
			font-size: 17px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .text{
			font-size: 13px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .title{
			font-size: 34px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu .menu-item a{
			font-size: 17px;
			line-height: 60px;
		}
		
/* 底部 */
	.footer-wrapper .content-wrapper .upper .menu-wrapper .menu .menu-item a{
		font-size: 13px;
		line-height: 60px;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .icon span{
		font-size: 14px;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content p{
		font-size: 13px;
	}
	
	.footer-wrapper .content-wrapper .below .address .item .content .value{
		width: 73.747%;
	}
	
	.footer-wrapper .copyright-wrapper .filings,
	.footer-wrapper .copyright-wrapper .copyright,
	.footer-wrapper .copyright-wrapper .sitemaps{
		font-size: 13px;
	}
}

/* 响应 1000 */
@media screen and (max-width: 1000px) {
/* 头部 */	
	.header-wrapper .header{
		height: 60px;
	}
	
	.header-wrapper .header .logo{
		width: 30.089%;
	}
	
	.header-wrapper .header .menu-wrapper{
		display: none;
	}
	
	.header-wrapper .header .menu-mobile-wrapper{
		display: block;
	}
	
	.header-wrapper .header .menu-mobile-wrapper .icon span{
		font-size: 30px;
		color: rgba(255, 255, 255, 1);
	}
	
	.header-wrapper .header .menu-mobile-wrapper .menu-mobile{
		width: 50%;
		height: 100%;
		transform: translateX(0%);
		transition: all 0.5s ease;
		background-color: rgba(255, 255, 255, 1);
		position: fixed;
		top: 0%;
		left: -50%;
		z-index: 999;
	}

	.header-wrapper .header .menu-mobile-wrapper .menu-mobile .menu .menu-item{
		padding: 2.565% 7.693%;
	}
	
	.header-wrapper .header .menu-mobile-wrapper .menu-mobile .menu .menu-item a{
		width: 100%;
		display: block;
		font-size: 14px;
		text-align: left;
		line-height: 26px;
		color: rgba(0, 0, 0, 1);
	}
	
	/* 打开菜单 */
	.header-wrapper .header .menu-mobile-wrapper .menu-mobile.current-open-item{
		left: 0%;
	}
	
	/* 当前菜单选中项 */
	.header-wrapper .header .menu-mobile-wrapper .menu-mobile .menu .menu-item.current-menu-item a{
		color: rgba(0, 97, 176, 1)
	}
	
/* 首页 */	
	/* 幻灯片 */
		.index-banner{
			height: auto;
		}
		
		.index-banner .mobile-display{
			width: 100%;
			height: 100%;
			display: block;
		}
		
		.index-banner .next-page-wrapper .next-page{
			display: none;
		}
		
	/* 首页-关于我们 */
		.index-about-us{
			padding: 5.883% 0%;
		}
		
		.index-about-us .content-wrapper{
			display: block;
			width: 73.569%;
			margin: 0 auto;
		}
		
		.index-about-us .content-wrapper .content{
			width: 100%;
		}
		
		.index-about-us .content-wrapper .content .text .title .english{
			font-size: 12px;
		}
		
		.index-about-us .content-wrapper .content .text .title .chinese{
			font-size: 18px;
		}
		
		.index-about-us .content-wrapper .content .text .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 3.922%;
		}
		
		.index-about-us .content-wrapper .content .button{
			margin-top: 3.922%;
		}
		
		.index-about-us .content-wrapper .content .button a{
			width: 22.655%;
		}
		
		.index-about-us .content-wrapper .images{
			width: 100%;
			margin-top: 3.922%;
		}
		
		.index-project .head-wrapper .button{
			width: 23.009%;
		}
		
	/* 首页-项目来源 */
		.index-project{
			padding: 5.883% 0%;
		}
		
		.index-project .content-wrapper{
			margin-top: 3.922%;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.index-project .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.index-project .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.index-project .content-wrapper .item .content{
			width: 80%;
		}
		
		.index-project .content-wrapper .item .content .upper .title .chinese{
			font-size: 19px;
		}
		
		.index-project .content-wrapper .item .content .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 3.268%;
		}
		
		.index-project .content-wrapper .item .content .upper .images{
			width: 12.643%;
		}
		
		.index-project .content-wrapper .item .content .upper .title{
			width: 85%;
		}
		
		/* 首页-项目来源-内容-线 */
		.index-project .content-wrapper .item{
			border-width: 0px;
			border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
		}
		
		.index-project .content-wrapper .item:last-child{
			border-width: 0px !important;
		}
		
	/* 首页-投资方向 */
		.index-invest{
			padding: 5.883% 0%;
		}
		
		.index-invest .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.index-invest .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.index-invest .content-wrapper{
			grid-gap: 15px;
			margin-top: 3.922%;
			background-size: 0%;
			grid-template-columns: repeat(1, 100%);
		}
		
		.index-invest .content-wrapper .item .content .title{
			font-size: 19px;
		}
		
		.index-invest .content-wrapper .item .content .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 2.971%;
		}
		
		.index-invest .content-wrapper .item .images{
			width: 8.850%;
		}
		
		.index-invest .content-wrapper .item .content{
			width: 88%;
		}
		
	/* 首页-风控管理 */
		.index-risk-control{
			padding: 5.883% 0%;
		}
		
		.index-risk-control .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.index-risk-control .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.index-risk-control .head-wrapper .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 3.922%;
		}
		
		.index-risk-control .content-wrapper{
			display: grid;
			grid-gap: 15px;
			margin-top: 3.922%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.index-risk-control .content-wrapper .images{
			display: none;
		}
		
		.index-risk-control .content-wrapper .item{
			width: 100%;
			position: static !important;
		}
		
		.index-risk-control .content-wrapper .item .title{
			justify-content: flex-start;
		}
		
		.index-risk-control .content-wrapper .item .title p.text{
			font-size: 12px;
			margin-right: 0%;
			margin-left: 3.664%;
		}
		
		.index-risk-control .content-wrapper .item .title p.number{
			font-size: 32px;
		}
		
		.index-risk-control .content-wrapper .item .title p.mobile-display{
			display: block;
		}
		
		.index-risk-control .content-wrapper .item .title p.computer-display{
			display: none;
		}
		
		.index-risk-control .content-wrapper .item .explain{
			font-size: 12px;
			text-align: left;
			line-height: 18px;
		}
		
	/* 首页-新闻中心 */
		.index-news{
			padding: 5.883% 0%;
		}
		
		.index-news .text-wrapper .title .english{
			font-size: 12px;
		}
		
		.index-news .text-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.index-news .content-wrapper{
			display: block;
			width: 73.569%;
			margin: 0 auto;
		}
		
		.index-news .content-wrapper .text-wrapper{
			width: 100%;
			padding: 0%;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		
		.index-news .content-wrapper .text-wrapper .button{
			width: 22.655%;
		}
		
		.index-news .content-wrapper .text-wrapper .button a{
			width: 100%;
		}
		
		.index-news .index-news-banner-wrapper{
			width: 100%;
			display: block;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner{
			width: 100%;
			padding: 0.736%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide{
			width: 47.346%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .title{
			font-size: 14px;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .date{
			margin-top: 3.268%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide .content .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 4.902%;
		}
		
		/* 切换按钮-处理 */
		.index-news .index-news-banner-wrapper .swiper-button{
			width: 100%;
			padding: 2.615% 0% 1.308%;
			justify-content: flex-end;
		}
		
		.index-news .index-news-banner-wrapper .swiper-button-prev, 
		.index-news .index-news-banner-wrapper .swiper-button-next{
			width: 5.310%;
			height: 5.310%;
		}
		
		.index-news .index-news-banner-wrapper .swiper-button-prev{
			margin-right: 3.540%;
		}
		
/* 关于我们 */
	/* 幻灯片 */

	/* 关于我们-内容 */
		.about-us-content-wrapper{
			padding: 5.883% 0%;
		}
		
		.about-us-content-wrapper .about-us-content .upper{
			display: block;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content{
			width: 100%;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .title .english{
			font-size: 12px;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .title .chinese{
			font-size: 18px;
			margin-top: 1.770%;
		}
		
		.about-us-content-wrapper .about-us-content .upper .content .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 3.922%;
		}
		
		.about-us-content-wrapper .about-us-content .content .explain p:first-child{
			margin-bottom: 0.885%;
		}
		
		.about-us-content-wrapper .about-us-content .upper .images{
			width: 100%;
			margin-top: 3.922%;
		}
		
		.about-us-content-wrapper .about-us-content .below{
			margin-top: 3.922%;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.about-us-content-wrapper .about-us-content .below .item .title .chinese{
			font-size: 19px;
		}
		
		.about-us-content-wrapper .about-us-content .below .item .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 3.922%;
		}
		
	/* 关于我们-资质/牌照 */
		.about-us-credentials{
			padding: 5.883% 0%;
		}
		
		.about-us-credentials .content-wrapper{
			display: block;
		}
		
		.about-us-credentials .content-wrapper .content{
			width: 100%;
		}
		
		.about-us-credentials .content-wrapper .content .title .english{
			font-size: 12px;
		}
		
		.about-us-credentials .content-wrapper .content .title .chinese{
			font-size: 18px;
		}
		
		.about-us-credentials .content-wrapper .content .title .explain{
			font-size: 18px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item{
			font-size: 12px;
			line-height: 18px;
		}
		
		.about-us-credentials .content-wrapper .content .about-company .company-item .icon span{
			font-size: 12px;
		}
		
		.about-us-credentials .content-wrapper .content .operate-model{
			grid-gap: 20px;
		}
		
		.about-us-credentials .content-wrapper .images{
			width: 60%;
			margin: 6.536% auto 0%;
		}
		
	/* 关于我们-股东背景 */
		.about-us-shareholder{
			padding: 5.883% 0%;
		}
		
		.about-us-shareholder .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.about-us-shareholder .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.about-us-shareholder .content-wrapper{
			margin-top: 3.922%;
		}
		
		.about-us-shareholder .content-wrapper .item{
			padding: 3.540%;
			margin-bottom: 3.922%;
			width: 92.93% !important;
			position: static !important;
			box-shadow:
			5px 5px 5px rgba(247, 247, 247, 1),
			5px -5px 5px rgba(247, 247, 247, 1),
			-5px 5px 5px rgba(247, 247, 247, 1),
			-5px -5px 5px rgba(247, 247, 247, 1);
		}
		
		.about-us-shareholder .content-wrapper .item:last-child{
			margin-bottom: 0%;
		}
		
		.about-us-shareholder .content-wrapper .item .title p{
			font-size: 14px;
		}
		
		.about-us-shareholder .content-wrapper .item .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
		.about-us-shareholder .content-wrapper .item .explain{
			margin-top: 0.885% !important;
		}
		
		.about-us-shareholder .content-wrapper .images-wrapper{
			display: none;
		}
		
/* 团队管理 */
	/* 幻灯片 */

	/* 团队管理-团队员工 */
		.team-personnel{
			padding: 5.883% 0%;
		}
		
		.team-personnel .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.team-personnel .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.team-personnel .content-wrapper{
			margin-top: 3.922%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.team-personnel .content-wrapper .item{
			border-radius: 5px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .name{
			font-size: 19px;
		}
		
		.team-personnel .content-wrapper .item .content .name-wrapper .position{
			font-size: 12px;
		}
		
		.team-personnel .content-wrapper .item .content .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
	/* 团队管理-团队优势 */
		.team-advantage{
			padding: 5.883% 0%;
		}
		
		.team-advantage .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.team-advantage .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.team-advantage .content-wrapper{
			display: grid;
			grid-gap: 15px;
			margin-top: 3.922%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.team-advantage .content-wrapper .images{
			display: none;
		}
		
		.team-advantage .content-wrapper .item{
			width: 100% !important;
			position: static !important;
		}
		
		.team-advantage .content-wrapper .item.right-wrapper{
			text-align: left;
		}
		
		.team-advantage .content-wrapper .item.right-wrapper .explain{
			padding-left: 10px;
			margin-top: ;
		}
		
		.team-advantage .content-wrapper .item .title .chinese{
			font-size:  16px;
		}
		
		.team-advantage .content-wrapper .item .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
/* 投资方向 */
	/* 幻灯片 */
	
	/* 投资方向-地产基金 */
		.direction-real-estate{
			padding: 5.883% 0%;
		}
		
		.direction-real-estate .content-wrapper{
			width: 73.569%;
			margin: 0 auto;
		}
		
		.direction-real-estate .content-wrapper .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.direction-real-estate .content-wrapper .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.direction-real-estate .content-wrapper .content{
			display: block;
			margin-top: 3.922%;
		}
		
		.direction-real-estate .content-wrapper .content .text{
			width: 100%;
		}
		
		.direction-real-estate .content-wrapper .content .text .item{
			margin-bottom: 3.922%;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .title{
			font-size: 18px;
		}
		
		.direction-real-estate .content-wrapper .content .text .item .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
		.direction-real-estate .content-wrapper .content .images{
			width: 100%;
			margin-top: 3.922%;
		}
		
	/* 投资方向-数字文化产业基金 */
		.direction-digital{
			padding: 5.883% 0%;
		}
		
		.direction-digital .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.direction-digital .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.direction-digital .content-wrapper{
			margin-top: 3.922%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.direction-digital .content-wrapper .item .content .text .title .chinese{
			font-size: 16px;
		}
		
		.direction-digital .content-wrapper .item .content .text .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
	/* 投资方向-科技产业基金 */
		.direction-technology{
			padding: 5.883% 0%;
		}
		
		.direction-technology .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.direction-technology .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.direction-technology .head-wrapper .title .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
		.direction-technology .content-wrapper{
			margin-top: 3.922%;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.direction-technology .content-wrapper .item .upper{
			font-size: 16px;
		}
		
		.direction-technology .content-wrapper .item .below .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
		.direction-technology .content-wrapper .item .below .button a{
			width: 28.762%;
		}
		
	/* 投资方向-成功案例 */
		.direction-cases{
			padding: 5.883% 0%;
		}
		
		.direction-cases .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.direction-cases .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.direction-cases .content-wrapper{
			margin-top: 3.922%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide{
			width: 100%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .number{
			font-size: 35px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .name{
			font-size: 16px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .explain{
			font-size: 12px;
			line-height: 18px;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .button a{
			width: 52.965%;
		}
		
		/* 切换按钮-处理 */
		.direction-cases .content-wrapper .banner-wrapper .swiper-button{
			display: flex;
			line-height: 1;
			margin: 0% auto;
			width:  105.310%;
			padding: 0.736% 0%;
			align-items: center;
			justify-content: space-between;
			position: absolute;
			top: 50%;
			left: -2.655%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-prev,
		.direction-cases .content-wrapper .banner-wrapper .swiper-button-next{
			width: 5.043%;
			height: 5.043%;
		}
		
		/* 选中 */
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active{
			width: 100% !important;
		}
		
/* 投资管理 */
	/* 幻灯片 */

	/* 投资管理-运营模式 */
		.manage-operating-model{
			padding: 5.883% 0%;
		}
		
		.manage-operating-model .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.manage-operating-model .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.manage-operating-model .head-wrapper .title .explain{
			margin-top: 2.615%;
		}
		
		.manage-operating-model .head-wrapper .title .explain p{
			font-size: 12px;
			line-height: 18px;
		}
		
		.manage-operating-model .content-wrapper{
			margin-top: 3.922%;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.manage-operating-model .content-wrapper .item .images.mobile-display{
			display: block;
		}
		
		.manage-operating-model .content-wrapper .item .images.computer-display{
			display: none;
		}
		
		.manage-operating-model .content-wrapper .item.left .images{
			margin-bottom: 3.922%;
		}
		
		.manage-operating-model .content-wrapper .item.left .content{
			width: 100%;
		}
		
		.manage-operating-model .content-wrapper .item.right .images{
			margin-top: 0%;
			margin-bottom: 3.922%;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .english{
			font-size: 12px;
		}
		
		.manage-operating-model .content-wrapper .item .content .title .chinese{
			font-size: 18px;
			margin-top: 0.885%;
		}
		
		.manage-operating-model .content-wrapper .item .content .explain{
			font-size: 16px;
			line-height: 26px;
			margin-top: 3.922%;
		}
		
	/* 投资管理-风控管理 */
		.manage-risk-control{
			padding: 5.883% 0%;
		}
		
		.manage-risk-control .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.manage-risk-control .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.manage-risk-control .head-wrapper .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 3.922%;
		}
		
		.manage-risk-control .content-wrapper{
			display: grid;
			grid-gap: 15px;
			margin-top: 3.922%;
			grid-template-columns: repeat(2, 1fr);
		}
		
		.manage-risk-control .content-wrapper .images{
			display: none;
		}
		
		.manage-risk-control .content-wrapper .item{
			width: 100%;
			position: static !important;
		}
		
		.manage-risk-control .content-wrapper .item .title{
			justify-content: flex-start;
		}
		
		.manage-risk-control .content-wrapper .item .title p.text{
			font-size: 12px;
			margin-right: 0%;
			margin-left: 3.664%;
		}
		
		.manage-risk-control .content-wrapper .item .title p.number{
			font-size: 32px;
		}
		
		.manage-risk-control .content-wrapper .item .title p.mobile-display{
			display: block;
		}
		
		.manage-risk-control .content-wrapper .item .title p.computer-display{
			display: none;
		}
		
		.manage-risk-control .content-wrapper .item .explain{
			font-size: 12px;
			text-align: left;
			line-height: 18px;
		}
		
	/* 投资管理-原则 */
		.manage-principle{
			padding: 5.883% 0%;
		}
		
		.manage-principle .content-wrapper{
			width: 73.569%;
			margin: 0 auto;
			display: block;
		}
		
		.manage-principle .content-wrapper .right{
			width: 100%;
		}
		
		.manage-principle .content-wrapper .right .title .english{
			font-size: 12px;
		}
		
		.manage-principle .content-wrapper .right .title .chinese{
			font-size: 18px;
		}
		
		.manage-principle .content-wrapper .right .title .explain{
			margin-top: 2.615%;
		}
		
		.manage-principle .content-wrapper .right .title .explain p{
			font-size: 12px;
			line-height: 18px;
		}
		
		.manage-principle .content-wrapper .right .content{
			grid-gap: 10px;
			margin-top: 3.922%;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:first-child{
			font-size: 16px;
		}
		
		.manage-principle .content-wrapper .right .content .item .explain p:last-child{
			font-size: 12px;
			margin-top: 4.630%;
		}
		
		.manage-principle .content-wrapper .images{
			display: none;
		}
		
/* 新闻中心 */
	/* 幻灯片 */
		
	/* 新闻中心-内容 */
		.news-content{
			padding: 5.883% 0%;
		}
		
		.news-content .head-wrapper{
			padding: 0% 0% 3.922%;
		}
		
		.news-content .head-wrapper .tab{
			grid-template-columns: repeat(4, 1fr);
		}
		
		.news-content .head-wrapper .tab .tab-item a{
			font-size: 12px;
			line-height: 28px;
			border-radius: 15px;
		}
		
		.news-content .content-wrapper .item{
			display: block;
			padding: 3.922% 0%;
		}
		
		.news-content .content-wrapper .item .images{
			width: 100%;
		}
		
		.news-content .content-wrapper .item .content{
			width: 90%;
			margin: 3.922% auto 0%;
		}
		
		.news-content .content-wrapper .item .content .title p{
			font-size: 14px;
		}
		
		.news-content .content-wrapper .item .content .explain{
			font-size: 12px;
			line-height: 18px;
			margin-top: 2.905%;
		}
		
		.news-content .content-wrapper .item .content .button{
			margin-top: 4.358%;
		}
		
		.news-content .content-wrapper .item .content .button a{
			width: 25.566%;
		}
		
		.news-content .content-wrapper .on-data{
			font-size: 12px;
			line-height: 50px;
		}
		
		/* 分页 */
		.news-content .pagination .nav-links .page-numbers{
			width: 30px;
			font-size: 12px;
			line-height: 25px;
			margin: 0% 0.443%;
		}
		
		.news-content .pagination .nav-links .page-numbers.prev,
		.news-content .pagination .nav-links .page-numbers.next{
			width: 70px;
			margin: 0% 0.885%;
		}
		
/* 新闻详情 */
	/* 幻灯片 */

	/* 新闻详情-内容 */
		.news-details-content{
			padding: 5.883% 0%;
		}
		
		.news-details-content .crumb{
			font-size: 12px;
		}
		
		.news-details-content .crumb .icon span{
			font-size: 14px;
		}
		
		.news-details-content .content-wrapper .title{
			font-size: 18px;
			padding: 2.615% 0%;
		}
		
		.news-details-content .content-wrapper .content{
			font-size: 12px;
			line-height: 22px;
			padding: 2.615% 0% 3.922%;
		}
		
		.news-details-content .chapter-wrapper{
			margin-top: 2.615%;
			grid-template-columns: repeat(1, 1fr);
		}
		
		.news-details-content .chapter-wrapper .item{
			width: 100%;
			font-size: 12px;
			line-height: 28px;
			border-width: 0px;
			justify-content: flex-start;
		}
		
		/* 当前悬停项 */
		.news-details-content .chapter-wrapper .item.current-hover-item{
			border-width: 0px;
		}
		
/* 合作伙伴 */
	/* 幻灯片 */

	/* 合作伙伴-内容 */
		.partner-content{
			padding: 5.883% 0%;
		}
		
		.partner-content .head-wrapper .title .english{
			font-size: 12px;
		}
		
		.partner-content .head-wrapper .title .chinese{
			font-size: 18px;
		}
		
		.partner-content .swiper-banner-wrapper{
			padding: 5.229% 0%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner{
			width: 100%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide{
			display: block;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .images{
			width: 100%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content{
			width: 100%;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .title{
			font-size: 18px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-banner .swiper-slide .content .explain{
			width: 100%;
			font-size: 12px;
			line-height: 18px;
		}
		
		.partner-content .swiper-banner-wrapper .swiper-button{
			width: 11.765%;
			position: static;
			margin-left: 88.235%;
			padding-bottom: 2.615%;
		}
		
		.partner-content .images-wrapper{
			margin-top: 5.229%;
			grid-template-columns: repeat(3, 1fr);
		}
		
/* 网站地图 */
	/* 幻灯片 */

	/* 内容 */
		.sitemaps-content-wrapper .head-wrapper .homepage-icon span{
			font-size: 18px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .arrow-icon span{
			font-size: 16px;
		}
		
		.sitemaps-content-wrapper .head-wrapper .text{
			font-size: 12px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .title{
			font-size: 30px;
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu{
			grid-template-columns: repeat(4, 1fr);
		}
		
		.sitemaps-content-wrapper .content-wrapper .content .menu .menu-item a{
			font-size: 16px;
			line-height: 50px;
		}
		
/* 底部 */
	.footer-wrapper .content-wrapper .upper .logo{
		width: 44.248%;
		margin: 0% auto;
	}
	
	.footer-wrapper .content-wrapper .upper .menu-wrapper{
		display: none;
	}
	
	.footer-wrapper .content-wrapper .below .address{
		display: none;
	}
	
	.footer-wrapper .content-wrapper .qr-code{
		width: 17.670%;
		margin: 0% auto;
	}
	
	.footer-wrapper .copyright{
		font-size: 12px;
		line-height: 50px;
	}
	
	.footer-wrapper .copyright-wrapper{
		display: block;
	}
	
	.footer-wrapper .copyright-wrapper span{
		display: none;
	}
	
	.footer-wrapper .copyright-wrapper .filings,
	.footer-wrapper .copyright-wrapper .copyright,
	.footer-wrapper .copyright-wrapper .sitemaps{
		font-size: 12px;
		text-align: center;
	}
}

/* 响应 750 */
@media screen and (max-width: 750px) {
/* css-公用的-start */	
	.w{
		width: 90%;
	}
	
/* css-公用的-end */	

/* 头部 */	
	.header-wrapper .header .logo{
		width: 35.295%;
	}
	
/* 首页 */
	/* 幻灯片 */
		.index-banner .next-page-wrapper .next-page{
			width: 7.059%;
		}
		
	/* 首页-关于我们 */
		.index-about-us .content-wrapper{
			width: 90%;
		}
		
	/* 首页-项目来源 */
	
	/* 首页-投资方向 */
	
	/* 首页-风控管理 */
	
	/* 首页-新闻中心 */
		.index-news .content-wrapper{
			width: 90%;
		}
		
		.index-news .index-news-banner-wrapper .index-news-banner .swiper-slide{
			width: 100%;
		}
		
/* 关于我们 */
	/* 幻灯片 */

	/* 关于我们-内容 */
	
	/* 关于我们-资质/牌照 */

/* 团队管理 */
	/* 幻灯片 */

	/* 团队管理-团队员工 */
		.team-personnel .content-wrapper{
			grid-template-columns: repeat(1, 1fr);
		}
		
	/* 团队管理-团队优势 */	
		.team-advantage .content-wrapper{
			grid-template-columns: repeat(1, 1fr);
		}
		
/* 投资方向 */
	/* 幻灯片 */
	
	/* 投资方向-地产基金 */
		.direction-real-estate .content-wrapper{
			width: 90%;
		}
		
	/* 投资方向-数字文化产业基金 */
		.direction-digital .content-wrapper{
			grid-template-columns: repeat(1, 1fr);
		}
		
	/* 投资方向-科技产业基金 */

	/* 投资方向-成功案例 */
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide .content .text .title .name{
			font-size: 14px;
		}
		
		/* 选中 */
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .title .icon{
			margin-top: 0%;
		}
		
		.direction-cases .content-wrapper .banner-wrapper .cases-banner .swiper-slide.swiper-slide-active .content .text .explain{
			-webkit-line-clamp: 3;
		}
		
/* 投资管理 */
	/* 幻灯片 */
	
	/* 投资管理-运营模式 */
		.manage-operating-model .content-wrapper .item .content .explain{
			font-size: 14px;
			line-height: 22px;
		}
		
	/* 投资管理-风控管理 */

	/* 投资管理-原则 */
		.manage-principle .content-wrapper{
			width: 90%;
		}
		
/* 新闻中心 */
	/* 幻灯片 */
		
	/* 新闻中心-内容 */
		
/* 新闻详情 */
	/* 幻灯片 */

	/* 新闻详情-内容 */

/* 合作伙伴 */
	/* 幻灯片 */

	/* 合作伙伴-内容 */

/* 底部 */

}