/*定义颜色变量*/
:root {
    /*主题色*/
    --light: #bd1a2d;
    /*    边框色*/
    --borderColor: #ff8080;
    /*    背景色*/
    --backColor: #ffe6e6;
}

* {
    margin: 0;
    padding: 0;
}

em {
    color: #bd1a2d;
    font-style: normal;
}

input {
    background: none;
    outline: none;
    border: none;
    padding: unset;
}

/* a:-webkit-any-link {
    cursor: pointer;
    text-decoration: none;
    color: #202020;
} */

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
/*  办事弹框 */
.work-btnModel {
    width: 100px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid var(--light);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--light);
    cursor: pointer;
}

.work-btnModel:hover {
    background: var(--light);
    color: #ffffff;
}
/*办事弹框遮罩层*/
.work-draw {
    display: none;
    position: fixed;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.2);
    font-size: 14px;
    justify-content: center;
    color: #333;
}

/*办事弹框内容块*/
.work-draw-div {
    width: 1000px;
    background: #ffffff;
}

/*办事弹框头部*/
.work-header {
    width: 100%;
    height: 68px;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*办事弹框标题*/
.work-header-title {
    padding-left: 20px;
    height: 68px;
    line-height: 68px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    max-width: 900px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*办事弹框关闭按钮*/
.work-header-close {
    width: 26px;
    height: 24px;
    background: url("../../image/result/work-close-btn.png");
    background-size: 100% 100%;
    margin-right: 20px;
    cursor: pointer;
}

/*办事内容块*/
.work-main {
    padding: 20px;
}

/*办事选择区域*/
.main-region {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px dashed #e8e8e8;
}

/*选择办事区域标题*/
.main-region-title {
    height: 15px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 15px;
}

/*办事区域选择内容*/
.main-region .main-region-con span {
    height: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 16px;
    cursor: pointer;
}

/*办事区域列表内容*/
.main-region-list {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #e8e8e8;
}

/*单个区域通用样式*/
.region-item {
    padding: 0px 14px;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
}

/*单个区域选中样式*/
.main-region-list .on {
    background: var(--light);
    color: #ffffff;
}

/*区域不可点击样式*/
.main-region-list .disabled {
    padding: 0px 14px;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    font-weight: 400;
    color: #bcbcbc;
    cursor: pointer;
}

/*办事列表*/
.work-list {
    padding: 15px 20px;
}

.work-main .work-list .list-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/*办事列表单行左侧*/
.work-list .list-item .item-left {
    display: flex;
    align-items: center;
}

/*办事列表单行右侧*/
.work-list .list-item .item-right {
    display: flex;
    align-items: center;
}

/*办事列表单行标题*/
.work-list .list-item .item-title {
    width: 635px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 16px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
}
.work-list .list-item .item-title a {
    color: #202020;
}
/*单行红色位置icon*/
.item-red-position {
    width: 12px;
    height: 18px;
    cursor: pointer;
    background: url("../../image/result/work-red-position.png");
    background-size: 100% 100%;
}

/*单行红色位置icon*/
.item-block-position {
    width: 12px;
    height: 18px;
    background: url("../../image/result/work-block-position.png");
    background-size: 100% 100%;
}

/*办事按钮无法点击*/
.work-disabled {
    width: 100px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: auto;
    border: 1px solid #bcbcbc;
    color: #bcbcbc;
}

/*办事分页*/

.work-page {
    padding: 15px 20px;
}

/*办事样式完成*/
