.disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.form_in {
    width: 240px;
    height: 40px;
}

input:not([type='checkbox']) {
    -webkit-appearance: textfield;
    background-color: white;
    -webkit-rtl-ordering: logical;
    user-select: text;
    cursor: auto;
    border: 1px solid #aaa;
    border-radius: 4px;
    text-rendering: auto;
    color: initial;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    text-align: start;
    box-sizing: border-box;
    line-height: 24px;
}


/* ---------- 最上方menu ----------*/

.mps_top_nav {
    height: 50px;
    line-height: 50px;
    background: -webkit-linear-gradient(#fcfcfc, #f1efef);
    background: linear-gradient(#fcfcfc, #f1efef);
    position: relative;
    padding-left: 36px;
}

.top_hamburger {
    width: 26px;
    height: 26px;
    background-image: url(./img/icon-menu.svg);
    -webkit-background-size: cover;
    background-size: cover;
    float: left;
    margin-top: 11px;
    margin-right: 10px;
    display: none;
    cursor: pointer;
}

.system_name {
    font-size: 24px;
    color: #4977bb;
    font-family: PingFangTC-Semibold;
    float: left;
}

.nav_top_right {
    float: right;
    color: #888888;
    margin-right: 24px;
}

.nav_top_right_function a {
    color: #67aadd;
    margin-right: 30px;
    transition: .1s;
}

.nav_top_right_function a:hover, .nav_top_right_logout a:hover {
    color: #4977bb;
    text-decoration: none;
}

.top_right_bar {
    width: 1px;
    height: 21px;
    background-color: #4977bb;
    display: inline-block;
    vertical-align: middle;
    margin: 0 9px;
}

.nav_top_right_logout a {
    color: #67aadd;
    transition: .1s;
}

@media screen and (max-width: 916px) {
    .top_hamburger { display: inline-block; }

    .nav_top_right { display: none; }
}

/* ---------- 上方第二條藍底區塊 ----------*/

.header {
    background: url(./img/title-bg.svg) #6aabdb 0 0 no-repeat;
    /* -webkit-background-size: cover;
    background-size: cover; */
    height: 120px;
    position: relative;
}

.header_title {
    color: #FFF;
    font-size: 36px;
    position: absolute;
    top: 40px;
    left: 50px;
}


.mps_content { margin-top: 53px; }

.mps_content div { text-align: center; }

.mps_content .mps_row { margin-bottom: 15px; }

.mps_content_label, .mps_content .mps_content_label {
    font-size: 20px;
    color: #4a4a4a;
    display: inline-block;
    width: 100px;
    text-align: left;
}

.mps_btn {
    width: 240px;
    height: 40px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #FFF;
    border: none;
    font-family: PingFangTC;
    font-weight: 100;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.mps_btn_short {
    width: 145px;
    height: 40px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #FFF;
    border: 1px solid transparent;
    font-family: PingFangTC;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.mps_btn i {
    margin-right: 5px;
    font-size: 16px;
}

.btn_blue {
    background: -webkit-linear-gradient(#7aabf3, #4977bb);
    background: linear-gradient(#7aabf3, #4977bb);
    border-color: #3563a7;
}

.btn_grey {
    background: -webkit-linear-gradient(#f2f2f2, #d4d4d4);
    background: linear-gradient(#f2f2f2, #d4d4d4);
    color: #4a4a4a;
    font-family: AvenirNext-Regular;
    border-color: #979797;
}

.btn_dark_grey {
    background: -webkit-linear-gradient(#cbcbcb, #747373);
    background: linear-gradient(#cbcbcb, #747373);
}

.btn_red {
    background: -webkit-linear-gradient(#fa6258, #d0021b);
    background: linear-gradient(#fa6258, #d0021b);
}

@font-face {
    src: url(MSMHei.ttf);
    font-family: MSMHei;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: MSMHei;
}


/* dialog css */

.dialog_btn {
    margin: 40px auto;
    text-decoration: none;
    text-shadow: 1px 1px 0px #fff;
    font-weight: 400;
    color: #666;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 20px 70px 30px;
    position: relative;
    top: 50px;
    background: #eee;
    width: 300px;
    display: block;
    text-align: center;
    box-shadow: 1px 1px 1px #fff;
    -moz-box-shadow: 1px 1px 1px #fff;
    -webkit-box-shadow: 1px 1px 1px #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.dialog_btn:hover {
    color: #333;
    background: #eeffff;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.modalbg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9999;
    -moz-transition: all 2s ease-out;
    -webkit-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    transition: all 2s ease-out;
    display: block;
    pointer-events: none;
}

.modalbg .dialog {
    width: 60%;
    position: relative;
    top: -1000px;
    margin-top: 20%;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #ccc);
    background: -webkit-linear-gradient(#fff, #ccc);
    background: -o-linear-gradient(#fff, #ccc);
    box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -webkit-box-shadow: 0 0 10px #000;
}

.modalbg .dialog .ie7 { filter: progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=135, Strength=3); }

.modalbg:target {
    display: block;
    pointer-events: auto;
    background: rgba(4, 10, 30, 0.8);
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.modalbg:target .dialog {
    top: -20px;
    -moz-transition: all 0.8s ease-out;
    -webkit-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.close .ie7 { filter: progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=135, Strength=3); }

.close:hover {
    background: #00d9ff;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.fineprint {
    font-style: italic;
    font-size: 10px;
    color: #646;
}