zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
 
* {
    margin: 0;
    padding: 0;
}
 
.owner-details-box {
    padding: 10px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color:#677788;
}
 
.owner-details-box table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
 
.owner-details-box table td {
    padding: 0 10px;
    border: 1px solid rgba(231, 234, 243, 0.7);
    height: 36px;
    line-height: 36px;
 
 
}
 
.owner-details-box table td:first-child {
    width: 36%;
}