123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- @import "../../../../src/theme.less";
- :host {
- width: 100%;
- height: 100%;
- position: fixed;
- left: 0;
- top: 0;
- background: rgba(0, 0, 0, 0.4);
- z-index: 999;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .detail {
- width: 1000px;
- min-height: 580px;
- border-radius: 5px;
- background: #fff;
- color: #333;
- font-size: 14px;
- padding: 12px 20px;
- padding-bottom: 70px;
- position: relative;
- .title {
- font-size: 18px;
- text-align: center;
- line-height: 24px;
- margin: 0;
- margin-bottom: 12px;
- position: relative;
- i {
- position: absolute;
- right: 0;
- top: 0;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- padding: 0 5px;
- }
- }
- .content {
- width: 960px;
- overflow: hidden;
- .select {
- width: 100%;
- background: #f9fafb;
- border: 1px solid #e5e9ed;
- border-radius: 5px;
- padding: 13px 20px;
- .label {
- margin-bottom: 8px;
- }
- }
- .table {
- width: 100%;
- margin-top: 15px;
- .thead {
- background-image: repeating-linear-gradient(
- to right,
- @bg-start,
- @bg-end 100%
- ) !important;
- th {
- color: #fff !important;
- text-align: center;
- font-size: 12px;
- border: none;
- }
- }
- .box {
- min-height: 380px;
- border-radius: 5px;
- background: #f9fafb;
- border: 1px solid #e5e9ed;
- padding-bottom: 60px;
- position: relative;
- .pagination {
- margin-top: 14px;
- position: absolute;
- bottom: 12px;
- right: 5px;
- }
- }
- }
- }
- .btns {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: 20px;
- button {
- margin: 9px;
- margin-bottom: 0;
- }
- }
- }
|