/*
--Felizon
--2024/12/03
--电能端样式
*/
/*box*/
body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: black;
	color: white;
}

/*尺寸盒子*/
.container {
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
}

.container2 {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.topbpx {
	overflow: hidden;
}

.top-l {
	width: 50%;
	float: left;
	overflow: hidden;
}

.top-l .logo {
	overflow: hidden;
}

.top-r {
	width: 46%;
	float: right;
	overflow: hidden;
}

.form-header {
	text-align: center;
	font-size: 20px;
	color: #FA5E03;
	margin-bottom: 20px;
}

.mofang2 {
	display: flex;
	justify-content: center;
	/* 水平居中 */
	align-items: center;
	/* 高度 100% 平视口 */
}

.mofang2 h3 {
	text-align: center;
	font-size: 36px;
	margin: 3% 0;
	/* 字体大小 */
	color: #FA5E03;
	font-weight: bold;
	/* 字体颜色 */
	animation: blink-animation 0.5s steps(5, end) infinite;
	/* 应用闪烁动画 */
}
.mofang {
	display: flex;
	justify-content: center;
	/* 水平居中 */
	align-items: center;
	/* 高度 100% 平视口 */
}

.mofang h3 {
	text-align: center;
	font-size: 36px;
	margin: 3% 0;
	/* 字体大小 */
	color: #FA5E03;
	font-weight: bold;
	/* 字体颜色 */
	animation: blink-animation 0.5s steps(5, end) infinite;
	/* 应用闪烁动画 */
}
@keyframes blink-animation {
	0% {
		opacity: 1;
		/* 透明度为 1 (完全可见) */
	}

	50% {
		opacity: 0.5;
		/* 透明度为 0 (完全隐藏) */
	}

	100% {
		opacity: 1;
		/* 透明度回到 1 */
	}
}

.jiesao {
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	color: #FFA500;
	
}

.jiesao p {
	text-indent: 2rem;
	color: orange;
	font-size: 18px;
}

.mofang img {
	width: 100%;
	max-width: 499px;
}

.mofang2 img {
	width: 100%;
	max-width: 1000px;
}

.form {
	background-color: #1a1a1a;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.form-group {
	margin-bottom: 15px;
	width: 46%;
	margin: 0 2%;
	float: left;
}

.form-group2 {
	margin-bottom: 15px;
	width: 98%;
	margin: 0 2%;
	float: left;
}

.form-group label {
	width: 100%;
	color: orange;
	font-size: 14px;
	margin-bottom: 5px;
}

.form-group p {
	width: 100%;
	padding: 10px 0;
	margin: 5px 0;

	color: #FA5E03;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px 0;
	margin: 5px 0;
	background-color: #fff;
	color: #666;
}

.form-group.inline {
	display: flex;
	justify-content: space-between;
}

.form-group.inline label {
	width: auto;
}

.form-group.inline input {
	width: calc(50% - 10px);
}

.form-group textarea {
	height: 80px;
}

.note {
	font-size: 16px;
	color: #FA5E03;
	margin: 3% 2%;
	overflow: hidden;
	clear: both;
}

.submit-button {
	text-align: center;
	margin-top: 20px;
}

.submit-button button {
	background-color: #FA5E03;
	color: white;
	padding: 10px 40px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	margin-top: 30px;
}

.submit-button button:hover {
	background-color: darkorange;
}

.linehao {
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	flex-wrap: nowrap;
	align-items: center;
}

.lin-l {
	width: 50%;
	text-align: center;
	font-size: 18px;
	color: #FA5E03;
}

.lin-r {
	width: 50%;
	text-align: center;
}

.lin-r img {
	width: 100%;
	max-width: 200px;
}

.bot {
	text-align: center;
	margin-top: 40px;
	overflow: hidden;
}

.footer {
	text-align: center;
	color: #FA5E03;
	margin: 40px 0;
}

.tanchuang {
	position: fixed;
	top: 100px;
	width: 100%;
	height: 100%;
	display: block;

}

.tanchuang-box {
	width: 400px;
	padding: 20px;
	margin: 0 auto;
	overflow: hidden;
	background: #1a1a1a;
	border: 1px #FA5E03 solid;
	position: relative;
}

.guanbi {
	width: 80px;
	height: 50px;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 10px;
	right: 10px;

}

.tanchuang-box p {
	color: #FA5E03;
	margin: 20px;
}

.tanchuang-box h2 {
	margin-top: 20px;
	text-align: center;
	color: #FA5E03;
	font-size: 16px;
}

.tanchuang {
	display: none;
	/* 初始隐藏 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	/* 半透明背景 */
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
