* {
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
body {
    font-size: 14px;
    width: 100%;
    max-width: 100vw;
    font-family: "Arial","微软雅黑","Microsoft YaHei","思源黑体",sans-serif;
    
    background-color: #F9F9FB;/**/
}
img {
	max-width: 100%;
}

div#nav {
	color: #8f8f8f;
	font-size: 12px;
	width: 90%;
	margin: 90px auto 50px;
}
div#nav a {
	display: inline-block;
	margin:0px 10px 10px 0px;
	padding:5px 10px;
	background: #e8e6e0;
	border-radius: 5px;
	color: #000;
}
div#nav a:link, div#nav a:visited {
	text-decoration: none;
}
div#nav a:hover {
	text-decoration: underline;
	background: #e8b16a;
	box-shadow: 0px 0px 5px #d5c1b6;
}

div#pageHead {
	color: #000;
	width: 90%;
	margin: 50px auto 80px;
}


div#AllWords {
	width: 90%;
	margin: 0 auto;
}
section {
	margin-bottom: 80px;
	color: #000;
	display: flex;
	flex-direction: row;/*row | row-reverse | column | column-reverse;*/
	flex-wrap: nowrap;/*nowrap | wrap | wrap-reverse;*/
	justify-content: flex-start;/*flex-start | flex-end | center | space-between | space-around;*/
	align-items: flex-start;/*flex-start | flex-end | center | baseline | stretch*/
	align-content: flex-start;/*flex-start | flex-end | center | space-between | space-around | stretch*/
}

p.word {
	font-size: 20px;
	font-weight: bold;
}
div.words_name {
	/*
	width: 20%;/**/
	flex-basis: 15%;
	margin:0px 50px 0px 0px;
}
div.words_name p {
	margin-bottom: 3px;
}

div.description {
	flex-basis: 50%;
	background: #fbf5e3;
}
div.particulars {
	line-height: 1.5;
	background: #fbf5e3;
	padding: 10px;
	border-left: solid 8px #d2b57d;
	margin:0px 0px 25px;
}
div.particulars p {
	margin-bottom: 3px;
}
p.probability {
	border-top: dashed 1px #bb8666;
	margin:20px 0px 0px;
	padding:10px 0px 0px;
	color: #bb8666;
	font-size: 13px;/**/

}
span.chance {
	padding: 0px 5px;
	border-radius: 5px;
	color: #fff;
	margin: 0px 5px;
}
span.chance_low {
	background: red;
}
span.chance_medium {
	background: #e6b700;
}
span.chance_high {
	background: #1c9918;
}