/*
*
* Create by Wayne(WJDesign) 2019.02.09
*
*/
@charset "UTF-8";

.LoadingWrapper {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    z-index: 999;
    display:flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.LoadingWrapper i {
    content: '';
    display: block;
    width: 5em;
    height: 5em;
    background: #fff;
}

.HeaderWrapper {
    width: 100%;
}
.HeaderWrapper .Logo {
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    display: block;
    float: left;
}
.HeaderWrapper .MenuWrapper {
    float: right;
    margin: 0;
    position: relative;
}
.HeaderWrapper .MenuWrapper .SubMenu {
    display: block;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
    border-bottom: 1px solid #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0 20px;
    position: absolute;
    top: 0;
    right: 0;
}
        /* -------------上方長條開關CSS------------- */

        .mode-switch {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            margin-top: 5px;
        }

        .mode-switch input {
            display: none;
        }

        .switch-track {
            position: relative;
            display: flex;
            width: 100%;
            height: 38px;
            background: #ffffff;
            /* 白底 */
            border: 5px solid #ffd800;
            /* 外框 */
            border-radius: 999px;
            overflow: hidden;
        }

        .switch-option {
            flex: 1;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 15px;
            letter-spacing: 0.5px;
            color: #444;
            transition: color 0.3s ease;
            margin-top: 5px;
        }

        .switch-indicator {
            position: absolute;
            top: 2px;
            left: 4px;
            width: calc(50% - 3px);
            height: calc(100% - 4px);
            background: #26afcd;
            border-radius: 999px;
            transition: transform 0.35s ease;
        }

        /* 切換到右側 */
        #mode-b:checked~.switch-track .switch-indicator {
            transform: translateX(100%);
        }

        /* 選中狀態文字 */
        #mode-a:checked~.switch-track label[for="mode-a"],
        #mode-b:checked~.switch-track label[for="mode-b"] {
            color: #ffffff;
        }

        /* hover 點綴 */
        .switch-option:hover {
            color: #000;
        }

        /* switch-option 基礎設定補強 */
        .switch-option {
            position: relative;
            border-radius: 999px;
            overflow: hidden;
        }

        /* hover 用的內嵌灰底 */
        .switch-option::before {
            content: "";
            position: absolute;
            top: 2px;
            left: 4px;
            right: 4px;
            bottom: 2px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 999px;
            opacity: 0;
            transition: opacity 0.25s ease;
            z-index: -1;
        }

        /* 只有「未選中」那一側 hover 才顯示 */
        #mode-a:checked~.switch-track label[for="mode-b"]:hover::before,
        #mode-b:checked~.switch-track label[for="mode-a"]:hover::before {
            opacity: 1;
        }

        /* RWD */
        @media (max-width: 480px) {
            .switch-option {
                font-size: 14px;
            }
        }
