@charset "utf-8";
/* CSS Document */
html,body{
	width: 100%;
    min-width:1280px;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background:#fff;
}
.logo_warpper{
	background-image: url(/shtml/images/portal/logo.png);
	background-repeat: no-repeat;
    background-size: contain;
    width: 320px;
    height: 100px;
    position: absolute;
    top: 26px;
    left: 50px;
}
.count_warpper{
	width: 100%;
    height: calc(100% - 90px);
    box-sizing: border-box;
    background-image: url(/shtml/images/portal/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.foot_warpper{
	width: 100%;
	height: 90px;
    box-sizing: border-box;
	background: #CDBEAD;
}
.menu_warpper{
	text-align: center;
	padding-top: 15px;
}
.menu_ul_warpper{
    display: inline-block;
    position: relative;
}
.menu_item{
	background-image: url(/shtml/images/portal/menu.png);
	background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 188px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;    
    float: left;
    margin: 0 15px;
    cursor: pointer;
}
.menu_item a {
    color: #FFFFFF;
    text-decoration: none;
}
.menu_ulc{   
	display:none;
	position: absolute;
    bottom: 57px;
    width: 188px;
	padding-bottom:17px;
}
.menu_ulc::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #A89988;
    transform: translate(-50%, -50%);
}
.menu_item:hover .menu_ulc{
	display:block;
}
.menu_ulc li{
	background: #A89988;
}
.menu_ulc li a{
	font-weight: 700;
	font-size: 18px;
	color: #FFFBF6;
	line-height: 32px;
}
.parting-line{
	width: 163px;
	height: 0px;
	border: 1px solid #D8D8D8;
	margin: 0 auto;
}






