@import url('https://fonts.cdnfonts.com/css/tahoma');


:root {
    --main-color: #0168b7;
    --hover-color: #f39801;
    --text-black-color: #373737;
}

.d-none {
    display: none;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 18px;
    font-weight: 400;
    font-family: system-ui, "Microsoft YaHei", 微软雅黑, arial, tahoma, MicrosoftJhengHei, "sans-serif"
}

header {
    font-family: 'Tahoma', sans-serif;
}

body {
    line-height: 1.5;
    color: var(--text-black-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p {
    line-height: 1.5;
}

p:last-child {
    margin: 0;
    padding: 0;
}

button {
    border: none;
    background-color: transparent;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a>em {
    color: white;
}

hr {
    height: .2rem;
    width: 100%;
    margin: 0;
    border: none;
}

h2 {
    font-weight: 700;
}

main {
    width: 100%;
    position: relative;
}

.content-inside {
    width: 100%;
    position: relative;
}

#ContactMapDiv {
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.a-title-left-line {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 10px solid var(--main-color);
}

.a-inner-page-banner {
    height: 420px;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a-inner-page-title h1 {
    margin-bottom: 0;
    font-weight: 900;
    color: var(--main-color);
    text-transform: uppercase;
}

#BannerAboutus_Div {
    background-position: center 70%;
    background-image: url(../img/aboutus.jpg);
}

.wrapper {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-black-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--hover-color);
}

#HomeBanner_Swiper .swiper-pagination {
    bottom: 20px;
}


/* Navbar */

.a-navbar-box {
    width: 100%;
    padding: 10px 20px;
    z-index: 10000;
    background-color: white;
    border-bottom: 3px solid var(--main-color);
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.a-navbar-box.active {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
}

.a-navbar-box.active .company-logo {
    max-width: 200px;
    transition: all .3s ease-in-out;
}

.company-logo {
    width: 100%;
    max-width: 220px;
    transition: all .3s ease-in-out;
}

body.menu-active {
    overflow-y: hidden;
}

.a-navbar-pop-up-top {
    padding: 30px 40px;
    width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.a-navbar-pop-up-top img {
    max-width: 100px;
}

.a-navbar-pop-up-top .a-menu-button {
    margin: 0;
    padding: 0;
}

.a-navbar-pop-up-top .a-menu-button em {
    font-size: 32px;
    transform: rotate(45deg);
}

.a-navbar-pop-up-top .a-menu-button em:hover {
    color: var(--hover-color);
}

.a-navbar-pop-up {
    top: 0;
    right: 0;
    width: 100%;
    max-width: 460px;
    height: 100vh;
    z-index: 10000;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
}

.a-navbar-pop-up.active {
    display: flex;
}

.a-navbar-pop-up em {
    font-size: 24px;
    color: var(--text-black-color);
}

.a-navbar-pop-up>ul {
    width: 100%;
}

.a-navbar-pop-up>ul>li>a {
    padding: 20px 40px;
    width: 100%;
    border-bottom: 1px solid rgb(212, 212, 212);
    color: var(--text-black-color);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.a-navbar-pop-up>ul>li>a:hover {
    border-bottom: 1px solid transparent;
    background-color: var(--hover-color);
}

.a-navbar-pop-up>ul>li>a:hover span {
    color: white;
}

.a-navbar-pop-up>ul>li>a:hover em {
    color: white;
}

.a-menu.active .a-sub-menu {
    display: flex;
    flex-direction: column;
}

.a-menu.active>a {
    background-color: var(--main-color);
}

.a-menu.active>a>span {
    color: white;
}

.a-menu.active>a>em {
    color: white;
}

.a-menu button {
    padding: 20px 40px;
    width: 100%;
    border-bottom: 1px solid rgb(212, 212, 212);
    color: var(--text-black-color);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.a-menu button span {
    font-size: 18px;
}

.a-sub-menu {
    display: none;
    padding: 20px 0;
}

.a-sub-menu li {
    padding: 10px 40px;
}

.a-sub-menu a {
    color: var(--text-black-color);
}

.a-sub-menu a:hover {
    color: var(--hover-color);
}

.a-lang {
    display: flex;
    align-items: center;
}

.a-lang span {
    color: var(--text-black-color);
    ;
}

.a-lang a {
    padding: 0 10px;
    color: var(--main-color);
    font-family: "Noto Sans TC", "Noto Sans SC", sans-serif;
}

.a-lang a:hover {
    color: var(--hover-color);
}

.a-lang button {
    margin-left: 10px;
    padding: 10px 15px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
}

.a-lang button:hover {
    background-color: var(--hover-color);
}

.a-lang button em {
    color: white;
    font-size: 36px;
}

.a-textsize {
    font-size: 16px;
}

/* Navbar End */

.sections {
    width: 100%;
}

/* Google Map */
.a-map-responsive {
    overflow: hidden;
    width: 65%;
    padding-bottom: 35%;
    position: relative;
    height: 55%;
}

.a-map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/* Section Background */
.about-section,
.corporate-info-section,
.business-section,
.contact-section,
.report-section {
    position: relative;
    z-index: 999;
    height: 100%;
    width: 100%;
    padding: 160px;
}

.ir-section {
    width: 100%;
    padding: 100px;
    position: relative;
}

.a-about-container,
.a-corporate-info-container,
.a-business-container,
.a-ir-container,
.a-contact-container,
.a-report-container,
.a-footer.container {
    width: 100%;
}

.bg-contact-us {
    background: url(../img/aboutus.jpg) no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#HomeAnnouncement_Div {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)), url(../img/bg.jpg);
    background-position: center center;
    background-attachment: fixed;
}

#HomeAnnouncement_Div .a-title-container h2 {
    color: white;
}

.form-control {
    width: 120px;
    padding: 0 10px;
}

/* Auto Upload System TEXT*/
.aconnectSystem {
    width: 100%;
    text-align: right;
    font-size: 13px;
    padding-top: 20px;
}

/* Index */
.a-business-box {
    display: flex;
    flex-direction: column;
    margin: 40px auto 0;
    width: 100%;
}

.business-item {
    padding: 25px;
}

.business-item:last-child {
    margin-bottom: 0;
}

.business-titie {
    font-weight: 600;
    color: white;
}

.business-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.business-content>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.business-content a {
    padding: 10px 30px;
    transition: all .3s ease-in-out;
    background-color: var(--main-color);
    color: white;
    display: flex;
}

.business-content a:hover {
    transition: all .3s ease-in-out;
    background-color: var(--hover-color);
}

.business-content p {
    color: white;
}

.ir-section .row {
    justify-content: space-evenly;
}

.report-swiper-container,
.a-announcement-container {
    margin-top: 40px;
    overflow: hidden;
}

.report-swiper-container h3 {
    font-size: 20px;
    margin-top: 10px;
}

.report-img {
    width: 100%;
    max-width: 260px;
}

.a-financial-container {
    position: relative;
}

.a-financial-container .swiper-slide {
    text-align: center;
}

.a-announcement-text li {
    margin-bottom: 20px;
}

.a-announcement-text li:last-child {
    margin-bottom: 0;
}

.a-announcement-text a {
    display: flex;
    flex-direction: column-reverse;
}

.a-announcement-text a:hover h3,
.a-announcement-text a:hover span {
    color: var(--hover-color);
}

.a-announcement-text a h3 {
    line-height: 1.5;
    font-size: 20px;
    color: white;
}

.a-announcement-text a span {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.a-footer-container {
    padding: 30px 40px;
    width: 100%;
    background: #f7f7f7;
    color: white;
}

.a-footer-inside {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.a-footer-inside img {
    width: 100%;
    max-width: 150px;
}

.a-footer-text {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--text-black-color);
}

.a-footer-text span {
    margin: 0 10px;
}

.a-footer-text a {
    color: var(--main-color);
}

.a-footer-text a:hover {
    color: var(--hover-color);
}

.a-inner-page-content {
    padding: 100px 160px;
}

.a-inner-page-content h2 {
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.a-contact-inner {
    width: 100%;
    column-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    justify-content: space-between;
}

.a-contact-item {
    margin-bottom: 20px;
}

.a-contact-item em {
    min-width: 20px;
    margin-right: 10px;
}

.a-contact-item a {
    color: var(--main-color);
}

.a-contact-item a:hover {
    color: var(--hover-color);
}

.a-ci-item {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid lightgrey;
    display: flex;
    flex-direction: row;
}

.a-ci-label {
    width: 40%;
}

.a-ci-content {
    width: 60%;
}

.a-ci-content a {
    word-break: break-word;
    color: var(--main-color);
}

.a-ci-content a:hover {
    color: var(--hover-color);
}

.a-report-inner {
    display: flex;
    flex-direction: column;
}

#YearDiv {
    margin: 0 0 0 auto;
}

.report-box {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.report-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.report-item img {
    margin-bottom: 10px;
    width: 100%;
    max-width: 280px;
}

.report-item span {
    font-weight: 500;
    color: var(--text-black-color);
}

.report-item:hover span {
    color: var(--hover-color);
}

#BackToTop_Div {
    bottom: 20px;
    right: 30px;
    z-index: 9999;
    background-color: var(--main-color);
    padding: 10px 20px;
    border-radius: 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    -moz-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: none;
    border: none;
    outline: none;
    position: fixed;
    cursor: pointer;
}

#BackToTop_Div.active {
    display: flex;
}

#BackToTop_Div em {
    color: white;
}

#BackToTop_Div:hover {
    background-color: var(--hover-color);
}

.a-title-container {
    display: flex;
    flex-direction: row;
}

.a-title-container span {
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    display: flex;
}

.a-title-container h2 {
    margin-bottom: 20px;
    padding-left: 10px;
}

.a-inner-content {
    margin: 0 auto;
    padding: 180px 40px;
    width: 100%;
    max-width: 1600px;
}

.corpinfo-row {
    padding: 20px 0;
    border-bottom: 1px solid var(--text-black-color);
}

.a-prospectus {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.a-prospectus img {
    margin-bottom: 20px;
    width: 100%;
    min-width: 280px;
    max-width: 280px;
    height: 410px;
}

.a-prospectus a {
    align-items: center;
    flex-direction: column;
    display: flex;
}

.a-prospectus a:hover h6 {
    color: var(--hover-color) !important;
}

.a-prospectus h6 {
    color: var(--main-color);
}

.a-discalimer-desc {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
}

.a-discalimer-desc p {
    text-align: justify;
}

.footer-fixed .a-inner-content {
    padding: 300px 20px;
}

#CGDiv {
    row-gap: 40px;
    column-gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.a-cg-item {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.a-cg-item h4 {
    padding-left: 15px;
    border-left: 5px solid var(--main-color);
    font-weight: 600;
    font-size: 22px;
}

.a-cg-item ul {
    padding-left: 20px;
}

.a-inner-row {
    width: 100%;
}

.a-inner-row:first-child {
    margin-bottom: 120px;
}

.a-inner-title {
    margin-bottom: 60px;
    font-weight: 600;
    font-size: 28px;
    color: var(--text-black-color);
    text-align: center;
}

#GDDiv {
    row-gap: 40px;
    column-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}

.a-gdd-item {
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    display: flex;
}

.a-gdd-item i {
    color: var(--main-color);
}

.a-gdd-item:hover i {
    color: var(--hover-color);
}

.a-gdd-row {
    flex-direction: column;
    display: flex;
}

.a-gdd-row h6 {
    padding-left: 15px;
    border-left: 5px solid var(--main-color);
    font-weight: 600;
    font-size: 22px;
    color: var(--text-black-color);
}

.a-gdd-row span {
    padding-left: 20px;
    color: var(--text-black-color);
}

.a-navbar-right {
    column-gap: 30px;
    flex-direction: row;
    display: flex;
}

.a-main-menu {
    align-items: center;
    display: flex;
}

.a-main-menu ul {
    column-gap: 25px;
    flex-direction: row;
    display: flex;
}

.a-main-menu ul li a {
    color: var(--text-black-color);
}

.a-main-menu ul li:hover a {
    color: var(--hover-color);
}

.a-main-menu li {
    display: flex;
}

.a-main-menu ul li a {
    font-size: 17px;
    font-weight: 600;
}

@media screen and (min-width: 1920px) {

    .a-lang a,
    .a-main-menu ul li a {
        font-size: 20px;
    }
}

@media screen and (max-width: 1600px) {
    .a-business-box {
        max-width: 100%;
    }

    .a-main-menu ul li a {
        font-size: 14px;
    }
}

@media screen and (max-width: 1480px) {
    .company-logo {
        max-width: 160px;
    }
}

@media screen and (max-width: 1400px) {
    .a-ci-item {
        flex-direction: column;
    }

    .a-ci-label {
        width: 100%;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .a-ci-content {
        width: 100%;
    }
}

@media screen and (max-width: 1360px) {
    .a-main-menu ul {
        column-gap: 15px;
    }

    .a-main-menu ul li a {
        font-size: 13px;
    }
}

@media screen and (min-width: 1200px) {
    .a-lang button {
        display: none;
    }
}

@media screen and (max-width: 1199px) {
    .a-main-menu {
        display: none;
    }

    p {
        font-size: 18px;
    }

    .swiper-bg h3 {
        font-size: 36px;
    }

    .about-section,
    .corporate-info-section,
    .business-section,
    .contact-section,
    .report-section {
        padding: 60px;
    }

    .a-inner-page-content {
        padding: 60px;
    }

    .business-titie {
        margin-bottom: 20px;
    }

    .business-content {
        flex-direction: column-reverse;
    }

    .business-content>div {
        padding-right: 0;
        align-items: center;
    }

    .ir-section {
        padding: 100px 60px;
    }

    .a-financial-container {
        margin-bottom: 100px;
    }

    .a-announcement-text li {
        margin-bottom: 0;
    }

    .a-announcement-text li a {
        padding: 20px;
    }

    .a-announcement-text li:nth-child(odd) {
        background-color: rgb(243, 243, 243);
    }

    .a-announcement-text a h3 {
        margin-bottom: 0;
    }

    .a-footer-text {
        text-align: center;
    }

    .swiper-wrapper .a-swiper-slogan {
        height: 100%;
        width: 100% !important;
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }

    .swiper-wrapper .a-swiper-slogan h3 {
        border-bottom: none;
        color: white;
    }
}

@media screen and (max-width: 991px) {
    .a-business-box {
        flex-direction: column;
    }

    .a-navbar-box {
        padding: 10px 20px;
    }

    #CGDiv {
        grid-template-columns: repeat(1, 1fr);
    }

    .a-about-grid-3 {
        grid-template-columns: repeat(2, auto);
    }

    .a-about-grid-item h4 {
        font-size: 20px;
    }

    .a-about-grid-item h5 {
        font-size: 16px;
    }

    .a-contact-inner {
        row-gap: 40px;
        flex-direction: column;
        display: flex;
    }

    .report-item img {
        max-width: 180px;
    }
}

@media screen and (max-width: 640px) {
    .a-about-grid-3 {
        grid-template-columns: repeat(1, auto);
    }

    #GDDiv {
        grid-template-columns: repeat(1, auto);
    }

    .a-gdd-row h6,
    .a-cg-item h4 {
        font-size: 18px;
    }

    .a-gdd-item {
        padding: 20px;
    }

    .swiper-bg h3 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
        text-align: justify;
    }

    .a-lang>a {
        font-size: 16px;
    }

    .a-textsize {
        display: none;
    }

    .company-logo {
        max-width: 100px;
    }

    .a-navbar-box.active .company-logo {
        max-width: 80px;
    }

    .a-inner-page-content {
        padding: 40px 30px;
    }

    .a-inner-page-content h2 {
        padding-bottom: 0;
    }

    .about-section,
    .corporate-info-section,
    .business-section,
    .contact-section,
    .report-section {
        padding: 40px 30px;
    }

    .ir-section {
        padding: 40px 30px;
    }

    .ir-section h2 {
        font-size: 24px;
    }

    .a-financial-container {
        margin-bottom: 40px;
    }

    .a-inner-page-banner {
        height: 280px;
    }

    .swiper-bg {
        height: 280px;
        background-position: center 50%;
    }

    .sections>h2 {
        font-size: 24px;
    }

    .business-titie {
        font-size: 24px;
    }

    .business-content a {
        font-size: 16px;
    }

    .business-content img {
        max-width: initial;
    }

    .a-announcement-text a h3 {
        font-size: 16px;
    }

    .report-img {
        max-width: 180px;
    }

    .a-inner-page-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .a-ci-label {
        font-size: 18px;
    }

    .a-ci-content {
        font-size: 16px;
    }

    .a-inner-content {
        padding: 40px;
    }

    .a-inner-page-title h1 {
        font-size: 28px;
        text-align: center;
    }

    .a-inner-title {
        font-size: 20px;
    }

    .a-cg-item,
    .a-gdd-item {
        padding: 0 0 15px;
        flex-direction: column;
    }

    .a-gdd-row {
        width: 100%;
        border-left: 0;
        border-top: 5px solid var(--main-color);
        padding: 0;
        margin-bottom: 15px;
    }

    .a-cg-item h4 {
        border-left: 0;
        border-top: 5px solid var(--main-color);
        padding: 15px 15px 0;
        text-align: center;
    }

    .a-cg-item ul {
        padding: 0;
    }

     .a-cg-item ul li {
        text-align: center;
     }

    .a-gdd-row h6 {
        text-align: center;
        border-left: 0;
        padding: 15px 15px 0;
    }

    .a-gdd-row span {
        padding-left: 0;
        text-align: center;
    }
}

@media screen and (max-width: 414px) {
    .company-logo {
        max-width: 100px;
    }

    .a-inner-content {
        padding: 20px;
    }

    .a-navbar-box.active .company-logo {
        max-width: 120px;
    }

    .a-lang button {
        padding: 5px 10px;
    }

    .a-sub-menu li,
    .a-navbar-pop-up>ul>li>a {}

     .report-item img {
        max-width: 130px;
    }
}