/* @group Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

/* @end */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    letter-spacing: 1px;
}

/*=====================================================================================*/
/*  Preloader */
.spinner-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #333;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #e22c19;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
/* @end */

/*=====================================================================================*/
/* Go to top */
.totop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 0px;
    width: 100%;
    height: 1px;
    z-index: 100;
}

    .totop .icon {
        background: rgba(0,0,0,0.5);
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        right: -50px;
        top: -50px;
        /**/
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        z-index: 100;
        border: 1px solid rgba(255,255,255,0.3);
    }

        .totop .icon .triangle {
            position: relative;
            top: 5px;
        }

            .totop .icon .triangle .content {
                width: 20px;
                height: 20px;
                border: #fff solid;
                border-width: 2px 2px 0 0;
                transform: rotate(-45deg);
            }



/* @end */

/*=====================================================================================*/
/*懸浮  掃一掃 關注公眾號*/
#fixed-scan {
    position: fixed;
    bottom: 158px;
    right: 0px;
    width: 100%;
    height: 1px;
    z-index: 100;
    cursor: pointer;
}

    #fixed-scan #divQR {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        padding: 10px;
        background: #484e5c;
        color: white;
    }

        #fixed-scan #divQR span {
            padding-left: 10px;
            text-align: center;
            line-height: 2em;
            font-size: 12px;
        }

    #fixed-scan #divQRmsg {
        padding: 10px;
        background: #484e5c;
        color: #fff;
        vertical-align: middle;
        display: block;
        float: left;
        font-size: 12px;
    }

.l {
    /*css 竖排文字*/
    height: 140px;
    writing-mode: vertical-lr; /*从左向右 从右向左是 writing-mode: vertical-rl;*/
    writing-mode: tb-lr; /*IE浏览器的从左向右 从右向左是 writing-mode: tb-rl；*/
    line-height: 1.5 !important;
    letter-spacing: 5px;
}


/*=====================================================================================*/


