:root {
	--size-margin-box: 15px;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: inherit;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

a::selection {
	background-color: transparent;
}

ul,
li {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	line-height: 100%;
	background-color: transparent;
	appearance: none;
	border: none;
	cursor: pointer;
}

button::after {
	border: none;
}

.sidebar-image {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

@media screen and (min-width: 750px) {
	.M {
		display: none !important;
	}
}

@media screen and (max-width: 750px) {
	.P {
		/* display: none !important; */
	}



	body {
		overflow-x: hidden;
		background: #f3f3f3;
		min-width: 400px !important;
	}

	.bgWhite {
		background-color: white;
	}

	.site-info {
		background-color: transparent !important;
	}
}

/* @media screen and (min-width: 390px) and (max-width: 430px) {
	body {
		height: 900px;
		overflow-y: auto;
	}

	#index-P {
		transform: scale(0.325);
		overflow: inherit;
	}
}
@media screen and (min-width: 330px) and (max-width: 389px) {
	body {
		height: 800px;
		overflow-y: auto;
	}

	#index-P {
		transform: scale(0.325);
		overflow: inherit;
	}
} */
/* 移动端适配 */
@media (max-width: 1000px) {
	#index-P {
		transform-origin: top left;
		width: 1200px;
		/* 保持PC端原始宽度 */
	}

	#movingBox {
		display: none !important;
	}

	body {
		height: 100%;
		position: relative;
	}

	#index-P {
		position: absolute;
		top: 0;
		left: 0;
	}
}

.twoHang {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
	padding: 2px 15px;
}

.news-link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}


/* 非常小的设备 */
@media (max-width: 500px) {
	.content {
		grid-template-columns: 1fr;
	}
}

.overflow-hidden {
	box-sizing: border-box;
	height: 100vh;
	overflow: hidden;
}

.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 82px;
	background-color: #fff;
}

.header .header-box {
	max-width: 1190px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	box-sizing: border-box;
}

.header .header-box .logo {
	display: block;
	width: 200px;
}

.header .header-box .logo img {
	display: block;
	width: 100%;
}

#index-P .footer {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f8f8f8;
	padding-top: 40px;
	padding-bottom: 20px;
}

#index-P .footer .footer-text {
	color: #666;
	font-size: 16px;
	line-height: 32px;
	margin-left: 10px;
}

#index-P .footer .footer-text:not(:first-child) {
	margin-left: 14px;
}


.item-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 140px;
	height: 40px;
	font-size: 18px;
	color: #fff;
	background-color: #e6322e;
	transition-duration: .1s;
}

.item-btn:hover {
	background-color: #bf1d1d !important;
}

.item-btn i {
	margin-right: 11.25px;
}

@media screen and (max-width: 750px) {

	.header {
		height: 47.5px;
	}

	.header .header-box {
		width: 100%;
		padding: 0 var(--size-margin-box);
	}

	.header .header-box .logo {
		width: 130px;
	}

	.header .header-box .item-btn {
		font-size: 12px;
		width: 92px;
		height: 28px;
		border-radius: 100px;
		background-color: #e90a14;
	}

	.header .header-box .item-btn .icon {
		width: 14px;
		margin-right: 5px;
	}
}

/* 卡片样式 */
.card {
	background: #f5f5f5;
}

/* .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
} */

