* {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
	background-color: #051570
}

a {
	text-decoration: none;
	color: #fff
}

#container,
.lefcod,
body,
html {
	width: 100%;
	height: 100%
}

.lefcod {
	float: left;
	width: 300px;
	background-color: #314ceb;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* 创建一个可滚动的导航区域 */
.lefcod .nav-scrollable {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding-bottom: 20px;
}

/* 隐藏滚动条但保持滚动功能 */
.lefcod .nav-scrollable::-webkit-scrollbar {
	display: none;
}

.lefcod .nav-scrollable {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

/* 隐藏滚动条但保持滚动功能 */
.lefcod::-webkit-scrollbar {
	display: none;
}

.lefcod {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

.lefcod .title {
	width: 92%;
	min-height: 60px
}

.lefcod .nav {
	margin-right: 10px;
}

.lefcod .nav li,
.title {
	margin: 15px;
	background-color: rgba(250, 250, 250, .3);
	border-radius: 12px
}

.lefcod .title>a {
	display: block;
	line-height: 60px;
	text-align: center;
	color: #eab95f;
	font-weight: 500;
	font-size: 18px;
	padding-bottom: 8px;
	padding-top: 8px
}

.lefcod .nav li {
	padding: 10px 8px
}

.lefcod .nav li a {
	display: block;
	color: #fff;
	line-height: 32px
}

.lefcod .nav li a>i {
	vertical-align: middle;
	margin-right: 10px;
	height: -5px;
	font-size: 20px
}

.lefcod .app,
.lefcod .word {
	width: 100%;
	position: absolute;
	z-index: 10;
}

.lefcod .app {
	padding: 8px;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	background-color: #26b6ff;
	left: 0;
	bottom: 40px;
}

.lefcod .app li {
	margin: 0 10px
}

.lefcod .app li a>img {
	display: block
}

.lefcod .word {
	text-align: center;
	line-height: 40px;
	color: #fff;
	font-size: 14px;
	bottom: 0;
	background-color: #314ceb;
}

.main {
	float: left;
	width: calc(100% - 300px);
	height: 100%;
	background-color: #175de3
}

.main .main-top,
.main .main-top .icon {
	margin: 15px;
	background-color: rgba(250, 250, 250, .3);
	border-radius: 12px
}

.main .main-top {
	min-height: 60px;
	padding-left: 35px;
	padding-right: 35px;
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main .main-top .icon {
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main .main-top .icon a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.main .main-top .icon a>i {
	display: block;
	height: 24px;
	font-size: 24px;
	line-height: 1;
}

.main .content {
	width: 100%;
	height: calc(100% - 155px);
	position: relative;
	overflow-x: auto
}

.box,
.content .intro {
	position: relative;
	left: 0
}

.box {
	display: inline-block
}

.content .intro {
	text-align: center;
	top: 0;
	padding-left: 3%
}

.content .intro>img {
	width: 350px;
	display: block;
	margin: 0 auto
}

.content .intro h2,
.content .intro h3 {
	padding-top: 16px;
	letter-spacing: 7px;
	font-weight: 300;
	font-size: 34px;
	color: #fff
}

.content .intro h3 {
	font-weight: 250;
	font-size: 25px
}

.content .intro p {
	margin: 8px 0;
	color: rgba(255, 255, 255, .7);
	font-size: 20px;
	line-height: 32px
}


