body {
    font-size: 14px;
    font-family: PingFang SC, Helvetica Neue, Helvetica, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
    color: #333;
    padding-bottom: 150px;
    position: relative;
}

html,
body {
    min-height: 100%;
}

a,
button {
    transition: all 0.4s;
}

a {
    color: #e22323;
    /*background: transparent;*/
}


.content_wrap {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 10px 50px;
    min-height: 575px;
    box-sizing: border-box;
}

.left_content {
    float: left;
    width: 70.83333%;
    box-sizing: border-box;
    padding-right: 20px;
}

.breadcrumb_wrap {
    padding: 5px 0 20px 0;
    font-size: 15px;
}

.breadcrumb_wrap li {
    display: inline-block;
    color: #7e8c8d;
}

.breadcrumb_wrap li a {
    color: inherit;
}

.breadcrumb_wrap li a:hover {
    color: inherit;
}

.filter_wrap h4 {
    background-color: #e6f0fa;
    text-align: center;
    line-height: 36px;
}

.filter_wrap h4 span {
    position: relative;
    color: #e22323;
}

.filter_wrap h4 span:before, .filter_wrap h4 span:after {
    content: '';
    position: absolute;
    top: 8px;
    width: 30px;
    height: 1px;
    background-color: #e22323;
}

.filter_wrap h4 span:before {
    left: 0;
    margin-left: -36px;
}

.filter_wrap h4 span:after {
    right: 0;
    margin-right: -36px;
}

.filter_form {
    box-sizing: border-box;
    padding: 15px 5px;
}

.input_wrap {
    margin-bottom: 18px;
}

.input_wrap label {
    float: left;
    font-size: 14px;
    color: #606266;
    padding: 0 12px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    line-height: 28px;
    width: 90px;
}

.date {
    float: left;
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.name {
    float: right;
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.input_box {
    position: relative;
    font-size: 12px;
    line-height: 28px;
    margin-left: 90px;
}

.date_elem, .date_to {
    display: inline-block;
    vertical-align: middle;
    line-height: 28px;
}

.date_to {
    padding: 0 5px;
    color: #606266;
}

.date_elem {
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #606266;
    font-size: inherit;
    outline: 0;
    padding: 0 15px;
    -webkit-transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 110px;
    /*padding-right: 30px;*/
    height: 28px;
    line-height: 28px;
}

.nameInput {
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    outline: 0;
    padding: 0 15px;
    -webkit-transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
    /*padding-right: 30px;*/
    height: 28px;
    line-height: 28px;
}

.dateInput:focus, .nameInput:focus {
    border-color: #e22323;
}

.submit-btn {
    text-align: center;
}

.submit-btn span {
    padding: 10px 40px;
    color: #fff;
    background-color: #e22323;
    border-color: #e22323;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    -webkit-transition: .1s;
    transition: .1s;
    font-size: 14px;
    border-radius: 4px;
}

.submit-btn span:hover {
    background: #dc5d5d;
}

.form_table {
    width: 100%;
    table-layout: fixed;
    color: #606266;
    border-top: 1px solid #ebeef5;
    border-left: 1px solid #ebeef5;
    border-collapse: collapse;
}

.form_table thead {
    color: #909399;
}

.form_table thead th {
    background: #e6f0fa;
    text-align: center;
    overflow: hidden;
    user-select: none;
    border-bottom: 1px solid #ebeef5;
    border-right: 1px solid #ebeef5;
    padding: 8px 10px;
    white-space: normal;
    word-break: break-all;
    line-height: 23px;
    text-overflow: ellipsis;
    vertical-align: middle;
    width: 100%;
    color: #e22323;
    font-size: 14px;
}

.form_table tbody td {
    font-size: 12px;
    transition: background-color .25s ease;
    text-align: center;
    border-right: 1px solid #ebeef5;
    border-bottom: 1px solid #ebeef5;
    padding: 8px 8px;
    box-sizing: border-box;
    vertical-align: middle;
    border-collapse: separate;
    white-space: normal;
    word-break: break-all;
    line-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form_table tbody td a {
    font-size: 12px;
    text-decoration: none;
    color: #409eff;
}


.form_table tbody tr:hover > td {
    background: #f5f7fa;
}

.right_content {
    float: right;
    width: 29.16667%;
    box-sizing: border-box;
}

.filter_link_wrap_box {
    width: 350px;
    margin-bottom: 20px;
}

.filter_link_wrap h4 {
    padding: 0 40px;
    background-color: #e22323;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
}

.filter_link_wrap ul {
    padding: 2px 15px;
}

.filter_link_wrap ul li {
    line-height: 40px;
    padding-top: 1px;
    border-bottom: 1px dashed #8f8f8f;
}

.filter_link_wrap ul li span {
    display: inline-block;
    cursor: pointer;
    width: 100%;
    color: #8f8f8f;
    font-size: 15px;
    transition: color .2s;
}

.filter_link_wrap ul li span:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 6px solid #8f8f8f;
    border-bottom: 6px solid transparent;
    margin: 0 8px;
}

.filter_link_wrap ul li span:hover, .filter_link_wrap ul li span.active {
    color: #e22323;
}

.filter_link_wrap ul li span:hover:before, .filter_link_wrap ul li span.active:before {
    border-left: 6px solid #e22323;
}
