:root {
	--primary-color: #6a11cb;
	--secondary-color: #2575fc;
	--gradient-background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	--text-color: #333;
	--light-text-color: #666;
	--white-color: #fff;
	--border-color: #eee;
	--shadow-color: rgba(0, 0, 0, 0.1);
	--font-family-base: "AlibabaPuHuiTi-3-65-Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font-family-base);
}

body {
	width: 100vw;
	height: auto;
	-ms-overflow-style: scrollbar;
	font-family: var(--font-family-base);
	color: var(--text-color);
	background-color: #f8f9fa;
}

div, span {
	font-family: var(--font-family-base);
}

@font-face {
	font-family: 'Alibaba PuHuiTi';
	src: url('../font/AlibabaPuHuiTi-3-65-Medium.ttf');
}

.wrapper {
	width: 1200px;
	height: auto;
	margin: 0 auto;
	position: relative;
	overflow: visible;
}

.flex {
	display: flex;
}

.flex-wrap {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-nwrap {
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.flex-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.flex-end {
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.space-between {
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.flex1 {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.space-around {
	-webkit-box-pack: space-around;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
}

.align-items {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.align-items-start {
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

.align-items-end {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.align-content-start {
	-webkit-box-align: flex-start;
	-webkit-align-content: flex-start;
	-moz-align-content: flex-start;
	-ms-align-content: flex-start;
	-o-align-content: flex-start;
	align-content: flex-start;
}

.align-content-end {
	-webkit-box-align: flex-end;
	-webkit-align-content: flex-end;
	-moz-align-content: flex-end;
	-ms-align-content: flex-end;
	-o-align-content: flex-end;
	align-content: flex-end;
}

.align-content-stretch {
	-webkit-box-align: stretch;
	-webkit-align-content: stretch;
	-moz-align-content: stretch;
	-ms-align-content: stretch;
	-o-align-content: stretch;
	align-content: stretch;
}

.align-content-center {
	-webkit-box-align: center;
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.align-content-around {
	-webkit-box-align: space-around;
	-webkit-align-content: space-around;
	-moz-align-content: space-around;
	-ms-align-content: space-around;
	-o-align-content: space-around;
	align-content: space-around;
}

.align-content-between {
	-webkit-box-align: space-between;
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

.align-self-start {
	-webkit-align-self: flex-start;
	-moz-align-self: flex-start;
	-ms-align-self: flex-start;
	-o-align-self: flex-start;
	align-self: flex-start;
}

.align-self-end {
	-webkit-align-self: flex-end;
	-moz-align-self: flex-end;
	-ms-align-self: flex-end;
	-o-align-self: flex-end;
	align-self: flex-end;
}

.align-self-center {
	-webkit-align-self: center;
	-moz-align-self: center;
	-ms-align-self: center;
	-o-align-self: center;
	align-self: center;
}

.align-self-baseline {
	-webkit-align-self: baseline;
	-moz-align-self: baseline;
	-ms-align-self: baseline;
	-o-align-self: baseline;
	align-self: baseline;
}

.align-self-stretch {
	-webkit-align-self: stretch;
	-moz-align-self: stretch;
	-ms-align-self: stretch;
	-o-align-self: stretch;
	align-self: stretch;
}

.flex-shrink {
	flex-shrink: 0;
}

.fn-ctr {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ell1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

::-webkit-scrollbar {
	width: 0; /*滚动条宽度*/
	height: 10px; /*滚动条高度*/
}

::-webkit-scrollbar-thumb {
	background-color: rgba(201, 250, 73, .4); /*滚动条颜色*/
	border-radius: 5px; /*滚动条圆角*/
}

::-webkit-scrollbar-track {
	background-color: #F9F9F9; /*滚动条背景色*/
	border-radius: 5px; /*滚动条背景圆角*/
}

.donate_button {
	display: flex;
	width: 110px;
	height: 56px;
	font-size: 18px;
	border-radius: 28px;
	font-weight: 500;
	cursor: pointer;
}

.donate_button.light {
	background-color: #F93920;
	color: #2a2a2a;
}

.donate_button.dark {
	background-color: #2a2a2a;
	color: #F93920;
}

.button {
	display: block;
	padding: 0 20px;
	height: 56px;
	border-radius: 28px;
	line-height: 56px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
}

.button.light {
	border: 1px solid #F93920;
	color: #F93920;
}

.button.dark {
	border: 1px solid #2a2a2a;
	color: #2a2a2a;
}

.space_button {
	height: 20px;
}

.space_button.w-80 {
	width: 80px;
}

.space_button.w-90 {
	width: 90px;
}

.footer {
	width: 100vw;
	height: 360px;
	background-color: #2a2a2a;
	margin: 0 auto;
}

.website_info {
	padding-top: 45px;
	padding-right: 20px;
}

.website_info .info {
	margin-top: 20px;
	font-size: 20px;
	color: #e1e1e1;
}

.website_info .logo_pic {
	width: 60px;
	height: 60px;
	margin-right: 20px;
}

.website_info .logo_name {
	font-size: 28px;
	color: #fff;
}

.contact_us {
	width: 150px;
	height: auto;
	padding: 50px 0 0;
}

.contact_us .title {
	font-size: 20px;
	color: #2E3237;
	line-height: 50px;
}

.contact_us .text_a {
	font-size: 18px;
	color: rgba(255, 255, 255, .8);
}

.contact_us .text_a {
	font-size: 18px;
	color: rgba(255, 255, 255, .8);
	margin-bottom: 20px;
}

.contact_us .icons .pic {
	display: block;
	width: 48px;
	height: 48px;
	margin-right: 20px;
	cursor: pointer;
}

.footer .line {
	width: 1200px;
	height: 1px;
	background-color: #2E3237;
	margin: 50px auto 0;
}

#root {
	width: 100vw;
	min-height: 100vh;
	min-width: 1200px;
	background-color: #F9F9F9;
	position: relative;
}

.header {
	width: 100vw;
	height: 120px;
	background-color: #F9F9F9;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
}

.header .logo {
	height: 120px;
	cursor: pointer;
}

.header .logo_pic {
	width: 70px;
	height: 70px;
}

.header .logo_name {
	font-size: 32px;
	color: #F93920;
	font-weight: 500;
	margin-left: 12px;
}

.header .menus {
	width: auto;
	height: 120px;
}

.header .menu_item {
	display: flex;
	width: 154px;
	height: 52px;
	font-size: 20px;
	color: #2E3237;
	cursor: pointer;
}

.header .menu_item:hover {
	color: #F93920;
}

.header .menu_start {
	color: #F93920;
	border: 1px solid #F93920;
	border-radius: 26px;
}

a {
	text-decoration: none;
	color: var(--text-color);
}

ul {
	list-style: none;
}