:root {
	--view-width: 63%;
	--font-0: 40px;
	--font-1: 32px;
	--font-2: 28px;
	--font-3: 26px;
	--font-4: 24px;
	--font-5: 20px;
	--font-6: 18px;
	--font-7: 16px;
	--font-8: 14px;
	--font-9: 12px;
}

@media (max-width: 1440px) {
	:root {
		--view-width: 80%;
		--font-0: 38px;
		--font-1: 30px;
		--font-2: 26px;
		--font-3: 24px;
		--font-4: 22px;
		--font-5: 18px;
		--font-6: 16px;
		--font-7: 14px;
		--font-8: 12px;
		--font-9: 12px;
	}
}

@media (max-width: 1280px) {
	:root {
		--view-width: 84%;
		--font-0: 36px;
		--font-1: 28px;
		--font-2: 24px;
		--font-3: 22px;
		--font-4: 20px;
		--font-5: 18px;
		--font-6: 14px;
		--font-7: 12px;
		--font-8: 12px;
		--font-9: 12px;
	}
}

@media (max-width: 1024px) {
	:root {
		--view-width: 92%;

	}
}

@media (max-width: 768px) {
	:root {
		--view-width: 98%;
	}
}

/* 动画 */
@keyframes scaleInOut {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}


body {
	font-family: "Microsoft YaHei", sans-serif;
	margin: 0;
	padding: 0;
	color: #3D3D3D;
	overflow-x: hidden;
	user-select: none;
}


.topbanner img,
.banner img {
	width: 100%;
	height: auto;
	display: block;
}

/* 共同样式*/
.section_title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--font-0, 40px);
}

