.footer{
	position: relative;
	overflow: hidden;
	background: #f4f7fd;
}

.footer::before{
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 8%, rgba(84, 126, 238, 0.12), transparent 28%),
		radial-gradient(circle at 88% 22%, rgba(72, 116, 230, 0.10), transparent 24%),
		linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 100%);
	pointer-events: none;
}

.contact{
	position: relative;
	color: #86AAF8;
	background-image: linear-gradient(180deg, rgba(20, 48, 114, 0.15), rgba(20, 48, 114, 0.05)), url("../images/general/footer_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}

.contact_img{
	background-image: url("../images/general/bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 320px;
}

.contact_img>img{
	width: 100%;
	min-height: 700px;
	object-fit: cover;
	display: block;
	opacity: 0.92;
}

.contact_text{
	width: min(90%, 1640px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	gap: 32px;
	justify-content: space-between;
	align-items: stretch;
	padding: 30px 30px 26px;
	border-radius: 34px;
	background: rgba(19, 43, 80, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 32px 70px rgba(8, 24, 60, 0.22);
	backdrop-filter: blur(10px);
}

.contact_text_left{
	flex: 1 1 60%;
	padding: 26px 12px 18px 8px;
	color: #eef4ff;
}

.contact_left_tip{
	color: rgba(255,255,255,0.88);
	font-size: 20px;
	letter-spacing: 0.18em;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.contact_left_title{
	font-size: clamp(36px, 3.4vw, 52px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-shadow: 0 10px 24px rgba(6, 18, 42, 0.25);
}

.contact_left_title + .contact_left_title{
	margin-top: 8px;
}

.contact_left_title>span{
	color: #ffffff;
}

.contact_left_subtitle{
	width: min(100%, 760px);
	font-size: 22px;
	line-height: 36px;
	margin-top: 20px;
	color: rgba(233, 240, 255, 0.88);
}

.contact_text_right{
	flex: 0 1 34%;
	margin-top: 6px;
	padding: 22px 20px 16px;
	border-radius: 28px;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.form_panel_title{
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.04em;
}

.form_panel_subtitle{
	margin-top: 8px;
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 24px;
	color: rgba(230, 239, 255, 0.82);
}

.contact_text_right input {
	display: block;
	border: 1px solid rgba(255,255,255,0.10);
	outline: none;
	width: 100%;
	box-sizing: border-box;
	font-size: 17px;
	color: #eaf1ff;
	font-family: "Noto Sans Han", "PingFang SC", "Microsoft YaHei", sans-serif;
	background-color: rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 14px 16px 14px 50px;
	margin-left: 0;
	margin-bottom: 12px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.selectbox{
	position: relative;
	margin-bottom: 12px;
	border-radius: 16px;
}

.selectbox::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	width: 10px;
	height: 10px;
	border-right: 2px solid rgba(233, 241, 255, 0.82);
	border-bottom: 2px solid rgba(233, 241, 255, 0.82);
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.selectbox select{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,0.10);
	outline: none;
	background-color: transparent;
	border-radius: 16px;
	padding: 14px 42px 14px 50px;
	font-size: 17px;
	line-height: 24px;
	color: #ffffff;
	font-family: "Noto Sans Han", "PingFang SC", "Microsoft YaHei", sans-serif;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
	cursor: pointer;
}

.selectbox select:focus{
	border-color: rgba(122, 171, 255, 0.72);
	box-shadow: 0 0 0 3px rgba(65, 118, 236, 0.18);
	background-color: rgba(255,255,255,0.06);
}

.selectbox select option{
	color: #16376a;
	background: rgba(255,255,255,0.98);
}

.contact_text_right input:focus,
.textareabox textarea:focus{
	border-color: rgba(122, 171, 255, 0.72);
	box-shadow: 0 0 0 3px rgba(65, 118, 236, 0.18);
	background-color: rgba(255,255,255,0.12);
}

.tip01{
	background: url("../images/general/footer_icon_name.png") no-repeat;
	background-position: 20px center;
	background-size: 24px 24px;
}

.tip02{
	background: url("../images/general/footer_icon_company.png") no-repeat;
	background-position: 20px center;
	background-size: 24px 24px;
}

.tip03{
	background: url("../images/general/footer_icon_phone.png") no-repeat;
	background-position: 20px center;
	background-size: 24px 24px;
}

.tip04{
	background: rgba(255,255,255,0.02) url("../images/general/footer_icon_company.png") no-repeat;
	background-position: 20px center;
	background-size: 24px 24px;
	border-radius: 16px;
}

.textareabox textarea {
	border: 1px solid rgba(255,255,255,0.10);
	outline: none;
	resize: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-radius: 18px;
	font-size: 17px;
	line-height: 30px;
	color: #eaf1ff;
	background: rgba(255,255,255,0.08);
	font-family: "Noto Sans Han", "PingFang SC", "Microsoft YaHei", sans-serif;
	-webkit-text-size-adjust: none;
	height: 138px;
	padding: 14px 16px 14px 50px;
	box-sizing: border-box;
}

.tip{
	background: url("../images/general/footer_icon_message.png") no-repeat;
	background-position: 20px 16px;
	background-size: 24px 24px;
}

.submit_box {
	display: flex;
	justify-content: flex-end;
	margin-top: 18px;
}

#form_but{
	min-width: 160px;
	height: 50px;
	padding: 0 22px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	background: linear-gradient(135deg, #ffffff 0%, #dce7ff 100%);
	color: #173a77;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	box-shadow: 0 14px 26px rgba(8, 20, 48, 0.18);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

#form_but:hover{
	transform: translateY(-2px);
	background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
	box-shadow: 0 18px 32px rgba(8, 20, 48, 0.24);
}

#form_but:active{
	transform: translateY(0);
	box-shadow: 0 10px 18px rgba(8, 20, 48, 0.16);
}

.fter{
	width: min(90%, 1640px);
	margin: 0 auto;
	padding: 34px 0 56px;
}

.address{
	display: flex;
	align-items: stretch;
	gap: 20px;
	padding: 28px 28px 24px;
	border-radius: 32px;
	background: rgba(255,255,255,0.82);
	backdrop-filter: blur(8px);
	box-shadow: 0 18px 42px rgba(16, 40, 84, 0.08);
	border: 1px solid rgba(77, 109, 176, 0.10);
}

.address01{
	width: 48%;
}

.address02{
	width: 23%;
}

.codebox{
	width: 29%;
}

.address_content_title{
	font-size: 18px;
	font-weight: bold;
	color: #13315a;
	margin-bottom: 12px;
	margin-top: 0;
	line-height: 24px;
	letter-spacing: .04em;
}

.address_content_subtitle{
	font-size: 16px;
	line-height: 28px;
	margin-top: 8px;
	color: #51617f;
}

.codebox{
	position: relative;
	display: flex;
	justify-content: flex-end;
	padding-top: 0;
}

.code_card{
	position: relative;
	width: 100%;
	max-width: 290px;
	margin-left: auto;
	padding: 20px 20px 18px;
	border-radius: 24px;
	background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
	box-shadow: 0 18px 40px rgba(38, 85, 209, 0.14);
	border: 1px solid rgba(77, 125, 229, 0.16);
	overflow: hidden;
}

.code_card::before{
	content: "";
	position: absolute;
	top: -56px;
	right: -40px;
	width: 126px;
	height: 126px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(78, 128, 241, 0.22) 0%, rgba(78, 128, 241, 0) 72%);
}

.code_card::after{
	content: "";
	position: absolute;
	left: 20px;
	top: 20px;
	width: 38px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #2d68df 0%, #78a5ff 100%);
}

.code_title{
	position: relative;
	z-index: 1;
	margin-top: 12px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	color: #16376a;
}

.code_desc{
	position: relative;
	z-index: 1;
	margin-top: 8px;
	font-size: 12px;
	line-height: 20px;
	color: #5e7398;
}

.code_qr_wrap{
	position: relative;
	z-index: 1;
	width: 132px;
	height: 132px;
	margin: 16px auto 0;
	padding: 10px;
	border-radius: 18px;
	background: #ffffff;
	box-shadow:
		0 12px 24px rgba(33, 66, 140, 0.08),
		inset 0 0 0 1px rgba(92, 129, 217, 0.12);
}

.code_qr{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.filing{
	width: 100%;
	background: linear-gradient(90deg, #244fd0 0%, #2f6ee7 100%);
	font-size: 12px;
	color: #E1EAFD;
	line-height: 38px;
	text-align: center;
	letter-spacing: .04em;
	position: relative;
	z-index: 1;
}

.filing a{
	color: #E1EAFD;
}

@media (max-width: 1280px){
	.contact_text{
		flex-direction: column;
		top: 48%;
	}

	.contact_text_left,
	.contact_text_right{
		flex: 1 1 auto;
	}

	.form_panel_subtitle{
		margin-bottom: 16px;
	}

	.address{
		flex-wrap: wrap;
	}

	.address01,
	.address02,
	.codebox{
		width: calc(50% - 14px);
	}

	.code_card{
		max-width: none;
	}
}

@media (max-width: 860px){
	.contact_img>img{
		min-height: 980px;
	}

	.contact_text{
		width: 92%;
		padding: 24px 20px 22px;
	}

	.contact_left_title{
		font-size: 32px;
	}

	.contact_left_subtitle{
		font-size: 18px;
		line-height: 30px;
	}

	.contact_text_right{
		padding: 18px 16px 14px;
	}

	.form_panel_title{
		font-size: 20px;
	}

	.form_panel_subtitle{
		font-size: 13px;
		line-height: 22px;
	}

	.address01,
	.address02,
	.codebox{
		width: 100%;
	}

	.address{
		padding: 24px 20px;
	}

	.code_card{
		max-width: 280px;
	}
}

/* 动画 */
@keyframes animation-down {
    from {
        opacity: 0;
        transition: all 1s ease 0s, opacity 1.5s ease 0s;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transition: all 1s ease 0s, opacity 1.5s ease 0s;
    }
}

.my-an-down {
    animation: animation-down 2s 1;
}
