.container header {
    width: 100%;
    padding: 20px 0;
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

.container header .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container header .main nav .nav {
    display: flex;
    align-items: center;
}


.container header .main nav .nav a {
    display: block;
    padding: 0 16px;
}

.container header .main nav .nav a span {
    display: block;
    position: relative;
    color: #fff;
    opacity: .8;
    font-size: 18px;
    transition: opacity .5s;
}

.container header .main nav .nav a span::before {
    content: '';
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 100%;
    background: #fff;
    transform: scaleX(0);
    transition: transform .5s;
}

.container header .main .logo h1 {
    font-size: 22px;
}

.container header .main nav .nav a:hover span {
    opacity: 1;
}

.container header .main nav .nav a:hover span::before {
    transform: scaleX(1);
}

.container .banner {
    width: 100%;
    font-size: 0;
    margin-top: 10px;
}

.container .banner img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.title_public {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    width: fit-content;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title_public .titIcon {
    width: 120px;
}

.title_public .titIcon:nth-child(1) {
    transform: rotate(180deg);
}

.title_public span {
    margin: 0 30px;
}

.about .title {
    font-weight: bold;
    font-size: 20px;
}

.about .desc {
    margin-top: 10px;
    line-height: 1.7;
    color: #000;
    opacity: .85;
    font-size: 18px;
    text-align: justify;
}

.about .desc p {
    padding-bottom: 5px;
}

.about .desc p::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 100%;
    transform: translateY(-3px);
    margin-right: 10px;
}

.card {
    display: flex;
    gap: 0 20px;
    margin-top: 30px;
}

.card .item {
    width: calc(100% / 3 - (20px / 4 * 3));
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 10px;
    padding: 20px 22px;
}

.card .item .tit {
    font-weight: bold;
    font-size: 20px;
    background-color: rgba(0, 0, 0, .15);
    width: fit-content;
    border-radius: 4px;
    padding: 0 10px;
}



.card .item p {
    font-size: 16px;
    color: #000;
    opacity: .75;
    margin-top: 10px;
    line-height: 1.4;
}

footer {
    background-color: #000;
    opacity: .9;
    margin-top: 30px;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    line-height: 2;
}

footer a {
    color: #fff;
    text-decoration: underline;
    opacity: .8;
}

footer a:hover {
    opacity: 1;
}

.about .text_desc {
    opacity: .5;
    color: #000;
    font-size: 18px;
    text-align: center;
}

.card_list {
    margin-top: 20px;
}

.card_list .item {
    background: rgba(0, 0, 0, .9);
    border-radius: 10px;
    margin: 10px;
    color: #fff;
    padding: 20px 30px;
    transform: scale(.98);
    transition: all .5s;
}

.card_list .item:hover {
    transform: scale(1) translateY(-6px);
    box-shadow: 8px 10px 10px 2px rgba(0, 0, 0, .4);
}

.card_list .item .tip {
    background-color: #fff;
    color: #000;
    width: fit-content;
    padding: 0 10px;
    border-radius: 8px;
}

.card_list .item .row_d {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_list .item .title {
    font-weight: bold;
    font-style: italic;
    margin-top: 15px;
}

.card_list .item .progressBar {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.card_list .item .progressBar .contact {
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
}


.card_list .item .desc {
    margin-top: 12px;
    opacity: .7;
}

.card_list .item .footer {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.card_list .item .footer .avatar {
    width: 110px;
    height: 110px;
    background-size: cover;
    background-position: top center;
    border-radius: 80px;
}

.card_list .item .desc_text {
    margin-top: 10px;
    flex: 1;
    margin-left: 20px;
}

.explanation {
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, .35);
    padding: 20px 30px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .03);
}

.explanation .text_desc {
    color: #000;
    opacity: .9;
    line-height: 1.5;
    text-align: center;
}

.table_box {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    margin-top: 20px;
}

.table_box thead {
    background: #000;
    color: #fff;
}

.table_box thead tr th {
    padding: 12px 0;
    border: #fff;
}

.table_box tbody tr td {
    padding: 10px 0;
    border: 1px solid #ccc;
}

.table_box tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, .051);
}

.table_box tbody tr td:nth-child(2) {
    font-weight: bold;
}

.text_desc2 {
    font-style: italic;
    opacity: 1 !important;
    color: #000;
    font-weight: bold;
}

.manifestoList {
    margin-top: 20px;
}

.manifestoList .item {
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    cursor: pointer;
    transition: all .5s;
    margin-bottom: 20px;
    border-left: 2px solid #000;
}

.manifestoList .item .title {
    font-weight: bold;
    color: #000;
    font-size: 18px;
}


.manifestoList .item .desc {
    margin-top: 10px;
    font-size: 16px;
    opacity: .9z;
}

.manifestoList .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.operatingMethod .title {
    text-align: center;
    margin: 30px auto 0;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

.operatingMethod .desc p {
    line-height: 1.5;
    margin-top: 10px;
    font-size: 20px;
}

.operatingMethod .desc2 p {
    line-height: 1.5;
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    opacity: .8;
}

.cardList_archive .item {
    background-color: rgba(0, 0, 0, .1);
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-top: 20px;
}

.cardList_archive .item .row_d {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cardList_archive .item .row_d .status {
    background-color: #fff;
    border: 1px solid #000;
    padding: 0 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.cardList_archive .item .row_d .status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 100%;
    margin-right: 8px;
}

.cardList_archive .item .row_d .title {
    font-weight: bold;
    font-size: 20px;
}

.cardList_archive .item .date {
    display: flex;
    align-items: center;
    font-size: 0;
    margin-top: 6px;
}

.cardList_archive .item .date img {
    width: 30px;
}
.cardList_archive .item .date span {
    font-size: 18px;
    vertical-align: baseline;
}
.cardList_archive .item .contact {
    font-size: 18px;
    margin-top: 10px;
    color: #000;
}

.explanation .title {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}