﻿.mainer-investors {
	display: flex;
	flex-direction: column;
}

.mainer-investors-body span,
.mainer-investors-body p {
	font-family: 'nexa';
	line-height: 1.4em;
}

.mainer-investors-body {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	background: #f0f0f0;
}

.body-1001 {
	background-color: #000;
	width: 30px;
	height: 100%;
}

.body-1002 {
	width: 30%;
	height: 100%;
	border-right: 1px solid #000;
}

.body-1002-1 {
	background-color: #71d5c9;
	padding: 30px;
	border-bottom: 1px solid #000;
}

.body-1002-2 {
	padding: 30px;
}

.body-1002-2 p {
	font-size: 12px;
}

.body-1002-3 {
	padding: 0px 30px;
}

.body-1002-3-1 {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.body-1003 {
	flex: 1;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.body-1003-1,
.body-1003-2,
.body-1003-3 {
	width: 100%;
}

.body-1003-1-p-1 {
	font-family: '';
	font-size: 14px;
	font-weight: 600;
}

.body-1003-1-p-2 {
	font-size: 12px;
	margin-top: 10px;
}

.contact-form {
	background-color: #fff;
	width: 50%;
	height: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.body-1003-1-form {
	height: 100%;
	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	padding: 30px 0px
}

.form-input .form-control {
	border: none;
	border-bottom: 1px solid #989898;
	width: 100%;
	font-size: 14px;
	color: #989898;
	outline: none;
	margin-top: 20px;
}

.form-btn {
	cursor: pointer;
	background: #000;
	color: #fff;
	font-size: 12px;
	padding: 5px 50px;
	margin-top: 30px;
}

.form-btn:hover {
	background-color: #71d5c9;
	color: #000;
}

.body-1004 {
	margin-top: -60px;
	width: 5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.rotated-text {
	white-space: nowrap;
	/* display: inline-block; */
	transform: rotate(90deg);
	transform-origin: center center;
	margin-top: 30vh;
	font-size: 10px;
}

.body-1004-line {
	width: 1px;
	height: 40%;
	margin-top: 60px;
	background: #000;
}

/* .body-1004 p::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: black;
	margin-top: 10px; 
  } */


/* 横线 */
.line-with-text {
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.line-with-text::before,
.line-with-text::after {
	content: '';
	/* flex: 1; */
	width: 20px;
	border-bottom: 1px solid black;
}

.line-with-text::before {
	margin-right: 10px;
	/* 调整线条与文本之间的距离 */
}

.line-with-text::after {
	margin-left: 10px;
	/* 调整线条与文本之间的距离 */
}

textarea {
	width: 100%;
	/* 设置宽度 */
	min-height: 20px;
	/* 设置最小高度 */
	overflow: hidden;
	/* 隐藏滚动条 */
	resize: none;
	/* 禁用手动调整大小 */
}

