/**
 * @Author: MYi_铭一
 * @LastEditTime: 2021-2-10 17:30:31
 */

/**/
/*中部容器样式表*/

/*中部开始*/
#zhanwei {/*导航栏占位*/
	height: 50px;
}

#main, #aboutus, #joinus, #privacy_clause, #service_clause {/*中部主体*/ 
	width: 100vw;
	/*height: 1080px;*/
	/* text-align: center; */
	display: flex;/*弹性盒子*/
	flex-direction: column;/*从上到下*/
	flex-wrap: nowrap;/*不换行*/
	align-items: center;/*上下对齐*/
	align-self: center;
}

.container h1 {/*标题字*/
	font-size: 2em;
}

.Card {/*卡片*/ 
	margin: 15px;
}

#slogan {/*标语*/ 
	color: var(--myi-color);
	font-size: 6em;
	text-align: center;
	user-select:none;/*禁止选中*/ 
}

.pm {/*诗词卡片*/
	/* resize: both; */
	overflow: auto;
	border-radius: 45px;
	width: 48vw;
	padding: 45px;
	background: linear-gradient(
		to right bottom,
		rgba(255,255,255,0.6),
		rgba(255,255,255,0.2)
	);/*渐变色*/
	backdrop-filter: blur(3px);/*模糊*/
	-webkit-backdrop-filter: blur(3px);
	-moz-backdrop-filter: blur(3px);
	box-shadow: 5px 5px 15px rgba(0,0,0,0.2);/*阴影*/
	z-index: -1;
}

#pm1 {/*再启程赋*/
	writing-mode: vertical-rl;/*从上到下从右到左*/
	line-height: 2em;
}

.zw1 {/*再启程赋*/
	line-height: calc((48vw - 260px) / 6);
	text-indent: 0;
}

#pm2 {/*满江红·及冠*/
	text-align: left;
}

.zw2 {/*满江红·及冠*/
	text-indent: 2em;
	line-height: 1.3em;
}

.Mimicry {/*拟态按钮*/
	user-select:none;/*禁止选中*/ 
}

.Mim-child span {/*链接标题字*/
	color: #22BB5B;
	font-size: 5em;
	text-align: left;
	letter-spacing: 0.2em;
}

.links {/*链接*/
	width: 60vw;
	height: 270px;
	display: flex;/*弹性盒子*/
	flex-direction: row;/*从左到右*/
	flex-wrap: wrap;/*不换行*/
	align-items: center;/*上下对齐*/
	justify-content: space-around;/*两端对齐*/
	/* height: 40vh; */
	font-size: 1.5em;
	word-wrap:break-word;
	position: relative;
	bottom: 55px;
}

.links li {/*链接拟态*/
	width: 117px;
	height: 117px;
	padding: 0.5em;
	text-align: center;
	line-height: 117px;
	display: inline-block;
	background-color: rgba(239, 238, 238, 0.8);
	border-radius: 20px;
	box-shadow: 18px 18px 30px rgba(0, 0, 0, 0.2),
		-18px -18px 30px rgba(255, 255, 255, 1);
	/* ease-out先快速 后慢速 */
	transition: all 0.2s ease-out;
}

.links li:hover {/*链接拟态伪类*/
	background-color: rgba(239, 238, 238, 1);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(255, 255, 255, 0.8),
		inset 18px 18px 30px rgba(0, 0, 0, 0.1),
		inset -18px -18px 30px rgba(255, 255, 255, 1);
}

/*中部结束*/