.container {
    width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.only-2-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bold {
    font-weight: 600;
}

.no-text-indent {
    text-indent: 0em;
}

.text-indent-2em {
    text-indent: 2em;
}

.text-center {
    text-align: center;
}

/*=====================================================================================*/
/* Header */
.header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

    .header .top-bar {
        background-color: #484e5c;
        color: #fff;
        font-size: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

        .header .top-bar .flex-box {
            display: flex;
            max-width: 1920px;
            margin: 0 auto;
        }


        .header .top-bar .access {
            flex: 1;
            align-items: center;
            line-height: 25px;
        }

        .header .top-bar .row {
            flex: 1;
            min-height: 25px;
            text-align: right;
        }

        .header .top-bar .multi-language,
        .header .top-bar .informations {
            display: inline-flex;
            align-items: center;
            line-height: 25px;
        }

        .header .top-bar .info-box {
            padding: 0 10px;
            cursor: pointer;
        }

        .header .top-bar .informations .info-box:last-child {
            margin-right: 0;
        }

        .header .top-bar .icon_tel {
            padding-left: 30px;
            background: url(/wwwroot/images/top_icon.png) no-repeat;
            background-position: 0 -26px;
        }

        .header .top-bar .icon_email {
            padding-left: 30px;
            background: url(/wwwroot/images/top_icon.png) no-repeat;
        }

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.header .main-bar {
    position: relative;
    background-color: #fff;
    z-index: 100;
    height: auto;
}

    .header .main-bar.fixed {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 100;
        background-color: #fff;
        box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.3);
        -webkit-animation: slideInDown 0.5s;
        background-color: #fff;
        animation: slideInDown 0.5s;
    }

    /*移動端菜單按鈕*/
    .header .main-bar .btn-nav-mobile {
        width: 25px;
        cursor: pointer;
        display: none;
        visibility: hidden;
    }

        .header .main-bar .btn-nav-mobile span {
            display: block;
            width: 25px;
            float: right;
            height: 3px;
            margin-bottom: 5px;
            border-radius: 5px;
            background-color: #8c8c8c;
        }

            .header .main-bar .btn-nav-mobile span:last-child {
                margin-bottom: 0;
            }

    /*移動端多語言切換*/
    .header .main-bar .m-multi-language {
        display: none;
        visibility: hidden;
    }
    /*移動端日期與訪問人數*/
    .header .main-bar .m-access {
        display: none;
        visibility: hidden;
    }

.header .main-bar {
    background-color: #fff;
    width: 100%;
}

    .header .main-bar .items-center {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .header .main-bar .web-logo {
        display: block;
        height: 40px;
        margin: 15px 10px;
    }

/*Top Nav */

@media screen and (min-width: 992px) {
    .nav .main-menu > li {
        position: relative;
        display: inline-block;
        line-height: 70px;
        margin-left: 15px;
        vertical-align: middle;
        font-size: 16px;
        padding: 0 5px;
    }

        .nav .main-menu > li:after {
            visibility: hidden;
            content: '';
            position: absolute;
            top: 70px;
            left: 50%;
            transform: translateX(-50%);
            display: inline-block;
            width: 0;
            height: 2px;
            background-color: #ff3333;
            transition: all 0.2s;
        }

        .nav .main-menu > li.active:after,
        .nav .main-menu > li:hover:after {
            visibility: visible;
            width: 100%;
            transition: all 0.3s;
        }

        .nav .main-menu > li ul {
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
            transform: translateY(15px);
            width: 200px;
            height: auto;
            left: -10px;
            top: 100%;
            background-color: #fff;
            position: absolute;
            z-index: 120;
            border-radius: 5px;
            box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.2s;
        }

        .nav .main-menu > li:hover ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
            transition: all 0.2s;
        }

        .nav .main-menu > li ul li {
            display: block;
            margin-left: 0;
            line-height: 19px;
            border-bottom: 1px solid #EFEFEF;
        }

            .nav .main-menu > li ul li a {
                display: block;
                padding: 13px 15px;
                color: #8c8c8c;
                transition: all 0.2s;
            }

                .nav .main-menu > li ul li a:hover {
                    color: #333333;
                    transition: all 0.2s;
                    transform: translateX(5px);
                }
}



/* @end */



/*=====================================================================================*/
/*Css*/
.main-content {
    /*background-image: url('../images/page-fixed-bg-test.jpg');*/
    /*background-image: url("../images/page-fixed-bg.png");*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    clear: both;
}

#divDateShow {
    padding: 15px 0;
    color: white;
}

.background-white {
    background-color: #ffffff;
}

.background-gray {
    background-color: #f7f7f7;
}

.page-title {
    width: 100%;
    position: relative;
}

    .page-title img {
        display: block;
        width: 100%;
        height: auto;
    }

    .page-title .inside {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 12;
        top: 0;
        left: 0;
        color: white;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

        .page-title .inside .big {
            font-size: 24px;
            line-height: 2em;
            text-transform: uppercase;
        }

        .page-title .inside .small {
            font-size: 16px;
            line-height: 2em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            flex-direction: column;
        }

        .page-title .inside .page-title-line {
            width: 40px;
            height: 2px;
            background: #fff;
        }

/* section-div-tile CSS*/
.section-div-tile {
    text-align: center;
    height: 80px;
    overflow: hidden;
    width: 100%;
    letter-spacing: 2px;
    position: relative;
}

    .section-div-tile .title-bg {
        white-space: nowrap;
        text-align: center;
        color: #eaeaea;
        position: absolute;
        z-index: 0;
        left: 50%;
        transform: translateX(-50%);
        font-size: 60px;
        line-height: 80px;
    }

    .section-div-tile .title-content {
        width: 100%;
        height: auto;
        min-height: 80px;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }

        .section-div-tile .title-content .title1 {
            color: #fac5c5;
            white-space: nowrap;
            display: block;
            line-height: 1.2;
            font-size: 20px;
        }

        .section-div-tile .title-content .title2 {
            color: #333333;
            line-height: 1.2;
            font-weight: 800;
            font-size: 25px;
            display: block;
        }

/**/
.section-div-tile2 {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

    .section-div-tile2 .title-bg {
        text-align: center;
        line-height: 61px;
        font-size: 60px;
        color: #eaeaea;
        white-space: nowrap;
    }

    .section-div-tile2 .title-bg2 {
        width: 600px;
        height: 100px;
        background: rgba(255,255,255,0);
        background-image: radial-gradient(#eaeaea 35%, transparent 0);
        background-size: 24px 24px;
        background-position: 0 0,12px 12px;
        /**/
        position: absolute;
        z-index: 1;
        top: 85px;
        left: 50%;
        transform: translateX(-50%);
    }

        .section-div-tile2 .title-bg2::after {
            width: 130px;
            height: 230px;
            display: block;
            content: '';
            background: #ccc;
            overflow: hidden;
            /**/
            position: absolute;
            z-index: 1;
            top: -60px;
            left: 100%;
        }

    .section-div-tile2 .title-content {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .section-div-tile2 .title-content .title1 {
            font-size: 16px;
            white-space: nowrap;
            display: block
        }

        .section-div-tile2 .title-content .title2 {
            font-size: 30px;
            font-weight: 800;
            white-space: nowrap;
            line-height: 1.5;
            display: block
        }

.line {
    display: block;
    width: 250px;
    height: 5px;
    background: #ff3333;
    margin-top: 50px;
    clear: both;
    position: relative;
    z-index: 2;
}

.section-content3 {
    height: auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .section-content3 > div {
        flex: 1;
        min-width: 300px;
    }

    .section-content3::after {
        content: '';
        clear: both;
        display: block;
    }

    .section-content3 p {
        line-height: 1.5;
        padding-top: 40px;
        padding-right: 15px;
    }

        .section-content3 p:last-child {
            padding-bottom: 40px;
        }

    .section-content3 img {
        width: 100%;
    }


/*padding CSS*/
.padding-10 {
    padding: 10px;
}
/*=====================================================================================*/
/*Home Banner Css */
.banner-box {
    width: 100%;
    /*border-radius: 10px;*/
}

    .banner-box .banner img {
        width: 100%;
        display: block;
    }

    .banner-box .swiper-pagination-bullet-active {
        background: #ff3333;
        width: 30px;
        border-radius: 4px;
    }

.round-box {
    /*border-radius: 10px;*/
    background-color: #fff;
    padding: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-50 {
    margin-top: 50px;
}

.section-tile {
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .section-tile .title1 {
        font-size: 22px;
        font-weight: bold;
        line-height: 1.5;
        text-transform: uppercase;
    }

    .section-tile .title2 {
        font-size: 18px;
        line-height: 1.5;
    }

.Advatage {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 3px 1px #f4e1df;
}

.advatage-header {
    box-shadow: 0px 1px 3px 0px #f4e1df;
    padding: 15px;
    /*flex 左右布局 */
    display: flex;
    justify-content: space-between
}

    .advatage-header .title {
        font-size: 20px;
        line-height: 1;
        font-weight: bold;
        color: #4d4d4d;
    }

    .advatage-header .more {
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
        color: red;
    }

/*空心三角箭头*/


.arrowUp:after {
    content: '';
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    top: -1px;
    border-top: 2px solid #ff3333;
    border-right: 2px solid #ff3333;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}




.advatage-box {
    width: 100%;
}

    .advatage-box .advatage-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

        .advatage-box .advatage-item .img {
            transform: scale(1.2);
            /*
            filter: Alpha(opacity=80);
            opacity: 0.8;*/
        }

        .advatage-box .advatage-item div b {
            display: block;
            text-align: center;
            padding: 15px 0;
            color: #ff0000;
            font-size: 18px;
        }

        .advatage-box .advatage-item div span {
            display: block;
            text-align: center;
            padding-bottom: 20px;
        }

    .advatage-box .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #fff;
        border-radius: 100%;
        border: 2px solid #333333;
    }

    .advatage-box .swiper-pagination-bullet-active {
        background: #ff0000;
        border: 2px solid #ff0000;
    }



    .advatage-box .img {
        display: block;
        width: 50px;
        height: 50px;
        background: #fff;
        background: #fff url(/wwwroot/images/advatage-icon.png) no-repeat 0 0;
    }

    .advatage-box .img1 {
        background-position: 0px -50px;
    }

    .advatage-box .img2 {
        background-position: -51px -50px;
    }

    .advatage-box .img3 {
        background-position: -101px -50px;
    }

    .advatage-box .img4 {
        background-position: -151px -50px;
    }

    .advatage-box .img5 {
        background-position: -201px -50px;
    }

.title {
    text-align: center;
    overflow: hidden;
}

    .title .cn-title {
        font-size: 20px;
        line-height: 1.2;
        font-weight: bold;
        color: #4d4d4d;
    }

    .title .en-title {
        padding-top: 10px;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
        text-transform: uppercase;
        color: #757575;
        padding-bottom: 20px;
    }


/**展望*/
.prospect-content {
}

    .prospect-content > div {
        border-radius: 5px;
        overflow: hidden;
        min-height: 300px;
        color: #fff;
        margin-bottom: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
        padding: 15px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

        .prospect-content > div:last-child {
            margin-bottom: 0;
        }

    .prospect-content .item1 {
        background-color: #f8a195;
        background-image: url(/wwwroot/images/Prospect-wap-bg1.png);
    }

    .prospect-content .item2 {
        background-color: #fff;
        background-image: url(/wwwroot/images/Prospect-wap-bg2.png);
    }

    .prospect-content .item3 {
        background-color: #fff;
        background-image: url(/wwwroot/images/Prospect-wap-bg3.png);
    }

    .prospect-content img.icon {
        display: block;
        width: 25%;
        max-width: 100px;
    }

    .prospect-content div.prospect-title {
        padding-top: 10px;
        font-size: 18px;
        width: 100%;
        display: block;
    }

    .prospect-content div.prospect-desc {
        padding-top: 10px;
        width: 100%;
        display: block;
        font-size: 16px;
    }





.section-content b,
.section-content2 b {
    display: block;
    font-weight: 600;
    margin: 5px auto;
    padding-top: 5px;
}

.section-content span,
.section-content2 span {
    display: block;
    margin: auto;
    margin: 5px auto;
    color: #808080;
    padding-top: 5px;
    line-height: 1.5;
}

.section-footer {
    height: auto;
    padding-bottom: 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    background: #ff3333;
    height: 30px;
    line-height: 30px;
    color: #fff;
    padding: 0 20px;
    border-radius: 15px;
    vertical-align: middle;
    box-shadow: 0px 0px 2px 1px #ccc;
}


.section-content2 {
}

    .section-content2 .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .section-content2 .row-box {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .section-content2 .row-box .left {
            width: 100px;
            flex: 0 0 30%;
            display: -ms-flexbox;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .section-content2 .row-box .left img {
                display: block;
                width: 50px;
                height: 50px;
            }

        .section-content2 .row-box .right {
            flex: 0 0 70%;
            padding: 20px 0px;
            padding-right: 10px;
        }

#TechnicalSupport {
    padding-left: 35px;
    padding-right: 35px;
}



div.swiper-business {
    margin-left: -10px;
    margin-right: -10px;
}

    div.swiper-business .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(0,0,0,0);
        border-radius: 100%;
        border: 2px solid #ffffff;
    }

    div.swiper-business .swiper-pagination-bullet-active {
        background: #ff0000;
        border: 2px solid #ff0000;
    }


    div.swiper-business .cover {
        width: 100%;
        height: 100%;
        min-height: 250px;
        overflow: hidden;
        background-color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    div.swiper-business .info {
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%;
        height: 100%;
        height: 100%;
        min-height: 250px;
        background-color: rgba(0,0,0,0.7);
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        div.swiper-business .info .left {
            flex: 1;
            margin: 0 10px;
        }

            div.swiper-business .info .left .icon {
                width: 50px;
                height: 50px;
                background-size: 100% 100%;
                margin: 0px auto;
                display: block;
            }

            div.swiper-business .info .left .title {
                width: 90px;
                height: auto;
                font-size: 16px;
                padding-top: 15px;
                color: #fff;
                text-align: center;
                position: relative;
                display: block;
                margin: 0 auto;
            }

        div.swiper-business .info .desc {
            flex: 0 0 200px;
            height: auto;
            font-size: 14px;
            color: #fff;
            padding-top: 20px;
            padding-bottom: 20px;
            padding-left: 0px;
            line-height: 1.8;
        }


/*Index  News */
.topping {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

    .topping > div {
        flex: 1;
        overflow: hidden;
    }

    .topping .news-img img {
        width: 95%;
        height: auto;
        display: block;
        float: left;
        margin: 10px;
        border-radius: 4px;
        position: relative;
        box-shadow: 0px 0px 5px 1px #ccc;
    }

    .topping .new-content {
        padding: 0 20px;
        /*column*/
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
    }

#News .news-title {
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    display: block;
}

#News .news-content {
    color: #808080;
    text-indent: 2em;
    display: block;
}


.topping .news-footer {
    display: inline-block;
    color: #000;
    /*row*/
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0;
}

    .topping .news-footer span {
        display: inline-block;
        margin: 0;
        color: #000;
    }

.tips-icon {
    display: inline-block;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
}

.btn .tips-icon {
    border-color: transparent transparent transparent #fff;
    position: relative;
    top: 1px;
    margin-left: 8px;
}

.news-list {
    color: #000;
    /*column*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.news-item {
    background: #fafafa;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    /*row*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

    .news-item * {
        display: inline-block;
    }

    .news-item .col1 {
        flex: 0 0 80px;
        width: 80px;
        text-align: center;
    }

        .news-item .col1 b:first-child {
            font-size: 18px;
        }

    .news-item .col2 {
        flex: 1;
        border-left: 1px solid #e1e1e1;
        padding: 10px;
    }

    .news-item .col3 {
        flex: 0 0 80px;
        width: 80px;
        text-align: right;
    }


/* Prospect */



.section-tile3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#Prospect .section-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
}

.prospect-col1,
.prospect-col2,
.prospect-col3 {
    flex: 0 0 30%;
    background: #fff;
    box-shadow: 0px 0px 5px 1px #ccc;
    /*border-radius: 5px;*/
    overflow: hidden;
}

.prospect-col2 {
    margin-left: 40px;
    margin-right: 40px;
}

#Prospect .img {
    height: 220px;
}

#Prospect .img1 {
    background: url(/wwwroot/images/Prospect-icon.png) no-repeat top center;
}

#Prospect .img2 {
    background: url(/wwwroot/images/Prospect-icon.png) no-repeat center;
}

#Prospect .img3 {
    background: url(/wwwroot/images/Prospect-icon.png) no-repeat bottom center;
}

#Prospect b,
#Prospect span {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
}

#Prospect span {
    margin-bottom: 15px;
    line-height: 1.8;
}
/* @end */


#divPartners {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

    #divPartners > div {
        flex: 0 0 25%;
        padding: 15px;
        text-align: center;
        overflow: hidden;
    }

        #divPartners > div > .partner-photo {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-content: center;
            align-items: center;
        }

.partner-photo img {
    display: block;
    width: 100%;
}

#SupportUnits-footer {
    font-size: 14px;
    text-align: center;
}

#divAcademicJournals {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

    #divAcademicJournals > div {
        flex: 0 0 30%;
        padding: 15px;
        text-align: center;
        overflow: hidden;
    }

        #divAcademicJournals > div > .AcademicJournals-photo {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-content: center;
            align-items: center;
        }