.section_title_yellow {
	color: #FFFFFF;
	background: linear-gradient(0deg, #F9D486 0%, #FAF8CB 38.5986328125%, #F9DDA4 77.001953125%, #FAEDB6 98.974609375%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section_btn {
	width: 327px;
	height: 49px;
	box-sizing: border-box;
	text-align: center;
	line-height: 49px;
	color: #FAF8CB;
	font-size: var(--font-5, 20px);
	background: linear-gradient(0deg, #000000, #6A6A6A);
	box-shadow: inset 0px 0px 6px 0px rgba(255, 255, 255, 1);
	border-radius: 24px;
	transition: all 0.5s;
	cursor: pointer;
}

.section_btn:hover {
	box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 1);
}

.tips {
	height: 130px;
	line-height: 130px;
	text-align: center;
	font-size: var(--font-6, 18px);
}

/* 共同样式*/
.section1,
.section2,
.section3,
.section4,
.section5,
.section6,
.section7 {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	overflow: hidden;
}

/* section1 政策分析*/
.section1 {
	padding-top: 88px;
	padding-bottom: 88px;
	background: #ffffff;
}

.section1 .policy {
	width: var(--view-width, 63%);
	min-height: 420px;
	margin: 50px 0px;
	box-sizing: border-box;
	position: relative;
}

.policy_img {
	width: 390px;
	box-sizing: border-box;
	overflow: hidden;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
}

.policy_img img {
	width: 100%;
	height: 100%;
	transition: all 0.5s;
}

.policy_img:hover img {
	transform: scale(1.1);
}

.policy_list {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.policy_list_item .title {
	width: 100%;
	height: 65px;
	padding-left: 65px;
	box-sizing: border-box;
	line-height: 65px;
	font-size: var(--font-3, 26px);
	color: #ffffff;
	background: linear-gradient(to right, #343434 0%, #ffffff 70%);
}

.policy_list_item .detail {
	width: 100%;
	padding-left: 16px;
	box-sizing: border-box;
	position: relative;
}

.policy_list_item .detail_triangle {
	width: 0;
	height: 0;
	border: 12px solid;
	border-color: transparent transparent transparent #343434;
	transform: rotate(-45deg);
	position: absolute;
	top: -12px;
	left: 5px;
}

.policy_list_item .detail_box {
	width: 100%;
	padding-left: 44px;
	padding-top: 20px;
	padding-bottom: 20px;
	background: linear-gradient(to right, #EFEFEF 50%, #ffffff 80%);
}

.policy_list_item .detail_box_desc {
	width: 50%;
	min-width: 600px;
	box-sizing: border-box;
	font-size: var(--font-5, 20px);
	line-height: 32px;
}

.policy_list_item .detail_box_desc span {
	font-weight: 600;
}

.policy_list .policy_list_item:nth-child(2) .title {
	background: linear-gradient(to right, #7E4E1E 0%, #F3C78A 42%, #ffffff 70%);
}

.policy_list .policy_list_item:nth-child(2) .detail_box {
	background: linear-gradient(to right, #FFF5E6 50%, #ffffff 80%);
}

.policy_list_item:hover {
	transition: all 0.5s;
	transform: scale(1.08);
}

/* section2  申请要求*/
.section2 {
	min-height: 720px;
	padding-top: 50px;
	background-color: #5D5D5D;
	background-image: url("../../assets/images/bg.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.require {
	width: var(--view-width, 63%);
	padding-top: 50px;
	margin-bottom: 140px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	font-size: var(--font-2, 28px);
	color: rgba(255, 255, 255, 0.85);
}

.require_img {
	width: 506px;
	box-sizing: border-box;
	overflow: hidden;
	margin-right: 90px;
}

.require_img img {
	width: 100%;
	height: 100%;
	transition: all 0.5s;
}

.require_img:hover img {
	transform: scale(1.1);
}

.require_list {
	flex: 1;
}

.require_list_item {
	display: flex;
	align-items: center;
	letter-spacing: 2px;
	margin: 20px 0px;
}

.require_list_item .icon {
	width: 37px;
	height: 36px;
	margin-right: 12px;
}

.require_list_item:hover {
	animation: scaleInOut 1s ease 1;
}

/* section3  项目优势*/
.section3 {
	min-height: 720px;
	padding-top: 50px;
	padding-bottom: 50px;
	background-image: url("../../assets/images/bg2.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.adva {
	width: var(--view-width, 63%);
	min-height: 490px;
	margin: 50px 0px;
	padding: 36px 40px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(233, 195, 124, 0.5), rgba(255, 232, 182, 0.5), rgba(233, 195, 124, 0.5));
	border-radius: 0px 80px 0px 80px;
}

.adva_img {
	width: 460px;
	height: 412px;
	min-width:460px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 0px 70px 0px 70px;
	margin-right: 60px;
}

.adva_img img {
	width: 460px;
	height: 412px;
	transition: all 0.5s;
}

.adva_img:hover img {
	transform: scale(1.1);
}

.advae_list_item {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	font-size: var(--font-2, 28px);
	line-height: 48px;
}

.advae_list_item .icon {
	width: 42px;
	height: 42px;
	margin-top: 4px;
	margin-right: 12px;
}

.advae_list_item:hover {
	animation: scaleInOut 1s ease 1;
}

/* section4 景鸿集团 值得信赖  */
.section4 {
	padding-top: 50px;
	padding-bottom: 50px;
	background: #ffffff;
}

.trust {
	width: var(--view-width, 63%);
	padding: 50px 0px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.trust_item {
	width: 25%;
	padding: 20px 0px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 90%, rgba(231, 235, 242, 0.25) 100%);
	border-right: 1px solid rgba(231, 235, 242, 0.5);
	transition: transform 0.5s ease;
}

.trust_item_icon {
	width: 120px;
	height: 120px;
}

.trust_item_desc {
	font-size: var(--font-4, 24px);
}
.trust_item:hover{
	transform: translateY(-20px);
}

/* section5 美国投资移民，定制专属方案 */
.section5 {
	width: 100%;
	height: 366px;
	padding-top: 96px;
	padding-bottom: 90px;
	box-sizing: border-box;
	background-image: url("../../assets/images/bg3.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.formwrap_title {
	padding-bottom: 96px;
	text-align: center;
	font-weight: bold;
	font-size: 36px;
	color: #000000;
	background: linear-gradient(0deg, #F9D486 0%, #FAF8CB 38.5986328125%, #F9DDA4 77.001953125%, #FAEDB6 98.974609375%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* 兼容处理 */
@media (max-width: 1440px) {
	.section3 .adva_img{
		width:414px;
		/* height:370px; */
		margin-right: 40px;
	}
}
@media (max-width: 1280px) {
	.section3 .adva{
		padding:18px 20px;
	}
	.section3 .adva_img{
		width:276px;
		margin-right: 20px;
	}

}

