.serviceArea {
    padding-top: 10%;
    min-height: 85vh;
    padding-bottom: 10%;
}

.serviceArea .loginBox {
    background-color: #1f1f1f;
    padding: 5% 10% 10%;
    text-align: center;
    color: #fff;
}

.loginBox .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.loginBox .title:after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #ceaa6e;
    display: block;
    margin: 1rem auto 2rem;
}

.loginBox .title b {
    display: block;
    font-size: 1rem;
}

.serviceArea .loginBox:before {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
    border: 1px solid #6b4c18;
}

.form-group span {
    margin-top: 1rem;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
    text-align: left;
    color: #999;
}

.form-group .form-control {
    display: block;
    color: #888;
    background-color: #111;
    border: 0px;
    border-radius: 0;
    text-align: center;
    font-weight: 300;
    /*border: 1px solid #fff;*/
}

.form-control:active {
    color: #fff;

}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(220, 178, 105);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #eee;
    font-weight: 200;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #eee;
    font-weight: 200;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #eee;
    font-weight: 200;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #eee;
    font-weight: 200;
}



/*服務項目內頁*/

.serviceArea .titleBox {
    border-bottom: 1px solid #999;
}

.logoutBtn {
    position: absolute;
    right: 0;
    top: 0;
}

.serviceList {
    padding-bottom: 10%;
    justify-content: center;
}

.serviceList .Item {
    margin-top: 2rem;
}

.serviceList .Item .Img {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.serviceList .Item .Img:before {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.serviceList .Item:hover .Img:before {
    border: 1px solid #ceaa6e;

}

.serviceList .Item .Img .innerImg {
    width: 100%;
    padding-top: 100%;
}

.serviceList .Item .text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: all 0.5s;
}

.serviceList .Item:hover .text {
    color: #ceaa6e;
    transition: all 0.5s;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.serviceList .Item .text .titleName {
    line-height: 2;
    letter-spacing: 2px;
    font-size: 1.5rem;
}


.btnBox {
    padding-top: 5rem;
    text-align: center;
}


@media(max-width: 991px) {
    .serviceArea {
        padding: 20% 15px 10%;
        min-height: auto;
    }

    .serviceArea .titleBox {
        border: none;
        text-align: center;
    }

    .serviceArea .titleBox h3 {
        border-bottom: 1px solid #999;
        padding: 10px 0;
    }

    .logoutBtn {
        position: relative;
        top: 105%;
    }
}

@media (max-width: 480px) {
    .serviceArea {
        padding: 25% 15px 10%;
        min-height: auto;
    }
    .btnBox{
        padding-top: 3rem;
    }

}