123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- body {
- position: relative;
- height: 100%;
- overflow: hidden;
- background-color: #ebeef5;
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
- }
- ::-webkit-scrollbar-track {
- border-radius: 10px;
- }
- ::-webkit-scrollbar-thumb {
- background-color: rgba(144, 147, 153, .3);
- border-radius: 10px;
- }
- ::-webkit-scrollbar {
- width: 16px;
- height: 16px;
- }
- ::-webkit-scrollbar-track,
- ::-webkit-scrollbar-thumb {
- border-radius: 999px;
- border: 5px solid transparent;
- }
- ::-webkit-scrollbar-thumb {
- min-height: 20px;
- background-clip: content-box;
- }
- ::-webkit-scrollbar-corner {
- background: transparent;
- }
- html::-webkit-scrollbar,
- body::-webkit-scrollbar,
- #app::-webkit-scrollbar {
- width: 0;
- }
- /*弹窗*/
- .data-report-modal {
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- min-width: 50%;
- overflow: visible;
- bottom: inherit;
- right: inherit;
- }
- .data-report-modal .modal-dialog .modal-content {
- border-radius: 4px;
- box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
- }
- .data-report-modal .modal-dialog .modal-header {
- padding: 0 20px;
- height: 56px;
- line-height: 56px;
- border-bottom: 1px solid #e8eaec;
- }
- .data-report-modal .modal-dialog .modal-header .close {
- margin-top: 16px;
- opacity: 1;
- }
- .data-report-modal .modal-dialog .modal-header .close i {
- font-weight: normal;
- font-size: 18px;
- color: #909399;
- line-height: normal;
- }
- .data-report-modal .modal-dialog .modal-header .close:hover i {
- color: #1890ff;
- }
- .data-report-modal .modal-dialog .modal-header .modal-title {
- height: 56px;
- line-height: 56px;
- }
- .header {
- width: 100%;
- position: relative;
- height: 60px;
- line-height: 60px;
- background-color: #fff;
- border-bottom: 1px solid #dfe6ec;
- }
- .header .tools {
- position: absolute;
- top: 0;
- width: 100%;
- height: 60px;
- text-align: center;
- display: flex;
- align-items: center;
- /* justify-content: center; */
- padding-left: 10px;
- }
- .header .tools a {
- color: #333;
- text-decoration: none;
- }
- .header .tools .pageNum {
- color: #333;
- font-size: 14px;
- }
- .header .tools .tool-icon {
- margin: 0 10px;
- cursor: pointer;
- height: 40px;
- padding: 0;
- display: flex;
- align-items: center;
- }
- .header .tools .tool-icon:hover {
- background-color: #d4d4d4;
- }
- .header .tools .tool-icon.tool-line {
- display: inline-block;
- height: 60px;
- border-left: 1px solid #e6e6e6;
- }
- .header .tools .tool-icon img {
- width: 28px;
- height: 28px;
- }
- /* .header .pageLinkContainer .tool-icon {
- width: 25px;
- height: 25px;
- color: #000;
- } */
- .header .pageLinkContainer {
- display: flex;
- align-items: center;
- height: 60px;
- }
- .header .pageLinkContainer .pageNum {
- font-style: normal;
- font-size: 18px;
- line-height: 60px;
- display: inline-block;
- vertical-align: middle;
- }
- .options {
- position: absolute;
- right: 20px;
- height: 60px;
- width: 70px;
- text-align: right;
- }
- .preview-bd {
- /* padding: 10px 0 0; */
- background-color: #fff;
- height: calc(100vh - 60px);
- overflow: auto;
- }
- .preview-bd ._ureport_table {
- padding: 20px;
- display: inline-block;
- background-color: #fff;
- /* border: 1px solid #dfe6ec; */
- min-height: calc(100vh - 120px);
- }
- .pdfclose {
- font-weight: 200;
- color: #909399;
- }
- .pdfclose:hover {
- color: #1890ff;
- }
- .preview-bd ._ureport_table_form {
- background-color: #fff;
- padding: 10px;
- /* margin-bottom: 10px; */
- }
- @media screen and (max-width: 750px) {
- .small-screen {
- display: none !important;
- }
- }
|