@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
 :root {
    --my-red: #ed143d;
}

/* 覆蓋 inline style 為 red 的元素 */
*[style*="color: red"] {
    color: var(--my-red) !important;
}
html {
  font-size: 62.5%;
}

body, div, a, ul, li, img, table, tr, td, header, footer, h1, h2, h3, h4, input, select, textarea {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #222222;
  font-family: 'Noto Sans TC', serif;
  list-style: none;
  border: none;
  border-collapse: collapse;
  box-sizing: border-box;
}

header {
  width: 100%;
  height: 110px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 30px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  header {
    flex-wrap: wrap;
    align-content: center;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 80px;
  }
}
header .logoAndNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  header .logoAndNav {
    justify-content: space-between;
    width: 100%;
    padding-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  header .logoAndNav {
    padding-top: 0;
  }
}
header .logoAndNav img {
  align-self: center;
}
@media only screen and (max-width: 1199px) {
  header .logoAndNav img {
    width: 200px;
  }
}
@media only screen and (max-width: 1023px) {
  header .logoAndNav img {
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  header .logoAndNav img {
    width: 200px;
  }
}
header .logoAndNav .nav {
  padding-top: 40px;
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  header .logoAndNav .nav {
    display: none;
  }
}
header .logoAndNav .nav > li {
    margin-left: 20px;
    padding: 3px 3px;
    white-space: nowrap;
    position: relative;
    border-radius: 3px;
}
header .logoAndNav .nav > li:hover {
    background-color: #107BAD;
}

header .logoAndNav .nav > li:hover > a {
    color: #fff;
}
header .logoAndNav .nav > li a {
  font-weight: 300;
  font-size: 1.7rem;
  color: #222222;
}
header .logoAndNav .nav > .current {
    background-color: #107BAD;
}

header .logoAndNav .nav > .current > a {
    color: #fff;
}
header .logoAndNav .nav > .hasSecond ul {
  display: none;
}
header .logoAndNav .nav > .hasSecond .showList {
  display: block;
  position: absolute;
  left: 0;
  top: 25px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
header .logoAndNav .nav > .hasSecond .showList li {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
header .logoAndNav .nav > .hasSecond .showList li a {
  color: #222222;
}
header .logoAndNav .nav > .hasSecond .showList li a:hover {
  color: #107BAD;
}
header .ctrl {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  top: 20px;
  position: absolute;
  right: 30px;
}
@media only screen and (max-width: 991px) {
  header .ctrl {
    width: 100%;
    position: absolute;
    top: 10px;
    justify-content: flex-end;
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  header .ctrl {
    display: none;
  }
}
header .ctrl li {
  margin-left: 20px;
  position: relative;
}
header .ctrl li .search {
  position: absolute;
  right: 10px;
  top: 5px;
}
@media only screen and (max-width: 991px) {
  header .ctrl li img {
    height: 12px;
  }
}
header .ctrl li input {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 5px;
  width: 130px;
}
header .ctrl .show:last-child {
  display: inline;
}


.lgm .logoAndNav .nav > li {
    border-bottom: 2px solid #ddfeff;
}

.lgm .gsc-control-cse {
    background-color: #ddfeff;
}



.pfi .logoAndNav .nav > li {
    border-bottom: 2px solid #fcffdd;
}

.pfi .gsc-control-cse {
    background-color: #fcffdd;
}

.npf {
    background-image: url("../img/logo_npf.png");
    background-repeat: no-repeat;
    background-position: 300px;
}

.mtg {
    background-image: url("../img/logo_mtg.png");
    background-repeat: no-repeat;
    background-position: 300px;
}

.sgm {
    background-image: url("../img/logo_sgm.png");
    background-repeat: no-repeat;
    background-position: 300px;
}

.menuBtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .menuBtn {
    display: block;
    position: absolute;
    right: 30px;
    top: 35px;
    width: 25px;
  }
  .menuBtn div {
    width: 100%;
    margin-bottom: 3px;
    height: 2px;
    background-color: #222222;
  }
}

.mobileNav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  max-height: calc(100% - 80px);
  overflow: auto;
  display: none;
}
.mobileNav > li {
  width: 100%;
  padding: 20px;
  font-size: 1.6rem;
  border-top: 1px solid #ddd;
}
.mobileNav > li a {
  color: #222222;
}
    .mobileNav > li input {
        border-radius: 5px;
        border: 1px solid #ddd;
        padding: 5px;
        height: 2.5em;
        width: calc(100% - 78px);
    }
.mobileNav > li button {
  width: 70px;
  height: 35px;
  border: 1px solid #ddd;
  background: none;
  margin-left: 3px;
  border-radius: 5px;
  position: relative;
  top: -3px;
}
.mobileNav > .hasSecond ul {
  display: none;
}
.mobileNav > .hasSecond:hover ul {
  display: block;
}
.mobileNav > .hasSecond:hover ul li {
  display: block;
  width: 100%;
  border-top: 1px solid #ddd;
  padding: 20px;
}
.mobileNav > .hasSecond:hover ul li:first-child {
  border: none;
}
.mobileNav > .hasSecond:hover ul li a {
  color: #909090;
}

@media only screen and (max-width: 767px) {
  .mobileNavShow {
    display: block;
  }
}

footer {
  background-color: #505050;
  padding: 30px 0 0 0;
  background-image: url("../img/footerLogo.png");
  background-position: right center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 321px) {
    footer .inner {
        margin: 0 auto;
        max-width: 1300px;
        font-size: 1.5rem;
        color:#ddd;
        line-height: 25px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 320px) {
    footer .inner {
        margin: 0 auto;
        max-width: 1300px;
        font-size: 1.3rem;
        color: #fff;
        line-height: 20px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
    footer .inner .underMenu {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }

        footer .inner .underMenu > li {
            margin-bottom: 15px;
            padding-bottom: 8px;
            margin-left: 15px;
            width: 150px;
        }

    @media only screen and (max-width: 599px) {
        footer .inner .underMenu > li {
            width: 45%;
            margin-left: 0;
        }
    }

    footer .inner .underMenu > li:first-child {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    footer .inner .underMenu > li > a {
        font-size: 1.8rem;
        color: #fff;
        padding-bottom: 15px;
    }

    footer .inner .underMenu > li ul li {
        margin-top: 10px;
    }

        footer .inner .underMenu > li ul li a {
            font-size: 1.4rem;
            color: #fff;
            font-weight: 300;
        }

    footer .inner .footerNav {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }

        footer .inner .footerNav li {
            margin-bottom: 15px;
            padding-left: 15px;
            margin-left: 15px;
            border-left: 1px solid #fff;
            height: 14px;
            line-height: 11px;
        }

            footer .inner .footerNav li:first-child {
                margin-left: 0;
                padding-left: 0;
                border-left: none;
            }

            footer .inner .footerNav li a {
                font-size: 1.4rem;
                color: #fff;
            }

    footer .under {
        background-color: #D5D5D5;
        color: #505050;
        padding: 15px 20px;
        font-size: 1.3rem;
        text-align: center;
    }

    *:focus {
        outline: #7BD2F5 2px solid;
        box-sizing: content-box;
        outline-offset: -1px;
    }

    header a:focus, footer a:focus {
        outline-offset: -1px;
    }

    .wrapper {
        width: 100%;
        margin-top: 110px;
        background-color: #F1F6FA;
    }

    @media only screen and (max-width: 767px) {
        .wrapper {
            margin-top: 80px;
        }
    }

    .wrapper .innerKv {
        width: 100%;
        height: 35vh;
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("../img/innerKv.jpg");
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .wrapper .innerKv .title {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            font-size: 5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 5px;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
            padding-left: 20px;
            padding-right: 20px;
            box-sizing: content-box;
        }

    .wrapper .backTime {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        font-size: 1.4rem;
        color: crimson;
        text-align: right;
    }

    .wrapper .container {
        max-width: 1140px;
        margin: 0 auto;
        padding-top: 30px;
        padding-bottom: 90px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
    }

    @media only screen and (max-width: 767px) {
        .wrapper .container {
            flex-wrap: wrap;
        }
    }

    @media only screen and (max-width: 450px) {
        .wrapper .container {
            padding-top: 30px;
            padding-bottom: 30px;
        }
    }

    .wrapper .container .leftNav {
        width: 280px;
        background-color: #fff;
        /*position: sticky;*/
        top: 150px;
    }

    @media only screen and (max-width: 767px) {
        .wrapper .container .leftNav {
            width: 100%;
            position: relative;
            top: 0;
            background: none;
        }
    }

    .wrapper .container .leftNav ul {
        width: 100%;
    }

        .wrapper .container .leftNav ul .title {
            font-size: 2rem;
            padding: 10px 15px;
            background-color: #2d820a;
            color: #fff;
            font-weight: 600;
        }

    @media only screen and (max-width: 767px) {
        .wrapper .container .leftNav ul .title {
            display: none;
        }
    }

    .wrapper .container .leftNav ul li {
        display: block;
        width: 100%;
        font-size: 1.8rem;
    }

    @media only screen and (max-width: 767px) {
        .wrapper .container .leftNav ul li {
            vertical-align: top;
            width: auto;
            display: inline-block;
            margin: 0 5px 10px 5px;
        }
    }

    .wrapper .container .leftNav ul li a {
        display: block;
        padding: 10px 25px;
        background-color: #fff;
        color: #222222;
        border-top: 1px solid #bbb;
        font-weight: 300;
    }

    @media only screen and (max-width: 767px) {
        .wrapper .container .leftNav ul li a {
            border: 1px solid #bbb;
            padding: 10px;
        }
    }

    .wrapper .container .leftNav ul li:hover > a {
        background-color: #c7f5c1;
    }

    .wrapper .container .leftNav ul li .loginTable {
        width: 100%;
    }

        .wrapper .container .leftNav ul li .loginTable tr td {
            padding: 5px 10px;
            vertical-align: middle;
            font-size: 1.4rem;
        }

            .wrapper .container .leftNav ul li .loginTable tr td input {
                width: 100%;
                height: 3em;
                border: 1px solid #bbb;
                padding: 0 5px;
            }

            .wrapper .container .leftNav ul li .loginTable tr td .code {
                width: 70px;
                display: inline-block;
            }

            .wrapper .container .leftNav ul li .loginTable tr td img {
                display: inline-block;
                width: 105px;
            }

            .wrapper .container .leftNav ul li .loginTable tr td .send {
                display: block;
                height: 33px;
                line-height: 13px;
                background-color: #107BAD;
                font-size: 1.6rem;
                color: #fff;
                text-align: center;
                width: 100%;
                border-radius: 3px;
                box-sizing: border-box;
            }

        .wrapper .container .leftNav ul li .loginTable tr .codeA {
            border: none;
            /*font-size: 14px;*/
            /*text-decoration: underline;*/
            color: #107BAD;
            white-space: nowrap;
            padding-left: 0;
            padding-right: 0;
            padding-top: 5px;
            padding-bottom: 5px;
        }

            .wrapper .container .leftNav ul li .loginTable tr .codeA:first-child {
                padding-left: 10px;
            }

    .wrapper .container .leftNav ul li.current a {
        background-color: #c7f5c1;
    }

    .wrapper .container .leftNav ul .hasSecond ul, .wrapper .container .leftNav ul .hasSecond2 ul {
        display: none;
    }

    @media only screen and (max-width: 599px) {
        .wrapper .container .leftNav ul .hasSecond ul, .wrapper .container .leftNav ul .hasSecond2 ul {
            width: 100%;
            margin-top: 10px;
            margin-bottom: 10px;
        }
    }

    .wrapper .container .leftNav ul .hasSecond ul li, .wrapper .container .leftNav ul .hasSecond2 ul li {
        font-size: 1.5rem;
    }

    @media only screen and (max-width: 599px) {
        .wrapper .container .leftNav ul .hasSecond ul li, .wrapper .container .leftNav ul .hasSecond2 ul li {
            margin-left: 0;
        }
    }

    .wrapper .container .leftNav ul .hasSecond ul li a, .wrapper .container .leftNav ul .hasSecond2 ul li a {
        color: #707070;
    }

    .wrapper .container .leftNav ul .hasSecond .showList, .wrapper .container .leftNav ul .hasSecond2 .showList {
        display: block;
    }
        .wrapper .container .leftNav ul .hasSecond .showList, .wrapper .container .leftNav ul .hasSecond2 .showList a {
            background-color: #F0FFF0;
        }

        .wrapper .container .leftNav ul .hasSecond .showList, .wrapper .container .leftNav ul .hasSecond2 .showList :hover > a {
            background-color: #C4E1FF;
        }

    .wrapper .container .leftNav .loginUl {
        box-sizing: border-box;
        width: 100%;
    }

        .wrapper .container .leftNav .loginUl .title {
            display: block;
            box-sizing: border-box;
        }

        .wrapper .container .leftNav .loginUl .loginTag {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

            .wrapper .container .leftNav .loginUl .loginTag .loginBtn {
                width: 50%;
                height: 35px;
                line-height: 35px;
                text-align: center;
                color: #222222;
                background-color: #eee;
                font-size: 1.5rem;
                padding: 0;
            }

                .wrapper .container .leftNav .loginUl .loginTag .loginBtn.current {
                    background-color: #055f46;
                    color: #fff;
                }

    @media only screen and (max-width: 767px) {
        .wrapper .container .leftNav .loginUl {
            background-color: #fff;
            padding-top: 10px;
            padding-bottom: 10px;
        }

            .wrapper .container .leftNav .loginUl li {
                width: 100%;
            }

                .wrapper .container .leftNav .loginUl li table tr td {
                    padding-left: 0;
                    padding-right: 0;
                }

                    .wrapper .container .leftNav .loginUl li table tr td .code {
                        width: 95%;
                    }

                .wrapper .container .leftNav .loginUl li table tr .codeA {
                    padding-left: 0 !important;
                    padding-right: 0 !important;
                }
    }

    .wrapper .container .rightCon {
        width: calc(100% - 300px);
        max-width: 830px;
    }

       

            .wrapper .container .rightCon a:hover,
            a:focus {
                color: #003300 ;
            }

            .wrapper .container .rightCon a:focus {
                outline: thin dotted #333 ;
            }

    
    @media only screen and (max-width: 767px) {
        .wrapper .container .rightCon {
            margin-left: 5px;
            margin-right: 5px;
            width: 100%;
        }
    }

    .wrapper .container .rightCon .listDown {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
    }

        .wrapper .container .rightCon .listDown li {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 10px;
            margin: 10px 0;
        }

            .wrapper .container .rightCon .listDown li a {
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;
                align-content: flex-start;
            }

                .wrapper .container .rightCon .listDown li a img {
                    margin-right: 5px;
                }

                .wrapper .container .rightCon .listDown li a .downTT {
                    color: #107BAD;
                }

                .wrapper .container .rightCon .listDown li a:hover .downTT {
                    color: #000;
                }

    .wrapper .container .rightCon .tag {
        text-align: left;
        white-space: nowrap;
        border-bottom: 1px solid #eee;
        font-size: 0;
        width: 100%;
        /*overflow-x: auto;
  overflow-y: hidden;*/
    }

        .wrapper .container .rightCon .tag li {
            display: inline-block;
            font-size: 1.5rem;
            border-bottom: 3px solid #fff;
        }

            .wrapper .container .rightCon .tag li a {
                padding: 5px 15px;
                color: #222 ;
            }

                .wrapper .container .rightCon .tag li a:hover {
                    background-color: #107BAD;
                    color: #fff ;
                }

                .wrapper .container .rightCon .tag li a:focus {
                    outline-offset: -10px;
                }

            .wrapper .container .rightCon .tag li .current {
                background-color: #107BAD;
                color: #fff !important;
            }

    .wrapper .container .rightCon .block {
        padding-top: 20px;
    }

        .wrapper .container .rightCon .block .box {
            font-size: 1.6rem;
            letter-spacing: 1px;
            line-height: 2.4rem;
            display: none;
        }

            .wrapper .container .rightCon .block .box:first-child {
                display: block;
            }

    .wrapper .container .rightCon .imgList {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }

        .wrapper .container .rightCon .imgList li {
            width: 47%;
            border: 1px solid #bbb;
            padding: 15px;
            margin: 0.75%;
        }

    @media only screen and (max-width: 450px) {
        .wrapper .container .rightCon .imgList li {
            padding: 5px;
        }
    }

    .wrapper .container .rightCon .imgList li img {
        width: 100%;
    }

    .wrapper .container .rightCon .imgList li .imgTitle {
        font-size: 1.8rem;
        letter-spacing: 1px;
        height: 25px;
        overflow: hidden;
    }

.wrapper .container .rightCon .title {
    background-color: #df3600;
    padding: 15px;
    font-size: 2.3rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    width: 100%;
    /*display: inline-flex;*/
}



    .wrapper .container .rightCon .title h2 {
        display: contents
    }



.wrapper .container .rightCon .title h4 {
    color: #fff;
}


    .wrapper .container .rightCon .title .back {
        float: right;
        right: 20px;
        top: 15px;
        min-width: 110px;
        height: 34px;
        text-align: center;
        line-height: 34px;
        font-size: 1.6rem;
        color: #df3600;
        background-color: #fff;
        border-radius: 5px;
        display: block;
        font-weight: 500;
        margin-left: 10px;
    }

            .wrapper .container .rightCon .title .back:hover {
                background-color: #eee;
            }

.wrapper .container .rightCon .pager {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
    text-align: center;
}

        .wrapper .container .rightCon .pager li {
            display: inline-block;
            margin: 0 5px;
            border: 1px solid #909090;
            background-color: #fff;
            font-size: 1.5rem;
            font-weight: 300;
            color: #505050;
        }

    /*@media only screen and (max-width: 599px) {
        .wrapper .container .rightCon .pager li {
            display: none;
        }
    }*/

    .wrapper .container .rightCon .pager li a {
        padding: 5px 11px;
        display: block;
    }

        .wrapper .container .rightCon .pager li a:hover {
            color: #fff;
            background-color: #107BAD;
        }

    .wrapper .container .rightCon .pager .currentPage a {
        color: #fff;
        background-color: #107BAD;
    }

    @media only screen and (max-width: 599px) {
        .wrapper .container .rightCon .pager .next, .wrapper .container .rightCon .pager .prev {
            display: inline-block;
        }
    }

    .wrapper .container .rightCon .inner {
        background-color: #fff;
        padding: 10px;
        font-size: 1.6rem;
        letter-spacing: 1px;
        line-height: 2.6rem;
    }

    .wrapper .container .rightCon .table a {
        color: #1177A0 !important;
    }

        .wrapper .container .rightCon .table a:hover,
        a:focus {
            color: #003300 !important;
        }

        .wrapper .container .rightCon .table a:focus {
            outline: thin dotted #333 !important;
        }

    @media only screen and (max-width: 450px) {
        .wrapper .container .rightCon .inner {
            padding: 15px;
        }
    }

    .wrapper .container .rightCon .inner .tt {
        font-size: 2.5rem;
        color: #107BAD;
    }

    .wrapper .container .rightCon .inner .innerTitle {
        font-size: 1.8rem;
        font-weight: 500;
        color: #107BAD;
    }

    .wrapper .container .rightCon .innerBg {
        background-color: #fff;
    }

    .wrapper .container .rightCon .formTable tr th {
        font-size: 1.5rem;
        vertical-align: middle;
        padding-bottom: 20px;
        white-space: nowrap;
    }

    .wrapper .container .rightCon .formTable tr td {
        font-size: 1.5rem;
        vertical-align: middle;
        padding-bottom: 20px;
        /*white-space: nowrap;*/
    }

        .wrapper .container .rightCon .formTable tr td label {
            padding-right: 10px;
            /*white-space: nowrap;*/
        }

        .wrapper .container .rightCon .formTable tr td ul, .wrapper .container .rightCon .formTable tr th ul {
            white-space: normal;
        }

            .wrapper .container .rightCon .formTable tr td ul li, .wrapper .container .rightCon .formTable tr th ul li {
                display: inline-block;
                margin-right: 15px;
            }

        .wrapper .container .rightCon .formTable tr td input[type="text"], .wrapper .container .rightCon .formTable tr td input[type="password"], .wrapper .container .rightCon .formTable tr td select, .wrapper .container .rightCon .formTable tr th input[type="text"], textarea, .wrapper .container .rightCon .formTable tr th select {
            /*width: 100%;*/
            height: 2.5em;
            /*max-width: 200px;*/
            border: 1px solid #bbb;
        }

        .wrapper .container .rightCon .table tr td input[type="text"], .wrapper .container .rightCon .formTable tr td input[type="password"], .wrapper .container .rightCon .formTable tr td select, .wrapper .container .rightCon .formTable tr th input[type="text"], textarea, .wrapper .container .rightCon .formTable tr th select {
            /*width: 100%;*/
            height: 2.5em;
            /*max-width: 200px;*/
            border: 1px solid #bbb;
        }

        .wrapper .container .rightCon .formTable tr td input[type="button"], .wrapper .container .rightCon .formTable tr td input[type="submit"] {
            padding: 7px 15px;
            background-color: #107BAD;
            color: #fff;
            border-radius: 5px;
        }

            .wrapper .container .rightCon .formTable tr td input[type="button"]:hover, .wrapper .container .rightCon .formTable tr td input[type="submit"]:hover {
                opacity: 0.7;
            }

    .wrapper .container .rightCon .formTable tr th {
        color: #107BAD;
        padding-right: 10px;
    }

    .wrapper .container .rightCon .inputUl {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
    }

        .wrapper .container .rightCon .inputUl li {
            /*white-space: nowrap;*/
            margin-right: 10px;
            margin-bottom: 10px;
        }

            .wrapper .container .rightCon .inputUl li .checkAndRadio {
                display: inline-block;
                margin-right: 10px;
            }

                .wrapper .container .rightCon .inputUl li .checkAndRadio input {
                    position: relative;
                }

            .wrapper .container .rightCon .inputUl li input[type="text"], .wrapper .container .rightCon .inputUl li input[type="password"] {
                width: 150px;
                height: 2.5em;
                line-height: 30px;
                border: 1px solid #bbb;
                padding: 0 10px;
            }

    .wrapper .container .rightCon .inner h3 {
        font-size: 1.5em;
        font-weight: bold;
        color: #336600;
        font-family: "微軟正黑體", "新細明體", "Arial Unicode MS";
    }

    .wrapper .container .rightCon .inner h4 {
        font-weight: bold;
        margin: 0px 10px 10px 0px;
        font-size: 1em;
        padding: 5px;
        color: #fff;
        background-color: #005394;
        float: left;
    }

.wrapper .container .rightCon .inner .progTitle {
    font-weight: bold;
    margin: 0px 10px 10px 0px;
    font-size: 1em;
    padding: 5px;
    color: #fff;
    background-color: #005394;
    float: left;
}

.wrapper .container .rightCon .inputUl li select {
    /*width: 150px;*/
    font-size: 90%;
    height: 2.5em;
    line-height: 30px;
    border: 1px solid #bbb;
    padding: 0 10px;
}

.wrapper .container .rightCon .inputUl li .send {
    width: 70px;
    height: 2.5em;
    line-height: 35px;
    display: block;
    text-align: center;
    background-color: #2d820a;
    color: #fff;
    border-radius: 3px;
}

        .wrapper .container .rightCon .inputUl li .send:hover {
            opacity: 0.8;
        }

.wrapper .container .rightCon .inputUl li .sendGreen {
    width: 70px;
    height: 2.5em;
    line-height: 35px;
    text-align: center;
    background-color: #2d820a !important;
    color: #fff;
    border-radius: 3px;
}

        .wrapper .container .rightCon .inputUl li .sendGreen:hover {
            opacity: 0.8;
        }

    .wrapper .container .rightCon .table, .formTable, .ntable {
        width: 100%;
        word-break: break-all;
    }

        .wrapper .container .rightCon .table tr {
            background-color: #fff;
            background-color: #eafaff;
        }

            .wrapper .container .rightCon .table tr:nth-child(even) {
                background-color: #f5f5f5;
            }

            .wrapper .container .rightCon .table tr:nth-child(1) td, .wrapper .container .rightCon .table tr:nth-child(1) th {
                color: #fff;
                font-weight: 400;
                text-align: center;
            }

            .wrapper .container .rightCon .table tr td {
                font-weight: 300;
                font-size: 1.5rem;
                letter-spacing: 1px;
                padding: 5px 5px;
                border-right: 2px solid #fff;
            }

            .wrapper .container .rightCon .table tr th {
                font-weight: 300;
                font-size: 1.5rem;
                letter-spacing: 1px;
                padding: 5px 5px;
                border-right: 2px solid #fff;
                background-color: #107BAD;
                /*white-space: nowrap;*/
            }

            .wrapper .container .rightCon .table tr td input[type="button"], .wrapper .container .rightCon .table tr td input[type="submit"] {
                padding: 5px 10px;
                background-color: #2d820a;
                color: #fff;
                border-radius: 5px;
            }

            .wrapper .container .rightCon .table tr td:last-child, .wrapper .container .rightCon .table tr th:last-child {
                border: none;
            }

    .kv {
        width: 100%;
        margin-top: 110px;
        position: relative;
        overflow: hidden;
    }

    @media only screen and (max-width: 767px) {
        .kv {
            margin-top: 80px;
        }
    }

.kv .slideMove {
    width: 100%;
    font-size: 0;
    position: relative;
    padding-bottom: 40%;
}

        .kv .slideMove a {
            width: 100%;
            height: 100%;
            background-position: top center;
            background-repeat: no-repeat;
            background-size: cover;
            position: absolute;
            left: 0;
            top: 0;
            display: none;
        }

            .kv .slideMove a:first-child {
                display: block;
            }

    .kv .slideBtn {
        cursor: pointer;
        position: absolute;
        top: 50%;
        margin-top: -24px;
        z-index: 2;
    }

    @media only screen and (max-width: 450px) {
        .kv .slideBtn {
            width: 20px;
            margin-top: -20px;
        }
    }

    .kv .slideLeft {
        left: 30px;
    }

    @media only screen and (max-width: 450px) {
        .kv .slideLeft {
            left: 10px;
        }
    }

    .kv .slideRight {
        right: 30px;
    }

    @media only screen and (max-width: 450px) {
        .kv .slideRight {
            right: 10px;
        }
    }

    .kv .pager {
        position: absolute;
        display: flex;
        bottom: 30px;
        left: 0;
        width: 100%;
        justify-content: center;
        z-index: 3;
    }

    @media only screen and (max-width: 450px) {
        .kv .pager {
            bottom: 10px;
        }
    }

    .kv .pager li {
        width: 50px;
        height: 6px;
        background-color: #fff;
        cursor: pointer;
        margin: 7px;
    }

    .kv .pager .current {
        background-color: #107BAD;
    }

.kv .carousel-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 精確置中 */
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    

@media only screen and (max-width: 450px) {
    .kv .carousel-control {
        bottom: 50px;
        right: 10px;
        font-size: 14px;
        padding: 6px 10px;
    }
}

    .news {
        width: 100%;
        height: 596px;
        position: relative;
    }

    @media only screen and (max-width: 767px) {
        .news {
            height: auto;
        }
    }

    .news .fadeBg {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    @media only screen and (max-width: 767px) {
        .news {
            height: auto;
        }
    }

    .news .fadeBg {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    @media only screen and (max-width: 1400px) {
        .news .fadeBg {
            opacity: 0.5;
        }
    }

    @media only screen and (max-width: 767px) {
        .news .fadeBg {
            opacity: 0.2;
        }
    }

    .news .fadeBg div {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center bottom;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 1;
        background-image: url("../img/mountain.png");
    }

        .news .fadeBg div:nth-child(1) {
            opacity: 1;
            background-image: url("../img/newsGb1.jpg");
        }

        .news .fadeBg div:nth-child(2) {
            background-image: url("../img/newsGb2.jpg");
        }

        .news .fadeBg div:nth-child(3) {
            background-image: url("../img/newsGb3.jpg");
        }

    .news .innerNews {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        align-content: flex-start;
    }

       /* .news .innerNews .cal {
            width: 420px;
            margin-top: 92px;
            margin-right: 30px;
            border-radius: 10px;
        }*/

    @media only screen and (max-width: 767px) {
        .news .innerNews .cal {
            margin-right: 0;
            margin-top: 50px;
        }
    }

    .news .innerNews .cal img {
        width: 100%;
    }

.news .innerNews .newsBlock {
    width: 650px;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

    @media only screen and (max-width: 767px) {
        .news .innerNews .newsBlock {
            width: 100%;
            padding-left: 20px;
            padding-right: 20px;
        }
    }

.news .innerNews .newsBlock marquee {
    font-size: 1.4rem;
    color: #222222;
    position: relative;
    top: 0;
    margin-bottom: 10px;
}

    .news .innerNews .newsBlock .newsTag {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-bottom: 10px;
    }

        .news .innerNews .newsBlock .newsTag li {
            width: 115px;
            height: 35px;
            line-height: 35px;
            text-align: center;
            font-size: 1.8rem;
            cursor: pointer;
            background-color: #ddd;
            color: #222222;
            font-weight: 300;
            margin-right: 15px;
        }

            .news .innerNews .newsBlock .newsTag li:hover {
                background-color: #A16902;
                color: #fff;
            }

        .news .innerNews .newsBlock .newsTag .current {
            background-color: #A16902;
            color: #fff;
        }

.news .innerNews .newsBlock .more {
    float: right;
    display: block;
    width: 100%;
    text-align: right;
    color: #107BAD;
    text-decoration: underline;
    font-size: 1.4rem;
    padding-top: 20px;
    padding-bottom: 10px;
}

        .news .innerNews .newsBlock .more:hover {
            text-decoration: none;
        }

    .news .innerNews .newsBlock .bbb {
        position: relative;
        display: none;
    }

        .news .innerNews .newsBlock .bbb:first-child {
            display: block;
        }

        .news .innerNews .newsBlock .bbb .newsCon {
            width: 100%;
        }

            .news .innerNews .newsBlock .bbb .newsCon .list {
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;
                margin-top: 30px;
            }

               /* .news .innerNews .newsBlock .bbb .newsCon .list:hover .inner {
                    text-decoration: underline;
                }*/

                .news .innerNews .newsBlock .bbb .newsCon .list .num {
                    width: 49px;
                    height: 49px;
                    background-image: url("../img/newsNum.png");
                    font-size: 2.5rem;
                    font-weight: 600;
                    color: #107BAD;
                    line-height: 49px;
                    text-align: center;
                    position: relative;
                }

                    .news .innerNews .newsBlock .bbb .newsCon .list .num .outLine {
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        left: -3px;
                        top: -3px;
                        border: 1px solid #A16902;
                    }

                .news .innerNews .newsBlock .bbb .newsCon .list .inner {
                    padding-left: 15px;
                    width: calc(100% - 49px - 15px);
                }

                    .news .innerNews .newsBlock .bbb .newsCon .list .inner .title {
                        color: #107BAD;
                        font-weight: 600;
                        font-size: 2.2rem;
                        padding-bottom: 10px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                    .news .innerNews .newsBlock .bbb .newsCon .list .inner .txt {
                        color: #222222;
                        font-weight: 300;
                        color: #222222;
                        font-size: 1.6rem;
                        max-height: 45px;
                        overflow: hidden;
                    }



.people {
    width: 100%;
    position: relative;
}

@media only screen and (max-width: 599px) {
    .people {
        height: auto;
    }
}

.people .title {
    background-color: #107cad;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 3;
}

    .people .title div {
        text-align: center;
        width: 100%;
    }

    .people .title .big {
        color: #fff;
        font-weight: 600;
        font-size: 4rem;
    }

    .people .title .small {
        color: #fff;
        font-weight: 300;
        font-size: 2rem;
        text-transform: uppercase;
    }

    .people .peopleBlock {
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }

        .people .peopleBlock .pp {
            flex: 0 0 50%;
            width: 50%;
            padding-bottom: 20%;
            position: relative;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            transition: .3s all;
        }

        @media only screen and (max-width: 767px) {
            .people .peopleBlock .pp {
                flex: 0 0 100%;
                width: 100%;
                padding-bottom: 41%;
            }
        }


    @media only screen and (max-width: 599px) {
        .people .peopleBlock .pp {
            width: 100%;
            padding: 70px 20px;
            height: auto;
        }
    }

.people .peopleBlock .pp:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.3s all;
}

.people .peopleBlock .pp:hover:before {
    background-color: rgba(0, 0, 0, 0.6);
}

/*.people .peopleBlock .pp:hover .bb {
    background-color: rgba(0, 0, 0, 0.6);
}*/

    .people .peopleBlock .pp:hover .bb .big {
        color: #fff;
    }

    .people .peopleBlock .pp:hover .bb .small {
        color: #82cef0;
    }

.people .peopleBlock .pp .bb {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s all;
}

    .people .peopleBlock .pp .bb .small {
        color: #82cef0;
        font-size: 1.6rem;
        text-align: center;
        width: 100%;
        transition: 0.3s all;
    }

    .people .peopleBlock .pp .bb .big {
        color: #EEE;
        text-align: center;
        font-size: 3rem;
        width: 100%;
        transition: 0.3s all;
    }

.people .peopleBlock .pp:nth-child(1) {
    background-image: url("../img/p1.jpg");
}

.people .peopleBlock .pp:nth-child(2) {
    background-image: url("../img/p2.jpg");
}

.people .peopleBlock .pp:nth-child(3) {
    background-image: url("../img/p3.jpg");
}

.people .peopleBlock .pp:nth-child(4) {
    background-image: url("../img/p4.jpg");
}

    .company {
        width: 100%;
        background-color: #107BAD;
        padding: 65px 0 45px 0;
    }

        .company .title {
            font-size: 4rem;
            color: #fff;
            font-weight: 600;
            text-align: center;
        }

            .company .title div {
                color: #fff;
                font-size: 2rem;
                font-weight: 300;
                text-transform: uppercase;
            }

        .company .con {
            /*max-width: 1300px;*/
            margin: 0 auto;
            /*padding-top: 35px;*/
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
            align-content: flex-start;
        }

            .company .con .box {
                width: 420px;
                height: 252px;
                display: block;
                overflow: hidden;
                transition: 0.5s all;
                /*margin-bottom: 12px;
                margin-left: 6px;
                margin-right: 6px;*/
            }

                /*.company .con .box:hover {
                    transform: translateY(-35px);
                }*/

                /*.company .con .box:nth-child(1) {
                    background-color: #697920;
                }

                .company .con .box:nth-child(2) {
                    background-color: #E61414;
                }

                .company .con .box:nth-child(3) {
                    background-color: #B65B16;
                }*/

                .company .con .box img {
                    /*float: right;*/
                    display: block;
                }

                /*.company .con .box .inner {
                    width: calc(100% - 194px);
                    height: 100%;
                    float: left;
                    font-size: 3rem;
                    color: #fff;
                    font-weight: 600;
                    padding: 20px;
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: flex-start;
                    align-items: center;
                    align-content: center;
                }

                    .company .con .box .inner span {
                        font-weight: 300;
                        font-size: 1.6rem;
                        display: block;
                        width: 100%;
                    }*/



.career {
    width: 100%;
    position: relative;
}

@media only screen and (max-width: 599px) {
    .career {
        height: auto;
    }
}

.career .title {
    background-color: #cc8900;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 3;
}

    .career .title div {
        text-align: center;
        width: 100%;
    }

    .career .title .big {
        color: #fff;
        font-weight: 600;
        font-size: 4rem;
    }

    .career .title .small {
        color: #fff;
        font-weight: 300;
        font-size: 2rem;
        text-transform: uboxercase;
    }

.career .con {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

    .career .con .box {
        flex: 0 0 50%;
        width: 50%;
        padding-bottom: 20%;
        position: relative;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        transition: .3s all;
    }

@media only screen and (max-width: 767px) {
    .career .con .box {
        flex: 0 0 100%;
        width: 100%;
        padding-bottom: 41%;
    }
}


@media only screen and (max-width: 599px) {
    .career .con .box {
        width: 100%;
        padding: 70px 20px;
        height: auto;
    }
}

.career .con .box:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.3s all;
}

.career .con .box:hover:before {
    background-color: rgba(0, 0, 0, 0.6);
}

/*.career .con .box:hover .bb {
    background-color: rgba(0, 0, 0, 0.6);
}*/

.career .con .box:hover .bb .big {
    color: #fff;
}

.career .con .box:hover .bb .small {
    color: #82cef0;
}

.career .con .box .bb {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s all;
}

    .career .con .box .bb .small {
        color: #82cef0;
        font-size: 1.6rem;
        text-align: center;
        width: 100%;
        transition: 0.3s all;
    }

    .career .con .box .bb .big {
        color: #EEE;
        text-align: center;
        font-size: 3rem;
        width: 100%;
        transition: 0.3s all;
    }




    .video {
        padding: 65px 0;
        position: relative;
    }
.news .blockTitle {
    font-size: 4rem;
    color: #222222;
    font-weight: 600;
    text-align: center;
}

    .news .blockTitle div {
        color: #107BAD;
        font-size: 2rem;
        font-weight: 300;
        text-transform: uppercase;
    }

        .video .title {
            font-size: 4rem;
            color: #222222;
            font-weight: 600;
            text-align: center;
        }

            .video .title div {
                color: #107BAD;
                font-size: 2rem;
                font-weight: 300;
                text-transform: uppercase;
            }

        .video .blueBg {
            width: 100%;
            height: 50%;
            position: absolute;
            left: 0;
            bottom: 0;
            background-color: #F1F6FA;
        }

        .video .videoPager {
            position: relative;
            display: flex;
            padding-top: 30px;
            left: 0;
            width: 100%;
            justify-content: center;
            z-index: 3;
        }

            .video .videoPager li {
                width: 50px;
                height: 6px;
                background-color: #909090;
                cursor: pointer;
                margin: 7px;
            }

            .video .videoPager .current {
                background-color: #107BAD;
            }

        .video .videoBlock {
            max-width: 1245px;
            position: relative;
            margin: 50px auto 0 auto;
            z-index: 2;
        }

    @media only screen and (max-width: 1400px) {
        .video .videoBlock {
            max-width: calc(100% - 160px);
        }
    }

    @media only screen and (max-width: 450px) {
        .video .videoBlock {
            max-width: calc(100% - 80px);
        }
    }


.video .videoBlock .btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -28px;
}

    @media only screen and (max-width: 450px) {
        .video .videoBlock .btn {
            width: 30px;
            z-index: 3;
        }
    }

    .video .videoBlock .leftVideo {
        left: -70px;
    }

    @media only screen and (max-width: 450px) {
        .video .videoBlock .leftVideo {
            left: -30px;
        }

            .video .videoBlock .leftVideo img {
                width: 40px;
            }
    }

    .video .videoBlock .rightVideo {
        right: -70px;
    }

    @media only screen and (max-width: 450px) {
        .video .videoBlock .rightVideo {
            right: -20px;
        }

            .video .videoBlock .rightVideo img {
                width: 40px;
            }
    }

    .video .videoBlock .conVideo {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

        .video .videoBlock .conVideo .moveVideo {
            width: 100%;
            text-align: left;
            font-size: 0;
            white-space: nowrap;
            position: relative;
        }

            .video .videoBlock .conVideo .moveVideo .videoTwo {
                display: inline-block;
                width: 100%;
                overflow: hidden;
            }

                .video .videoBlock .conVideo .moveVideo .videoTwo .vv {
                    width: 49%;
                    padding: 200px 0;
                    background-position: center center;
                    background-repeat: no-repeat;
                    background-size: cover;
                    display: inline-block;
                    position: relative;
                }

                    .video .videoBlock .conVideo .moveVideo .videoTwo .vv:first-child {
                        float: left;
                    }

                    .video .videoBlock .conVideo .moveVideo .videoTwo .vv:last-child {
                        float: right;
                    }

    @media only screen and (max-width: 599px) {
        .video .videoBlock .conVideo .moveVideo .videoTwo .vv {
            width: 100%;
            padding: 100px 0;
        }
    }

    .video .videoBlock .conVideo .moveVideo .videoTwo .vv .mask {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.6);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .video .videoBlock .conVideo .moveVideo .videoTwo .vv .circle {
        width: 147px;
        height: 147px;
        border-radius: 50%;
        border: 1px solid #fff;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -73px;
        margin-top: -73px;
        transition: 1s all;
        z-index: 2;
    }

    @media only screen and (max-width: 450px) {
        .video .videoBlock .conVideo .moveVideo .videoTwo .vv .circle {
            width: 120px;
            height: 120px;
            margin-left: -60px;
            margin-top: -60px;
        }
    }

    .video .videoBlock .conVideo .moveVideo .videoTwo .vv .circle div {
        color: #fff;
        font-size: 1.3rem;
        text-align: center;
        width: 100%;
    }

    .video .videoBlock .conVideo .moveVideo .videoTwo .vv:hover .circle {
        transform: rotateY(360deg);
    }

    .other {
        padding: 65px 20px;
        max-width: 1235px;
        margin: 0 auto;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
    }

    @media only screen and (max-width: 1023px) {
        .other {
            flex-wrap: wrap;
            justify-content: flex-start;
        }
    }

    .other .link {
        max-width: 665px;
    }

        .other .link .title {
            padding-left: 17px;
            border-left: 4px solid #107BAD;
            font-size: 4rem;
            font-weight: 600;
            color: #222222;
            height: 40px;
            line-height: 40px;
        }

            .other .link .title span {
                font-size: 2rem;
                color: #107BAD;
                font-weight: 300;
                display: inline-block;
            }

        .other .link .logo {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            align-content: flex-start;
            flex-wrap: wrap;
            margin-bottom: 30px;
            margin-top: 20px;
        }

            .other .link .logo li {
                width: 180px;
                margin-right: 35px;
            }

    @media only screen and (max-width: 767px) {
        .other .link .logo li {
            margin-right: 25px;
        }
    }

    @media only screen and (max-width: 599px) {
        .other .link .logo li {
            width: 130px;
        }
    }

    .other .link .logo li:nth-child(3n) {
        margin-right: 0;
    }

    @media only screen and (max-width: 767px) {
        .other .link .logo li:nth-child(3n) {
            margin-right: 25px;
        }
    }

    .other .link .logo li img {
        width: 100%;
    }

    .other .social {
        max-width: 340px;
    }

        .other .social .title {
            padding-left: 17px;
            border-left: 4px solid #107BAD;
            font-size: 4rem;
            font-weight: 600;
            color: #222222;
            height: 40px;
            line-height: 40px;
        }

            .other .social .title span {
                font-size: 2rem;
                color: #107BAD;
                font-weight: 300;
                display: inline-block;
            }

        .other .social .fb {
            width: 100%;
            padding-bottom: 15px;
            margin-top: 20px;
        }

            .other .social .fb img {
                width: 100%;
            }

        .other .social .share {
            width: 100%;
            display: flex;
            justify-content: flex-end;
        }

            .other .social .share li {
                margin-left: 15px;
            }

    .Wmap ul li {
        font-weight: bold;
        color: #F3923D;
    }

        .Wmap ul li a {
            color: #be500f;
        }

            .Wmap ul li a:hover {
                color: #F3753C;
            }

        .Wmap ul li ul li {
            margin: .2em 0;
            line-height: 25px;
            color: #06798B !important;
            padding-left: 20px;
            font-size: 1.153em;
        }

            .Wmap ul li ul li a {
                color: #06798B !important;
            }

                .Wmap ul li ul li a:hover {
                    color: #1899AD !important;
                }

    .Wmap {
        padding: 20px;
        border: 1px solid #E3E3E3;
        font-size: 1.384em;
    }


    .formTable caption {
        background-color: #005394;
        font-weight: bold;
        color: #fff;
        white-space: nowrap;
        text-align: center;
        height: 30px;
    }




    .wrapper .container .rightCon .ntable tr th {
        background-color: #107BAD;
    }

    .wrapper .container .rightCon .ntable tr th {
        color: #fff;
        font-weight: 400;
        text-align: center;
    }

    .wrapper .container .rightCon .ntable tr td {
        font-weight: 300;
        font-size: 1.6rem;
        letter-spacing: 1px;
        padding: 10px 5px;
        border-right: 2px solid #fff;
    }

    .wrapper .container .rightCon .ntable tr th {
        font-weight: 300;
        font-size: 1.6rem;
        letter-spacing: 1px;
        padding: 10px 15px;
        border-right: 2px solid #fff;
        white-space: nowrap;
    }

        .wrapper .container .rightCon .ntable tr td:last-child, .wrapper .container .rightCon .ntable tr th:last-child {
            border: none;
        }

        .wrapper .container .rightCon .ntable tr td input[type="text"], .wrapper .container .rightCon .ntable tr td input[type="password"], .wrapper .container .rightCon .ntable tr td select, .wrapper .container .rightCon .ntable tr th input[type="text"], textarea, .wrapper .container .rightCon .ntable tr th select {
            /*width: 100%;*/
            height: 2.5em;
            /*max-width: 200px;*/
            border: 1px solid #bbb;
        }

    .wrapper .container .rightCon .ntable tr td input[type="button"], .wrapper .container .rightCon .ntable tr td input[type="submit"] {
        padding: 7px 15px;
        background-color: #107BAD;
        color: #fff;
        border-radius: 5px;
    }

        .wrapper .container .rightCon .ntable tr td input[type="button"]:hover, .wrapper .container .rightCon .ntable tr td input[type="submit"]:hover {
            opacity: 0.7;
        }




    /*formList*/
    .wrapper .container .rightCon .formList {
        clear: both;
    }

        .wrapper .container .rightCon .formList li {
            font-size: 1.5rem;
            float: left;
            width: 100%;
            vertical-align: middle;
        }

            .wrapper .container .rightCon .formList li label {
                float: left;
                width: 200px;
                text-align: right;
                font-weight: normal;
                /*white-space: nowrap;*/
                color: #107BAD;
            }

        .wrapper .container .rightCon .formList input[type=radio] + label .boxList input[type=checkbox] + label {
            margin-right: 15px !important;
            color: #333 !important;
            float: none !important;
            width: initial !important;
        }

        .wrapper .container .rightCon .formList input[type=radio] + label, .boxList input[type=checkbox] + label {
            margin-right: 15px !important;
            color: #333 !important;
            float: none !important;
            width: initial !important;
            padding: 0px 0px 0px 5px !important;
        }

        .wrapper .container .rightCon .formList select, input[type="text"] {
            padding: 0px !important;
        }

        .wrapper .container .rightCon .formList li span {
            color: #107BAD !important;
        }

        .wrapper .container .rightCon .formList li label span {
            color: red !important;
        }

        .wrapper .container .rightCon .formList li em {
            float: left;
            width: 240px;
            font-style: normal;
            color: #990000 !important;
        }

        .wrapper .container .rightCon .formList h2 {
            background: #178292;
            margin: 0;
            font-size: 1.153em;
            color: #FFFFFF;
            padding: 10px 0;
        }

        .wrapper .container .rightCon .formList li input[type="text"], .wrapper .container .rightCon .formList li input[type="password"], .wrapper .container .rightCon .formList li select, .wrapper .container .rightCon .formList tr th input[type="text"], textarea, .wrapper .container .rightCon .formList tr th select {
            height: 2.5em;
            border: 1px solid #bbb;
        }

        .wrapper .container .rightCon .formList input[type="button"], .wrapper .container .rightCon .formList input[type="submit"] {
            padding: 7px 15px;
            background-color: #107BAD;
            color: #fff;
            border-radius: 5px;
        }

        .wrapper .container .rightCon .formList .btn_green {
            background-color: #2d820a !important;
        }

        .wrapper .container .rightCon .formTable input[type="button"]:hover, .wrapper .container .rightCon .formList input[type="submit"]:hover {
            opacity: 0.7;
        }

    .searchLi {
        width: 20%;
    }

.cal {
    width: 420px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin-right: 30px;
    margin-top: 50px;
}

    .cal .title {
        background-color: #fff;
        padding: 10px 0;
        position: relative;
        text-align: center;
        /*font-size: 20px;*/
    }

        .cal .title .montbBtn {
            position: absolute;
            top: 10px;
            /*font-size: 16px;*/
            color: #222222;
        }

        .cal .title .prevMonth {
            left: 15px;
        }

        .cal .title .nextMonth {
            right: 15px;
        }

    .cal .week {
        font-size: 0;
        display: block;
    }

        .cal .week li {
            width: 14.28%;
            display: inline-block;
            padding: 5px 0;
            /*font-size: 14px;*/
            color: #909090;
            background-color: #eee;
            border-right: 1px solid #bbb;
            text-align: center;
        }

            .cal .week li:last-child {
                border-right: none;
            }

    .cal .day {
        font-size: 0;
        display: block;
    }

        .cal .day li {
            text-align: center;
            width: 14.28%;
            display: inline-block;
            height: 35px;
            /*font-size: 3em;*/
            background-color: #fff;
            border-right: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }

            .cal .day li:nth-child(7n) {
                border-right: none;
            }

            .cke_show_border td, cke_show_border th, .ckTable td, .ckTable th {
    color: #303030;
    box-sizing: border-box;
    padding: 8px 12px;
    font-size: 1em;
    border: 1px solid black;
    text-align: unset;
    padding: unset;
    font-weight: normal;
}

.icon {
    cursor: pointer;
    color: Dodgerblue;
}

.rightCon image, .rightCon img {
    max-width: 95%;
}


/*首頁跑馬燈*/

.news_marquee {
    height: 4em;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

    .news_marquee > ul {
        padding-left: 0;
        display: flex;
        list-style-type: none;
        animation: marqee 40s linear infinite;
        position: absolute;
    }

        .news_marquee > ul > li {
            white-space: nowrap;
            margin-right: 2em;
            color: red;
            font-size: 2.5em;
        }

@keyframes marqee {
    0% {
        left: 100%;
        transform: translateX(0%);
    }

    100% {
        left: 0;
        transform: translateX(-100%);
    }
}


.wrapper .container .rightCon .infoTable .infoTable tr td, .infoTable tr td {
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: 1px;
    padding: 10px 5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background-color: #F5F5F5;
}

.wrapper .container .rightCon .infoTable tr th, .infoTable tr th {
    color: #fff;
    font-weight: 400;
    text-align: center;
    background-color: #107BAD;
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    white-space: nowrap;
}

/*For企業媒合博覽會*/
.compList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.compList li {
    width: 30%;
    border: 1px solid #bbb;
    padding: 15px;
    margin: 0.75%;
}

@media only screen and (max-width: 450px) {
    .compList li {
        padding: 5px;
    }
}

.compList li img {
    width: 100%;
}

.compList li .imgTitle {
    font-size: 1.8rem;
    letter-spacing: 1px;
    height: 25px;
    overflow: hidden;
    text-align:center
}

.wrapper .container .rightCon a, .formTable a {
    color: #1177A0;
    text-decoration: none;
}

a:hover {
    text-decoration:wavy;
}

/*For無障礙*/
.wrapper .container .rightCon .title h2 {
    color: #fff;
    font-size: 2.3rem;
}

.message {
    color: blue;
}

.messageMark {
    color: crimson;
}

.messageExp {
    color: #2c7d58;
}


.news .innerNews .jobFairImageBlock {
    width: 45%;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767px) {
    .hideInMobile {
        display: none;
    }

    .news .innerNews .jobFairImageBlock {
        width: 95%;
        padding-left: 20px;
        padding-right: 20px;
    }
}






