120 lines
2.1 KiB
CSS
120 lines
2.1 KiB
CSS
.dialog_out {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
z-index: 1000;
|
|
font-size:15px;
|
|
}
|
|
|
|
.dialog_container {
|
|
position: absolute;
|
|
width: 80%;
|
|
min-height: 70%;
|
|
overflow: hidden;
|
|
/* height: 350px; */
|
|
left: 10%;
|
|
top: 15%;
|
|
border-radius: 8px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.dialog_title {
|
|
position: relative;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
line-height: 16px;
|
|
color: #333;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.dialog_out .close_icon {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 10px;
|
|
color: #666;
|
|
z-index: 1;
|
|
}
|
|
|
|
.dialog_out .search_container {
|
|
position: relative;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-top: 16px;
|
|
padding: 0 30px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.dialog_out .search_text input {
|
|
position: relative;
|
|
float: left;
|
|
margin-right: 15px;
|
|
width: 150px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
border: 1px solid #d4d4d4;
|
|
border-radius: 2px;
|
|
padding: 0 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.dialog_out uni-button[type=primary] {
|
|
position: relative;
|
|
height: 30px;
|
|
width: 90px;
|
|
float: left;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.dialog_out .table_container {
|
|
position: relative;
|
|
width: 90%;
|
|
left: 5%;
|
|
margin-top: 20px;
|
|
bottom: 0;
|
|
}
|
|
|
|
.dialog_out .t-th {
|
|
background-color: rgb(236, 239, 244);
|
|
color: rgb(34, 34, 34);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.dialog_out .t-tr-span .t-tr{
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.dialog_out .t-table .t-tr:nth-child(2n) {
|
|
background: #fff;
|
|
}
|
|
.dialog_out .t-td {
|
|
padding: 14px 0;
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
.dialog_out .t-th {
|
|
padding: 10px 0;
|
|
font-size: 12px !important;
|
|
}
|
|
.dialog_out .pagination {
|
|
position: relative;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
.dialog_out .search_container,uni-button,input{
|
|
font-size: 15px;
|
|
}
|
|
.multi_bottom_btn{
|
|
width: 200px;
|
|
margin: auto;
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
justify-content: center;
|
|
} |