:root {
    --color-main: #002060;
    --color-main-50: #0D418E;
}
html,
body {
    width: 100vw;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}
.main-body {
    min-height: 70vh;
}
@media (max-width: 860px) {
    .main-body {
        min-height: 90vh;
    }
}

input::placeholder,
*:not(font):not(i) {
    font-family: 'Noto Sans TC', 'Noto Sans SC', sans-serif!important;
    /*font-family: Noto Sans CJK TC;*/
    box-sizing: border-box;
    outline: none;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

h3 {
    margin: 0;
    font-size: 49px;
}
h4 {
    margin: 0;
    font-size: 39px;
}
.subtitle-2 {
    font-size: 25px;
}

.link {
    display: inline-block;
    background-color: var(--color-main);
    color: #FFFFFF;
    padding: 12px 32px;
    border: none;
    border-radius: 2px;
}
.link:hover {
    color: #FFFFFF;
}


.container:before,
.container:after {
    content: '';
    display: none;
}
@media (min-width: 1470px) {
    .container {
        width: 1440px;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 24px 0;
    background: none;
    font-size: 20px;
    color: #838688;
}
.breadcrumb > li:not(:first-child)::before {
    font-family: FontAwesome;
    content: '\f105';
    margin: 0 24px;
    font-size: 20px;
}
.breadcrumb > li:nth-child(2)::before {
    content: '';
    margin: 0!important;
}
@media (max-width: 860px) {
    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }
    .breadcrumb a {
        white-space: nowrap;
    }
    .breadcrumb > li:not(:first-child)::before {
        margin: 0 4px;
        font-size: 16px;
    }
}

header {
    position: relative;
    background-color: var(--color-main);
    z-index: 999;
}
@media (max-width: 860px) {
    header .list-inline > li:not(.language-item) {
        display: none;
    }
}

#common-home header {
    background-color: transparent;
}
#common-home .header-top {
    background-color: var(--color-main);
    background-image: url("../image/banner_backgroung.png");
    background-blend-mode: multiply;
}
#top {

}
#top > .container {
    display: flex;
    align-items: center;
    padding: 16px;
    color: #FFFFFF;
}
#top .list-inline {
    flex: 1;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
#top .list-inline ul {
    margin: 0;
}
#top .list-inline li {
    position: relative;
}
#top .list-inline li a {
    padding: 12px 16px;
    font-size: 16px;
}
#top .list-inline .dropdown-menu {
    color: #555555;
}
#top .list-inline .dropdown-menu li a {
    display: block;
    padding: 8px 12px;
}
#top .list-inline .dropdown-menu li:hover {
    background-color: rgba(0, 0, 0, .1);
}

.logo-container {
    display: flex;
    align-items: center;
}
.logo-container .logo {
    width: 48px;
    height: 48px;
}
.logo-container .name {
    margin: 0 12px;
    font-size: 31px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif!important;
}
@media (max-width: 480px) {
    .logo-container .logo {
        width: 40px;
        height: 40px;
    }
    .logo-container .name {
        font-size: 24px;
    }
}

.banner-layout {
    margin: 0;
    color: #FFFFFF;
}
.banner-layout .banner {
    width: 100%;
}
.banner-layout .banner-wrapper {
    display: flex;
    justify-content: center;

}
.banner-layout .banner-container {
    display: flex;
    padding: 48px;
    width: 100%;
    max-width: 1200px;
}
.banner .left-content {
    flex: 1;
    padding-right: 120px;
}
.banner .img-container {
    width: 440px;
    height: 400px;
}
.banner .img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}
.banner .title {
    font-size: 60px;
    /*line-height: 60px;*/
}
.banner .sub-title {
    font-size: 20px;
    color: #ADB0B3;
    margin-top: 4px;
}
.banner .banner-link {
    display: inline-block;
    background-color: #1957A5;
    border-radius: 2px;
    font-size: 16px;
    margin-top: 32px;
    padding: 12px 32px;
}
@media (max-width: 860px) {
    .banner .title {
        font-size: 36px;
    }
    .banner .img-container {
        display: none;
    }
    .banner .left-content {
        padding-right: 0;
    }
}

