123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 |
- 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 #2977ff;
- color: #619aff;
- 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: #619aff;
- 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: #2977ff;
- 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_headOPerator {
- display: flex;
- align-items: center;
- height: 60px;
- padding: 0 15px;
- padding-left: 30px;
- font-size: 16px;
- background-color: #fff;
- }
- .hgc_headOPerator .menuBtn {
- display: flex;
- height: 60px;
- align-items: center;
- font-size: 18px;
- cursor: pointer;
- justify-content: center;
- }
- .hgc_headOPerator .menuBtn span {
- margin-left: 10px;
- font-size: 16px;
- font-weight: 600;
- color: #5d5d5d;
- }
- .hgc_siderBar {
- position: fixed;
- height: 100%;
- width: 240px;
- top: 0;
- left: -260px;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- box-shadow: 4px 0 4px 0 rgba(0, 0, 0, 0.1);
- transition: left 0.5s ease;
- -webkit-transition: left 0.5s ease;
- z-index: 1000;
- }
- .hgc_siderBar.active {
- left: 0;
- }
- .hgc_siderBar .menuBtn {
- display: flex;
- height: 60px;
- padding-left: 20px;
- align-items: center;
- font-size: 18px;
- cursor: pointer;
- border-bottom: 1px solid #E4EAEF;
- justify-content: flex-start;
- }
- .hgc_siderBar .menuBtn span {
- margin-left: 20px;
- font-size: 16px;
- font-weight: 600;
- color: #5d5d5d;
- }
- .hgc_siderBar .menuList {
- background-color: #fff;
- }
- .hgc_siderBar .menuList li {
- display: flex;
- cursor: pointer;
- }
- .hgc_siderBar .menuList li.active a {
- color: #619aff;
- }
- .hgc_siderBar .menuList li.back a:hover {
- background: #fff;
- color: #333;
- border-right-color: transparent;
- }
- .hgc_siderBar .menuList li a {
- height: 48px;
- width: 240px;
- line-height: 48px;
- border-right: 2px solid transparent;
- color: #333;
- text-align: center;
- font-size: 16px;
- }
- .hgc_siderBar .menuList li a:hover {
- background: #F0F3F6;
- color: #619aff;
- border-right-color: #619aff;
- }
- .hgc_content {
- padding: 20px;
- font-size: 16px;
- }
- .hgc_content .theme {
- color: #619aff;
- }
- .hgc_content .notice {
- position: relative;
- padding-left: 5px;
- cursor: pointer;
- position: absolute;
- right: 10px;
- top: 50%;
- transform: translateY(-50%);
- }
- .hgc_content .notice:hover i {
- display: block;
- }
- .hgc_content .notice img {
- width: 16px;
- height: 16px;
- display: block;
- }
- .hgc_content .notice i {
- display: block;
- position: absolute;
- padding: 5px;
- background: rgba(0, 0, 0, 0.5);
- bottom: 23px;
- left: 50%;
- transform: translateX(-50%);
- color: #fff;
- border-radius: 3px;
- min-width: 220px;
- font-style: normal;
- display: none;
- font-weight: normal;
- }
- .hgc_content .notice i: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_content .module {
- margin-bottom: 20px;
- background: #fff;
- }
- .hgc_content .module h2 {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 60px;
- padding: 0 20px;
- font-size: 18px;
- font-weight: normal;
- border-bottom: 1px solid #eee;
- }
- .hgc_content .module h2:after {
- content: '';
- position: absolute;
- width: 2px;
- height: 18px;
- left: 10px;
- top: 50%;
- transform: translateY(-50%);
- background: #2977ff;
- }
- .hgc_content .backModule {
- background: transparent;
- }
- .hgc_content .backModule h2 {
- height: 20px;
- margin-top: 0;
- border: none;
- font-size: 14px;
- }
- .hgc_content .backModule h2:after {
- height: 12px;
- background: #333;
- }
- .hgc_content .backModule h2 .backIcon {
- text-decoration: none;
- color: #333;
- cursor: pointer;
- }
- .hgc_content .backModule h2 .backIcon img {
- display: inline-block;
- vertical-align: -1px;
- }
- .hgc_content .abstract .content {
- display: flex;
- padding: 30px 0;
- align-items: center;
- justify-content: flex-start;
- }
- .hgc_content .abstract .content .item {
- position: relative;
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 125px;
- background: #FFFFFF;
- box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- margin: 0 10px;
- }
- .hgc_content .abstract .content .item .pic {
- flex: 1;
- display: flex;
- justify-content: flex-end;
- }
- .hgc_content .abstract .content .item .pic img {
- width: 80%;
- max-width: 80px;
- height: auto;
- }
- .hgc_content .abstract .content .item .download {
- position: absolute;
- width: 40px;
- height: 40px;
- right: 0;
- top: 0;
- background: url('/images/assist/icon_hgc_download.svg') no-repeat center;
- cursor: pointer;
- }
- .hgc_content .abstract .content .item:last-child .data span strong i {
- left: auto;
- transform: none;
- right: -10px;
- }
- .hgc_content .abstract .content .item:last-child .data span strong i:after {
- left: auto;
- transform: none;
- right: 10px;
- }
- .hgc_content .abstract .content .item .data {
- flex: 1;
- padding: 0 10px;
- }
- .hgc_content .abstract .content .item .data h3 {
- font-weight: bold;
- font-size: 32px;
- }
- .hgc_content .abstract .content .item .data span {
- display: flex;
- align-items: center;
- color: #555;
- }
- .hgc_content .abstract .content .item .data span strong {
- position: relative;
- padding-left: 5px;
- cursor: pointer;
- z-index: 10;
- }
- .hgc_content .abstract .content .item .data span strong img {
- width: 16px;
- height: 16px;
- display: block;
- }
- .hgc_content .abstract .content .item .data span strong:hover i {
- display: block;
- }
- .hgc_content .abstract .content .item .data span strong i {
- display: block;
- position: absolute;
- padding: 5px;
- background: rgba(0, 0, 0, 0.5);
- bottom: 23px;
- left: 50%;
- transform: translateX(-65%);
- color: #fff;
- border-radius: 3px;
- min-width: 200px;
- font-style: normal;
- font-weight: normal;
- display: none;
- }
- .hgc_content .abstract .content .item .data span strong i: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(175%);
- }
- .hgc_content .artical h2 .btns {
- display: flex;
- }
- .hgc_content .artical .content {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- height: 60px;
- flex-wrap: wrap;
- }
- .hgc_content .artical .content span {
- position: relative;
- padding: 0 35px;
- }
- .hgc_content .artical .content span i {
- font-style: normal;
- }
- .hgc_content .artical .content span:last-child:after {
- display: none;
- }
- .hgc_content .artical .content span:after {
- position: absolute;
- content: '';
- right: 0;
- width: 1px;
- height: 16px;
- background: #eee;
- top: 50%;
- transform: translateY(-50%);
- }
- .hgc_dialog .problemList {
- display: flex;
- flex-direction: column;
- justify-content: center;
- height: 300px;
- }
- .hgc_dialog .problemList .problemItem {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 10px;
- height: 54px;
- margin-bottom: 10px;
- background: #FFFFFF;
- border: 1px solid #F8F8F8;
- box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- }
- .hgc_dialog .process {
- display: flex;
- flex-direction: column;
- justify-content: center;
- height: 300px;
- }
- .hgc_dialog .process p {
- padding: 20px 0;
- text-align: center;
- }
- .hgc_dialog .process .processBar {
- height: 20px;
- background: #eee;
- border-radius: 20px;
- padding: 0;
- }
- .hgc_dialog .process .processBar .processBarIn {
- display: block;
- width: 20%;
- height: 20px;
- border-radius: 20px;
- background: #2977ff;
- }
- .hgc_dialog .process .text {
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #666;
- }
- .hgc_dialog .process .hbtn {
- margin: 0 auto;
- }
- .hgc_dialog .steps {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .hgc_dialog .steps i {
- width: 24px;
- height: 24px;
- border-radius: 50%;
- background: #999;
- color: #666;
- text-align: center;
- line-height: 24px;
- font-style: normal;
- cursor: pointer;
- }
- .hgc_dialog .steps i.active {
- background: #2977ff;
- color: #fff;
- }
- .hgc_dialog .steps label {
- width: 32px;
- height: 1px;
- margin: 0 10px;
- background: #eee;
- }
- .hgc_totalHeader {
- display: flex;
- justify-content: flex-start;
- height: 60px;
- background: #F3F8F9;
- }
- .hgc_totalHeader span {
- width: 150px;
- height: 60px;
- text-align: center;
- line-height: 60px;
- cursor: pointer;
- font-size: 16px;
- }
- .hgc_totalHeader span a {
- display: block;
- color: #333;
- }
- .hgc_totalHeader span.active {
- font-weight: bold;
- }
|