@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");

body {
    color: #666666;
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
}

a {
    color: #666666;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    a:hover {
        color: #666666;
        text-decoration: none;
    }

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    padding: 0 20px;
}

@media screen and (max-width: 1199px) {
    .container {
        max-width: inherit;
    }
}

button {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.header {
    height: 120px;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}

    .header > .container {
        height: 100%;
    }

.header_logo {
    width: 374px;
    display: block;
}

    .header_logo img {
        width: 100%;
    }

.header_nav_main > li {
    position: relative;
}

    .header_nav_main > li:not(:first-child) {
        margin-left: 33px;
    }

    .header_nav_main > li > a {
        font-size: 18px;
        cursor: pointer;
    }

        .header_nav_main > li > a:hover {
            color: #61A2D9;
        }

    .header_nav_main > li:hover .header_nav_drop {
        display: block;
    }

.header_nav_drop {
    position: absolute;
    background-color: #1C63B8;
    width: 180px;
    top: 100%;
    right: 0;
    padding: 10px 15px;
    display: none;
}

    .header_nav_drop > li > a {
        color: #fff;
        display: block;
        padding: 5px 10px;
    }

        .header_nav_drop > li > a:hover {
            opacity: 0.7;
        }

.header_menu {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

    .header_menu .bar {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #666666;
        left: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

        .header_menu .bar.top {
            top: 0;
        }

        .header_menu .bar.middle {
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .header_menu .bar.bottom {
            top: calc(100% - 2px);
        }

    .header_menu.active .bar {
        top: 50%;
        left: 50%;
        background-color: #fff;
    }

        .header_menu.active .bar.top, .header_menu.active .bar.middle {
            -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .header_menu.active .bar.bottom {
            -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
        }

@media screen and (max-width: 1199px) {
    .header_logo {
        width: 300px;
    }
}

@media screen and (max-width: 991px) {
    .header {
        height: 80px;
    }

    .header_logo {
        width: 260px;
    }

    .header_nav {
        position: fixed;
        background-color: #1C63B8;
        width: 100%;
        max-width: 375px;
        height: 100vh;
        top: 0;
        right: -375px;
        padding: 94px 46px;
        overflow-y: auto;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header_nav_main > li {
        margin: 0 0 25px 0 !important;
    }

        .header_nav_main > li > a {
            color: #fff !important;
            font-size: 24px;
        }

        .header_nav_main > li.drop::after {
            position: absolute;
            content: "";
            width: 18px;
            height: 10px;
            background-image: url(../images/arrow_down.svg);
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            right: 0;
            top: 10px;
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

        .header_nav_main > li.drop.active::after {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        .header_nav_main > li:hover .header_nav_drop {
            display: none;
        }

    .header_nav_drop {
        background-color: transparent;
        position: static;
        padding: 16px 0 27px;
    }

        .header_nav_drop > li {
            margin-bottom: 20px;
        }

            .header_nav_drop > li > a {
                color: #A5D6FF;
                font-size: 20px;
                padding: 0 0 0 20px;
                position: relative;
            }

                .header_nav_drop > li > a::before {
                    position: absolute;
                    content: "";
                    width: 5px;
                    height: 5px;
                    border-radius: 50%;
                    background-color: #A5D6FF;
                    top: 14px;
                    left: 0;
                }

    .header_nav.active {
        right: 0;
    }
}

@media screen and (max-width: 350px) {
    .header_logo {
        width: 230px;
    }
}

@media screen and (max-width: 767px) {
    main {
        padding-top: 80px;
    }
}

.footer {
    background-color: #fff;
}

.footer_top {
    background-image: url(../images/footer_bg.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 87px;
    padding-bottom: 229px;
}

.footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .footer_nav h3 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 20px;
    }

        .footer_nav h3 a {
            color: #fff;
        }

    .footer_nav ul li {
        margin-bottom: 12px;
    }

        .footer_nav ul li a {
            color: #A5D6FF;
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

            .footer_nav ul li a:hover {
                color: #fff;
            }

    .footer_nav .follow_link {
        display: inline-block;
    }

        .footer_nav .follow_link a {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background-color: #61A2D9;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin-left: 5px;
            margin-bottom: 11px;
            vertical-align: middle;
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

            .footer_nav .follow_link a img {
                height: 20px;
            }

                .footer_nav .follow_link a img.behance {
                    height: 15px;
                }

                .footer_nav .follow_link a img.google, .footer_nav .follow_link a img.linkin {
                    height: 18px;
                }

            .footer_nav .follow_link a:hover {
                background-color: #F6951D;
            }

.footer_num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 116px;
}

.footer_num_item {
    width: 215px;
    height: 215px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(246, 149, 29, 0.7);
    margin: 0 21px;
    border-radius: 50%;
}

.footer_num_item_inner {
    text-align: center;
    color: #fff;
}

    .footer_num_item_inner h4 {
        font-size: 18px;
        margin-bottom: 8px;
        font-weight: normal;
    }

    .footer_num_item_inner p {
        font-size: 50px;
        margin: 0;
    }

.footer_bottom {
    text-align: center;
    padding: 0 20px 49px;
}

    .footer_bottom h4 {
        color: #1B252C;
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: normal;
    }

    .footer_bottom ul {
        margin-bottom: 46px;
    }

        .footer_bottom ul li {
            font-size: 18px;
            margin-bottom: 12px;
        }

    .footer_bottom .copyright {
        font-size: 15px;
        margin: 0;
    }

@media screen and (max-width: 991px) {
    .footer_num_item {
        margin: 0 15px;
    }
}

@media screen and (max-width: 767px) {
    .footer_nav_item {
        width: 50%;
        margin-bottom: 45px;
    }

        .footer_nav_item.follow {
            width: 100%;
        }

    .footer_nav .follow_link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .footer_nav .follow_link br {
            display: none;
        }

        .footer_nav .follow_link a {
            margin-right: 20px !important;
        }

    .footer_num {
        margin-top: 27px;
    }

    .footer_num_item {
        width: 180px;
        height: 180px;
    }

    .footer_top {
        padding-top: 45px;
    }

        .footer_top > .container {
            padding-left: 45px;
            padding-right: 45px;
        }

    .footer_bottom {
        padding-bottom: 158px;
    }

        .footer_bottom h4 {
            font-size: 18px;
        }

        .footer_bottom ul li {
            font-size: 15px;
        }

        .footer_bottom .copyright {
            font-size: 12px;
        }
}

@media screen and (max-width: 575px) {
    .footer_top {
        background-image: url(../images/footer_bg_m.jpg);
    }

    .footer_num_item {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 400px) {
    .footer_nav_item {
        width: 100%;
    }

    .footer_nav .follow_link {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .footer_nav .follow_link a {
            margin: 0 !important;
        }
}

.fixedSide {
    position: fixed;
    top: 50%;
    right: 46px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .fixedSide button {
        display: block;
    }

.fixedSide_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    width: 110px;
    height: 63px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .fixedSide_btn.choose {
        color: #61A2D9;
        background-image: url(../images/cloud_1.png);
        margin-bottom: 10px;
    }

        .fixedSide_btn.choose span {
            -webkit-transform: translateY(10%);
            transform: translateY(10%);
        }

    .fixedSide_btn.case {
        color: #F6951D;
        background-image: url(../images/cloud_2.png);
    }

        .fixedSide_btn.case span {
            -webkit-transform: translateY(10%);
            transform: translateY(10%);
        }

    .fixedSide_btn:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

@media screen and (max-width: 767px) {
    .fixedSide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        right: 50%;
        top: inherit;
        bottom: 25px;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    .fixedSide_btn {
        margin: 0 11px !important;
    }
}

.banner_inner {
    width: 100%;
    padding-bottom: 26%;
    position: relative;
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.banner_inner_cloud {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

.banner_inner h1 {
    text-align: center;
    margin: 0;
    position: absolute;
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    top: 43%;
    width: 100%;
    padding: 0 20px;
}

.banner_inner.banner-spec {
    background-image: url(../images/banner_table.jpg);
}

@media screen and (max-width: 1450px) {
    .banner_inner {
        padding-bottom: 30%;
    }
}

@media screen and (max-width: 991px) {
    .banner_inner {
        padding-bottom: 40%;
        background-size: cover;
    }

        .banner_inner h1 {
            font-size: 35px;
        }
}

@media screen and (max-width: 767px) {
    .banner_inner {
        padding-bottom: 80%;
        background-size: cover;
    }

        .banner_inner h1 {
            top: 23%;
        }
}

.page_inner {
    padding: 45px 0 190px;
}

@media screen and (max-width: 991px) {
    .page_inner {
        padding: 25px 0 110px;
    }
}

.banner-home {
    width: 100%;
    padding-bottom: 41.93%;
    position: relative;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*background: #69a5e9;*/
}

    .banner-home.fixed {
        position: fixed;
        top: 0;
        left: 0;
    }

.banner-home_pic {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
}

.banner-home_cloud {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

.banner-home_text {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}

    .banner-home_text > .container {
        padding-left: 6.5vw;
    }

.banner-home_text_inner {
    width: 40%;
}

    .banner-home_text_inner h1 {
        color: #fff;
        font-size: 72px;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: justify;
        text-shadow: 0 1px 3px rgba(11, 120, 213, 0.5);
    }

    .banner-home_text_inner p {
        font-size: 22px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 39px;
        text-align: justify;
    }

.banner-home_more {
    display: block;
    padding: 5px 50px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .banner-home_more:hover {
        background-color: #fff;
        color: #61A2D9;
    }

@media screen and (max-width: 1600px) {
    .banner-home_text_inner h1 {
        font-size: 60px;
    }

    .banner-home_text_inner p {
        font-size: 20px;
    }
}

@media screen and (max-width: 1400px) {
    .banner-home {
        padding-bottom: 50%;
    }

    .banner-home_text_inner h1 {
        font-size: 50px;
    }

    .banner-home_text_inner p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .banner-home {
        /*padding-bottom: 3%;*/
    }

    .banner-home_text_inner {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .banner-home {
        padding-bottom: 165.6%;
        background: none;
        background-size: cover;
        background-position: center center;
        background-image: url(../images/banner_m.jpg);
    }

    .banner-home_text {
        top: 13%;
        -webkit-transform: none;
        transform: none;
    }

    .banner-home_text_inner {
        width: 90%;
    }

        .banner-home_text_inner h1 {
            font-size: 45px;
        }

        .banner-home_text_inner p {
            margin-bottom: 49px;
        }
}

@media screen and (max-width: 350px) {
    .banner-home_text_inner {
        width: 100%;
    }
}

.business_title {
    margin-bottom: 109px;
    text-align: center;
}

    .business_title h2 {
        font-size: 45px;
        color: #7ABC32;
        margin-bottom: 5px;
    }

    .business_title p {
        font-size: 24px;
        color: #000;
        margin-bottom: 5px;
    }

    .business_title h3 {
        color: #F6951D;
        margin: 0;
    }

.business_title_2 {
    margin-bottom: 20px;
    text-align: left;
}

    .business_title_2 h2 {
        font-size: 45px;
        color: #7ABC32;
        margin-bottom: 5px;
    }

    .business_title_2 p {
        font-size: 24px;
        color: #000;
        margin-bottom: 5px;
    }

    .business_title_2 h3 {
        color: #F6951D;
        margin: 0;
    }

.business_content_item {
    margin-bottom: 133px;
}

    .business_content_item:nth-child(odd) .business_content_pic {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .business_content_item:nth-child(odd) .business_content_text {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        background: -webkit-gradient(linear, left top, left bottom, from(#F6951D), to(#F67B1D));
        background: linear-gradient(to bottom, #F6951D 0%, #F67B1D 100%);
        -webkit-transform: scale(1.04) translateX(2%);
        transform: scale(1.04) translateX(2%);
    }

        .business_content_item:nth-child(odd) .business_content_text::before {
            right: 0;
            -webkit-transform: translateX(50%);
            transform: translateX(50%);
        }

    .business_content_item:nth-child(even) .business_content_pic {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .business_content_item:nth-child(even) .business_content_text {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        background: -webkit-gradient(linear, left top, left bottom, from(#7CB758), to(#63A437));
        background: linear-gradient(to bottom, #7CB758 0%, #63A437 100%);
        -webkit-transform: scale(1.04) translateX(-2%);
        transform: scale(1.04) translateX(-2%);
    }

        .business_content_item:nth-child(even) .business_content_text::before {
            left: 0;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }

.business_content_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.business_content_pic {
    width: 60.938%;
    padding-bottom: calc(61% * 0.4673);
    position: relative;
}

    .business_content_pic img {
        position: absolute;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        left: 0;
    }

.business_content_text {
    width: 39%;
    padding: 65px 85px;
    color: #fff;
    position: relative;
}

    .business_content_text h4 {
        font-size: 40px;
        margin-bottom: 28px;
        text-align: justify;
    }

    .business_content_text p {
        font-size: 22px;
        margin-bottom: 60px;
        text-align: justify;
    }

    .business_content_text::before {
        position: absolute;
        content: "";
        width: 102px;
        height: 8px;
        background-color: #fff;
        bottom: 14.6%;
    }

.business_content_more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

    .business_content_more span {
        font-size: 18px;
        color: #fff;
    }

    .business_content_more.active .bar.vert {
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg);
    }

.business_content_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 8px;
    position: relative;
}

    .business_content_icon .bar {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-color: #fff;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

        .business_content_icon .bar.hori {
            width: 40%;
            height: 2px;
        }

        .business_content_icon .bar.vert {
            width: 2px;
            height: 40%;
        }

.business_content_hide {
    background-color: #F2F5F8;
    padding: 102px 140px 34px;
    display: none;
}

    .business_content_hide h5 {
        font-size: 36px;
        color: #1B252C;
        margin-bottom: 12px;
    }

    .business_content_hide p {
        font-size: 24px;
        color: #666666;
        margin-bottom: 24px;
        text-align: justify;
    }

    .business_content_hide h6 {
        color: #F6951D;
        font-size: 30px;
    }

    .business_content_hide img {
        width: 100%;
    }

    .business_content_hide .business_content_icon {
        border-color: #3792DE;
    }

        .business_content_hide .business_content_icon .bar {
            background-color: #3792DE;
        }

    .business_content_hide .business_content_more {
        margin: 37px auto 0;
    }

        .business_content_hide .business_content_more span {
            color: #3792DE;
        }

.content_pic {
    width: 80.938%;
    padding-bottom: calc(81% * 0.4673);
    position: relative;
}

    .content_pic img {
        position: absolute;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        left: 0;
    }

@media screen and (max-width: 1400px) {
    .business_content_text {
        padding: 30px 25px;
    }

        .business_content_text h4 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .business_content_text p {
            font-size: 18px;
            margin-bottom: 45px;
        }
}

@media screen and (max-width: 991px) {
    .business_title {
        margin-bottom: 81px;
    }

    .business_title_2 {
        margin-bottom: 81px;
    }

    .business_content_pic {
        width: 100%;
        padding-bottom: 46.73%;
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .business_content_text {
        width: 100%;
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
        -webkit-transform: none !important;
        transform: none !important;
    }

        .business_content_text::before {
            display: none;
        }

    .business_content_hide {
        padding: 50px 25px;
    }

        .business_content_hide h5 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .business_content_hide p {
            font-size: 18px;
            margin-bottom: 46px;
        }

    .business_content_item {
        margin-bottom: 40px;
    }

    .content_pic {
        width: 100%;
        padding-bottom: 46.73%;
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}

@media screen and (max-width: 767px) {
    .business_title h2 {
        font-size: 34px;
    }

    .business_title p {
        font-size: 18px;
    }

    .business_title h3 {
        font-size: 26px;
    }

    .business_title_2 h2 {
        font-size: 34px;
    }

    .business_title_2 p {
        font-size: 18px;
    }

    .business_title_2 h3 {
        font-size: 26px;
    }
}

.spec {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.spec_table {
    width: 100%;
}

    .spec_table td {
        border: 1px solid #fff;
    }

.spec_title td {
    background-color: #EBEEF1;
    padding: 10px 20px;
}

    .spec_title td:first-child {
        border-top-left-radius: 10px;
    }

    .spec_title td:last-child {
        border-top-right-radius: 10px;
    }

    .spec_title td.department {
        width: 11%;
        padding: 10px;
        text-align: center;
    }

        .spec_title td.department p {
            font-size: 20px;
            margin-bottom: 0px;
        }

        .spec_title td.department span {
            font-size: 14px;
        }

    .spec_title td.name {
        width: 29%;
        font-size: 20px;
    }

    .spec_title td.type {
        width: 20%;
        text-align: center;
    }

        .spec_title td.type .type_version {
            font-size: 35px;
            width: 100%;
            padding: 5px 5px 0px;
            text-align: center;
            background-color: #fff;
            border-radius: 100px;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .spec_title td.type .type_intro {
            margin: 0;
            color: #fff;
            font-size: 22px;
        }

        .spec_title td.type .type_price {
            font-size: 18px;
            color: #fff;
            margin: 0;
        }

    .spec_title td.type-typical {
        background-color: #61A2D9;
    }

        .spec_title td.type-typical .type_version {
            color: #61A2D9;
        }

    .spec_title td.type-advanced {
        background-color: #F6951D;
    }

        .spec_title td.type-advanced .type_version {
            color: #F6951D;
        }

    .spec_title td.type-luxury {
        background-color: #8152CB;
    }

        .spec_title td.type-luxury .type_version {
            color: #8152CB;
        }

.spec_content td {
    background-color: #F8F9FB;
    padding: 10px;
}

    .spec_content td.department {
        position: relative;
        padding-left: 30px;
        font-size: 16px;
    }

        .spec_content td.department::before {
            position: absolute;
            content: "";
            width: 12px;
            height: 100%;
            top: 0;
            left: 0;
        }

        .spec_content td.department.manage::before {
            background-color: #009BCE;
        }

        .spec_content td.department.business::before {
            background-color: #C00000;
        }

        .spec_content td.department.rd::before {
            background-color: #0070C0;
        }

        .spec_content td.department.production::before {
            background-color: #7030A0;
        }

        .spec_content td.department.qa::before {
            background-color: #92D050;
        }

        .spec_content td.department.financial::before {
            background-color: #FF9933;
        }

        .spec_content td.department.common::before {
            background-color: gainsboro;
        }

    .spec_content td.name {
        font-size: 20px;
        color: #000;
    }

        .spec_content td.name .blue-text {
            color: #1C63B8;
        }

    .spec_content td.type {
        text-align: center;
        font-size: 18px;
        color: #000;
    }

    .spec_content td.type-typical {
        background-color: rgba(97, 162, 217, 0.1);
    }

    .spec_content td.type-advanced {
        background-color: rgba(246, 149, 29, 0.1);
    }

    .spec_content td.type-luxury {
        background-color: rgba(129, 82, 203, 0.1);
    }

    .spec_content td.type img {
        width: 30px;
    }

.spec .remark {
    font-size: 14px;
    margin-top: 36px;
}

    .spec .remark .highlight {
        font-size: 15px;
        color: #F6951D;
    }

@media screen and (max-width: 850px) {
    .spec tr {
        display: inline-block;
    }

        .spec tr td {
            display: block;
            width: 100% !important;
        }

            .spec tr td:last-child {
                border-top-right-radius: 0;
            }

    .spec_table {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .spec_title {
        width: 110px;
    }

        .spec_title td {
            padding: 10px 6px !important;
        }

            .spec_title td.department p {
                font-size: 16px;
            }

            .spec_title td.department span {
                font-size: 12px;
            }

            .spec_title td.name {
                font-size: 16px;
                text-align: center;
                padding-top: 12px !important;
                padding-bottom: 12px !important;
            }

            .spec_title td.type {
                padding: 13px 6px;
            }

                .spec_title td.type .type_version {
                    padding: 5px 7px;
                    font-size: 20px;
                    margin-bottom: 6px;
                }

                .spec_title td.type .type_intro {
                    font-size: 14px;
                }

                .spec_title td.type .type_price {
                    font-size: 12px;
                }

    .spec tbody {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto;
    }

        .spec tbody td {
            white-space: nowrap;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

    .spec_content td {
        padding: 0 25px !important;
    }

        .spec_content td.department {
            height: 70px;
            vertical-align: middle;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .spec_content td.department::before {
                width: 100%;
                height: 12px;
            }

            .spec_content td.department span {
                -webkit-transform: translateY(5px);
                transform: translateY(5px);
            }

        .spec_content td.name {
            height: 50px;
        }

        .spec_content td.type {
            height: 107px;
        }
}
/*# sourceMappingURL=style.css.map */


.video-area {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: 120px;*/
    margin-top: 0px;
    /***tg**/
    z-index: 4;
    position: fixed;
    top: 120px;
    left: 0;
    height: calc( ( 100vh - 120px ) );
}

    .video-area video {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: fill;
    }

@media screen and (max-width: 991px) {
    .video-area {
        width: 100%;
        height: calc( ( 100vh - 80px ) );
        top: 80px;
    }

        .video-area video {
            /*object-fit: cover;*/
        }
}

@media screen and (max-width: 767px) {
    .video-area {
    }
}

@media screen and (max-width: 520px) {
    .video-area {
        width: 100%;
        /*height: 66.267vh;*/
    }
}