.AcademicJournals-photo img {
    display: block;
    width: 100%;
}

.AcademicJournals-title {
    line-height: 1.5;
}


/*=====================================================================================*/
/* 关于易享 V2 */
#about-v2 {
    margin: 15px auto;
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

#about-v2-left {
    flex: 0 0 200px;
    width: 200px;
    position: relative;
}

#about-v2-left-nav {
    width: 200px;
    height: auto;
    float: left;
    border-right: 6px solid #ff3333;
}

    #about-v2-left-nav.fixed {
        position: absolute;
        top: 77px;
    }

#about-v2-content {
    flex: 1;
    padding: 0 15px;
}

    #about-v2-content .div-title {
        font-weight: bold;
        font-size: 22px;
        line-height: 1.2;
        padding-bottom: 15px;
    }

    #about-v2-content .div-desc {
        padding-left: 15px;
        padding-right: 15px;
    }

        #about-v2-content .div-desc p {
            line-height: 1.5;
            padding-bottom: 15px;
            text-indent: 2em;
        }


    #about-v2-content .content-block {
        padding-bottom: 20px;
        /*border-bottom: 2px solid #e6e6e6;*/
        margin-bottom: 20px;
    }

        #about-v2-content .content-block:last-child {
            border-bottom: none;
        }

    #about-v2-content .div-subtitle {
        font-weight: bold;
        font-size: 16px;
        line-height: 1.8;
        border-left: 4px solid #ff3333;
        background: #fff2f3;
        color: #ff3333;
        padding-left: 10px;
    }

#about-v2-left li {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 2px;
    background: linear-gradient(90deg, #fff,40%, #ebebeb);
    cursor: pointer;
}

    #about-v2-left li a {
        text-align: right;
        color: #656565;
        font-weight: 500;
        line-height: 1.5;
        padding: 10px 15px;
        background: #fff;
        display: block;
        width: 100%;
        height: auto;
    }

    #about-v2-left li:last-child {
        padding-bottom: 2px;
    }


