/* 重置input */
a:link,a:visited,a:hover,a:active {
	text-decoration: none;
	cursor: pointer;
}
input,select {
    margin: 0;
}
/* 浮动 */
.clearfix::after {
    content: '';
    display: block;
    visibility: hidden;
    width: 0;
    height: 0;
    clear: both;
}
/* header */
.basocinfo {
    padding: 10px 20px;
}
.basocinfo_heard {
    width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}
.basocinfo_heard span {
    display: inline-block;
    position: relative;
    width: 65px;
    height: 45px;
    margin-right: 30px;
    padding-left: 35px;
    line-height: 45px;
    background: #ccc;
    color: #fff;
	cursor: pointer;
}
.basocinfo_heard span::before {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-width: 22.5px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}
.basocinfo_heard span::after {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: -44px;
    border-width: 22.5px;
    border-style: solid;
    border-color: transparent transparent transparent #ccc;
}
.basocinfo_heard span.active {
    background: #2c70bd;
}
.basocinfo_heard span.active::after {
    border-color: transparent transparent transparent #2c70bd;
}
/* 提交按钮 */
.submit_box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.submit_box a {
    display: inline-block;
    width: 130px;
    height: 35px;
    margin: 0 20px;
    background: #2c70bd;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 3px;
}
/* 公用样式 */
.bm_content {
    width: 96%;
    padding: 2%;
}
.bm_table thead {
    border-bottom: 1px solid #ccc;
}
.bm_table td,th {
    height: 50px;
    text-align: center;
}