﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&display=swap');

:root {
    --main-color: #bb2025;
    --hover-color: #df343a;
    --text-color: #595959;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Roboto", "Noto Sans SC", "Noto Sans TC", sans-serif;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 22px;
}

#YearTable0,
#YearTable1,
#YearTable2 {
    column-gap: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.a-wrapper {
    padding: 0 20px;
    position: relative;
    flex-direction: column;
    display: flex;
}

.a-company-info h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: #bb2025;
}

.a-gov-content {
    margin: 0 auto;
    width: 100%;
    max-width: 860px;
    row-gap: 15px;
    flex-direction: column;
    display: flex;
}

.a-gov-item {
    padding: 36px;
    column-gap: 15px;
    font-size: 18px;
    background-color: #f7f7f7;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    display: flex;
    transition: all .3s ease-in-out;
}

.a-gov-item i {
    color: var(--text-color);
}

.a-gov-item span {
    color: var(--text-color);
}

.a-gov-item:hover i,
.a-gov-item:hover span {
    color: var(--hover-color);
    transition: all .3s ease-in-out;
}

.a-ci-content {
    row-gap: 15px;
    flex-direction: column;
    display: flex;
}

.a-ci-item {
    padding: 36px;
    background-color: #f7f7f7;
    flex-direction: row;
    display: flex;
}

.a-ci-label {
    width: 300px;
}

.a-ci-item a {
    color: var(--main-color);
}

.a-ci-item a:hover {
    text-decoration: underline;
}

.a-lang {
    padding-bottom: 20px;
    column-gap: 20px;
    width: 100%;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
}

.a-lang a {
    cursor: pointer;
}

.a-lang a.active {
    color: var(--main-color);
}

.a-lang a:hover {
    color: var(--hover-color);
}