#LayoutList {
    height: auto;
    display: flex;
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

    #LayoutList .item {
        text-align: center;
        display: block;
        flex: 1;
        float: left;
        padding: 20px 5px;
        margin: 5px;
    }

        #LayoutList .item:hover {
            background-color: #fff;
            box-shadow: 1px 1px 3px 1px #f4e1df;
        }

        #LayoutList .item .img {
            display: block;
            margin: 5px auto;
            width: 50px;
            height: 50px;
            border-radius: 100%;
            border: 1px solid #f9dbde;
            background: #fff;
            box-shadow: 0px 0px 4px 1px #f9dbde;
            background: #fff url(/wwwroot/images/advatage-icon.png) no-repeat 0 0;
        }

        #LayoutList .item .img1 {
            background-position: 0px -50px;
        }

        #LayoutList .item .img2 {
            background-position: -51px -50px;
        }

        #LayoutList .item .img3 {
            background-position: -101px -50px;
        }

        #LayoutList .item .img4 {
            background-position: -151px -50px;
        }

        #LayoutList .item .img5 {
            background-position: -201px -50px;
        }

        #LayoutList .item:hover .img {
            background: #ff3333 url(/wwwroot/images/advatage-icon.png) no-repeat 0 0;
        }

        #LayoutList .item:hover .img1 {
            background-position: 0px 0px;
        }

        #LayoutList .item:hover .img2 {
            background-position: -51px 0px;
        }

        #LayoutList.item:hover .img3 {
            background-position: -101px 0px;
        }

        #LayoutList .item:hover .img4 {
            background-position: -151px 0px;
        }

        #LayoutList .item:hover .img5 {
            background-position: -201px 0px;
        }

        #LayoutList .item b {
            display: block;
            font-size: 12px;
            font-weight: bold;
        }

        #LayoutList .item span {
            font-size: 12px;
            line-height: 1.5;
        }


#divPurpose {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    #divPurpose img {
        flex: 0 0 200px;
        width: 200px;
        margin: 15px;
    }

    #divPurpose div {
        flex: 1;
        display: inline-block;
        margin: 15px 0;
        line-height: 1.5;
    }

#divPartners {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
}

    #divPartners > div {
        flex: 0 0 25%;
        padding: 10px;
        text-align: center;
        overflow: hidden;
    }

        #divPartners > div > .partner-photo {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-content: center;
            align-items: center;
        }

.partner-photo img {
    flex: 1;
    width: 100%;
}

#divAcademicJournals {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
}

    #divAcademicJournals > div {
        flex: 0 0 30%;
        padding: 15px;
        text-align: center;
        overflow: hidden;
    }

        #divAcademicJournals > div > .AcademicJournals-photo {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-content: center;
            align-items: center;
        }

.m-access {
    display: none;
}


.AcademicJournals-photo img {
    flex: 1;
    width: 100%;
}

