| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .container {
- .result-view {
- display: flex;
- justify-content: space-between;
- padding: 5px 10px;
- align-items: center;
- align-content: center;
- text {
- color: #666;
- font-size: 12px;
- }
- }
- &__list-top {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- background-color: #f0f0f0;
- height: 35px;
- align-items: center;
- &__row {
- display: flex;
- flex-direction: row;
- align-items: center;
- align-content: center;
- width: 100%;
- text {
- font-size: 13px;
- color: #666;
- text-align: center;
- width: 100%;
- }
- }
- }
- &__list-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- width: 100%;
- &__row {
- display: flex;
- flex-direction: row;
- align-items: center;
- align-content: center;
- width: 100%;
- height: 45px;
- border-bottom: 1px solid #f0f0f0;
- justify-content: space-between;
- text {
- font-size: 14px;
- color: #333;
- text-align: center;
- width: 100%;
- }
- }
- }
- }
|