.home-category {
    padding: 64px 0;
}
.home-category .top {
    display: flex;
    justify-content: space-between;
    margin-right: 64px;
}
.home-category .top .description {
    display: flex;
    flex-direction: column;
}
.home-category .category-container .category-list {
    margin-top: 32px;
}
.home-category .category-container .category-item {
    position: relative;
    display: inline-block;
    width: 320px;
    height: 320px;
    overflow: hidden;
    margin: 16px;
}
.home-category .category-container .category-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.9);
    background-color: rgba(0, 0, 0, .1);
}
.home-category .category-container .category-item .name {
    position: absolute;
    padding: 12px;
    left: 0;
    bottom: 0;
    color: #FFFFFF;
    font-size: 25px;
}
.category-container .slick-arrow {
    top: calc(100% + 16px);
}
.category-container .slick-prev {
    left: 0;
}
.category-container .slick-next {
    left: calc(40px + 16px);
}
.category-container .slick-arrow::before {
    color: #000000;
    font-size: 40px;
}
@media (max-width: 860px) {
    .home-category {
        padding: 32px 0 64px 24px;
    }
    .home-category .category-container .category-item {
        width: 240px;
        height: 240px;
    }
}

.product-form {
    padding: 64px;
    background-color: var(--color-main-50);
}
.product-form .container {

}
.product-form h4 {
    color: #FFFFFF;
    margin-bottom: 32px;
}
.product-form .content {
    display: flex;
}
.product-form .left {
    padding-right: 64px;
}
.product-form .left .img-container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 430px;
}
.product-form .left .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-form .form-group {
    max-width: 400px;
}
.product-form label {
    color: #FFFFFF;
}
.product-form .left,
.product-form .right {
    flex: 1;
}
.product-form .submit {
    background-color: var(--color-main);
    color: #FFFFFF;
    padding: 12px 32px;
    border: none;
    border-radius: 2px;
}
@media (max-width: 860px) {
    .product-form {
        padding: 64px 32px;
    }
    .product-form .left {
        display: none;
    }
    .product-form .form-group {
        max-width: 100%;
    }
}

.introduce-list {
    display: flex;
    flex-direction: column;
}
.introduce-list > *:nth-child(odd) {
    background-color: #F8F8F8;
}
.introduce-list > *:nth-child(even) .container {
    flex-direction: row-reverse;
}
.introduce .container {
    display: flex;
    justify-content: space-between;
    padding: 64px;
}
.introduce .container:before,
.introduce .container:after {
    content: none;
}
.introduce .img-container {
    flex: 1;
    display: flex;
    justify-content: center;
}
.introduce .img-container img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
}
.introduce .info-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.introduce .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.introduce ul {
    padding: 0 24px;
    margin: 24px 0 48px;
}
@media (max-width: 860px) {
    .introduce .container {
        flex-direction: column!important;
        padding: 64px 0;
    }
    .introduce .info-container {
        padding: 0 24px;
    }
    .introduce .img-container img {
        max-width: 280px;
        max-height: 280px;
    }
    .introduce .info {
        margin-top: 24px;
    }
}

footer {
    padding: 64px 16px;
    background-color: var(--color-main);
}
footer > .container {
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
}
footer .store-info {
    width: 280px;
    display: flex;
    flex-direction: column;
}
footer .store-info .description {
    margin-top: 24px;
    font-size: 13px;
    line-height: 20px;
}
footer nav {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-left: 64px;
}
footer nav a {
    margin: 0 8px 16px;
    padding: 8px;
}
@media (max-width: 860px) {
    footer {
        display: none;
    }
}

