123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- body {
- background-color: #F8F8F8;
- }
- * {
- padding: 0;
- margin: 0;
- border: 0;
- }
- ul,
- li,
- ol {
- list-style: none;
- }
- .hbtn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 150px;
- height: 35px;
- margin-left: 15px;
- background: #fff;
- border: 1px solid #16AE69;
- color: #16AE69;
- font-size: 16px;
- border-radius: 4px;
- cursor: pointer;
- }
- .hbtn.disabled {
- border-color: #999;
- color: #999;
- cursor: default;
- }
- .hbtn.disabled:hover {
- border-color: #999;
- color: #999;
- cursor: default;
- background: #fff;
- }
- .hbtn:hover {
- background: #16AE69;
- color: #fff;
- }
- .hgc_dialog {
- position: fixed;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.3);
- top: 0;
- left: 0;
- z-index: 1000;
- }
- .hgc_dialog .hgc_dialogContent {
- position: fixed;
- width: 500px;
- left: calc((100% - 500px)/2);
- top: calc((100% - 300px)/2);
- background: #fff;
- }
- .hgc_dialog .hgc_dialogContent .warning {
- color: #FF4D59;
- }
- .hgc_dialog .hgc_dialogContent h2 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 40px;
- padding: 0 15px;
- background: #16AE69;
- color: #fff;
- font-size: 16px;
- margin: 0;
- cursor: move;
- }
- .hgc_dialog .hgc_dialogContent h2 i {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 20px;
- height: 20px;
- font-style: normal;
- font-size: 18px;
- cursor: pointer;
- }
- .hgc_dialog .hgc_dialogContent .content {
- padding: 20px 10px;
- }
- .hgc_dialog .hgc_dialogContent .btns {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 20px 0;
- }
- .hgc_dialog .hgc_dialogContent .btns .hbtn {
- height: 35px;
- width: 88px;
- }
- .hgc_table {
- width: 100%;
- border-collapse: collapse;
- }
- .hgc_table thead {
- background: #FAFAFA;
- }
- .hgc_table tr:nth-child(2n) {
- background: #FAFAFA;
- }
- .hgc_table tr td:nth-child(1),
- .hgc_table tr td:nth-child(2),
- .hgc_table tr td:nth-child(3),
- .hgc_table tr td:nth-child(4),
- .hgc_table tr td:nth-child(5),
- .hgc_table tr th:nth-child(1),
- .hgc_table tr th:nth-child(2),
- .hgc_table tr th:nth-child(3),
- .hgc_table tr th:nth-child(4),
- .hgc_table tr th:nth-child(5) {
- text-align: left;
- }
- .hgc_table tr td:nth-child(1) {
- position: relative;
- width: 200px;
- }
- .hgc_table tr td:nth-child(1) .examName {
- position: absolute;
- width: 180px;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- overflow: hidden;
- height: 20px;
- line-height: 20px;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin: 0;
- }
- .hgc_table tr td:nth-child(2) {
- min-width: 50px;
- }
- .hgc_table tr td:last-child {
- min-width: 190px;
- }
- .hgc_table tr,
- .hgc_table td,
- .hgc_table th {
- border: 1px solid #eee;
- padding: 10px;
- text-align: center;
- font-size: 12px;
- }
- .hgc_table .update {
- display: flex;
- align-items: center;
- }
- .hgc_table .update .msg {
- position: relative;
- cursor: pointer;
- }
- .hgc_table .update .msg:hover .reason {
- display: block;
- }
- .hgc_table .update .msg .triangle {
- display: block;
- width: 8px;
- height: 8px;
- margin-left: 10px;
- border-left: 1px solid #999;
- border-bottom: 1px solid #999;
- transform: rotate(-45deg);
- }
- .hgc_table .update .msg .reason {
- position: absolute;
- padding: 5px;
- background: rgba(0, 0, 0, 0.5);
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- color: #fff;
- border-radius: 3px;
- min-width: 250px;
- font-style: normal;
- display: none;
- }
- .hgc_table .update .msg .reason:after {
- content: '';
- position: absolute;
- width: 0;
- height: 0;
- border: 7px solid transparent;
- border-top-color: rgba(0, 0, 0, 0.5);
- bottom: -14px;
- left: 50%;
- transform: translateX(-50%);
- }
- .hgc_table .operator {
- display: flex;
- justify-content: center;
- }
- .hgc_table .operator a {
- display: flex;
- align-items: center;
- cursor: pointer;
- position: relative;
- line-height: 20px;
- padding: 0 10px;
- }
- .hgc_table .operator a:after {
- content: '';
- position: absolute;
- width: 1px;
- height: 14px;
- left: 0;
- top: 50%;
- margin-top: -7px;
- }
- .hgc_table .operator a.artical i {
- background: url('/images/assist/icon_hgc_taskArtical.svg') no-repeat center;
- background-size: contain;
- }
- .hgc_table .operator a.opreator i {
- background: url('/images/assist/icon_hgc_operator.svg') no-repeat center;
- background-size: contain;
- }
- .hgc_table .operator a.complete i {
- background: url('/images/assist/icon_hgc_cmoplete.svg') no-repeat center;
- background-size: contain;
- }
- .hgc_table .operator a i {
- width: 14px;
- height: 14px;
- }
- .hgc_taskPage {
- font-size: 16px;
- color: #333;
- background: #fff;
- }
- .hgc_taskPage .warning {
- color: #FF4D59;
- }
- .hgc_taskPage .notice {
- color: #FF943E;
- }
- .hgc_taskPage .theme {
- color: #16AE69;
- }
- .hgc_taskPage .blue {
- color: #448CEE;
- }
- .hgc_taskPage form {
- padding: 0;
- }
- .hgc_taskPage .hgc_totalHeader {
- display: flex;
- justify-content: flex-start;
- height: 60px;
- background: #F3F8F9;
- }
- .hgc_taskPage .hgc_totalHeader span {
- width: 150px;
- height: 60px;
- text-align: center;
- line-height: 60px;
- cursor: pointer;
- font-size: 16px;
- }
- .hgc_taskPage .hgc_totalHeader span a {
- display: block;
- color: #333;
- }
- .hgc_taskPage .hgc_totalHeader span.active {
- font-weight: bold;
- }
- .hgc_taskPage .searchArea {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20px 15px;
- background: #fff;
- font-size: 14px;
- }
- .hgc_taskPage .searchArea .searchLeft {
- flex: 1;
- display: flex;
- align-items: center;
- }
- .hgc_taskPage .searchArea .searchLeft .hbtn {
- width: 80px;
- height: 30px;
- font-size: 14px;
- }
- .hgc_taskPage .searchArea .title {
- padding-left: 10px;
- border-left: 2px solid #16AE69;
- }
- .hgc_taskPage .searchArea .conditionItem {
- display: flex;
- align-items: center;
- margin-left: 10px;
- }
- .hgc_taskPage .searchArea .conditionItem .btn {
- width: 80px;
- font-size: 14px;
- }
- .hgc_taskPage .searchArea .conditionItem em {
- font-style: normal;
- }
- .hgc_taskPage .searchArea .conditionItem select {
- width: 110px;
- height: 35px;
- background: #F8F8F8;
- border: 1px solid #EEEEEE;
- border-radius: 4px;
- outline: none;
- }
- .hgc_taskPage .searchArea .conditionItem input {
- width: 350px;
- height: 35px;
- background: #F8F8F8;
- border: 1px solid #EEEEEE;
- border-radius: 4px;
- outline: none;
- padding-left: 10px;
- }
- .hgc_taskPage .tableBox {
- padding: 0 15px;
- }
- .hgc_taskPage .hgc_dialog {
- display: none;
- }
- .hgc_taskPage .hgc_dialog .warning {
- font-size: 12px;
- }
- .hgc_taskPage .hgc_dialog .conditionItem {
- display: flex;
- align-items: center;
- margin-left: 40px;
- }
- .hgc_taskPage .hgc_dialog .conditionItem em {
- font-style: normal;
- }
- .hgc_taskPage .hgc_dialog .conditionItem .ch {
- width: 30%;
- padding: 10px 0;
- font-size: 14px;
- }
- .hgc_taskPage .hgc_dialog .conditionItem select {
- width: 300px;
- background: #F8F8F8;
- border: 1px solid #EEEEEE;
- border-radius: 4px;
- outline: none;
- }
- .hgc_taskPage .hgc_dialog .conditionItem input[type="text"] {
- width: 420px;
- height: 35px;
- background: #F8F8F8;
- border: 1px solid #EEEEEE;
- border-radius: 4px;
- outline: none;
- padding-left: 10px;
- }
- .hgc_dialog .hgc_table tr td:nth-child(1) {
- width: auto;
- }
- .hgc_dialog .hgc_table tr td:nth-child(2) {
- min-width: auto;
- }
- .hgc_dialog .hgc_table tr td:last-child {
- min-width: auto;
- }
|