.missionTitle {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.mission-line {
    display: block;
    width: 80px;
    height: 5px;
    margin: 0 auto;
    background: #000;
    border-radius: 3px;
    margin-bottom: 15px;
}

.missionDesc {
    line-height: 1.5;
    text-indent: 2em;
}


.memberRow {
    border-bottom: 1px solid #ccc;
    margin: 10px;
}

    .memberRow:last-child {
        border-bottom: none;
    }

.member-simple {
    padding-bottom: 10px;
    line-height: 20px;
    display: block;
}

    .member-simple .big {
        font-size: 18px;
        padding-right: 20px;
        width: 8em;
        display: inline-block;
    }

.member-detailed {
    padding-bottom: 10px;
    align-content: space-between;
    display: flex;
}

    .member-detailed .member-photo {
        width: 180px;
        height: 228px;
        display: flex;
        align-items: center;
        background: #ccc;
        margin-right: 15px;
        overflow: hidden;
    }

    .member-detailed .member-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

        .member-detailed .member-info .member-name {
            font-size: 20px;
            color: #ff3333;
            font-weight: bold;
            padding-bottom: 10px;
        }

        .member-detailed .member-info .member-posttion {
            font-size: 16px;
            color: #5c5c5c;
            font-weight: bold;
        }

        .member-detailed .member-info .member-introduction {
            line-height: 1.5;
            padding-top: 15px;
        }

/*@end*/



/*=====================================================================================*/
/*時間線*/

.TimeLines {
}

.TimeLine {
    display: flex;
}

.TimeLine-Year {
    min-height: 170px;
}

    .TimeLine-Year .big {
        font-size: 25px;
        line-height: 1.2;
        color: #dddddd;
        font-weight: 600;
    }

    .TimeLine-Year .small {
        font-size: 20px;
        line-height: 1.2;
        color: #dddddd;
        font-weight: 600;
    }

.PointLine {
    width: 20px;
    height: auto;
    margin: 0 50px;
    overflow: hidden;
}

    .PointLine .redPoint {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 3px solid #f63f35;
    }

    .PointLine .grayPoint {
        min-height: 150px;
        height: 100%;
        width: 100%;
        background: url(/wwwroot/images/gray-point.png) repeat-y top;
        background-size: auto;
    }

.SubTimeLines {
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.TimeLine:last-child .SubTimeLines {
    border: none;
}

.SubTimeLine {
    display: flex;
    flex-direction: row;
    padding: 30px 15px;
}

.SubTimeLine-Month {
    flex: 0 0 100px;
    width: 100px;
    color: #8e8e8e;
    font-weight: 600;
}

    .SubTimeLine-Month .big {
        font-size: 18px;
        line-height: 1em;
    }

    .SubTimeLine-Month .small {
        font-size: 16px;
        line-height: 1em;
    }


.SubTimeLine-Content {
    flex: 1;
    line-height: 1.8;
}

    .SubTimeLine-Content .more {
        line-height: 1.8;
        text-align: right;
        padding-top: 15px;
        color: #ff3333;
    }

    .SubTimeLine-Content:before {
        content: "";
        display: inline-block;
        float: left;
        width: 15px;
        height: 15px;
        background-color: #f63f35;
        margin-right: 10px;
        border-radius: 50%;
        margin-top: 3px;
    }
/* @end */


/*Channel Css*/

.p-box {
}

    .p-box p {
        text-indent: 2em;
        padding-bottom: 15px;
    }

        .p-box p:last-child {
            padding-bottom: 0px;
        }

.channel-item {
    flex-wrap: wrap;
    flex-direction: column;
}

.channel-item2 {
    flex-wrap: wrap;
    flex-direction: column;
}

.channel-item .img-bg1,
.channel-item .img-bg2 {
    visibility: hidden;
}

.order0, .order1 {
    order: initial
}

.channel-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

    .channel-item .col-1 {
        position: relative;
        flex: 4;
    }

    .channel-item .col-2 {
        position: relative;
        flex: 2;
        padding-right: 20px;
    }

        .channel-item .col-2.order0 {
            padding-right: 0px;
            padding-left: 20px;
        }

    .channel-item .col-3 {
        position: relative;
        flex: 3;
    }

    .channel-item .col-4 {
        position: relative;
        flex: 2;
    }

    .channel-item .col-5 {
        position: relative;
        flex: 568;
        overflow: hidden;
    }

    .channel-item .col-6 {
        position: relative;
        flex: 431;
        overflow: hidden;
    }


.channel-item2 {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

    .channel-item2 > div {
        flex: 1;
        padding: 20px;
    }

        .channel-item2 > div > img {
            display: block;
            width: 100%;
            position: relative;
            z-index: 1;
            box-shadow: 1px 1px 5px 1px #ccc;
        }

.channel-item3 {
    width: 50%;
    margin: 0 auto;
    /**/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

    .channel-item3 > div > img {
        display: block;
        width: 100%;
        position: relative;
        z-index: 1;
        box-shadow: 1px 1px 5px 1px #ccc;
    }

.imgbox {
    padding: 20px;
}

    .imgbox img {
        display: block;
        width: 100%;
        position: relative;
        z-index: 1;
        box-shadow: 1px 1px 5px 1px #ccc;
    }

        .imgbox img.no-box-shadow {
            /*png 非透明的部分都会有投影*/
            box-shadow: 0px 0px 0px 0px;
            -webkit-filter: drop-shadow(0px 0px 5px #666);
            filter: drop-shadow(0px 0px 5px #666);
        }

.img-bg1 {
    width: 230px;
    height: 190px;
    background: #ccc;
    position: absolute;
    top: 0;
    left: 0;
}

.img-bg2 {
    width: 130px;
    height: 230px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 40px;
}

.order0 {
    order: 0;
}

.order1 {
    order: 1;
}

.channel-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 3;
}

    .channel-title::after {
        content: "";
        display: block;
        background-color: #ff3333;
        width: 80px;
        height: 3px;
    }

.channel-title2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    padding-top: 10px;
}

.channel-context {
    line-height: 2;
    padding-top: 1em;
    display: inline-block;
}

.channel-item2 {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
/* @end */

/*QA List*/
.qa-list {
    padding: 30px;
}

.qa-item {
    margin: 20px 5px;
    background: #fff;
    box-shadow: 1px 1px 4px 1px #fcebea;
    cursor: pointer;
}

    .qa-item .q {
        padding: 15px;
    }

    .qa-item .a {
        padding: 15px;
        padding-top: 0px;
        display: none;
    }

    .qa-item.active {
        border: 2px solid #f44b43;
    }

        .qa-item.active .a {
            display: block;
            transition: all 0.3s;
        }

/* @end */

/* 联系我们 */
#Map_Container {
    width: 100%;
    height: 500px;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 1px 1px 4px 1px #ccc;
}

    .contact-info > div {
        flex: 1;
        min-width: 300px;
        padding: 15px 30px;
    }

    .contact-info div.col2 {
        display: flex;
        flex-direction: column;
    }

        .contact-info div.col2 > div {
            padding: 15px 0;
            line-height: 2em;
        }

            .contact-info div.col2 > div .big {
                line-height: 25px;
                font-weight: 600;
                font-size: 16px;
            }

.red {
    color: #ff3333;
}

.contact-email {
    display: inline-block;
    line-height: 25px;
    font-weight: 600;
    /*font-size: 16px;*/
    background: url(/wwwroot/images/contact-email.png) no-repeat left center;
    padding-left: 30px;
}

.padding-top-15 {
    padding-top: 15px;
}

/* @end */
/** 高德地圖 **/
.amap-icon img,
.amap-marker-content img {
    width: 90px;
    height: 89px;
}

.marker {
    position: absolute;
    top: -30px;
    color: #000;
    padding: 4px 10px;
    box-shadow: 1px 1px 1px rgba(10, 10, 10, .2);
    white-space: nowrap;
    background-color: #fff;
    border-radius: 3px;
}

    .marker h1 {
        font-weight: 600;
        line-height: 25px;
    }

    .marker span {
        /*font-size: 12px;*/
        line-height: 25px;
    }
/* @end */

/*====================================================================================*/
/*線上購買*/
.tabs-type {
    width: 100%;
    height: 60px;
    display: flex;
    font-size: 18px;
    color: #4d4d4d;
    background: #f5f5f5;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .tabs-type > a {
        display: block;
        flex: 1;
        max-width: 100px;
        line-height: 60px;
        text-align: center;
        cursor: pointer;
        border-bottom: 2px solid #f5f5f5;
    }

        .tabs-type > a.active {
            color: #ff3333;
            border-bottom: 2px solid #ff3333;
        }

.store-inside-padding {
    padding: 20px;
}

.shop-list {
}

.shop-item {
    border-radius: 5px;
    box-shadow: 1px 1px 5px 1px #ccc;
    margin-bottom: 40px;
}

.shop-top {
    height: 80px;
    width: 100%;
    /**/
    display: flex;
    flex-direction: row;
}

    .shop-top .store-logo {
        width: 60px;
        height: 60px;
        margin: 10px 30px;
        /**/
        display: flex;
        align-items: center;
    }

        .shop-top .store-logo img {
            width: 100%;
            display: block;
        }

    .shop-top .store-name {
        line-height: 80px;
        /*font-size: 20px;*/
        font-weight: 600;
    }

    .shop-top .store-more {
        flex: 1;
        padding-right: 30px;
        line-height: 80px;
        /*font-size: 16px;*/
        font-weight: 600;
        text-align: right;
        position: relative;
    }

        .shop-top .store-more:hover .QRcode-box {
            visibility: visible;
            transition: all 0.5s
        }

.QRcode-box {
    position: absolute;
    right: 15px;
    z-index: 3;
    width: 170px;
    padding: 10px;
    border: 1px solid #9b080c;
    background: #fff;
    box-shadow: 0 0 5px 1px #ccc;
    visibility: hidden;
}

    .QRcode-box img {
        width: 150px;
        height: 150px;
        display: block;
    }

    .QRcode-box div {
        width: 100%;
        padding-top: 10px;
        line-height: 1.2;
        text-align: center;
    }

.category-box {
    padding: 15px;
    border-top: 2px solid #ff3333;
}

    .category-box .category-name {
        line-height: 30px;
        font-size: 20px;
        font-weight: 600;
        padding-left: 15px;
    }

.product-box {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: self-start;
}

    .product-box > div {
        flex: 0 0 25%;
    }

.product-item {
    flex: 0 0 25%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .product-item .product-img {
        width: 240px;
        height: 240px;
        box-shadow: 1px 1px 5px 1px #ccc;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

        .product-item .product-img img {
            display: block;
            width: 100%;
            min-width: 100px;
            min-height: 100px;
            max-height: 240px;
        }

    .product-item .product-name {
        padding-top: 15px;
        line-height: 1.3;
        font-size: 16px;
        font-weight: 600;
        text-align: center
    }

    .product-item:hover .product-QRcode {
        visibility: visible;
        transition: all 0.5s
    }

.product-QRcode {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: #fff;
    visibility: hidden;
}

    .product-QRcode img {
        width: 100%;
        display: block;
    }

    .product-QRcode div {
        width: 100%;
        padding-top: 10px;
        line-height: 1;
        text-align: center;
    }


/*@end*/


#News .news-item-box {
    border-radius: 5px;
    box-shadow: 1px 1px 5px 1px #ccc;
    margin-bottom: 40px;
    position: relative
}

    #News .news-item-box .news-title {
        padding-left: 10px;
        padding-right: 10px;
        font-weight: bold;
    }

    #News .news-item-box .news-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    #News .news-item-box .releasetime {
        position: absolute;
        background-color: #ff3333;
        color: #fff;
        top: 0;
        font-size: 18px;
        font-weight: bold;
        padding: 10px 20px;
    }

        #News .news-item-box .releasetime span {
            font-size: 20px;
            font-weight: bolder;
        }
/*================================================================*/
/* 新聞 */
.news-box {
    border-radius: 5px;
    box-shadow: 1px 1px 5px 1px #ccc;
    margin-bottom: 40px;
}

.news-top {
    height: 60px;
    line-height: 60px;
    /*font-size: 16px;*/
    color: #999;
    padding-left: 30px;
    border-bottom: 2px solid #f5f5f5;
}

    .news-top > div {
        display: inline-block;
        height: 60px;
        padding: 0 15px;
        line-height: 60px;
    }

    .news-top .active {
        font-weight: 600;
        color: #4c4c4c;
        border-bottom: 2px solid #4c4c4c;
    }

#articleList {
    padding: 30px;
}

article {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

    article .news-img {
        flex: 1;
        overflow: hidden;
    }

        article .news-img img {
            width: 95%;
            min-height: 150px;
            height: auto;
            display: block;
            float: left;
            margin: 10px;
            border-radius: 4px;
            position: relative;
            box-shadow: 0px 0px 4px 2px #ccc;
        }

    article .new-content {
        padding: 0 15px;
        flex: 2;
        overflow: hidden;
        /*column*/
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

        article .new-content .news-title {
            display: inline-block;
            font-weight: 600;
            padding: 10px 0;
            /*font-size: 16px;*/
        }

        article .new-content .news-content {
            display: inline-block;
            color: #808080;
            text-indent: 0;
            line-height: 1.5;
        }

        article .new-content .news-footer {
            display: inline-block;
            margin-top: 15px;
            color: #000;
            /*row*/
            display: inline-flex;
            flex-direction: row;
            justify-content: space-between;
            align-content: center;
            align-items: center;
            padding: 10px 0;
        }

            article .new-content .news-footer span {
                display: inline-block;
                margin: 0;
                color: #f94456;
            }

    article .tips-icon {
        border-color: transparent transparent transparent #f94456;
        margin-left: 5px;
    }

    article .btn {
        min-width: 80px;
        text-align: center;
    }

/*@end*/


/*图片库*/
.Album-box {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

    .Album-box .Album-item {
        flex: 0 1 25%;
        width: 25%;
        padding: 15px;
    }

    .Album-box .in-box {
        padding: 10px;
    }

    .Album-box .Album-item .Cover {
    }

        .Album-box .Album-item .Cover img {
            width: 100%;
            width: 220px;
            height: 165px;
            display: block;
        }

    .Album-box .Album-item .Summary {
        line-height: 1.5;
        margin: 0.5em 0;
    }

    .Album-box .Album-item .ReleaseDate {
        color: #ff3333;
        /*font-size: 12px;*/
    }



/*@end*/

/*新闻详细*/
.news-detail-top {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
    border-bottom: 1px solid #ddd;
}

.news-detail-title {
    font-weight: 700;
    /*font-size: 22px;*/
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-detail-attach {
    text-align: center;
    color: #999;
    /*font-size: 12px;*/
    margin-bottom: 10px;
}

    .news-detail-attach > span {
        margin-right: 30px;
    }

        .news-detail-attach > span:last-child {
            margin-right: 0px;
        }

.news-detail-content {
    padding: 20px 100px;
    line-height: 1.5;
    overflow: hidden;
}

    .news-detail-content p img {
        width: 100%;
    }

    .news-detail-content a {
        color: blue !important;
    }

.news-detail-photos {
    padding: 20px 100px;
    line-height: 1.5;
}

    .news-detail-photos img {
        width: 100%;
        margin-bottom: 15px;
    }


/*@end*/




/**Business planning 业务规划 **/
#Nav_Business .business-box .business-item {
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}


.business-box {
    display: flex;
    flex-direction: row;
}

    .business-box .business-item {
        flex: 0 1 33.33%;
        padding: 15px;
        overflow: hidden;
    }



.business-item .cover {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 5px 1px #ccc;
}


.business-item .info {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.7);
}

    .business-item .info .icon {
        width: 50px;
        height: 50px;
        background-size: 100% 100%;
        margin: 0px auto;
    }

    .business-item .info .title {
        width: 100%;
        height: auto;
        font-size: 16px;
        padding-top: 15px;
        padding-bottom: 20px;
        color: #fff;
        position: relative;
    }

        .business-item .info .title:after {
            content: ''; /*CSS伪类用法*/
            position: absolute; /*定位背景横线的位置*/
            background: #fff; /*宽和高做出来的背景横线*/
            width: 20%;
            height: 2px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

    .business-item .info .desc {
        width: 100%;
        height: auto;
        font-size: 14px;
        color: #fff;
        padding-top: 20px;
        padding-bottom: 20px;
        line-height: 1.8;
    }



/**  Academic Journals 學術期刊 **/
.magazine-box {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
}

    .magazine-box .magazine-item {
        flex: 0 1 33.33%;
        padding: 20px;
        overflow: hidden;
    }

.magazine-item .cover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}


    .magazine-item .cover img {
        display: block;
        max-width: 90%;
        max-height: 90%;
    }

.magazine-item .title {
    padding-top: 10px;
    text-align: center;
}

.magazine-footer {
    padding-bottom: 20px;
    text-align: center;
}


/** View Business Css **/
#Business .nav-tabs {
    padding: 20px 60px;
    border-bottom: 1px solid #ccc;
    color: #666666;
}

    #Business .nav-tabs li a {
        padding: 0 10px;
        font-size: 16px;
        cursor: pointer;
    }

        #Business .nav-tabs li a.active {
            font-weight: bolder;
        }


