* {
	margin: 0;
	padding: 0;
	border: none;
	font-family: "Microsoft Yahei";
}
html,body {
	width: 100%;
	height: 100%;
	position: relative;
}

img {
	width: 100%;
}

ul,li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333;
}
a:hover {
	text-decoration: none;
}

.has_tabbar {
	padding-bottom: 80px;
}

/* 坚线分隔线 */
.hard_line {
	display: inline-block;
	width: 1px;
	height: 12px;
	background-color: #999;
	vertical-align: middle;
	margin: 0 2px;
}

.page_content {
	display: none;
}

.content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/bg.png');
	background-size: 100%;
}
.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(12,0,82,0.8);
}

/* 底部导航 */
.tabbar {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 54px;
	background-color: #fff;
	box-shadow: #eee 5px 5px 5px 5px;
	text-align: center;
	z-index: 9999;
}
.tabbar ul {
	display: grid;
	width: 100%;
	height: 100%;
	grid-template-columns: repeat(5,1fr);
}
.tabbar ul li a {
	display: inline-block;
	padding-top: 34px;
	font-size: 12px;
	color: #333;
	background-position: center 5px;
	background-repeat: no-repeat;
	background-size: 26px 26px;
}
.tabbar ul li a.active {
	color: #2b9286;
}
.tabbar ul li a.nav_home {
	background-image: url('../images/home.png');
}
.tabbar ul li a.nav_home.active {
	background-image: url('../images/home_on.png');
}
.tabbar ul li a.nav_job {
	background-image: url('../images/job.png');
}
.tabbar ul li a.nav_job.active {
	background-image: url('../images/job_on.png');
}
.tabbar ul li a.nav_company {
	background-image: url('../images/company.png');
}
.tabbar ul li a.nav_company.active {
	background-image: url('../images/company_on.png');
}
.tabbar ul li a.nav_news {
	background-image: url('../images/zhengce.png');
}
.tabbar ul li a.nav_news.active {
	background-image: url('../images/zhengce_on.png');
}
.tabbar ul li a.nav_my {
	background-image: url('../images/member.png');
}
.tabbar ul li a.nav_my.active {
	background-image: url('../images/member_on.png');
}

/* 底部弹框 */
.show_modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
}
.show_modal .show_modal_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	display: none;
}
.show_modal .show_modal_main {
	position: absolute;
	bottom: -400px;
	left: 0;
	width: 100%;
	height: 400px;
	background-color: #fff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	overflow: hidden;
}
.show_modal .show_modal_main .show_modal_title {
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 16px;
	color: #333;
	background-color: #efefef;
}
.show_modal .show_modal_main .show_modal_content {
	height: 300px;
	overflow-y: scroll;
}
.show_modal .show_modal_main .show_modal_btn {
	height: 50px;
	background-color: #efefef;
	padding-top: 10px;
	text-align: center;
}
.show_modal .show_modal_main .show_modal_btn a {
	display: inline-block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 14px;
	color: #333;
	border-radius: 30px;
	background-color: #fff;
}


/* 顶部状态栏 */
.header {
    height: 50px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}
.header .a_back {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 50px;
}
.header .a_back img {
	width: 10px;
	vertical-align: middle;
	transform: rotate(180deg);
}
.header .a_member {
	position: absolute;
    right: 10px;
    top: 13px;
    width: 80px;
    height: 26px;
    border: 1px solid #2b9286;
    color: #2b9286;
    background-color: #e8faf8;
    border-radius: 30px;
    text-align: center;
    line-height: 26px;
    font-size: 12px;
    /* transform: scale(0.9); */
}
.header .a_home {
	position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 50px;
}
.header .a_home img {
	width: 30px;
	vertical-align: middle;
}