/*SubMenu*/
.HeaderWrapper .MenuWrapper .SubMenu li {
    padding: 3px 5px;
    display: inline-block;
}
.HeaderWrapper .MenuWrapper .SubMenu .BorderRight {
    border-right: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 1px 0 0 rgba(255, 255, 255, .5);
    padding-right: 10px;
}
.HeaderWrapper .MenuWrapper .SubMenu li a {
    color: #777;
    font-size: 12px;
    text-decoration: none;
}
.HeaderWrapper .MenuWrapper .SubMenu li a i {
    margin-right: 5px;
}
.HeaderWrapper .MenuWrapper .SubMenu li span {
    color: #777;
    font-size: 12px;
}
.HeaderWrapper .MenuWrapper .SubMenu li span.CountNum {
    color: #ff7c7c;
}
/*MainMenu*/
.HeaderWrapper .MenuWrapper .MainMenu {
    /*padding-top: 30px;*/
}
.HeaderWrapper .MenuWrapper .MainMenu li {
    display: inline-block;
}
.HeaderWrapper .MenuWrapper .MainMenu li a:hover {
    color: #ff7c7c;
}
.HeaderWrapper .MenuWrapper .MainMenu li a.active {
    color: #ff7c7c;
}
.HeaderWrapper .MenuWrapper .MainMenu li a {
    color: #000;
    display: block;
    padding: 0 20px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    position: relative;
}
.HeaderWrapper .MenuWrapper .MainMenu li a:after {
    content: '';
    display: inline-block;
    height: 20px;
    border-right: 1px solid #ccc;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}
/*BodyWrapper*/
.BodyWrapper {
    overflow: hidden;
}
/*Carousel*/
.BodyWrapper .CarouselWrapper {
    position: relative;
}
.BodyWrapper .CarouselWrapper .Carousel .CarouselItems {
    display: block!important;
}
.BodyWrapper .CarouselWrapper .Carousel .CarouselItems img {
    width: 100%;
}
.BodyWrapper .CarouselWrapper .LoginWrapper {
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 20%;
    padding: 20px;
    display: flex;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .Company, .BodyWrapper .CarouselWrapper .LoginWrapper .Member{
    width: 100%;
    line-height: 60px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
    color: #fff;
    cursor: pointer;
    display: flex;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    margin-top: 10px;
    margin-bottom: 5px;
} 
.BodyWrapper .CarouselWrapper .LoginWrapper .Company {
    background: #dc6363;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .Company:hover {
    background: #d85555;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .Member {
    background: #e0b251;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .Member:hover {
    background: #ecb94c;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .BtnWrapper {
    width: 100%;
    margin: auto;
    flex: 1;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .BtnWrapper .IconWrapper {
    background: #fff;
    border-top-right-radius: 10em;
    border-bottom-right-radius: 10em;
    box-shadow: 2px 0 0 rgba(0, 0, 0, .2);
    font-size: 32px;
    flex: 1;
}

.BodyWrapper .CarouselWrapper .LoginWrapper .Company .IconWrapper {
    color: #dc6363;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .Member .IconWrapper {
    color: #e0b251;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .BtnWrapper .TextWrapper {
    flex: 2;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .TinyText {
    color: rgba(255, 255, 255, .6);
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
    display: block;
    font-size: 12px;
}
.BodyWrapper .CarouselWrapper .LoginWrapper hr {
    border-top: 1px solid rgba(0, 0, 0, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
/*2025.5.26--st*/
.BodyWrapper .CarouselWrapper .LoginWrapper .Company, .BodyWrapper .CarouselWrapper .LoginWrapper .Unit{
    width: 100%;
    line-height: 60px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
    color: #fff;
    cursor: pointer;
    display: flex;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    margin-top: 10px;
    margin-bottom: 5px;
} 
.BodyWrapper .CarouselWrapper .LoginWrapper .Unit {
    background: #5abfce;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .Unit:hover {
    background: #83d0c0;
}
.BodyWrapper .CarouselWrapper .LoginWrapper .Unit .IconWrapper {
    color: #5abfce;
}
/*2025.5.26--end*/
/*Marquee*/
.MarqueeWrapper {
    height: 40px;
    overflow: hidden;
    background: #2f2f2f;
}
.MarqueeWrapper .AnnounceWrapper {
    width: 100%;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.MarqueeWrapper .Marquee {
    display: flex;
    flex: 0 0 85%;
}
.MarqueeWrapper .Marquee ul li a {
    text-decoration: none;
    line-height: 40px;
    color: #fff;
}
.MarqueeWrapper .Marquee ul li a i {
    margin-right: 5px;
}
.MarqueeWrapper .Marquee ul li a .name {
    text-decoration: underline;
    line-height: 40px;
    color: #ffaf03;
}
.MarqueeWrapper .LiveCircle {
    flex: 0 0 15%;
    text-align: right;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.MarqueeWrapper .LiveCircle a {
    width: 30px;
    height: 40px;
    margin-left: 5px;
    transition: .3s;
}
.MarqueeWrapper .LiveCircle .Link_Fb {
    background: url(../images/fb.svg) no-repeat center center;
}
.MarqueeWrapper .LiveCircle .Link_Line {
    background: url(../images/line.svg) no-repeat center center;
}
.MarqueeWrapper .LiveCircle .Link_Fb:hover {
    background: url(../images/fb_active.svg) no-repeat center center;
}
.MarqueeWrapper .LiveCircle .Link_Line:hover {
    background: url(../images/line_active.svg) no-repeat center center;
}
/*ImportantMessage*/
.BodyWrapper .ImportantMsgWrapper {
    width: 100%;
    padding: 10px 0;
}
.BodyWrapper .ImportantMsgTab li a {
    color: #ccc;
}
.BodyWrapper .ImportantMsgTab li.active a {
    color: #666;
}
.BodyWrapper .ImportantMsgContent {
    padding-top: 10px;
}
.BodyWrapper .ImportantMsgContent ul li a {
    display: block;
    width: 100%;
    line-height: 36px;
    position: relative;
    padding-left: 45px;
    color: #666;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.BodyWrapper .ImportantMsgContent ul li a .MsgIcon {
    background: #d23c3c;
    border-radius: 5px;
    color: #fff;
    display: block;
    position: absolute;
    padding: 0 5px;
    left: 0;
    top: 5px;
}
.BodyWrapper .ImportantMsgContent ul li a .MsgIcon.news:before {
    text-align: center;
    display: block;
    line-height: 24px;
    font-size: 12px;
}
.BodyWrapper .ImportantMsgContent ul li a .MsgIcon.news:before {
    content: '近期';
}

/*Activity*/
.BodyWrapper .ActivityWrapper {
    width: 50%;
    padding: 10px 0;
}
.BodyWrapper .ActivityWrapper .ActivityItems {
    padding: 10px;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo {
    width: 100%;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .Title {
    margin: 0 auto;
    color: #fa8888;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 0 5px;
    /*--2019/9/7--*/
    height: 45px;
    overflow: hidden;         /*--設定超出的內容隱藏, IE, FireFox通用--*/
    text-overflow:ellipsis;
    
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .BtnSignUp.NoSignUp {
    background: #aaa;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .BtnSignUp {
    border-radius: 5px;
    display: block;
    width: 100%;
    padding: 10px 5px;
    text-align: center;
    text-decoration: none;
    background: #83d0c0;
    color: #fff;
    margin-top: 10px;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo i {
    color: #fff;
    padding: 1px;
    text-align: center;
    border-radius: 50em;
    font-size: 12px;
    margin-right: 5px;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .City {
    color: #6ebfac;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .Date {
    color: #a797a1;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .Content {
    color: #67a3e2;
    width: 100%;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .City i {
    background: #6ebfac;
}
.BodyWrapper .ActivityWrapper .ActivityItems .ActivityInfo .Date i {
    background: #a797a1;
}
/*Video*/
.BodyWrapper .VideoWrapper {
    width: 100%;
    padding: 10px 0;
}
.BodyWrapper .VideoWrapper .VideoItems {
    padding: 10px;
}
.BodyWrapper .PhotoWrapper {
    width: 100%;
    padding: 10px 0;
}
.BodyWrapper .PhotoWrapper .PhotoItems {
    padding: 10px;
}

/*DateSearch*/
.BodyWrapper .SearchByDate {
    padding: 10px 0;
}
.BodyWrapper .SearchByDate .SearchDateWrapper .Calendar {
    width: 100%;
}
.BodyWrapper .SearchByDate .SearchDateWrapper .Calendar .fc-toolbar.fc-header-toolbar {
    padding-top: 1em;
}
.BodyWrapper .SearchByDate .SearchDateWrapper .fc td {
    height: 20px;
    text-align: center;
}
/*CitySearch*/
.BodyWrapper .SearchByCity {
    padding: 10px;
}
.BodyWrapper .SearchCityWrapper {
    width: 100%;
}
.BodyWrapper .SearchCityWrapper iframe {
    width: 100%;
    padding-top: 15px;
}
/*.BodyWrapper .SearchByCity {*/
    /*padding: 10px 0;*/
    /*position: relative;*/
/*}*/
/*.BodyWrapper .SearchByCity .jsmaps-wrapper {*/
    /*width: 100%;*/
/*}*/
/*.BodyWrapper .SearchByCity .jsmaps-wrapper .jsmaps {*/
    /*width: 100%;*/
    /*overflow: hidden;*/
/*}*/
/*.BodyWrapper .SearchByCity .jsmaps-wrapper .jsmaps svg {*/
    /*left: 50%!important;*/
    /*margin-left: -175px;*/
    /*width: 350px;*/
    /*height: 400px;*/
/*}*/
/*.BodyWrapper .SearchByCity .jsmaps-wrapper .jsmaps-text {*/
    /*display: none!important;*/
/*}*/
/*FooterLink*/
.FooterLink {
    width: 100%;
    margin-top: 30px;
    padding: 20px 0;
    background: #444;
}
.FooterLink .MainTitle {
    display: flex;
    flex-wrap: nowrap;
}
.FooterLink .MainTitle > li {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.FooterLink .MainTitle > li h6 {
    border-bottom: 1px solid #696969;
    color: #fff;
    align-items: center;
    flex: 1;
    font-size: 14px;
    height: 30px;
    justify-content: center;
    display: flex;
    padding-bottom: 10px;
}
.FooterLink .MainTitle > li .SubTitle li a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    transition: .3s;
}
.FooterLink .MainTitle > li .SubTitle li:hover a {
    color: #ffaf03;
}
/*Footer*/
.FooterWrapper {
    width: 100%;
    background: #2f2f2f;
}
.FooterWrapper .Footer {
    width: 100%;
    padding: 20px 0;
}
.FooterWrapper .Footer table {
    color: #fff;
    width: 100%;
}
.FooterWrapper .Footer table tr td.InfoTitle {
    width: 15%;
}
.FooterWrapper .Footer table tr td:not(.InfoTitle) {
    width: 70%;
    padding: 5px 10px 5px 30px;
    text-align: left;
}
.FooterWrapper .Footer table tr td a {
    color: #ffaf03;
}
/*Copyright*/
.CopyrightWrapper {
    width: 100%;
    box-shadow: 0 -1px 0 #000;
    border-top: 1px solid #444;
    background: #222;
    color: #fff;
    line-height: 24px;
    text-align: center;
}
.CopyrightWrapper copyright {
    font-size: 12px;
    letter-spacing: 1px;
}

/*Modal*/
.BtnWrapper a:first-child {
    margin-right: 15px;
}
#MemberModal .modal-body {
    max-height: 70vh;
    overflow-y: scroll;
    padding: 20px 30px;
}
#MemberModal .modal-body .tab-content {
    padding-top: 20px;
}


/*Login*/
.CompanyLoginWrapper .LoginWrapper {
    width: 40%;
    margin: 10px auto 120px;
}
.CompanyLoginWrapper .LoginWrapper .Login {
    margin: 10px auto;
    padding: 0 10px;
    display: flex;
}
.CompanyLoginWrapper .LoginWrapper .Login .LoginIntranet {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.LoginWrapper .Login .LoginIntranet form {
    width: 100%;
}
.LoginWrapper .Login .LoginIntranet .form-group {
    margin-bottom: 0;
}
.LoginWrapper .Login .LoginIntranet .Remember {
    vertical-align: middle;
    font-size: 16px;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: normal;
}
.LoginWrapper .Login .LoginIntranet label .SubTitle {
    font-size: 12px;
    color: #aaa;
    margin-left: -5px;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    display: inline-block;
}
.LoginWrapper .Login .LoginIntranet .Remember label {
    font-size: 12px;
}
.LoginWrapper .Login .LoginIntranet .Remember input {
    border-radius: 50%;
    border: 0;
    box-shadow: none;
    display: inline-block;
    vertical-align: bottom;
    width: 25px;
    height: 25px;
    background-size: cover;
    float: left;
    margin-right: -5px;
}
.LoginWrapper .Login .LoginIntranet .BtnWrapper {
    display: flex;
    margin: 10px 0;
}
.LoginWrapper .Login .LoginIntranet .BtnWrapper a {
    flex: 1;
}