#Business .tab-content {
    padding: 60px 60px;
}

.business-cat {
    display: none;
    min-height: 300px;
}

    .business-cat.active {
        display: block;
    }

.business-list-item {
    padding-bottom: 60px;
}

    .business-list-item .info-2-lines {
        display: flex;
        flex-direction: column;
        color: #666666;
    }

        .business-list-item .info-2-lines .title {
            font-size: 20px;
            flex: 0 0 auto;
            margin-right: 20px;
            font-weight: bolder;
            color: #666666;
            padding-bottom: 30px;
        }

    .business-list-item .info {
        display: flex;
        flex-direction: row;
        color: #666666;
    }

        .business-list-item .info .title {
            font-size: 20px;
            flex: 0 0 100px;
            margin-right: 20px;
            font-weight: bolder;
            color: #666666;
        }

    .business-list-item .cover {
        margin-top: 60px;
    }


        .business-list-item .cover img {
            display: block;
            width: 100%;
        }


/** Global Page Footer Css **/
#footer {
    background-image: url('../images/page-footer-bg.jpg');
    background-size: cover;
    color: #fff;
}

.footer-box {
    background: rgba(91,92,92,0.8);
}

.footer-info {
    background: rgba(0,0,0,0.8);
    text-align: center;
    line-height: 1.6;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
}

    .footer-info ul, li {
        display: inline-block;
    }

        .footer-info ul li a {
            padding-left: 15px;
            padding-right: 15px;
            font-size: 14px;
        }

#f-title {
    font-size: 30px;
    padding-top: 60px;
    text-align: center;
    font-weight: bolder;
}

#f-tel {
    font-size: 20px;
    padding-top: 30px;
    text-align: center;
    font-weight: bold;
    color: red;
}

#f-fax-email {
    font-size: 18px;
    padding-top: 30px;
    text-align: center;
    font-weight: bold;
}

#s-title {
    text-align: center;
    font-size: 20px;
    padding: 15px;
    font-weight: bold;
    padding-top: 30px;
}


#s-input {
    margin: 0px auto;
    width: 600px;
    padding: 30px;
    /**/
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding-bottom: 60px;
}

    #s-input input {
        width: 100%;
        border: 0;
        background: #fff;
        border-radius: 5px 0px 0px 5px;
        padding: 15px 10px;
    }

    #s-input button {
        flex: 0 0 100px;
        width: 100px;
        border: 0;
        background: #ff3333;
        color: #fff;
        border-radius: 0px 5px 5px 0px;
        text-transform: uppercase;
        cursor: pointer;
        font-weight: bold;
    }




