.more-category {
	position: relative;
}
.more-category-title {
	display: flex;
	justify-content: space-between;
    background: #fff;
}
.more-category-title li {
    width: 50%;
    height: 36px;
    line-height: 36px;
    color: #666;
    text-align: center;
    font-size: 1.2em;
}
.more-category-title li:after {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    vertical-align: 2px;
    margin-left: 5px;
    border-width: 6px 5px 0 5px;
    border-style: solid;
    border-color: #c0c0c0 transparent transparent transparent;
}
.more-category-title li.on {
    color: #2b70ae;
}
.more-category-title li.on:after {
	transform: rotateX(180deg);
    border-color: #2b70ae transparent transparent transparent;

} 
.more-category-cont {
	display: none;
	position: absolute;
	width: 100%;
	top: 36px;
	left: 0;
	background: #fff;
	padding: 2%;
	border-top: 2px solid #f0f0f0;
	z-index: 999;
	box-sizing: border-box;
}
.more-category-cont ul {
	display: none;
}
.more-category-cont li {
	background: #f5f5f5;
	color: #555;
	width: 32%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin: 0 0 2% 2%;
	float: left;
}
.more-category-cont li:nth-child(3n+1) {
	margin-left: 0;
}
.more-category-cont li a.on {
	color: #ff9d00;
}


.the-major>p {
    font-size: 1.2em;
    color: #666;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #f4f4f4;
    padding: 2%;
    font-weight: normal;
}
.the-major-cont {
	background: #fff;
	padding: 2%;
}
.the-major-cont dl {
	display: flex;
 	justify-content: space-between;
	border-bottom: 1px solid #f4f4f4;
	padding: 2% 0;
}
.the-major-cont dl dd:first-child {
	width: 40%;
	height: 26px;
	line-height: 26px;
	font-size: 1em;
}
.the-major-cont dl dd:last-child {
	width: 60%;
	font-size: 1em;
}
.the-major-cont dl dd a {
    width: 42px;
    height: 24px;
    line-height: 24px;
    display: inline-block;
    border: 1px solid #a7a7a7;
    border-radius: 3px;
    text-align: center;
    margin-right: .1rem;
    font-size: .9em;
}
.the-major-cont dl dd a:first-child {
    border-color: #81b9f1;
    background: #f0f7fe;
}