/* ============================================
   Banner栏 - 子页面
   高度400px，背景图BG03.png
   ============================================ */
.bannerBgBox {
	width: 100%;
	min-height: 400px;
	position: relative;
	overflow: hidden;
	background-image: url('../img/BG03.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.bannerBox {
	width: 100%;
	min-height: 400px;
	background-color: rgba(1,42,60,0.85);
	position: relative;
}

.bannerTxtBox {
	width: 1100px;
	min-height: 400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}

.bannerTxtBox * {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}

/* ============================================
   Banner - 平板 (max-width: 1199px)
   ============================================ */
@media (max-width: 1199px) {
	.bannerBgBox { min-height: 400px; }
	.bannerBox { min-height: 400px; }
	.bannerTxtBox { width: 100%; padding: 0 32px; min-height: 400px; }
}

/* ============================================
   Banner - 手机端 (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
	.bannerBgBox { height: auto; }
	.bannerBox { height: auto; }
	.bannerTxtBox {
		width: 100%;
		padding: 50px 24px;
		min-height: unset;
		height: auto;
		align-items: center;
		text-align: center;
	}
	.bannerTxtBox * { text-align: center; margin-left: auto; margin-right: auto; }
	.bannerBtns { gap: 12px; flex-wrap: wrap; justify-content: center; margin-left: auto; margin-right: auto; }
	.bannerBtn1, .bannerBtn2 { font-size: 13px; padding: 10px 18px; }
}

/* ============================================
   Banner - 小手机 (max-width: 430px)
   ============================================ */
@media (max-width: 430px) {
	.bannerTxtBox { padding: 40px 20px; }
	.bannerBtns { flex-direction: column; align-items: center; gap: 10px; }
	.bannerBtn1, .bannerBtn2 { width: auto; justify-content: center; font-size: 14px; }
}
/* Banner 文字和按钮共用样式 */
.bannerTitle {
	font-size: 45px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.0;
	margin-bottom: 0px;
	letter-spacing: -1.5px;
	animation: bannerFadeUp 0.7s ease 0.1s both;
}
.bannerTitleSub {
	font-size: 45px;
	font-weight: 800;
	color: rgb(3,149,211);
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -1px;
	animation: bannerFadeUp 0.7s ease 0.3s both;
}
.bannerSub {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.8;
	margin-bottom: 32px;
	max-width: 500px;
	animation: bannerFadeUp 0.7s ease 0.5s both;
}
.bannerBtns {
	display: flex;
	align-items: center;
	gap: 16px;
	animation: bannerFadeUp 0.7s ease 0.7s both;
}
.bannerBtn1 {
	display: inline-flex;
	align-items: center;
	background: rgb(3,149,211);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease;
}
.bannerBtn1:hover { background: rgb(2,120,170); color: #ffffff; }
.bannerBtn2 {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.30);
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease;
	max-width: 100%;
	box-sizing: border-box;
}
.bannerBtn2:hover { background: rgba(255,255,255,0.20); color: #ffffff; }
@keyframes bannerFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   子页面 Banner 移动端字体修正
   ============================================ */
@media (max-width: 768px) {
  .bannerTitle   { font-size: 30px; letter-spacing: -0.5px; }
  .bannerTitleSub{ font-size: 30px; letter-spacing: -0.5px; margin-bottom: 14px; }
  .bannerSub     { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
}
@media (max-width: 430px) {
  .bannerTitle   { font-size: 24px; }
  .bannerTitleSub{ font-size: 24px; }
  .bannerSub     { font-size: 12px; }
}


/* ============================================
   Contact页面
   ============================================ */
.contactSection {
	max-width: 1100px;
	margin: 0 auto;
	padding: 70px 24px 80px;
}

.contactHeader {
	margin-bottom: 48px;
	text-align: center;
}

.contactTitle {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 14px;
}

.contactSubTitle {
	font-size: 15px;
	color: #666666;
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

/* 左右布局 */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #ffffff;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07);
	border-radius: 12px;
	overflow: hidden;
}

/* 左侧表单 */
.form-col {
	padding: 44px;
	border-right: 1px solid #ececec;
}

.col-title {
	font-size: 16px;
	font-weight: 600;
	color: #222;
	margin-bottom: 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid #ececec;
}

.field { margin-bottom: 18px; }

.field label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 7px;
}

.field label .req { color: #c00; margin-left: 2px; }

.field input,
.field textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 14px;
	font-family: inherit;
	color: #333;
	background: #fafafa;
	outline: none;
	transition: border-color 0.2s, background 0.2s;
	box-sizing: border-box;
}

.field input:focus,
.field textarea:focus {
	border-color: rgb(3,149,211);
	background: #fff;
}

.field input.error,
.field textarea.error { border-color: #c00; }

.field textarea {
	resize: vertical;
	min-height: 110px;
	line-height: 1.7;
}

::placeholder { color: #bbb; font-size: 13px; }

.submit-row {
	margin-top: 24px;
	display: flex;
	align-items: center;
}

.btn-submit {
	background: rgb(3,149,211);
	color: #fff;
	border: none;
	padding: 12px 36px;
	font-size: 14px;
	font-family: inherit;
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s;
}

.btn-submit:hover { background: rgb(2,120,170); }

.hint-msg {
	font-size: 12px;
	color: #999;
	margin-top: 10px;
	line-height: 1.6;
}

/* 右侧信息 */
.info-col {
	padding: 44px;
	background: #fff;
}

.info-block {
	margin-bottom: 32px;
}

.info-block:last-child { margin-bottom: 0; }

.info-block-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #333;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ececec;
}

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table tr td {
	font-size: 14px;
	color: #555;
	padding: 7px 0;
	line-height: 1.5;
	border-bottom: 1px solid #f5f5f5;
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr td:first-child { color: #333; font-weight: 500; }
.hours-table tr td:last-child  { color: #777; text-align: right; }

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 14px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f3f3f3;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-icon svg { width: 15px; height: 15px; fill: #555; }

.contact-item-text strong {
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
	margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
	display: block;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	line-height: 1.6;
}

.contact-item-text a:hover { color: rgb(3,149,211); text-decoration: underline; }

/* ============================================
   Contact - 移动端适配
   ============================================ */
@media (max-width: 1199px) {
	.contactSection { padding: 60px 32px 70px; }
}

@media (max-width: 768px) {
	.contactSection { padding: 50px 20px 60px; }
	.contactTitle { font-size: 26px; }
	.contactSubTitle { font-size: 14px; }
	.contact-grid { grid-template-columns: 1fr; border-radius: 10px; }
	.form-col { border-right: none; border-bottom: 1px solid #ececec; padding: 32px 24px; }
	.info-col { padding: 32px 24px; }
}

@media (max-width: 430px) {
	.contactSection { padding: 40px 16px 50px; }
	.contactTitle { font-size: 22px; }
	.form-col, .info-col { padding: 24px 16px; }
	.btn-submit { width: 100%; }
}
