123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- * {
- margin: 0;
- padding: 0;
- }
- html, body {
- width: 100%;
- height: 100%;
- overflow-y: hidden;
- }
- body {
- background: #121e39;
- }
- .nav {
- width: 100%;
- display: flex;
- justify-content: center;
- padding-top: 5px;
- }
- .nav .logo-img {
- width: 308px;
- height: 57px;
- position: absolute;
- left: 50px;
- }
- .nav-title {
- position: absolute;
- text-align: center;
- color: white;
- font-size: 36px;
- }
- .org-name {
- position: absolute;
- top: 65px;
- text-align: center;
- color: white;
- font-size: 24px;
- }
- .title-line {
- width: 100%;
- overflow: hidden;
- position: absolute;
- top: 70px;
- }
- .date-display {
- position: absolute;
- right: 50px;
- top: 40px;
- font-size: 20px;
- color: #ffffff;
- }
- .main {
- position: absolute;
- display: flex;
- flex-direction: column;
- top: 130px;
- bottom: 0;
- width: 100%;
- }
- .task-order {
- flex: 1;
- overflow: hidden;
- height: 96.5%;
- }
- .ongoing-order {
- height: 480px;
- display: none;
- }
- .chart-container {
- background: rgba(23,49,96,0.7);
- margin: 0 15px 15px;
- border-radius: 5px;
- height: 96.5%;
- overflow: hidden;
- }
- .chart-title-img {
- background: #0a3849;
- height: 35px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-radius: 5px 5px 0 0;
- }
- .chart-title-img img:first-child {
- width: 30px;
- height: 30px;
- }
- .icon-title {
- color: #fefffe;
- flex: 2;
- display: inline-block;
- line-height: 35px;
- padding-left: 5px;
- font-size: 30px;
- }
- .icon-img {
- float: right;
- padding-right: 15px;
- }
- /*表格*/
- .table {
- color: #ffffff;
- width: 100%;
- padding: 10px;
- /*height: 100%;*/
- }
- th,td {
- text-align: center;
- font-size: 24px;
- height: 38px;
- }
- .table thead tr{
- background: #157490;
- }
- .table tbody tr:nth-child(odd){
- background: rgba(25,177,201,0.2);
- }
- .table tbody tr:nth-child(even){
- background: rgba(10,56,73,0.58);
- }
- .table-task-name, .table-project-name {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .table-task-name {
- max-width: 90px;
- }
- .table-project-name {
- max-width: 310px;
- }
|