.card h2 {
	color: #DB3B40;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 12px;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

/* 服务类别样式 */
.service-categories {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}


.category h3 {
	color: #DB3B40;
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.category ul {
	padding-left: 20px;
}

.category li {
	margin-bottom: 5px;
}

/* 优势样式 */
.advantages {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.advantage {
	text-align: center;
	padding: 20px;
	background: #f8faff;
	border-radius: 8px;
}

.advantage h3 {
	color: #DB3B40;
	margin: 15px 0 10px;
}

.icon {
	font-size: 2.5rem;
	color: #DB3B40;
}

/* 招标内容样式 */
.tender-content ul {
	padding-left: 20px;
}

.tender-content li {
	margin-bottom: 12px;
	padding-left: 10px;
}

.highlight {
	background-color: #fff8e1;
	padding: 20px;
	border-radius: 6px;
	margin-top: 20px;
	border-left: 4px solid #ffc107;
}

.service-categories,
.advantages,
.tender-content {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	background: white;
	padding: 5px;
	border-radius: 8px;
}

/* 办公用品展示样式 */
.products-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	background: white;
	padding: 10px;
	border-radius: 8px;
}

.product-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	background-color: #f8faff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #DB3B40;
}

.product-info {
	padding: 15px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-name {
	font-weight: bold;
	margin-bottom: 8px;
	color: #333;
	font-size: 1rem;
	line-height: 1.4;
}

.product-price {
	color: #e74c3c;
	font-weight: bold;
	font-size: 1.2rem;
	margin-top: auto;
}

.price-unit {
	font-size: 0.9rem;
	color: #777;
}

:root {
	--primary: #DB3B40;
	--primary-light: #E55A5E;
	--primary-dark: #B52E32;
	--secondary: #FFF5F5;
	--accent: #FFD166;
	--dark: #333333;
	--light: #FFFFFF;
	--gray: #777777;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease;

	--primary-color: #DB3B40;
	--text-color: #333;
	--light-bg: #f9f9f9;
	--white: #fff;
	--gray: #f5f5f5;
	--dark-gray: #777;
}

/* 统计数据样式 */
.stats {
	display: flex;
	justify-content: space-around;
	text-align: center;
	margin: 0 auto;
	width: 1200px;
}

.flex-flex-flow {
	flex-flow: column;
}

.stat-item {
	margin: 15px;
}

.stat-number {
	font-size: 30px;
	font-weight: bold;
	color: var(--primary);
}

.stat-label {
	font-size: 20px;
	margin-top: 5px;
}

/* 英雄区域 */
.hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	text-align: center;
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23DB3B40"/><path d="M0 0L100 100M100 0L0 100" stroke="%23B52E32" stroke-width="2"/></svg>');
	opacity: 0.2;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
}

.hero h2 {
	font-size: 30px;
	margin-bottom: 20px;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	color: white;
}

.hero p {
	font-size: 16px;
	margin-bottom: 35px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.95;
}

.btnFwsc {
	display: inline-block;
	background-color: white;
	color: var(--primary);
	padding: 14px 35px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: var(--transition);
	border: 2px solid white;
	font-size: 1.1rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	margin: 0 10px;
}

.btnFwsc:hover {
	background-color: transparent;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
	background-color: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background-color: white;
	color: var(--primary);
}

.hero-features {
	display: flex;
	justify-content: center;
	margin-top: 60px;
	flex-wrap: wrap;
	justify-content: space-around;
}

.feature {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 20px;
	margin: 0 15px;
	width: 300px;
	transition: var(--transition);
}
.featureIcon{
	width: 50px;
	height: 50px;
}
.feature:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.25);
}

.feature i {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: var(--accent);
}

.feature h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 30px 0;
}

.cardkjxy {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	transition: transform 0.3s, box-shadow 0.3s;
	border-top: 4px solid #DB3B40;
}

.cardkjxy:hover {
	transform: translateY(-5px);
}

.cardkjxy h3 {
	color: #DB3B40;
	margin-bottom: 15px;
	font-size: 20px;
}

.cardkjxy p {
	margin-bottom: 15px;
}

.btnClass {
	display: inline-block;
	background-color: #DB3B40;
	color: white;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.3s;
}

.btnClass:hover {
	color: white;
}

/* 表格样式 */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

th,
td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

th {
	background-color: #DB3B40;
	color: white;
}

.table-div a:nth-child(even) {
	background-color: #f9f9f9;
}

.content-section {
	padding: 30px 0;
}

/* 案例部分 */
.case-study {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
}

.case-header {
	background-color: #DB3B40;
	color: white;
	padding: 20px;
}

.case-body {
	padding: 30px;
	flex-grow: 1;
}

.case-footer {
	padding: 20px 30px;
	background-color: #f5f5f5;
	border-top: 1px solid #eee;
}

.case-tag {
	display: inline-block;
	background-color: #e9ecef;
	color: #495057;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 14px;
	margin-right: 10px;
}

/* 主要内容区样式 */
.main-content {
	padding: 40px 0;
}

.page-title {
	text-align: center;
	margin-bottom: 40px;
	color: #DB3B40;
	font-size: 32px;
}

.search-section {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 40px;
}

.search-title {
	color: #DB3B40;
	margin-bottom: 20px;
	font-size: 20px;
}

.search-form11 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 10px 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.search-btn {
	background-color: #DB3B40;
	color: white;
	border: none;
	padding: 12px 50px;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin: 10px auto;
	display: block;
}

.search-btn:hover {
	background-color: #c53237;
}

