body {
	background: #00aaff;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 100vh;
  width: 100vw; */
	margin-top: 50px;
}

.text1 {
	width: 400px;
}

.logo_text {
	font-family: "PingFang SC";
	font-size: 84px;
	/* font-weight: bold; */
	fill: none;
	stroke: url("#geekColor");
	stroke-width: 3;
	stroke-dasharray: 10 800;
	stroke-dashoffset: 10;
	display: inline-block;
	height: 150px !important;
	line-height: 150px;
	animation: 3s linear 0s drawing forwards;
}

/* 绘画动画 */
@keyframes drawing {
	to {
		stroke-dasharray: 800;
		stroke-dashoffset: 0;
	}
}