.HareadingSelect select {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    width: 180px;
    padding-right: 20px;
    /*background: url("/assets/noimage.png") no-repeat right center;*/
    text-align: center;
    border: 1px solid #ccc;
}

.HareadingSelect::after {
    font-family: "FontAwesome";
    font-weight: 400;
    content: "\f0d7";
    margin-left: -20px;
    color: #2b542c;
}

.HareadingSelect select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    -khtml-appearance: none;
}


.HareadingSelect select::-ms-expand {
    display: none;
}

.ListTable {
    width: 100%;
}

.ListTable td {
    text-align: center;
    padding: 5px;
}

.HareadingLoading {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #047d65;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 0.6s linear infinite;
    margin: 0 auto;
}

.LargeHareadingLoading {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #047d65;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.Title1 {
    font-weight: bolder;
    font-size: 20px;
}

.Title2 {
    font-weight: bolder;
    font-size: 17px;
}

.Title3 {
    font-weight: bolder;
    font-size: 14px;
}

.GlobalFromTable {
    width: 100%;
}

.GlobalFromTable td {
    padding: 5px;
}

.GlobalFromTable input {
    padding-left: 5px !important;
    border: 1px solid #ccc;
    line-height: 21px;
}

.PopDialogTopActionButton {
    position: absolute;
    top: 0px;
    right: 10px;
    color: #fff;
    font-weight: bolder;
    cursor: pointer;
    width: 20px;
    text-align: center;
    line-height: 40px;
}

.PopDialogTopActionButton:hover {
    font-weight: bolder;
}

.PopDialogTopAction {
    position: relative;
    width: 100%;
    height: 40px;
    background: #87cfc1;
    background-image: url('/../assets/felis/images/title_footprint.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.PopWindowElement {
    display: none;
}

#FullMaskLayer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #000;
    opacity: 0.5;
}

.FullScreenLoading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #000;
    opacity: 0.5;
    display: none;
}

.FullScreenLoadingIcon {
    position: fixed;
    width: 50px;
    height: 50px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    background: transparent;
    z-index: 201;
    opacity: 1;
    display: none;
}

#PopDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #FFF;
    border-radius: 5px;
    z-index: 201;

}

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

.UIButton {
    user-select: none;
    cursor: pointer;
    opacity: 0.7;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    background: #666;
    color: #fff;
    text-align: center;
    line-height: 25px;
}

.UIButton:hover {
    opacity: 1;
}


.WaringBackground {
    background: #800;
}

.AgreeBackground {
    background: #060;
}


.BigHide {
    display: none;
}


/*switch 按鈕*/
.switchBTN input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.switchBTN label {
    cursor: pointer;
    width: 60px;
    height: 27px;
    background: #fefefe;
    display: block;
    border-radius: 27px;
    border: 1px solid #efefef;
    position: relative;
    margin-top: -15px;
}

.switchBTN label:after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0px;
    width: 27px;
    height: 27px;
    background: #ddd;
    border-radius: 30px;
    transition: 0.3s;
}

.switch-txt::before,
.switch-txt::after {
    display: block;
    color: #fff;
    box-sizing: border-box;
}

.switch-txt::before {
    content: attr(turnOn);
    color: #fff;
    position: absolute;
    line-height: 25px;
    top: 1px;
    left: 7px;
    font-size: 10px !important;
}

.switch-txt::after {
    content: attr(turnOff);
    color: #000;
    position: absolute;
    top: 2px;
    line-height: 25px;
    right: 4px;
    font-size: 10px !important;
}

.switchBTN input:checked + label {
    background: #3ae;
}

.switchBTN label:active:after {
    width: 10px;
}

.switchBTN input:checked + label:after {
    left: calc(100% - 0px);
    transform: translateX(-100%);
}

/*switch 按鈕 End */

@media screen and (max-width: 1000px) {
    .SmallHide {
        display: none;
    }

    .BigHide {
        display: block;
    }

}

@media screen and (max-width: 500px) {
    #PopDialog {
        width: 100% !important;
        height: 100% !important;
        top: 0px !important;
        left: 0px !important;
        margin: 0px !important;
    }

}