1234567891011121314151617181920212223242526272829303132 |
- .table {
- border: 0px solid darkgray;
- }
- .tr {
- display: flex;
- width: 96vw;
- justify-content: center;
- height: 3rem;
- align-items: center;
- }
- .td {
- width: 32vw;
- justify-content: center;
- text-align: center;
- font-size: 14px;
- }
- .bg-w {
- background: snow;
- }
- .bg-g {
- background: #E6F3F9;
- }
- .th {
- width: 32vw;
- justify-content: center;
- background: #3366FF;
- color: #fff;
- display: flex;
- height: 3rem;
- font-size: 14px;
- align-items: center;
- }
|