.page-header {
    margin: 0;
    padding: 64px;
    background-color: var(--color-main);
    color: #FFFFFF;
}
.page-header h3 {
    margin-bottom: 12px;
}
@media (max-width: 860px) {
    .page-header {
        display: none;
    }
}

.product-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-left: 48px;
}
.product-list .product {
    margin: 0 16px 32px;
    padding: 20px;
    border: 1px solid var(--color-main);
    border-radius: 4px;
}
.product-list .product .name {
    margin-top: 8px;
    font-size: 20px;
    color: var(--color-main);
}

#product-category {
    display: flex;
    padding-top: 24px;
    padding-bottom: 24px;
}
@media (max-width: 860px) {
    #product-category {
        flex-direction: column;
    }
    #product-category .category-menu {
        margin-bottom: 24px;
    }
    #product-category .subtitle-2 {
        display: flex;
        align-items: center;
    }
    #product-category .subtitle-2::before {
        content: "\f0c9";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        margin-right: 12px;
    }
    #product-category nav {
        height: 0;
        overflow-y: auto;
        transition: height 1000ms;
    }
    #product-category .category-menu.open nav {
        height: auto;
    }
    .product-list {
        margin: 0;
    }
}
@media (max-width: 480px) {
    .product-list {
        justify-content: center;
    }
}

.category-menu {
    width: 320px;
    padding: 0 24px 0 0;
}
.category-menu .subtitle-2 {
    position: relative;
    padding-bottom: 24px;
}
.category-menu .subtitle-2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ADB0B3;
}

.category-menu .nav-link:hover {
    background-color: inherit!important;
}
.nav:not(.nav-treeview) {
    border-bottom: 2px solid #ADB0B3;
    font-size: 20px;
    color: #5A5C5E;
}
.nav.nav-treeview {
    font-size: 16px;
    color: #676A6C;
}
.nav:not(.nav-treeview) .nav-link {
    display: flex;
    align-items: center;
    padding: 16px 0;
}
.nav.nav-treeview .nav-link {
    padding: 10px 0;
}
.nav.nav-treeview li:first-child .nav-link {
    padding-top: 8px;
}
.nav:not(.nav-treeview) .nav-link span {
    flex: 1;
    margin: 0 16px;
}
.nav:not(.nav-treeview) .nav-link .right {
    font-size: 12px;
}
.nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}
.nav-link.active {
    color: var(--color-main-50);
    font-weight: 500;
}

#product-product {
    display: flex;
    flex-direction: column;
}
#product-product .top {
    padding-top: 64px;
    padding-bottom: 64px;
}
#product-product .top .subtitle-2 {
    font-size: 25px;
    color: #5A5C5E;
    margin-bottom: 8px;
}
#product-product .info {
    display: flex;
    justify-content: space-between;
}
#product-product .info .name {
    flex: 1;
    font-size: 49px;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 64px;
}
#product-product .info .short-description {
    flex: 1;
    font-size: 20px;
}
#product-product .image-slide-wrapper {
    display: flex;
    justify-content: center;
    background-color: #F8F8F8;
}
#product-product .image-slide {
    width: 100%;
    height: 100%;
    max-width: 480px;
    max-height: 480px;
}
#product-product .image-slide .slick-prev:before,
#product-product .image-slide .slick-next:before {
    font-size: 24px;
    color: #000000;
}
#product-product .image-slide .slick-prev {
    left: -48px;
}
#product-product .image-slide .slick-next {
    right: -48px;
}
#product-product .image-slide .img-container {
    width: 100%;
    height: 100%;
    max-width: 480px;
    max-height: 480px;
}
#product-product .image-slide .img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
#product-product .bottom {
    padding: 64px;
}
#product-product .tab-link {
    display: flex;
    margin-bottom: 32px;
}
#product-product .tab-link a {
    flex: 1;
    padding: 16px 32px;
    text-align: center;
    background-color: #98D7EC;
    color: #002060;
    border: 1px solid #FFFFFF;
}
#product-product .tab-link .active {
    background-color: #002060;
    color: #FFFFFF;
}
@media (max-width: 860px) {
    #product-product .top {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    #product-product .bottom {
        width: 100%;
        padding: 48px 24px;
    }
    #product-product .tab-link a {
        padding: 16px;
    }
    #product-product .info {
        flex-direction: column;
    }
    #product-product .info .name {
        font-size: 32px;
    }
    #product-product .info .short-description {
        margin-top: 8px;
        font-size: 16px;
    }
    #product-product .image-slide {
        max-width: 320px;
    }
    #product-product .image-slide .img-container {
        max-width: 320px;
        padding: 24px;
    }
}
@media (max-width: 480px) {
    #product-product .image-slide {
        max-width: 280px;
    }
    #product-product .image-slide .img-container {
        max-width: 280px;
    }
    #product-product .image-slide .slick-prev {
        left: -32px;
    }
    #product-product .image-slide .slick-next {
        right: -32px;
    }
}

