123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- ._ProjectCenterBook {
- height: calc(100% - 10px);
- background: #ffffff;
- border-radius: 20px;
- margin-top: 30px;
- padding: 23px 21px;
- .searchBox {
- width: 100%;
- background: #eaf5fd;
- border-radius: 4px;
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- padding: 10px 30px;
- box-sizing: border-box;
- .form {
- display: flex;
- align-items: center;
- margin-right: 20px;
- .formSpan {
- font-size: 16px;
- }
- .btnBox {
- display: flex;
- align-items: center;
- }
- }
- }
- .infoBox {
- width: 100%;
- height: 30px;
- margin: 20px 0;
- ul {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- li {
- list-style: none;
- display: flex;
- align-items: center;
- }
- }
- }
- .tableBox {
- width: 100%;
- height: calc(100% - 180px);
- position: relative;
- .table {
- width: 100%;
- height: calc(100% - 40px);
- display: block;
- .operateBtn {
- width: 54px;
- height: 24px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- span {
- color: #2e77e6;
- }
- }
- }
- .pageBox {
- position: absolute;
- right: 20px;
- bottom: 0;
- text-align: right;
- }
- }
- :deep(.el-table) {
- .el-table__inner-wrapper::before {
- display: none;
- }
- .el-table__header-wrapper {
- border-radius: 4px;
- }
- tr.el-table__row--striped td.el-table__cell {
- background: #f7f7f7;
- }
- }
- :deep(.el-radio__label),
- :deep(.el-checkbox__label) {
- font-size: 16px;
- }
- :deep(.el-radio-group) {
- label {
- margin-right: 10px;
- }
- }
- }
|