/* 询价列表样式 */
.inquiry-list {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.section-title {
	background-color: #DB3B40;
	color: white;
	padding: 15px 20px;
	font-size: 18px;
}

.inquiry-items {
	padding: 20px;
}

.inquiry-item {
	border-bottom: 1px solid #eee;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inquiry-item:last-child {
	border-bottom: none;
}

.item-info h3 {
	color: #DB3B40;
	margin-bottom: 5px;
}

.item-info p {
	color: #666;
	margin-bottom: 5px;
}

.item-status {
	background-color: #f0f0f0;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 14px;
}

.status-open {
	background-color: #e8f5e9;
	color: #2e7d32;
}

.status-closed {
	background-color: #ffebee;
	color: #c62828;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	color: #DB3B40;
	display: inline-block;
	padding-bottom: 10px;
}

.section-title h2:after {
	content: '';
	position: absolute;
	width: 80px;
	height: 3px;
	background: #ffcc00;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}

.feature-card {
	flex: 0 0 30%;
	background: white;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	transition: transform 0.3s;
	border-top: 4px solid #DB3B40;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(219, 59, 64, 0.1);
}

.feature-icon {
	font-size: 40px;
	color: #DB3B40;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #DB3B40;
}

.process-steps {
	display: flex;
	justify-content: space-between;
	margin: 30px 0;
}

.step {
	flex: 0 0 22%;
	text-align: center;
	position: relative;
}

.step:not(:last-child):after {
	content: '';
	position: absolute;
	top: 40px;
	right: -50px;
	width: 100px;
	height: 2px;
	background: #DB3B40;
	opacity: 0.3;
}

.step-number {
	width: 65px;
	height: 65px;
	background: #DB3B40;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: bold;
	margin: 0 auto 20px;
}

.step h3 {
	margin-bottom: 10px;
	color: #DB3B40;
}

.service-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.category {
	flex: 0 0 43%;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	transition: all 0.3s;

	border-top: 4px solid #DB3B40;
	padding: 30px 15px;

}

.category:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(219, 59, 64, 0.1);
}

.category-icon {
	font-size: 36px;
	color: #DB3B40;
	margin-right: 20px;
	flex: 0 0 60px;
}

.service-categories-section {
	margin: 40px 0;
}

.category-content h3 {
	margin-bottom: 10px;
	color: #DB3B40;
}

.procurement-process {
	width: 1200px;
	margin: 0 auto;
}

.classTwo {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

/* 服务项目样式 */
.services {
	background-color: var(--white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background-color: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #eee;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	background-color: var(--primary-color);
	color: var(--white);
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
}

.service-content {
	padding: 25px;
}

.service-content h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 22px;
}

.service-content p {
	color: var(--dark-gray);
	margin-bottom: 15px;
}

.service-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
}

.service-link i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.service-link:hover i {
	transform: translateX(5px);
}

/* 采购流程样式 */
.process-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 50px;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--primary-light);
	z-index: 1;
}

.step {
	text-align: center;
	position: relative;
	z-index: 2;
	flex: 1;
}

.step-number {
	width: 80px;
	height: 80px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	margin: 0 auto 20px;
	box-shadow: 0 5px 15px rgba(219, 59, 64, 0.3);
}

.step h3 {
	margin-bottom: 10px;
	color: var(--primary-color);
	font-size: 20px;
}

.step p {
	color: var(--dark-gray);
	max-width: 200px;
	margin: 0 auto;
}

/* 产品展示样式 */
.products {
	background-color: var(--gray);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.product-card {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	background-color: var(--white);
}

.product-card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
	height: 200px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.product-info {
	padding: 20px;
	background-color: var(--white);
}

.product-info h3 {
	margin-bottom: 10px;
	color: var(--primary-color);
	font-size: 20px;
}

.product-info p {
	color: var(--dark-gray);
	margin-bottom: 15px;
}

.product-price {
	font-weight: bold;
	color: var(--primary-color);
	font-size: 18px;
}

.section-subtitle {
	text-align: center;
	max-width: 700px;
	margin: 40px auto 40px;
	font-size: 18px;
	color: var(--dark-gray);
}

/* 搜索区域 */
.search-car {
	background-color: #fdeaea;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 20px;
}

.search-form {
	display: flex;
}

.search-form input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px 0 0 3px;
}

.search-form button {
	background-color: #DB3B40;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
}

/* 产品展示 */
.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.product-card {
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(219, 59, 64, 0.1);
}

.product-img1 {
	/* height: 160px; */
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product-img1 img {
	max-width: 100%;
	max-height: 100%;
}

.product-info {
	padding: 15px;
}

.product-info h4 {
	margin-bottom: 10px;
	color: #DB3B40;
}

.product-info p {
	color: #666;
	font-size: 14px;
	margin-bottom: 10px;
}

.product-price {
	color: #DB3B40;
	font-weight: bold;
	margin-bottom: 10px;
}

.product-actions {
	display: flex;
	justify-content: space-between;    margin: 20px 0;
}

.btnCgzq {
	padding: 6px 12px;
	border-radius: 3px;
	font-size: 14px;
	cursor: pointer;
}

.btn-primary {
	background-color: #DB3B40;
	color: white;
	border: none;
}

.btn-outline {
	background-color: transparent;
	border: 1px solid #DB3B40;
	color: #DB3B40;
}

.content {
	flex: 1;
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	width: 1200px;
	margin: 0 auto;
}

.sidebar {
	width: 1200px;
	padding: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
}
.leftNav{
	margin-right: 20px;
}
.sidebar h3 {
	color: #DB3B40;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.sidebar ul {
	list-style: none;
	display: flex;
}

.sidebar li {
	margin-bottom: 10px;
}

.sidebar a {
	display: block;
	padding: 8px 10px;
	border-radius: 3px;
	transition: background-color 0.3s;
}

.sidebar a:hover {
	background-color: #fdeaea;
}
.theme-default .site-a a.active{
	color: #DB3B40;
}