.spec-content {
    overflow-x: auto;
}

#tab-pane-description,
.spec-content table {
    min-width: 100%;
    border-radius: 2px;
}
.spec-content table td {
    padding: 16px 24px;
    font-size: 20px;
    border: 1px solid #ADB0B3;
}
.spec-content table td:first-child {
    width: 320px;
    color: #FFFFFF;
    background-color: #002060;
}
.spec-content table tr:nth-child(even) td:nth-child(2) {
    background-color: #DBF6FF;
}
@media (max-width: 860px) {
    .spec-content table td:first-child {
        width: 160px;
    }
    .spec-content table td {
        font-size: 16px;
    }
}

#information-about {
    background-color: #002060;
}

#information-about .top {
    position: relative;
    background-image: url("../image/about_background.png"), linear-gradient(180deg, #2C71BC 21.6%, #002060 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}
#information-about header {
    background: none;
}
#information-about .label {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 0;
    font-size: 20px;
}
#information-about .label::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #98D7EC;
    border-radius: 100px;
    margin-right: 8px;
}
.about-layout {
    position: relative;
    display: flex;
    justify-content: flex-end;
    color: #FFFFFF;
}
.about-layout .hand-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    object-position: left;
    object-fit: contain;
}
.about-layout .about {
    width: 100%;
    max-width: 720px;
    margin: 64px 148px;
    z-index: 9;
}
@media (min-width: 1800px) {
    .about-layout .about {
        width: 1440px;
        max-width: 1440px;;
        margin: 64px auto;
        display: flex;
        flex-direction: column;
    }
    .about-layout .about .title {
        width: 100%;
        max-width: 100%;
    }
    .about-layout .about .main {
        width: fit-content;
        align-self: flex-end;
    }
}
.about-layout .about .title {
    max-width: 640px;
    font-size: 76px;
    line-height: 100%;
}
.about-layout .about .description {
    margin-top: 132px;
    font-size: 20px;
    line-height: 175%;
    text-align: center;
}
@media (max-width: 860px) {
    .about-layout {
        justify-content: center;
    }
    .about-layout .about {
        margin: 64px 24px;
    }
    .about-layout .about .title {
        font-size: 36px;
    }
    .about-layout .about .description {
        margin-top: 32px;
    }
}
@media (max-width: 480px) {
    .about-layout .hand-img {
        display: none;
    }
}


.manufacturer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 64px;
}
.manufacturer-list .manufacturer-img {
    width: 200px;
    margin: 0 16px;
    object-position: center;
    object-fit: contain;
}
@media (max-width: 860px) {
    .manufacturer-list-layout {
        padding: 24px;
    }
    .manufacturer-list .manufacturer-img {
        margin: 0 12px 24px;
        width: 132px;
    }
}

