* {
    padding: 0;
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/
*::-webkit-scrollbar {
    width: 7px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid #ddd;
}

/*定义滚动条的轨道，内阴影及圆角*/
*::-webkit-scrollbar-track {
    background-color: rgba(230, 230, 230, 0.05);
}

*:hover::-webkit-scrollbar-track {
    background-color: rgba(230, 230, 230, 0.5);
}

/*定义滑块，内阴影及圆角*/

*::-webkit-scrollbar-thumb {
    height: 20px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    background-color: rgba(125, 125, 125, 0.5);
    transition: background-color 1s;
}

*:hover::-webkit-scrollbar-thumb {
    background-color: rgba(125, 125, 125, 1);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(100, 100, 100, 1);
}

*::-webkit-scrollbar-thumb:active {
    background-color: rgba(100, 100, 100, 1);
}

a {
    text-decoration: none;
}

/* .red {
    border: 1px solid red;
} */

.h100 {
    height: 100% !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.container-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.container-wrap.gray {
    background-color: #f1f1f1;
}

.container {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    position: relative;
}





.header-wrap {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
    /* background-color: #2189E2; */
    background-image: url('../img/header-img.jpg');
}

.header-wrap .user-box {
    height: 100%;
    width: auto;
    display: flex;
    /* border: 1px solid red; */
    align-items: center;
    transition: all 200ms ease;
    cursor: pointer;
    padding: 0 20px;
    color: #FFf;
    margin-right: -15px;
}

.header-wrap>img {
    height: 50px;
    margin-top: 5px;
}

.header-wrap .el-dropdown {
    height: 100% !important;
}

.header-wrap .user-box:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.header-wrap .user-box .user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* padding-left: 8px; */
    /* padding-top: 2px; */
    padding: 2px 8px 0;
}

.header-wrap .user-box .user-icon {
    display: flex;
    border-radius: 50%;
    background-color: #cfcfcf;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
}

.header-wrap .user-box .user-name {
    color: #FFF;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.header-wrap .user-box .user-account {
    color: #e9c5a5;
    font-size: 12px;
    display: block;
}


.header-wrap .user-box .user-icon i {
    color: #FFF;
    font-size: 20px;
}

.header-title {
    color: #fff;
    font-size: 24px;
}

.content-wrap {
    height: calc(100% - 60px);
    /* border: 1px solid red; */
}

.el-tabs--border-card {
    height: 100%;
}

.el-tabs--border-card>.el-tabs__content {
    height: calc(100% - 39px);
    /* border: 1px solid red; */
}

.link-btn {
    color: #409eff;
    cursor: pointer
}

.link-btn:hover {
    text-decoration: underline;
}

.button-box {
    text-align: right;
    margin-bottom: 12px;
}

.tjzb-box {
    float: right;
}


/* 登录、注册页面头部 */

.banner {
    width: 100%;
    height: 120px;
    position: relative;
    margin-bottom: 45px;
}

.banner-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.tab-box {
    height: 100%;
    width: 100%;
    position: relative;
    /* border: 1px solid red; */
}

.tab-box .tab-item {
    width: 240px;
    height: 70px;
    position: relative;
    /* margin-top: 50px; */
    top: 50px;
    background-color: #FFF;
    font-weight: 600;
    /* text-align: center; */
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
}

.user-header {
    height: 70px;
    width: 100%;
    /* border: 1px solid red; */
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-vertical-center {
    display: flex;
    align-items: center;
}

.flex-transverse-center {
    display: flex;
    justify-content: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-header .user-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.user-header .right span {
    padding: 4px 12px;
    cursor: pointer;
}

.user-header .right .has {
    display: inline-block;
    color: #000;
    position: relative;
}

.user-header .right .gologin {
    color: #2364D2;
    padding: 4px 0;
}

/* .user-header .right .gologin::before {
    content: '|';
    position: absolute;
    top: 2px;
    left: -3px;
    color: #000;
    width: 1px;
} */

.register-card {
    width: 100%;
    position: absolute;
    top: -90px;
}


.register-form-wrap {
    width: 700px;
    padding: 60px 0;
}

@media screen and (max-width: 1200px) {
    .register-form-wrap {
        width: 90%;
        padding: 20px 40px;
    }
}

.form-item-box {
    display: flex;
}

.phone-code-box .el-form-item__content {
    display: flex;
}

.get-phone-code-btn {
    margin-left: 10px !important
}


/* 登录界面 */
.login-content {
    height: 100%;
    background-size: cover !important;
    width: 100%;
    background: url("../images/bg-img.jpg");
    position: relative;
    padding-top: 200px;
}

.login-logo {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.login-wrap-bg {
    margin: auto;
    width: 480px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .5);
}

.login-btn {
    background-color: #2768DD !important;
    padding: 15px 15px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
}

.login-wrap {
    width: 100%;
    border-radius: 5px;
    /* border: 1px solid red; */
    overflow: hidden;
    background-color: #fff;
    /* position: absolute; */
    /* top: 40%; */
    /* left: 65%; */
    /* transform: translateX(-50%) translateY(-50%); */
}

@media screen and (max-width: 1024px) {
    .login-wrap {
        width: 80%;
        min-width: 600px;
        overflow: hidden;
        background-color: #fff;
        position: absolute;
        top: 30%;
        left: 50%;
        /* transform: translateX(-50%) translateY(-50%); */
        /* padding-top: 40px; */
    }
}


@media screen and (max-width: 700px) {
    .login-wrap {
        width: 90%;
        min-width: unset;
        overflow: hidden;
        background-color: #fff;
        position: absolute;
        top: 30%;
        left: 50%;
        /* transform: translateX(-50%) translateY(-50%); */
        /* padding-top: 40px; */
    }
}


.login-wrap .login-box {
    /* padding-top: 36px; */
    /* padding-bottom: 36px; */
}

.login-tab .el-tabs__nav {
    width: 100%;
}

.login-tab .el-tabs__item {
    width: calc(100% / 3);
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.login-form {
    padding: 20px 30px 25px;
}

.login-form .login-input {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    border: 1px solid #e8e8e8;
    height: 40px;
    padding: 6px 11px;
    font-size: 16px;
    outline: none;
    background-color: #f5f5f5;
}

.other-row {
    margin-bottom: 20px;
    text-align: right;
}

.other-row a {
    font-size: 13px;
    color: #2364D2 !important;
    text-decoration: none;
}


.phone-code-wrap {
    display: flex;
}

.line-title {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #303133;
    border-bottom: 2px solid #000;
    line-height: 34px;
    margin-top: 20px;
}

/* --------------------------------------
             门户网站首页
 ---------------------------------------*/

.header {
    /* border: 1px solid red; */
    background-color: #1D40DB;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header .top-box {
    height: 30px;
    background-color: #031F95;
}

.header .top-box .top-box-left {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
}

.header .top-box .top-box-right,
.header .top-box .top-box-right a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 13px;
}

.header .top-box .top-box-right {
    display: flex;
}

.header .top-box .top-box-right a {
    display: flex;
    align-items: center;
}

.split-line {
    display: block;
    padding: 0 10px;
}

.header .header-inner {
    height: 75px;
    background-color: #173FDD;
}

.header .index-title {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    font-size: 24px;
}


.header-menu {
    display: flex;
    height: 100%;
    width: auto;
    list-style: none;
    margin-right: -25px;
}

.header-menu li {
    height: 100%;
    padding: 0 25px;
    display: flex;
    align-items: flex-end;
}

.header-menu li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif !important;
    display: block;
    padding-bottom: 15px;
    text-decoration: none;
}

.header-menu li a:hover {
    color: rgba(255, 255, 255, 1);
}

.header-menu li a.active {
    color: rgba(255, 255, 255, 1);
    border-bottom: 2px solid #FFF;
}

.bg-box {
    width: 100%;
    height: 345px;
    position: relative;
    /* background-color: #e8e8e8; */
}

.bg-box .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home-button-box{
    text-align: right;
    padding-top: 230px;
    padding-right: 100px;
}

.home-btn-wrap{
    display: inline-block;
    padding: 5px;
    margin-right: 10px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
}

.home-button-box .home-btn{
    width: 150px;
    padding: 12px;
    line-height: unset;
    cursor: pointer;
    border-radius: 5px;
    border: 0;
}

.content {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 25px;
    /* border: 1px solid red; */
}

.custom-row {
    display: flex;
    margin: 0 -25px;
}

.custom-row .custom-col {
    /* width: 50%; */
    flex: 1;
    padding: 0 25px;
}

.custom-card {
    width: 100%;
    height: auto;
    /* border: 1px solid red;    */
}

.custom-card .custom-card-header {
    height: 60px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-card .custom-card-header .custom-card-title {
    font-size: 20px;
    font-weight: bold;
    display: block;
    position: relative;
    padding-left: 15px;
}

.custom-card .custom-card-header .custom-card-title::before {
    content: "";
    width: 5px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 3px;
    background-color: #2A53D6;
    border-radius: 2px;
}

.custom-card .custom-card-header .more-btn {
    color: #6b6b6b;
}

.custom-card .custom-card-header .more-btn:hover {
    color: #000;
}

.custom-list {
    width: 100%;
    list-style: none;
    /* border: 1px solid red; */
    padding: 15px 0;
    /* display: flex; */
}

.custom-list li {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}

.custom-list li a {
    display: flex;
    color: #333;
    font-size: 15px;
    position: relative;
    /* border: 1px solid red; */
}

.custom-list li a .data-title {
    display: inline-block;
    max-width: 420px;
    white-space: nowrap;
    /* 禁止文字换行 */
    overflow: hidden;
    /* 隐藏超出容器范围的内容 */
    text-overflow: ellipsis;
    /* 使用省略号表示被隐藏的内容 */
}


.custom-list li a:hover {
    color: #1D40DB;
    top: -2px;
}

.custom-list li a .new-icon {
    position: relative;
    top: -5px;
    left: 4px;
    width: 28px;
    height: 18px;
}

.custom-list li a .left-arrow {
    color: #909090;
    display: inline-block;

    margin-right: 8px;
}

.custom-list li .right-date {
    color: #909090;
    font-size: 15px;
}

.conditions-wrap {
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
}

.conditions-wrap .conditions-box {
    width: 270px;
    height: auto;
    border: 1px solid #c5c5c57e;
    text-align: center;
    padding: 20px 10px 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    /* border: 1px solid red; */
}

.conditions-wrap .conditions-box img {
    width: 66px;
    height: 66px;
}


.conditions-wrap .conditions-box.blue {
    background-color: #E0EBFD;
}

.conditions-wrap .conditions-box.purple {
    background-color: #F1F0F8;
}

.conditions-wrap .conditions-box.orange {
    background-color: #ECE4D1;
}

.conditions-wrap .conditions-box.pink {
    background-color: #F4E3D9;
}

.conditions-wrap .conditions-box .conditions-title {
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 8px;
}

.conditions-wrap .conditions-box .conditions-info {
    font-size: 12px;
    padding: 10px;
    display: block;
    height: 130px;
    /* margin-bottom: 10px; */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    margin-bottom: 20px;
}

.conditions-wrap .conditions-box .conditions-btn {
    padding: 8px;
    width: 150px;
    cursor: pointer;
    background-color: #FFF;
    border-radius: 5px;
    border: 0;
}

.conditions-wrap .conditions-box .conditions-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}


.conditions-wrap .conditions-box .conditions-btn:active {
    background-color: rgba(255, 255, 255, 0.5);
}

.conditions-wrap .conditions-box.blue .conditions-btn,
.conditions-wrap .conditions-box.blue .conditions-info,
.conditions-wrap .conditions-box.blue .conditions-title {
    color: #455D91;
}

.conditions-wrap .conditions-box.purple .conditions-btn,
.conditions-wrap .conditions-box.purple .conditions-info,
.conditions-wrap .conditions-box.purple .conditions-title {
    color: #827CA3;
}

.conditions-wrap .conditions-box.orange .conditions-btn,
.conditions-wrap .conditions-box.orange .conditions-info,
.conditions-wrap .conditions-box.orange .conditions-title {
    color: #68593B;
}

.conditions-wrap .conditions-box.pink .conditions-btn,
.conditions-wrap .conditions-box.pink .conditions-info,
.conditions-wrap .conditions-box.pink .conditions-title {
    color: #996E65;
}


.date-box {
    width: 100%;
    height: 80px;
    margin-top: 25px;
    display: flex;
}

.date-box .left-box {
    width: 205px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, #C39E75, #dec195);
}

.date-box .left-box .date-title {
    font-size: 22px;
    color: #FFF;
    font-weight: bold;
}

.date-box .right-box {
    width: calc(100% - 205px);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 13px 0;
    background-image: linear-gradient(to right, #C39E75, #dec195);
}

.date-box .right-box .date-info {
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
    display: flex;
}

.date-box .right-box .date-info .date-info-item {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    /* border: 1px solid red; */
}

.date-box .right-box .date-info .date-info-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.bold {
    font-weight: bold;
}

.date-info .date-info-item .info-text {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}


.flow-box {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px dashed #D7E0ED;
    overflow: hidden;
    /* border: 1px solid red; */
}

.flow-box-header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E0EBFD;
}

.flow-box-body {
    height: auto;
    width: 100%;
    text-align: center;
}

.flow-title {
    color: #4E699E;
    font-size: 23px;
    font-weight: bold;
}

.footer {
    /* height: ; */
    width: 100%;
    padding: 20px;
    background-color: #111C3A;
}

.footer {
    color: rgba(255, 255, 255, 0.95);
}

.home-link-btn{
    color: #FFF;
    font-size: 14px;
}

.footer-box-left span{
    font-size: 14px;
    /* text-align: right; */
    line-height: 24px;
    display: block;
    margin-bottom: 8px;
}


.info-content {
    width: 100%;
    padding: 30px;
    min-height: calc(100vh - 107px);
    background-color: #FFF;
}

.info-content .info-title {
    text-align: center;
    display: block;
    padding: 25px 10px 25px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 25px;
}

.header-style {
    padding: 5px 0 !important;
    background-color: #F5F5F5 !important;
}

.pagination-box {
    text-align: right;
    padding-top: 15px;
}

.el-tabs__content {
    overflow: auto !important;
}

.split-cut {
    padding: 0 5px;
    position: relative;
    top: 0;
}


.query-box {
    margin: 0 -10px 10px;
}

.query-box .el-dropdown {
    top: 6px;
}

.query-form-item {
    /* margin-left: 10px; */
    margin: 0 !important;
    margin-bottom: 0 !important;
}

/* .query-form-item.number-box .el-form-item__content{
    display: flex;
    padding-top: 5px;
}
 */
.number-box {
    /* display: flex; */
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.number-box .query-form-item {
    flex: 0 0 40%;
}

.number-box .el-input-number--small {
    width: 110px !important;
}

.tool-box {
    display: flex;
    justify-content: space-between;
}

.search-btn-box .el-dropdown {
    padding: 5px 10px;
}

.el-date-editor .el-range-separator {
    color: #bbbfc6 !important;
}

.search-date-box .el-date-editor--datetimerange.el-input,
.el-date-editor--datetimerange.el-input__inner {
    width: 370px !important;
}


.year-range-picker {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.year-range-picker .el-date-editor.el-input,
.el-date-editor.el-input__inner {
    width: 150px;
}

.range-word {
    font-size: 12px;
    color: #bbbfc6 !important;
    margin-right: 10px;
    margin-left: 10px;
}

/* ---------------------------------------------
                弹窗自定义样式
 ----------------------------------------------*/

.custom-modal .el-dialog__header {
    background-color: #409EFF;
}

.custom-modal .el-dialog__title {
    color: #fff;
    position: relative;
    top: -5px;
}

.custom-modal .el-dialog__headerbtn .el-dialog__close {
    color: #FFF;
}


.custom-modal .el-dialog__headerbtn .el-dialog__close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.v-modal {
    opacity: .25 !important;
}


/* ------------------------- */

.addZbForm .el-select {
    width: calc(100% - 100px);
}

.sbForm .el-select {
    width: 100%;
}


.selectYearForm .el-select {
    width: 80%;
}


.selectYearForm .el-form-item {
    margin-bottom: 0 !important;
}

.selectYearForm .el-dialog__body {
    padding: 20px 20px !important;
}

.selectYearForm .el-dialog__footer {
    padding: 10px 20px 15px !important
}


.table-edit {
    width: 100%;
    font-size: 14px;
    color: #262626;
    border-collapse: collapse;
}

.table-edit.list th {
    text-align: center;
}

.table-edit th.small-title {
    text-align: left !important;
}

.table-edit th.small-title .button-box {
    float: right;
}

.table-edit th {
    /* //border: 1px solid #e8e8e8; */
    border: 1px solid #cfdde9;
    font-size: 14px;
    color: #262626;
    font-weight: normal;
    text-align: right;
    padding: 10px;
    background: #ebf4fb;
}

.table-edit td {
    /* //border: 1px solid #e8e8e8; */
    border: 1px solid #cfdde9;
    text-align: left;
    padding: 5px;
    line-height: 40px;
}

.ant-form-item {
    margin-bottom: 0;
}

.table-edit-title {
    text-align: left !important;
    height: 45px;
    font-weight: bold !important;
    padding-left: 10px !important;
}

.pay-modal .el-dialog__footer {
    border-top: 1px solid #e8e8e8;
}

.pay-modal>.el-dialog__body {
    padding: 20px !important;
    height: 80vh;
    overflow: auto;
}

.xq-modal .el-dialog__footer {
    border-top: 1px solid #e8e8e8;
}

.xq-modal>.el-dialog__body {
    padding: 20px !important;
    max-height: 80vh;
    overflow: auto;
}


.img-modal>.el-dialog__body {
    padding: 20px !important;
    max-height: 80vh;
    /* overflow: auto; */
}


.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td,
.info-table th {
    border: 1px solid #e8e8e8;
}

.info-table td {
    padding: 10px;
}

.info-table td img {
    width: 60px;
}

.info-table th {
    padding: 10px;
    background-color: #F5F5F5;
}


.info-box {
    padding: 0 10px;
}

.info-box p {
    font-size: 13px;
    text-indent: 2em;
    margin-bottom: 2px;
    line-height: 18px;
}

.info-sub-title {
    font-size: 13px;
    text-align: center;
    display: block;
}

.info-box p.mark {
    color: #3168a0;
}

.sub-title {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.sub-title-text {
    width: auto;
    font-size: 16px;
    font-weight: bold;
    padding: 2px 5px;
    border-bottom: 2px solid #1E65B7;
}

.boxese {
    margin-bottom: 15px;
}

.el-tabs__item {
    font-size: 14px;
    color: #333 !important;
}

.el-tabs__item.is-active {
    color: #409EFF !important;
}


.el-table thead {
    color: #333 !important;
}


.el-table__cell {
    font-weight: normal !important;
    font-size: 14px;
}

.table-box .el-table__cell {
    font-weight: normal !important;
    font-size: 12px;
}

/* ----上传文件组件----- */

.file-list-item {
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #c0ccda;
    border-radius: 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 148px;
    height: 148px;
    margin: 0 8px 8px 0;
    display: inline-block;
    position: relative;
}

.file-list-item img {
    width: 100%;
}


.file-list-item .file-list-item-actions {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: default;
    text-align: center;
    color: #fff;
    opacity: 0;
    font-size: 20px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.file-list-item .file-list-item-actions:hover {
    opacity: 1;
}

.file-list-item .file-list-item-actions:hover span {
    display: inline-block;
}

.table-box {
    margin-bottom: 20px;
}

.sub-add-btn {
    float: right;
    position: relative;
    top: -3px;
}

.specia-tab .el-tabs__item {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #000 !important;
    padding-top: 10px;
}

.specia-tab .el-tabs__item {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #000 !important;
    padding-top: 10px;
}


/* 专家投票 */

.ps-group-tab {
    width: 100%;
    height: 40px;
    border-top: 1px solid #6eabe8;
    background-color: #3890e9;
}


.specia-content-wrap {
    height: calc(100% - 100px);
}

.ps-group-list {
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.ps-group-list li {
    height: 100%;
    padding: 5px;
    width: auto;

}

.ps-group-list li a {
    width: auto;
    padding: 0 15px;
    height: 100%;
    color: #FFF;
    display: flex;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
}


.ps-group-list li.active a {
    background-color: #f5a438;
}


.el-textarea__inner {
    font-family: "微软雅黑", Arial, Helvetica, sans-serif;
}


.vote-title {
    text-align: center !important;
    font-weight: bold !important;
}


.vote-table td {
    line-height: 25px !important;
}

.vote-list-table2.el-table th.el-table__cell>.cell {
    font-size: 14px;
    /* color: #000; */
    /* color: #2159b5; */
    color: #333;
    font-weight: bold;
}


.vote-list-table2.el-table td.el-table__cell div {
    font-size: 14px;
    color: #000;
}

.vote-list-table.el-table th.el-table__cell>.cell {
    font-size: 18px;
    /* color: #000; */
    color: #2159b5;
    font-weight: bold;
}


.vote-list-table.el-table td.el-table__cell div {
    font-size: 18px;
    color: #000;
}

.header-style2 {
    padding: 5px 0 !important;
    /* background-color: #DBF1FE !important; */
    background-color: #f5f5f5 !important;
}

.specia-tabs .el-tabs__item {
    font-size: 17px;

}


.specia-confirm .el-message-box__message {
    font-size: 18px;
    margin-bottom: 20px;
}

.specia-confirm .el-button {
    font-size: 18px;
}

.result-alert {
    padding: 12px 15px !important;
}

.result-alert .el-alert__title {
    font-size: 18px !important;
    font-weight: bold;
}

.boxes {
    display: flex;
    margin-bottom: 15px;
}


.flex-box {
    /* display: flex; */
    /* justify-content: space-between; */
}


.tips-box {
    width: 200px !important;
    cursor: pointer;
    margin-right: 10px !important;
}


.el-tooltip__popper.is-dark {
    /* font-size: 16px; */

}

.tips-list li {
    font-size: 16px;
    cursor: pointer;
}

.sb-alert{
    cursor: pointer;
}

.tips-list .tips-title {
    font-weight: bold;
    width: 230px;
    text-align: right;
    display: inline-block;
}

.tips-wrap {
    display: flex;

}

/* 政策法规 */

.zcfg-content {
    width: 100%;
    height: auto;
    /* border: 1px solid red; */
    padding: 25px 0;
}

.article-list {
    width: 100%;
    list-style: none;
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;

}

.article-list .article-list-item {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
}

.article-list a {
    color: #333;
    font-size: 16px;
}

.article-date {
    color: #999999;
}

.search-box {
    margin-bottom: 15px;
}


.article-list a .flag-tip {
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: #F78F2C;
    margin-right: 8px;
    position: relative;
    top: -2px;
}

.article-list a:hover {
    color: #173FDD;
}

.article-title {
    text-align: center;
    padding-top: 35px;
}

/* -------------------------------- */

.cert-box {
    height: auto;
    /* border: 1px solid red; */
    margin: 80px auto 0;
    -webkit-box-shadow: 0 10px 20px 0 #cfdcf0;
    -moz-box-shadow: 0 10px 20px 0 #cfdcf0;
    box-shadow: 0 10px 20px 0 #cfdcf0;
}

.cert-box.w80 {
    width: 80%;
}

.cert-box.w100 {
    width: 100%;
}


.cert-box-header {
    height: 60px;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-right: 15px;

    -webkit-box-shadow: 0 10px 20px 0 #cfdcf0;
    -moz-box-shadow: 0 10px 20px 0 #cfdcf0;
    box-shadow: 0 10px 20px 0 #cfdcf0;
}

.resetLink {
    color: #2272ba;
}

.cert-header-title {
    width: 200px;
    height: 100%;
    background: #2272ba;
    /* background: #173FDD; */
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 60px;
}


.cert-box-content {
    height: calc(100% - 60px);
    /* border: 1px solid red; */
}


.cert-box.w80 .cert-box-content {
    padding: 55px 65px 40px;
}

.cert-box.w100 .cert-box-content {
    padding: 30px;
    text-align: center;
}


.cert-box-content .cert-form-item {
    width: 100%;
    display: flex;
    /* border: 1px solid red; */
    margin-bottom: 30px;
    align-items: center;
}



.cert-box-content .cert-form-item label {
    width: 150px;
    text-align: right;
    color: #000;
    font-weight: 700;
    font-size: 20px;
    margin-right: 15px;
}

.cert-box-content .cert-form-item .cert-input {
    flex: 1;
    height: 50px;
    background: #ebeff8;
    color: #333;
    font-size: 20px;
    border: 0;
    outline: 0;
    padding: 0 20px;
    /* width: 500px; */
}


.cert-box-content .cert-form-item .cert-button {
    font-weight: 700;
    font-size: 20px;
    line-height: 50px;
    height: 50px;
    background: #e72f35;
    color: #fff;
    cursor: pointer;
    flex: 1;
    border: 0;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -ms-transition: all .3s;
}


.cert-box-content .cert-form-item .cert-button:hover {
    background: #2272ba;
}



.requiredIcon {
    color: red;
    margin-right: 4px;
}


.cert-table {
    width: 100%;
    font-size: 14px;
    color: #262626;
    border-collapse: collapse;
    margin-bottom: 30px;
}


.cert-table th {
    /* //border: 1px solid #e8e8e8; */
    border: 1px solid #cfdde9;
    font-size: 16px;
    /* color: #262626; */
    font-weight: 600;
    text-align: right;
    padding: 10px;
    background: #ebf4fb;
    color: #333;
}

.cert-table td {
    /* //border: 1px solid #e8e8e8; */
    border: 1px solid #cfdde9;
    font-size: 16px;
    text-align: left;
    padding: 5px 10px;
    line-height: 40px;
}


.cert-img-box {
    width: 50%;
    margin: auto;
    position: relative;
}

.cert-img-box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    transition: all 200ms ease;
    cursor: pointer;
}

.cert-img-box:hover::before {
    background-color: rgba(0, 0, 0, 0.08);
}



.cert-img-box .cert-img {
    width: 100%;
    /* margin: auto; */
}


.file-list-box{
    margin: 0;
    padding: 0;
    list-style: none;
}
.file-list-box li{
    margin-bottom: 8px;
}
.file-list-box li i{
    color: gray;
}


.file-list-box li a{
    cursor: pointer;
    color: #1E65B7;
}


.scCheckopinion-tips{
    display: block;
    font-size: 12px;
    padding: 8px;
    background-color: #F5F5F5;
    margin-top: 5px;

}
.result-alert.hidden{
    opacity: 0;
}


.vote-radio .el-radio__label{
    font-size: 20px !important;
}
