/* 顶栏、banner 见 theme.css */

/* 选项卡 */
.tab{
	width:100%;
	height:80px;
	display:flex;
	justify-content: center;
	align-items: center;
	border-bottom:solid #ddd 1px;
	margin:0 auto;
}
.tab>div{
	width:75%;
	display:flex;
	justify-content: flex-start;
}
.tab>div>div{
	display:flex;
	justify-content: flex;
	align-items: center;
}
.tab>div>div:nth-child(1){
	color:var(--color-primary);
	margin-right:15px;
}
.tab>div>div:nth-child(1):hover{
	cursor: pointer;
	border-bottom:solid var(--color-primary) 1px;
}
.tab>div>div:nth-child(1)>img{
	width:20px;
    margin-right:5px;
}

/* —— 解决方案页 —— */
.page-solutions .about-profile-section--alt {
	background: var(--color-bg-muted, #eef4fb);
}

.page-solutions__featured {
	padding-top: 48px;
}

.page-solutions__lead {
	margin: -24px 0 32px;
	max-width: 720px;
	font-size: 15px;
	line-height: 1.85;
	color: var(--color-text-secondary, #475569);
}

.page-solutions__product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.page-solutions__product-card {
	display: flex;
	flex-direction: column;
	background: var(--color-bg-elevated, #fff);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-solutions__product-card:hover {
	border-color: rgba(22, 119, 255, 0.35);
	box-shadow: var(--shadow-md, 0 8px 24px rgba(15, 39, 68, 0.08));
}

.page-solutions__product-media {
	display: block;
	height: 168px;
	overflow: hidden;
	background: var(--color-bg-muted, #eef4fb);
}

.page-solutions__product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.page-solutions__product-card:hover .page-solutions__product-media img {
	transform: scale(1.04);
}

.page-solutions__product-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 20px 22px;
}

.page-solutions__product-badge {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-primary, #1677ff);
	background: var(--color-primary-softer, rgba(22, 119, 255, 0.1));
	border: 1px solid rgba(22, 119, 255, 0.22);
	border-radius: 999px;
	letter-spacing: 0.04em;
}

.page-solutions__product-name {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text, #0f2744);
}

.page-solutions__product-spec {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-primary, #1677ff);
	letter-spacing: 0.02em;
}

.page-solutions__product-desc {
	margin: 0 0 16px;
	flex: 1;
	font-size: 13px;
	line-height: 1.75;
	color: var(--color-text-secondary, #475569);
}

.page-solutions__product-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary, #1677ff);
	text-decoration: none;
}

.page-solutions__product-link:hover {
	color: var(--color-primary-hover, #0958d9);
}

.page-solutions__more {
	margin: 28px 0 0;
	text-align: center;
}

.page-solutions__more a {
	font-size: 15px;
	font-weight: 600;
	color: var(--color-primary, #1677ff);
	text-decoration: none;
	border-bottom: 1px solid rgba(22, 119, 255, 0.4);
}

.page-solutions__more a:hover {
	color: var(--color-primary-hover, #0958d9);
}

.page-solutions__steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	counter-reset: sol-step;
}

.page-solutions__step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 28px 16px 24px;
	background: var(--color-bg-elevated, #fff);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md, 12px);
	box-shadow: var(--shadow-sm);
}

.page-solutions__step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 14px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(145deg, #1677ff 0%, #0958d9 100%);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(22, 119, 255, 0.35);
}

.page-solutions__step-body h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text, #0f2744);
}

.page-solutions__step-body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: var(--color-text-secondary, #475569);
}

.page-solutions__contact .about-profile-slogan__text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px;
	letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
	.page-solutions__product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-solutions__steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.page-solutions__product-grid,
	.page-solutions__steps {
		grid-template-columns: 1fr;
	}

	.page-solutions__contact .about-profile-slogan__text {
		flex-direction: column;
		gap: 8px;
	}
}

/* —— 服务支持页（复用 about-profile 样式，仅补充布局） —— */
.page-services__commitments {
	padding-top: 48px;
}

.page-services__grid {
	row-gap: 48px;
}

.page-services__grid .about-profile-business__item:nth-child(3n + 1)::before {
	display: none;
}

.page-services__contact .about-profile-slogan__text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px;
	letter-spacing: 0.04em;
}

.page-services__contact-link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(22, 119, 255, 0.45);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.page-services__contact-link:hover {
	color: var(--color-primary-hover, #0958d9);
	border-bottom-color: var(--color-primary-hover, #0958d9);
}

.page-services__contact-tel {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-text-secondary, #475569);
}

@media (max-width: 900px) {
	.page-services__grid .about-profile-business__item:nth-child(3n + 1)::before {
		display: block;
	}

	.page-services__grid .about-profile-business__item:nth-child(2n + 1)::before {
		display: none;
	}
}

@media (max-width: 600px) {
	.page-services__contact .about-profile-slogan__text {
		flex-direction: column;
		text-align: center;
	}

	.page-services__contact-tel {
		font-size: 14px;
		line-height: 1.6;
	}
}

/* 联系我们 - 客户服务中心 */
.contact-csc{
	width:75%;
	margin:40px auto 30px;
	color:#333;
	line-height:1.9;
}
.contact-csc__title{
	font-size:26px;
	text-align:center;
	margin:0 0 32px;
	font-weight:bold;
	color:#333;
}
.contact-csc__grid{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:flex-start;
	gap:40px;
}
.contact-csc__info{
	flex:1;
	min-width:280px;
	display:flex;
	flex-direction:column;
	gap:14px;
}
.contact-csc__item{
	padding:18px 22px;
	background:linear-gradient(90deg, #fff9f2 0%, #fff 55%);
	border-left:4px solid #f7941d;
	border-radius:0 6px 6px 0;
	box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.contact-csc__label{
	display:block;
	font-size:13px;
	font-weight:bold;
	color:#f7941d;
	letter-spacing:0.08em;
	margin-bottom:10px;
}
.contact-csc__value{
	margin:0;
	font-size:17px;
	line-height:1.55;
	color:#222;
	font-weight:600;
}
.contact-csc__value--link a,
.contact-csc__value--tel a{
	font-size:19px;
	font-weight:bold;
	color:#005024;
	text-decoration:none;
	border-bottom:2px solid rgba(0,80,36,.25);
	transition:color .2s, border-color .2s;
}
.contact-csc__value--link a:hover,
.contact-csc__value--tel a:hover{
	color:#007a36;
	border-bottom-color:#007a36;
}
.contact-csc__wechat{
	flex:0 0 auto;
	text-align:center;
	margin:0 auto;
}
.qr-placeholder__label{
	margin-bottom:12px;
	font-size:16px;
	font-weight:bold;
	color:#333;
}
.qr-placeholder{
	width:180px;
	height:180px;
	margin:0 auto;
	border:1px dashed #ccc;
	background:#fafafa;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#999;
	font-size:12px;
	text-align:center;
	padding:12px;
	box-sizing:border-box;
	line-height:1.5;
}
.qr-placeholder code{
	font-size:11px;
	word-break:break-all;
}
/* 表单（留言板模板，不含联系页 .contact-form） */
.server{
	width:100%;
}
.server>form:not(.contact-form){
	width:75%;
	margin:0 auto;
	margin-top:50px;
}
.server>form:not(.contact-form)>div:nth-child(1){
	text-align:center;
	height:50px;
	line-height:50px;
	font-size:30px;
	color:#707070;
	margin-bottom:50px;
}
.server>form:not(.contact-form)>div.layui-form-item{
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.server>form:not(.contact-form)>div.layui-form-item textarea{
	width:99%;
	margin-bottom:20px;
}
.server>form:not(.contact-form)>div.layui-form-item>div.layui-inline{
	width:32.3%;
	position:relative;
	display:flex;
	justify-content: flex-start;
	align-items: center;
}
.server>form:not(.contact-form)>div.layui-form-item>div.layui-inline img{
	position:absolute;
	width:14px;
	left:10px;
}
.server>form:not(.contact-form)>div.layui-form-item>div.layui-inline input{
	text-indent: 28px;
}

/* ==========================================
   联系我们 — 红色主题全新设计
   ========================================== */

/* ---------- Hero 横幅 ---------- */
.contact-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: linear-gradient(135deg, #0c4a8c 0%, #1677ff 35%, #0a3d6e 70%, #0c2647 100%);
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.contact-hero__pattern {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 0% 100%, rgba(22,119,255,.15) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 100% 0%, rgba(22,119,255,.08) 0%, transparent 50%);
}
.contact-hero__body {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 80px 24px 60px;
	max-width: 900px;
	width: 100%;
}
.contact-hero__title {
	font-size: 44px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
	letter-spacing: .02em;
	line-height: 1.2;
}
.contact-hero__sub {
	font-size: 18px;
	color: rgba(255,255,255,.7);
	margin: 0 0 48px;
	line-height: 1.6;
}
.contact-hero__stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}
.contact-hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.contact-hero__num {
	font-size: 36px;
	font-weight: 800;
	color: var(--color-primary, #1677ff);
	line-height: 1.1;
}
.contact-hero__label {
	font-size: 14px;
	color: rgba(255,255,255,.6);
	letter-spacing: .04em;
}
.contact-hero__scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 32px;
	border: 2px solid rgba(255,255,255,.3);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	padding-top: 6px;
	box-sizing: border-box;
}
.contact-hero__scroll-dot {
	display: block;
	width: 4px;
	height: 8px;
	border-radius: 2px;
	background: var(--color-primary, #1677ff);
	animation: contactScroll 1.6s ease-in-out infinite;
}
@keyframes contactScroll {
	0%, 100% { transform: translateY(0); opacity: 1; }
	50% { transform: translateY(8px); opacity: .4; }
}

/* ---------- 快捷联系卡片 ---------- */
.contact-methods {
	width: 100%;
	background: var(--color-surface, #f7f7f8);
	padding: 48px 0;
}
.contact-methods__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1160px;
	width: 92%;
	margin: 0 auto;
	align-items: stretch;
}
.contact-methods__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border-radius: var(--radius-lg, 16px);
	padding: 36px 28px 32px;
	text-align: center;
	border: 1px solid var(--color-border, #ebebeb);
	box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,.06));
	transition: transform .3s var(--ease-out, cubic-bezier(0.33,1,0.68,1)),
		box-shadow .35s var(--ease-standard, cubic-bezier(0.4,0,0.2,1));
}
.contact-methods__card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card-hover, 0 14px 36px rgba(0,0,0,.11));
}
.contact-methods__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--color-primary-softer, rgba(22,119,255,.06));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary, #1677ff);
	transition: background .25s ease, transform .25s ease;
}
.contact-methods__card:hover .contact-methods__icon {
	background: var(--color-primary, #1677ff);
	color: #fff;
	transform: scale(1.06);
}
.contact-methods__icon svg,
.contact-methods__icon .tabler-icon {
	width: 28px;
	height: 28px;
}
.contact-methods__title {
	font-size: 19px;
	font-weight: 700;
	color: var(--color-text, #1a1a1a);
	margin: 0 0 6px;
}
.contact-methods__hint {
	font-size: 13px;
	color: var(--color-text-muted, #888);
	margin: 0 0 16px;
}
.contact-methods__hint--tight {
	margin: 10px 0 4px;
}
.contact-methods__phones {
	width: 100%;
	margin-top: 4px;
}
.contact-methods__link--secondary {
	font-size: 16px;
}
.contact-methods__qr {
	margin-top: auto;
	padding-top: 8px;
}
.contact-methods__link {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary, #1677ff);
	text-decoration: none;
	display: inline-block;
	border-bottom: 2px solid transparent;
	transition: border-color .22s ease;
}
.contact-methods__link:hover {
	border-bottom-color: var(--color-primary, #1677ff);
}
.contact-methods__qr-inner {
	width: 120px;
	height: 120px;
	margin: 0 auto;
	background: #f5f5f5;
	border: 1px dashed var(--color-border, #e8e8e8);
	border-radius: var(--radius-sm, 8px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #999;
	line-height: 1.45;
	padding: 8px;
	box-sizing: border-box;
}

/* ---------- 咨询表单 ---------- */
.contact-form-section {
	width: 100%;
	background: #fff;
	padding: 64px 0 72px;
}
.contact-form-section__inner {
	max-width: 820px;
	width: 92%;
	margin: 0 auto;
}
.contact-form-section__head {
	text-align: center;
	margin-bottom: 44px;
}
.contact-form-section__title {
	font-size: 30px;
	font-weight: 700;
	color: var(--color-text, #1a1a1a);
	margin: 0 0 12px;
	position: relative;
	display: inline-block;
}
.contact-form-section__title::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: var(--color-primary, #1677ff);
	border-radius: 2px;
	margin: 14px auto 0;
}
.contact-form-section__desc {
	font-size: 15px;
	color: var(--color-text-secondary, #555);
	margin: 0;
	line-height: 1.7;
}
.contact-form-section__form {
	background: var(--color-surface, #f7f7f8);
	border-radius: var(--radius-lg, 16px);
	padding: 44px 48px 40px;
}
.contact-form-section__row {
	display: flex;
	gap: 24px;
	margin-bottom: 22px;
}
.contact-form-section__field {
	flex: 1;
	min-width: 0;
}
.contact-form-section__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text, #1a1a1a);
	margin-bottom: 8px;
}
.contact-form-section__required {
	color: var(--color-primary, #1677ff);
}
.contact-form-section__field .layui-input {
	border-radius: var(--radius-sm, 8px);
	border: 1px solid var(--color-border, #e8e8e8);
	height: 44px;
	line-height: 44px;
	transition: border-color var(--duration, .22s) ease, box-shadow var(--duration, .22s) ease;
}
.contact-form-section__field .layui-input:focus {
	border-color: var(--color-primary, #1677ff);
	box-shadow: 0 0 0 3px var(--color-primary-soft, rgba(22,119,255,.12));
}
.contact-form-section__field .layui-form-select .layui-input {
	border-radius: var(--radius-sm, 8px);
}
.contact-form-section__actions {
	margin-top: 32px;
	text-align: center;
}
.contact-form-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 52px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: var(--color-primary, #1677ff);
	border: none;
	border-radius: var(--radius-pill, 999px);
	cursor: pointer;
	letter-spacing: .04em;
	box-shadow: var(--shadow-primary, 0 6px 20px rgba(22,119,255,.28));
	transition: transform .15s ease, box-shadow .22s ease, background .2s ease;
}
.contact-form-section__btn:hover {
	transform: translateY(-2px);
	background: var(--color-primary-hover, #0958d9);
	box-shadow: 0 10px 28px rgba(22,119,255,.36);
}
.contact-form-section__btn:active {
	transform: translateY(0);
	background: var(--color-primary-active, #003eb3);
}
.contact-form-section__note {
	font-size: 12px;
	color: var(--color-text-muted, #888);
	margin: 16px 0 0;
	line-height: 1.5;
}

/* ---------- 公司位置 ---------- */
.contact-location-wrap {
	background: var(--color-surface, #f7f7f8);
	padding: 56px 0 72px;
}
.contact-location-wrap__inner {
	max-width: 1160px;
	width: 92%;
	margin: 0 auto;
}
.contact-location-wrap__head {
	text-align: center;
	margin-bottom: 32px;
}
.contact-location-wrap__title {
	font-size: 30px;
	font-weight: 700;
	color: var(--color-text, #1a1a1a);
	margin: 0 0 10px;
}
.contact-location-wrap__desc {
	font-size: 15px;
	color: var(--color-text-secondary, #555);
	margin: 0;
	line-height: 1.6;
}
.contact-location {
	display: grid;
	grid-template-columns: minmax(300px, 380px) 1fr;
	align-items: stretch;
	border-radius: var(--radius-lg, 16px);
	overflow: hidden;
	min-height: 420px;
	box-shadow: var(--shadow-md, 0 10px 32px rgba(0,0,0,.09));
	border: 1px solid rgba(0,0,0,.06);
}
.contact-location__info {
	padding: 40px 36px;
	background: var(--color-bg-card, #fff);
	color: var(--color-text, #0f2744);
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.contact-location__accent {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary, #1677ff), var(--color-primary-hover, #4096ff));
}
.contact-location__brand {
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border, rgba(15, 76, 129, 0.12));
}
.contact-location__name {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 8px;
	color: var(--color-text, #0f2744);
}
.contact-location__sub {
	font-size: 14px;
	color: var(--color-text-secondary, #475569);
	font-weight: 500;
	margin: 0;
}
.contact-location__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 24px;
}
.contact-location__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.contact-location__item--full {
	grid-column: 1 / -1;
}
.contact-location__item-label {
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--color-text-muted, #94a3b8);
}
.contact-location__item-value {
	font-size: 15px;
	line-height: 1.55;
	color: var(--color-text, #0f2744);
	word-break: break-word;
}
.contact-location__item-value--link {
	color: var(--color-primary, #1677ff);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color .2s ease, border-color .2s ease;
}
.contact-location__item-value--link:hover {
	color: var(--color-primary-hover, #4096ff);
	border-bottom-color: var(--color-primary-hover, #4096ff);
}
.contact-location__map {
	min-height: 420px;
	background: #e8e8e8;
	position: relative;
}
.contact-location__map-inner {
	position: absolute;
	inset: 0;
}
.contact-leaflet-map {
	width: 100%;
	height: 100%;
	min-height: 420px;
	background: #ddd;
	z-index: 1;
}
.contact-location__baidu {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 1100;
	font-size: 13px;
	padding: 10px 18px;
	background: rgba(255,255,255,.96);
	border-radius: var(--radius-pill, 999px);
	color: var(--color-text, #1a1a1a);
	text-decoration: none;
	box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,.06));
	border: 1px solid var(--color-border, #e8e8e8);
	font-weight: 500;
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.contact-location__baidu:hover {
	color: #fff;
	background: var(--color-primary, #1677ff);
	border-color: var(--color-primary, #1677ff);
}

@media (max-width: 1024px) {
	.contact-methods__inner {
		grid-template-columns: 1fr;
		max-width: 480px;
	}
}

/* ---------- 响应式 ---------- */
@media (max-width: 768px) {
	.contact-hero {
		min-height: 320px;
	}
	.contact-hero__body {
		padding: 60px 20px 50px;
	}
	.contact-hero__title {
		font-size: 30px;
	}
	.contact-hero__sub {
		font-size: 16px;
		margin-bottom: 36px;
	}
	.contact-hero__stats {
		gap: 24px;
	}
	.contact-hero__num {
		font-size: 28px;
	}
	.contact-hero__scroll {
		display: none;
	}
	.contact-methods {
		padding: 36px 0;
	}
	.contact-methods__inner {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.contact-methods__card {
		padding: 32px 24px 28px;
	}
	.contact-form-section {
		padding: 44px 0 52px;
	}
	.contact-form-section__title {
		font-size: 24px;
	}
	.contact-form-section__form {
		padding: 28px 20px 32px;
	}
	.contact-form-section__row {
		flex-direction: column;
		gap: 0;
	}
	.contact-form-section__btn {
		width: 100%;
		padding: 0 20px;
	}
	.contact-location-wrap {
		padding: 40px 0 48px;
	}
	.contact-location-wrap__title {
		font-size: 24px;
	}
	.contact-location {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.contact-location__info {
		padding: 32px 24px;
	}
	.contact-location__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.contact-location__item--full {
		grid-column: 1;
	}
	.contact-location__map {
		min-height: 300px;
	}
	.contact-leaflet-map {
		min-height: 300px;
	}
}

.tjan{
   width:99%;
   margin-top:20px;
   background:#005024;
   transform: all .10s ease-out 0s;
   
}
.tjan:hover{
	background:#005928;
}