/*new  footer wap page css*/
#footer.footer-wap {
    background-color: #505050;
    background-image: none;
}

.footer-wap .container {
    padding: 20px 15px;
}


/*===============================================================================*/
/*===============================================================================*/
/*手機版 樣式*/
@media screen and (max-width: 992px) {
    .header {
        position: relative;
    }

    .container {
        width: 100%;
    }

    .main-content {
        margin-top: 70px;
        width: 100%;
    }

    .banner-box {
        width: 100%;
    }

    .banner {
        background-size: cover;
    }

    .totop .icon {
        right: 15px;
    }

    .section-content2 .row {
        display: block;
    }

        .section-content2 .row .col-md-4 {
            flex: 0 0 100%;
            max-width: 100%;
            display: flex;
        }

    .section-content2 .row-box .left {
    }

    .section-content2 .row-box .right {
        padding: 10px 0px;
        padding-right: 20px;
    }

    #navToggle.btn-nav-mobile {
        display: block;
        visibility: visible;
        margin: 10px;
    }

    .limitBox {
        overflow: hidden;
    }

    .header .top-bar {
        height: 0px;
        visibility: hidden;
    }

    .header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 100;
        background-color: #fff;
        box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.3);
        background-color: #fff;
        /**/
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        z-index: 100;
        /* starting point */
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

        .header .main-bar.fixed {
            animation: none;
        }

    .nav {
        overflow: auto;
        position: fixed;
        top: 0;
        right: -70vw;
        width: 70vw;
        height: 100vh;
        background-color: #fff;
        z-index: 100;
        border-left: 1px solid #ccc;
    }

    nav > ul {
        height: 100%;
        overflow-y: auto;
        position: relative;
    }

    nav li {
        display: block;
        float: none;
        position: relative;
    }

    nav > ul > li > a, nav > ul > li > span {
        display: block;
        padding: 10px 15px;
        letter-spacing: 1px;
        /*font-size: 16px;*/
        border-bottom: 1px solid #EFEFEF;
    }

    nav > ul > li > ul > li > a {
        display: block;
        float: none;
        position: relative;
        padding: 10px 30px;
        letter-spacing: 1px;
        /*font-size: 16px;*/
        border-bottom: 1px solid #EFEFEF;
    }

    .main-menu li.m-active a {
        border-bottom: 1px solid red;
    }

    /*Nav Expanding Open Effect*/
    nav.open {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0)scale(1);
        -webkit-animation: slideIn .35s ease-in-out;
        -moz-transform: translate3d(0,0,0)scale(1);
        -moz-animation: slideIn .35s ease-in-out;
        transform: translate3d(0,0,0)scale(1);
        animation: slideIn .35s ease-in-out;
    }

    @-webkit-keyframes slideIn {
        0% {
            opacity: .3;
            -webkit-transform: translate3d(5%,0,0)scale(.97);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0,0,0)scale(1);
        }
    }

    @-moz-keyframes slideIn {
        0% {
            opacity: .3;
            -moz-transform: translate3d(5%,0,0)scale(.97);
        }

        100% {
            opacity: 1;
            -moz-transform: translate3d(0,0,0)scale(1);
        }
    }

    @keyframes slideIn {
        0% {
            opacity: .3;
            transform: translate3d(5%,0,0)scale(.97);
        }

        100% {
            opacity: 1;
            transform: translate3d(0,0,0)scale(1);
        }
    }

    /*Nav Shrinking Closed Effect*/
    nav.close {
        opacity: .3;
        -webkit-transform: translate3d(5%,0,0)scale(.97);
        -webkit-animation: slideOut .3s ease-in-out;
        -moz-transform: translate3d(5%,0,0)scale(.97);
        -moz-animation: slideOut .3s ease-in-out;
        transform: translate3d(5%,0,0)scale(.97);
        animation: slideOut .3s ease-in-out;
    }

    @-webkit-keyframes slideOut {
        0% {
            opacity: 1;
            -webkit-transform: translate3d(0,0,0)scale(1);
        }

        100% {
            opacity: .3;
            -webkit-transform: translate3d(5%,0,0)scale(.97);
        }
    }

    @-moz-keyframes slideOut {
        0% {
            opacity: 1;
            -moz-transform: translate3d(0,0,0)scale(1);
        }

        100% {
            opacity: .3;
            -moz-transform: translate3d(5%,0,0)scale(.97);
        }
    }

    @keyframes slideOut {
        0% {
            opacity: 1;
            transform: translate3d(0,0,0)scale(1);
        }

        100% {
            opacity: .3;
            transform: translate3d(5%,0,0)scale(.97);
        }
    }

    /* CONTENT ANNIMATION */
    .main-content {
        /* starting point */
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        z-index: 1;
    }

        /*Content Sliding Open Effect*/
        header.open,
        .main-content.open {
            -webkit-transform: translate3d(-70vw,0,0);
            -webkit-animation: open .5s ease-in-out;
            -moz-transform: translate3d(-70vw,0,0);
            -moz-animation: open .5s ease-in-out;
            transform: translate3d(-70vw,0,0);
            animation: open .5s ease-in-out;
        }

    @-webkit-keyframes open {
        0% {
            -webkit-transform: translate3d(0,0,0);
        }

        70% {
            -webkit-transform: translate3d(-75vw,0,0);
        }

        100% {
            -webkit-transform: translate3d(-70vw,0,0);
        }
    }

    @-moz-keyframes open {
        0% {
            -moz-transform: translate3d(0,0,0);
        }

        70% {
            -moz-transform: translate3d(-75vw,0,0);
        }

        100% {
            -moz-transform: translate3d(-70vw,0,0);
        }
    }

    @keyframes open {
        0% {
            transform: translate3d(0,0,0);
        }

        70% {
            transform: translate3d(-75vw,0,0);
        }

        100% {
            transform: translate3d(-70vw,0,0);
        }
    }

    /*Content Sliding Closed Effect*/
    header.close,
    .main-content.close {
        -webkit-transform: translate3d(0,0,0);
        -webkit-animation: close .3s ease-in-out;
        -moz-transform: translate3d(0,0,0);
        -moz-animation: close .3s ease-in-out;
        transform: translate3d(0,0,0);
        animation: close .3s ease-in-out;
    }

    @-webkit-keyframes close {
        0% {
            -webkit-transform: translate3d(-70vw,0,0);
        }

        100% {
            -webkit-transform: translate3d(0,0,0);
        }
    }

    @-moz-keyframes close {
        0% {
            -moz-transform: translate3d(-70vw,0,0);
        }

        100% {
            -moz-transform: translate3d(0,0,0);
        }
    }

    @keyframes close {
        0% {
            transform: translate3d(-70vw,0,0);
        }

        100% {
            transform: translate3d(0,0,0);
        }
    }

    .section-tile2 .title-content .title1 {
        white-space: normal;
    }

    .section-content {
        height: auto;
        display: flex;
        padding: 10px 0;
        flex-wrap: wrap;
        padding: 5px;
    }

        .section-content .item {
            text-align: center;
            display: block;
            flex: 0 0 100%;
            float: left;
            padding: 20px 5px;
            background-color: #fff;
            margin: 10px 0;
        }

    #footer .footer-box {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-box .col1 {
        order: 1;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-box .col2 {
        order: 0;
    }

    .m-margin-top {
        margin-top: 80px !important;
    }

    .page-title {
        width: 100%;
    }

        .page-title .big {
            font-size: 20px;
            line-height: 2;
            text-transform: uppercase;
        }

    .section-content3 .content-bg2 {
        visibility: hidden;
    }

    .about-map .col2 {
        margin-left: 0px;
        margin-top: 15px;
    }

    #storeDiv {
        padding-top: 10px;
    }

    .store-more {
        visibility: hidden;
    }

    .product-item {
        height: 100%;
        flex: 0 1 100%;
        width: 100%;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .Album-box .Album-item {
        flex: 0 1 100%;
        width: 100%;
    }

    .news-detail-top {
        padding-top: 15px;
        margin-bottom: 15px;
    }

    .news-detail-content {
        padding: 15px;
    }

        .news-detail-content img {
            max-width: 90%;
        }

    .channel-item {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .channel-item2 {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .channel-item .img-bg1,
    .channel-item .img-bg2 {
        visibility: hidden;
    }

    .order0, .order1 {
        order: initial
    }

    .about-map {
        flex-direction: column;
    }

    .TimeLine {
        flex-direction: column;
        margin-top: 30px;
    }

        .TimeLine .TimeLine-Year {
            min-height: 0;
            display: flex;
            align-items: baseline;
        }

        .TimeLine:last-child .SubTimeLines {
            border: none;
        }



        .TimeLine .TimeLine-Year .big {
            margin-right: 15px;
            font-size: 20px;
        }

        .TimeLine .PointLine {
            visibility: hidden;
            opacity: 0;
            display: none;
        }

        .TimeLine .SubTimeLine {
            flex-direction: column;
        }

            .TimeLine .SubTimeLine .SubTimeLine-Month {
                display: flex;
                align-items: baseline;
                flex: 1;
                padding-bottom: 10px;
            }

                .TimeLine .SubTimeLine .SubTimeLine-Month .big {
                    margin-right: 15px;
                }

    .p-box {
        padding-left: 15px;
        padding-right: 15px;
    }

    .margin-top-20 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header .main-bar .m-multi-language {
        display: block;
        visibility: visible;
        padding: 5px 15px;
        display: flex;
        align-items: center;
    }

    .m-multi-language > div {
        flex: 1;
        text-align: center;
        margin: 5px 10px;
        line-height: 2;
        width: 2em;
        height: 2em;
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    .topping {
        flex-direction: column;
    }

    .news-item {
        background: #fafafa;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 15px;
        /*row*/
        display: flex;
        flex-direction: row;
        align-content: baseline;
        align-items: center;
        flex-wrap: wrap;
    }

        .news-item .col2 {
            order: 0;
            flex: 0 0 100%;
            border-left: none;
        }

        .news-item .col1 {
            flex: 1;
            order: 1;
        }

        .news-item .col3 {
            flex: 1;
            order: 2;
        }

            .news-item .col1 *,
            .news-item .col3 * {
                display: inline-block;
                font-weight: normal;
                padding-right: 15px;
            }

    #News .news-title {
        font-weight: normal;
        display: block;
    }

    #News .news-content {
        text-indent: 0;
        display: block;
    }

    #articleList {
        padding: 15px;
    }

    article {
        flex-direction: column;
    }

    .m-hidden {
        visibility: hidden;
        display: block;
    }

    article .new-content .news-title {
        font-weight: normal;
    }

    .m-only-2-line {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        display: inline !important;
        text-overflow: ellipsis !important;
        line-height: 1.5em;
        height: 3em;
        position: relative;
    }

        .m-only-2-line::after {
            content: "...";
            position: absolute;
            bottom: 0;
            right: 0;
        }

    .Album-box .Album-item .Cover img {
        width: 100%;
        height: auto;
        display: block;
    }

    #about-v2-left {
        display: none;
    }

    #Prospect .section-content {
        flex-direction: column;
    }

    #Prospect .prospect-col2 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #divPurpose {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        #divPurpose img {
            flex: 1;
        }

        #divPurpose div {
            flex: 1;
            display: inline-block;
            margin: 15px;
        }

    #LayoutList {
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 10px 0;
    }

        #LayoutList .item {
            text-align: center;
            display: block;
            flex: 1;
            float: left;
            padding: 20px 5px;
            margin-bottom: 15px;
            box-shadow: 1px 1px 3px 1px #f4e1df;
            /**/
            display: flex;
            flex-direction: row;
            align-items: center;
        }

            #LayoutList .item > div.img {
                flex: 0 0 50px;
                margin: 15px;
            }

            #LayoutList .item > div {
                flex: 1;
            }

    .title-bg {
        display: none;
    }

    .member-detailed {
        padding-bottom: 10px;
        align-content: space-between;
        display: flex;
        flex-direction: column;
    }

        .member-detailed .member-info .member-name {
            padding-top: 10px;
        }

    #about-v2-content .div-desc {
        padding-left: 0px;
        padding-right: 0px;
    }

    #fixed-scan {
        bottom: 78px;
    }

        #fixed-scan #divQR {
            display: flex;
            justify-content: space-between;
            width: 100%;
            height: 80px;
        }

            #fixed-scan #divQR img {
                width: 70px;
            }

        #fixed-scan #divQRmsg {
            height: 80px;
            position: relative;
            top: 0;
        }



    .m-2row {
        flex-direction: row;
        flex-wrap: wrap;
    }

        .m-2row > div {
            flex: 0 0 50% !important;
            font-size: 12px;
        }

    .m-4row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    div#divPartners.m-4row > div {
        flex: 0 0 50% !important;
        font-size: 12px;
        padding: 2px;
    }

    .out-padding {
        margin: 0 -10px;
    }

    .header .main-bar .m-access {
        display: block;
        visibility: visible;
    }

    .m-access > div {
        text-align: center;
        line-height: 2;
        padding-top: 10px;
        vertical-align: middle;
    }

    .section-content2 .row-box {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .product-box {
        justify-content: center;
    }

    .section-div-tile2 .title-bg2 {
        display: none;
    }

    .line {
        margin-top: 20px;
    }

    .section-content3 p {
        padding-top: 20px;
    }

        .section-content3 p:last-child {
            padding-bottom: 20px;
        }

    .channel-item .col-2 {
        padding-left: 0px;
        padding-right: 0px;
    }

        .channel-item .col-2.order0 {
            padding-right: 10px;
            padding-left: 10px;
        }


    /**Business planning 业务规划 手機版 **/
    .business-box {
        flex-direction: column;
    }

        .business-box .business-item {
            flex: 0 0 100%;
            padding: 20px 5px;
            overflow: hidden;
        }

    #Nav_Business .business-box .business-item {
        padding: 20px 5px;
    }

    .magazine-box {
        padding-left: 0px;
        padding-right: 0px;
    }

        .magazine-box .magazine-item {
            padding: 0px;
        }

    .magazine-item .title {
        display: none;
    }

    .magazine-footer {
        padding-top: 20px;
    }

    #Business .nav-tabs {
        padding: 20px 10px;
    }

    #Business .tab-content {
        padding: 20px
    }

    .business-list-item .info {
        flex-direction: column;
    }

        .business-list-item .info .title {
            flex: 0 0 auto;
            padding-bottom: 20px;
        }

    .business-list-item .cover {
        margin-top: 20px;
    }

    .business-list-item {
        padding-bottom: 20px;
    }

    #f-fax-email a {
        display: block;
    }

    #s-input {
        width: 100%;
        padding: 20px 0px;
    }
}