.about-info-layout {
    padding-bottom: 64px;
}
.about-info {
    width: 400px;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    margin-right: 64px;
}
.about-info .description {
    margin-top: 24px;
    font-size: 31px;
    line-height: 46px;
}
.about-info .logo-container .logo {
    width: 72px;
    height: 72px;
}
.about-info .logo-container .name {
    margin: 0;
    font-size: 46px;
}
.about-info-layout .bottom {
    display: flex;
    justify-content: space-between;
}
.about-info-layout .info-list {
    max-width: 420px;
    color: #FFFFFF;
}
.about-info-layout .info-list .info-item {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 175%;
}
@media (max-width: 860px) {
    .about-info .logo-container .logo {
        width: 48px;
        height: 48px;
    }
    .about-info .logo-container .name {
        font-size: 36px;
    }
    .about-info .description {
        font-size: 24px;
    }
    .about-info-layout {
        padding: 24px;
    }
    .about-info-layout .bottom {
        flex-direction: column;
    }
    .about-info-layout .info-list {
        margin-top: 32px;
    }
}

.news-list {
    width: 100%;
    padding-left: 48px;
}
.news {
    width: 100%;
}
.news {
    width: 100%;
    display: flex;
    height: 150px;
    margin: 0 0 16px;
    box-shadow: 0px 5px 5px rgba(1, 1, 1, 0.15);
}
.news > a {
    display: flex;
    flex: 1;
}
.news .news-text {
    flex: 1;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news .name {
    font-size: 22px;
    line-height: 32px;
}
.news .date {
    margin: 0;
    font-size: 20px;
    color: #A9A9A9;
}
.news i {
    font-size: 30px;
    font-weight: lighter;
    margin: auto 5% auto auto;
    color: #A9A9A9;
}
.news img {
    width: 225px;
    object-fit: cover;
}
@media (max-width: 860px) {
    .news-list {
        padding: 0;
    }
}
@media (max-width: 480px) {
    .news img {
        display: none;
    }
}

.information {
    margin-bottom: 64px;
}
.information .date {
    color: #A9A9A9;
}
.information .description {
    margin-top: 24px;
}

.download-list {
    width: 100%;
    padding-left: 48px;
}
.download {
    width: 100%;
}
.download {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    margin: 0 0 16px;
    padding: 24px;
    border: 1px solid #CCCCCC;
}
.download .download-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 8px;
}
.download .name {
    font-size: 22px;
    line-height: 32px;
}
.download .date {
    margin: 0;
    font-size: 16px;
    color: #A9A9A9;
}
.download .size {
    margin-left: 48px;
}
@media (max-width: 860px) {
    .download-list {
        padding: 0;
    }
}
@media (max-width: 480px) {
    .download {
        height: auto;
        padding: 16px;
    }
    .download .name {
        font-size: 18px;
    }
    .download .date {
        font-size: 14px;
    }
}

.language-layout .btn-group > .btn-link {
    color: #FFFFFF;
    padding: 0 16px;
    font-size: 16px;
}

footer .language-layout .btn-group > .btn-link {
    color: #FFFFFF;
    padding: 0 5px;
    font-size: 14px;
}
footer .list-inline a {
    font-size: 16px;
    padding: 12px 16px;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    display: none;
    width: 100vw;
    height: 68px;
    background-color: var(--color-main);
    color: #FFFFFF;
    z-index: 999;
}
.mobile-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav ul li {
    flex: 1;
}
.mobile-nav li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 8px;
    border: 1px solid var(--color-main-50);
    font-size: 12px;
}
.mobile-nav li a i {
    margin-bottom: 4px;
    font-size: 20px;
}
@media (max-width: 860px) {
    body {
        margin-bottom: 68px;
    }
    .mobile-nav {
        display: block;
    }
}

.table thead > tr > td, .table tbody > tr > td {
    vertical-align: middle;
}

@media (max-width: 430px) {
    #information-information .description img {
        width: 100%!important;
        height: auto!important;
    }
}