@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap");
* {
    font-family: 微軟正黑體;
    letter-spacing: 1.5px;
}

a {
    text-decoration: none;
    color: black;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translate(0, -5%);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slide-fade1 {
    0% {
        transform: translate(-10%, 0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes shakeleft {
    0% {
        opacity: 0.5;
        margin-left: -3%;
    }
    50% {
        margin-left: -5%;
        opacity: 1;
    }
    100% {
        opacity: 0.5;
        margin-left: -3%;
    }
}

@keyframes shakeright {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
}

.fade-enter-active,
.fade-leave-active {
    transition: all 0.5s ease;
}

.whiteFade-enter,
.whiteFade-leave-to {
    opacity: 0;
}

.whiteFade-enter-active {
    transition: all 1s ease;
}

.rightIn-enter {
    transform: translateX(10%);
    opacity: 0;
}

.rightIn-leave-to {
    opacity: 0;
}

.rightIn-enter-active {
    transition: all 0.8s ease;
}

.noEnterFade-enter,
.noEnterFade-leave-to {
    opacity: 0;
}

.noEnterFade-leave-active {
    transition: all 0.5s ease;
}

.noLeaveFade-enter,
.noLeaveFade-leave-to {
    opacity: 0;
}

.noLeaveFade-enter-active {
    transition: all 0.5s ease;
}

.loadingfade-leave-to {
    opacity: 0;
}

.loadingfade-leave-active {
    transition: all 0.5s ease;
}

a {
    display: flex;
}

.pic {
    width: 100%;
    height: 70%;
}

@media all and (max-width: 900px) {
    .pic {
        height: 60%;
    }
}

@media all and (max-width: 610px) {
    .pic {
        height: 74%;
    }
}

@media all and (max-width: 350px) {
    .pic {
        height: 72%;
    }
}

.name {
    font-size: 1.5vw;
    text-align: center;
    justify-content: center;
    font-weight: 800;
    margin-top: 1.5vw;
    border-top: solid 1px #AAAAAA;
    border-bottom: solid 1px #AAAAAA;
    padding: 0.5vw 0;
    letter-spacing: 0.1vw;
}

@media all and (max-width: 610px) {
    .name {
        font-size: 20px;
        margin-top: 5vw;
        padding: 1vw 0;
    }
}

@media all and (max-width: 350px) {
    .name {
        margin-top: 6vw;
    }
}

.subtitle1 {
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    margin-top: 1vw;
    display: flex;
    flex-direction: row;
}

@media all and (max-width: 610px) {
    .subtitle1 {
        font-size: 15px;
        margin-top: 10px;
    }
}

.subtitle1 .area {
    margin-right: 5px;
    font-weight: bold;
    color: #707070;
    cursor: pointer;
}

.subtitle1 .area:hover {
    color: black;
}

.subtitle2 {
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    margin-top: 0.2vw;
}

@media all and (max-width: 610px) {
    .subtitle2 {
        font-size: 15px;
        margin-top: 5px;
    }
}

.hr {
    width: 97.5%;
    box-sizing: border-box;
}

.hr .hr_trail_block {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: -40px;
    margin-left: 85px;
}

@media all and (max-width: 610px) {
    .hr .hr_trail_block {
        margin-left: 62px;
    }
}

.hr .hr_trail_block .hr_trail {
    display: inline-block;
    height: 20px;
    padding: 5px 15px 5px 33px;
    background: #373737;
    text-align: center;
}

@media all and (max-width: 610px) {
    .hr .hr_trail_block .hr_trail {
        padding: 5px 10px 5px 30px;
    }
}

.hr .hr_trail_block .hr_trail:after {
    content: '';
    width: 0;
    height: 0;
    border-width: 0 15px 15.5px;
    border-style: solid;
    border-color: transparent transparent white;
    transform: rotate(90deg);
    position: absolute;
    left: -7px;
    margin-top: -15px;
}

.hr .hr_trail_block .hr_trail .hr_trail_title {
    font-size: 13px;
    letter-spacing: 3px;
    color: white;
}

@media all and (max-width: 610px) {
    .hr .hr_trail_block .hr_trail .hr_trail_title {
        letter-spacing: 1px;
    }
}

.hr .hr_trail_block .hr_trail_triangle {
    border-width: 0 15px 15.5px;
    border-style: solid;
    border-color: transparent transparent #373737;
    transform: rotate(90deg);
    margin-left: 0;
    z-index: 2;
}

.hr .hrTop {
    width: 100%;
    display: flex;
    flex-direction: row;
}

@media all and (max-width: 610px) {
    .hr .hrTop {
        display: flex;
        flex-direction: column;
    }
}

.hr .hrTop .hrName {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    box-sizing: border-box;
    padding: 1px 20px;
    border-right: solid 1px #AAAAAA;
    border-left: solid 1px #AAAAAA;
}

@media all and (max-width: 900px) {
    .hr .hrTop .hrName {
        font-size: 18px;
        padding: 1.5px 10px;
    }
}

@media all and (max-width: 610px) {
    .hr .hrTop .hrName {
        border: none;
        justify-content: center;
    }
}

.hr .hrTop .hrTagBlock {
    height: 100%;
    display: flex;
    flex-direction: row;
}

@media all and (max-width: 610px) {
    .hr .hrTop .hrTagBlock {
        margin-top: 10px;
        border-left: solid 1px #AAAAAA;
        padding: 0 0 0 2vw;
        justify-content: space-between;
    }
}

.hr .hrTop .hrTagBlock .hrTab {
    font-size: 18px;
    box-sizing: border-box;
    padding: 2px 20px;
    border-right: solid 1px #AAAAAA;
    letter-spacing: 0.1vw;
    color: #AAAAAA;
}

@media all and (max-width: 900px) {
    .hr .hrTop .hrTagBlock .hrTab {
        font-size: 15px;
        padding: 3px 10px;
    }
}

@media all and (max-width: 610px) {
    .hr .hrTop .hrTagBlock .hrTab {
        font-size: 15px;
        justify-content: center;
        padding: 0;
        flex: 1;
        text-align: center;
        font-size: 15px;
        letter-spacing: 1px;
    }
}

.hr .hrTop .hrTagBlock .hrTab:hover {
    color: black;
}

.hr .hrTop .hrTagBlock .hrTab.select {
    color: black;
}

.hr .hrTop .hrArea {
    font-size: 20px;
    margin-left: 10px;
    font-weight: 800;
}

@media all and (max-width: 900px) {
    .hr .hrTop .hrArea {
        font-size: 18px;
    }
}

@media all and (max-width: 610px) {
    .hr .hrTop .hrArea {
        font-size: 15px;
    }
}

.hr .hrMiddle {
    width: 100%;
    margin-top: 20px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0 0 0 10px;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle {
        margin-top: 10px;
        padding: 0;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle {
        justify-content: flex-start;
        align-items: center;
        margin: 20px 0;
    }
}

.hr .hrMiddle .filter1 {
    margin: 0 20px 0 10px;
    display: flex;
    flex-direction: row;
    position: relative;
}

@media all and (max-width: 1200px) {
    .hr .hrMiddle .filter1 {
        margin-bottom: 15px;
        z-index: 4;
    }
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter1 {
        margin: 0 5px 0 10px;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .filter1 {
        flex-wrap: wrap;
        margin: 0;
        width: 100%;
    }
}

.hr .hrMiddle .filter1 .title {
    font-size: 18px;
    letter-spacing: 1px;
    margin: 5px 10px 0 0;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter1 .title {
        font-size: 16px;
        margin: 10px 5px 15px 0;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .filter1 .title {
        margin-right: 0;
        width: 10%;
    }
}

@media all and (max-width: 350px) {
    .hr .hrMiddle .filter1 .title {
        width: 12%;
    }
}

.hr .hrMiddle .filter1 .selectBlock {
    width: 300px;
    height: 30px;
    text-align: center;
    box-sizing: border-box;
    border-bottom: solid 1px #878787;
    cursor: pointer;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter1 .selectBlock {
        width: 38vw;
        height: 30px;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .filter1 .selectBlock {
        width: 90%;
        height: 30px;
    }
}

@media all and (max-width: 350px) {
    .hr .hrMiddle .filter1 .selectBlock {
        width: 87%;
        height: 30px;
    }
}

.hr .hrMiddle .filter1 .selectBlock .text {
    width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 3px 0;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter1 .selectBlock .text {
        font-size: 16px;
        padding: 5px 0 0 0;
    }
}

.hr .hrMiddle .filter1 .selectBlock .text .tri {
    width: 8px;
    height: 8px;
    position: absolute;
    right: 5px;
    top: 10px;
    border-top: solid 2px #878787;
    border-right: solid 2px #878787;
    transform: rotate(135deg);
    cursor: pointer;
}

.hr .hrMiddle .optionBlock {
    display: none;
}

.hr .hrMiddle .optionBlock.active {
    display: block;
    width: 100%;
    border: solid 1px #878787;
    border-bottom: none;
    background-color: white;
    box-sizing: border-box;
    margin-top: 2px;
}

.hr .hrMiddle .filter1 .selectBlock .optionBlock .option {
    font-size: 18px;
    letter-spacing: 1px;
    box-sizing: border-box;
    padding: 8px;
    border-bottom: solid 1px #878787;
    cursor: pointer;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter1 .selectBlock .optionBlock .option {
        font-size: 16px;
    }
}

.hr .hrMiddle .filter1 .selectBlock .optionBlock .option:hover {
    background: black;
    color: white;
}

.hr .hrMiddle .filter2 {
    margin-left: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    position: relative;
}

@media all and (max-width: 1200px) {
    .hr .hrMiddle .filter2 {
        z-index: 3;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .filter2 {
        flex-wrap: wrap;
        margin: 0;
        width: 100%;
    }
}

.hr .hrMiddle .filter2 .title {
    font-size: 18px;
    letter-spacing: 1px;
    margin: 5px 10px 0 0;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter2 .title {
        font-size: 16px;
        margin: 10px 5px 15px 0;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .filter2 .title {
        margin-right: 10px;
        width: 20%;
    }
}

@media all and (max-width: 350px) {
    .hr .hrMiddle .filter2 .title {
        width: 22%;
    }
}

.hr .hrMiddle .filter2 .selectBlock {
    width: 300px;
    height: 30px;
    text-align: center;
    box-sizing: border-box;
    border-bottom: solid 1px #878787;
    cursor: pointer;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter2 .selectBlock {
        width: 40vw;
        height: 30px;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .filter2 .selectBlock {
        width: 77%;
        height: 30px;
    }
}

@media all and (max-width: 350px) {
    .hr .hrMiddle .filter2 .selectBlock {
        width: 74%;
        height: 30px;
    }
}

.hr .hrMiddle .filter2 .selectBlock .text {
    width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 3px 0;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter2 .selectBlock .text {
        font-size: 16px;
        padding: 5px 0 0 0;
    }
}

.hr .hrMiddle .filter2 .selectBlock .text .tri {
    width: 8px;
    height: 8px;
    position: absolute;
    right: 5px;
    top: 10px;
    border-top: solid 2px #878787;
    border-right: solid 2px #878787;
    transform: rotate(135deg);
    cursor: pointer;
}

.hr .hrMiddle .filter2 .selectBlock .optionBlock {
    width: 100%;
    border: solid 1px #878787;
    border-bottom: none;
    background-color: white;
    box-sizing: border-box;
    margin-top: 2px;
}

.hr .hrMiddle .filter2 .selectBlock .optionBlock .option {
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
    box-sizing: border-box;
    padding: 8px;
    border-bottom: solid 1px #878787;
    cursor: pointer;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .filter2 .selectBlock .optionBlock .option {
        font-size: 16px;
    }
}

.hr .hrMiddle .filter2 .selectBlock .optionBlock .option:hover {
    background: black;
    color: white;
}

.hr .hrMiddle .InputBlock {
    margin-left: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    position: relative;
}

@media all and (max-width: 1200px) {
    .hr .hrMiddle .InputBlock {
        z-index: -1;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .InputBlock {
        flex-wrap: wrap;
        margin: 0 0 10px 0;
        width: 100%;
    }
}

.hr .hrMiddle .InputBlock .title {
    font-size: 18px;
    letter-spacing: 1px;
    margin: 5px 10px 0 0;
}

@media all and (max-width: 900px) {
    .hr .hrMiddle .InputBlock .title {
        font-size: 16px;
        margin: 10px 5px 0 0;
    }
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .InputBlock .title {
        margin: 10px 0 0 0;
        width: 17%;
    }
}

@media all and (max-width: 350px) {
    .hr .hrMiddle .InputBlock .title {
        width: 20%;
    }
}

.hr .hrMiddle .InputBlock .Block {
    width: 300px;
    height: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    border: none;
    border-bottom: solid 1px #878787;
    font-size: 15px;
    padding: 0 0 0 5px;
    outline: none;
}

@media all and (max-width: 610px) {
    .hr .hrMiddle .InputBlock .Block {
        width: 66%;
        height: 30px;
    }
}

@media all and (max-width: 350px) {
    .hr .hrMiddle .InputBlock .Block {
        width: 61%;
        height: 30px;
    }
}

.hr .hrMiddle .InputBlock .searchAlert {
    position: absolute;
    color: red;
    top: 42px;
    left: 74px;
    font-size: 15px;
    letter-spacing: 2px;
}

.hr .hrMiddle .InputBlock .searchButton {
    width: 70px;
    height: 30px;
    font-size: 15px;
    border: solid 1px #878787;
    border-radius: 3px;
    margin-left: 5px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    padding-top: 3px;
}

.hr .hrMiddle .InputBlock .searchButton:hover {
    background: black;
    color: white;
}

.hr .hrBottom {
    width: 100%;
    margin-top: 50px;
}

@media all and (max-width: 900px) {
    .hr .hrBottom {
        margin-top: 3.5vw;
    }
}

.hr .hrBottom .default {
    font-size: 2vw;
    font-weight: 800;
    margin-top: 5vw;
    margin-left: 36%;
}

.hr .hrBottom .cardBlock1 {
    width: 100%;
    /* height: 30vw; */
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin-top: 1.5vw;
    flex-wrap: wrap;
}

@media all and (max-width: 900px) {
    .hr .hrBottom .cardBlock1 {
        height: 30vw;
    }
}

@media all and (max-width: 610px) {
    .hr .hrBottom .cardBlock1 {
        display: flex;
        flex-direction: column;
        height: 480vw;
    }
}

@media all and (max-width: 350px) {
    .hr .hrBottom .cardBlock1 {
        height: 500vw;
    }
}

.hr .hrBottom .cardBlock1 .card1 {
    width: 25%;
    height: 30vw;
    margin-bottom: 1.5vw;
    box-sizing: border-box;
    padding: 0 1.5vw;
    border-left: solid 1px #AAAAAA;
    border-right: solid 1px #AAAAAA;
}

@media all and (max-width: 610px) {
    .hr .hrBottom .cardBlock1 .card1 {
        width: 100%;
        height: calc( 100% / 4);
        padding: 0 5vw;
    }
}

.hr .hrBottom .cardBlock1 .card2 {
    width: 25%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 1.5vw;
    border-right: solid 1px #AAAAAA;
}

@media all and (max-width: 610px) {
    .hr .hrBottom .cardBlock1 .card2 {
        margin-top: 20px;
        width: 100%;
        height: calc( 100% / 4);
        border-left: solid 1px #AAAAAA;
        padding: 0 5vw;
    }
}

.hr .hrBottom .cardBlock1 .card3 {
    width: 25%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 1.5vw;
    border-right: solid 1px #AAAAAA;
}

@media all and (max-width: 610px) {
    .hr .hrBottom .cardBlock1 .card3 {
        margin-top: 20px;
        width: 100%;
        height: calc( 100% / 4);
        border-left: solid 1px #AAAAAA;
        padding: 0 5vw;
    }
}

.hr .hrBottom .cardBlock1 .card4 {
    width: 25%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 1.5vw;
    border-right: solid 1px #AAAAAA;
}

@media all and (max-width: 610px) {
    .hr .hrBottom .cardBlock1 .card4 {
        margin-top: 20px;
        width: 100%;
        height: calc( 100% / 4);
        border-left: solid 1px #AAAAAA;
        padding: 0 5vw;
    }
}

.hr .pageList {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 1vw 0 2vw 0;
}

@media all and (max-width: 610px) {
    .hr .pageList {
        margin: 8vw 0;
    }
}

.hr .pageList .final {
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
}

.hr .pageList .prev {
    width: 18px;
    height: 18px;
    background: url("../assets/page/prev.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
}

.hr .pageList .page {
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
}

.hr .pageList .next {
    width: 18px;
    height: 18px;
    background: url("../assets/page/next.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2px;
    cursor: pointer;
}

a {
    display: flex;
}

.pic {
    @include size(100%,
    70%);
    @include pad {
        height: 60%;
    }
    @include phone {
        height: 74%;
    }
    @include phone5 {
        height: 72%;
    }
}

.name {
    // width: 100% !important
    font-size: 1.5vw;
    text-align: center;
    justify-content: center;
    font-weight: 800;
    margin-top: 1.5vw;
    border-top: solid 1px $colorborder;
    border-bottom: solid 1px $colorborder;
    padding: 0.5vw 0;
    letter-spacing: 0.1vw;
    @include phone {
        font-size: 20px;
        margin-top: 5vw;
        padding: 1vw 0;
    }
    @include phone5 {
        margin-top: 6vw;
    }
}

.subtitle1 {
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    margin-top: 1vw;
    @include flexrow;
    @include phone {
        font-size: 15px;
        margin-top: 10px;
    }
    .area {
        margin-right: 5px;
        font-weight: bold;
        color: $colorDeepGray;
        cursor: pointer;
        &:hover {
            color: black;
        }
    }
    .proJob {}
}

.subtitle2 {
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    margin-top: 0.2vw;
    @include phone {
        font-size: 15px;
        margin-top: 5px;
    }
}

.hr {
    width: 97.5%;
    // padding: 0 0 5vw 0
    box-sizing: border-box;
    //麵包屑
    .hr_trail_block {
        @include flexrow;
        position: absolute;
        top: -40px;
        margin-left: 85px;
        @include phone {
            margin-left: 62px;
        }
        .hr_trail {
            display: inline-block;
            height: 20px;
            padding: 5px 15px 5px 33px;
            background: $colorSuperGray;
            text-align: center;
            @include phone {
                padding: 5px 10px 5px 30px;
            }
            &:after {
                content: '';
                width: 0;
                height: 0;
                border-width: 0 15px 15.5px;
                border-style: solid;
                border-color: transparent transparent white;
                transform: rotate(90deg);
                position: absolute;
                left: -7px;
                margin-top: -15px;
            }
            .hr_trail_title {
                font-size: 13px;
                letter-spacing: 3px;
                color: white;
                @include phone {
                    letter-spacing: 1px;
                }
            }
        }
        .hr_trail_triangle {
            border-width: 0 15px 15.5px;
            border-style: solid;
            border-color: transparent transparent $colorSuperGray;
            transform: rotate(90deg);
            margin-left: 0;
            z-index: 2;
        }
    }
    //標題區
    .hrTop {
        width: 100%;
        @include flexrow;
        @include phone {
            @include flexcolumn;
        }
        //名稱
        .hrName {
            font-size: 20px;
            font-weight: 800;
            text-align: center;
            box-sizing: border-box;
            padding: 1px 20px;
            border-right: solid 1px $colorborder;
            border-left: solid 1px $colorborder;
            @include pad {
                font-size: 18px;
                padding: 1.5px 10px;
            }
            @include phone {
                border: none;
                justify-content: center;
            }
        }
        //TAB
        .hrTagBlock {
            height: 100%;
            @include flexrow;
            @include phone {
                margin-top: 10px;
                border-left: solid 1px $colorborder;
                padding: 0 0 0 2vw;
                justify-content: space-between;
            }
            .hrTab {
                // height: 100%
                font-size: 18px;
                box-sizing: border-box;
                padding: 2px 20px;
                border-right: solid 1px $colorborder;
                letter-spacing: 0.1vw;
                color: $colorborder;
                @include pad {
                    font-size: 15px;
                    padding: 3px 10px;
                }
                @include phone {
                    font-size: 15px;
                    justify-content: center;
                    padding: 0;
                    flex: 1;
                    text-align: center;
                    font-size: 15px;
                    letter-spacing: 1px;
                }
                &:hover {
                    color: black;
                }
                &.select {
                    color: black;
                }
            }
        }
        .hrArea {
            font-size: 20px;
            margin-left: 10px;
            font-weight: 800;
            @include pad {
                font-size: 18px;
            }
            @include phone {
                font-size: 15px;
            }
        }
    }
    .hrMiddle {
        // +bb
        width: 100%;
        margin-top: 20px;
        position: relative;
        @include flexrow;
        flex-wrap: wrap;
        align-items: flex-start;
        box-sizing: border-box;
        padding: 0 0 0 10px;
        @include pad {
            margin-top: 10px;
            padding: 0;
        }
        @include phone {
            justify-content: flex-start;
            align-items: center;
            margin: 20px 0;
        }
        //領域下拉
        .filter1 {
            margin: 0 20px 0 10px;
            @include flexrow;
            position: relative;
            @include smallcom {
                margin-bottom: 15px;
                z-index: 4;
            }
            @include pad {
                margin: 0 5px 0 10px;
            }
            @include phone {
                flex-wrap: wrap;
                margin: 0;
                width: 100%;
            }
            .title {
                font-size: 18px;
                letter-spacing: 1px;
                margin: 5px 10px 0 0;
                @include pad {
                    font-size: 16px;
                    margin: 10px 5px 15px 0;
                }
                @include phone {
                    margin-right: 0;
                    width: 10%;
                }
                @include phone5 {
                    width: 12%;
                }
            }
            .selectBlock {
                @include size(300px,
                30px);
                text-align: center;
                box-sizing: border-box;
                border-bottom: solid 1px #878787;
                cursor: pointer;
                @include pad {
                    @include size(38vw,
                    30px);
                }
                @include phone {
                    @include size(90%,
                    30px);
                }
                @include phone5 {
                    @include size(87%,
                    30px);
                }
                .text {
                    width: 100%;
                    font-size: 18px;
                    letter-spacing: 1px;
                    padding: 3px 0;
                    @include pad {
                        font-size: 16px;
                        padding: 5px 0 0 0;
                    }
                    .tri {
                        @include size(8px,
                        8px);
                        position: absolute;
                        right: 5px;
                        top: 10px;
                        border-top: solid 2px #878787;
                        border-right: solid 2px #878787;
                        transform: rotate(135deg);
                        cursor: pointer;
                    }
                }
                .optionBlock {
                    width: 100%;
                    border: solid 1px #878787;
                    border-bottom: none;
                    background-color: white;
                    box-sizing: border-box;
                    margin-top: 2px;
                    .option {
                        font-size: 18px;
                        letter-spacing: 1px;
                        box-sizing: border-box;
                        padding: 8px;
                        border-bottom: solid 1px #878787;
                        cursor: pointer;
                        @include pad {
                            font-size: 16px;
                        }
                        &:hover {
                            background: black;
                            color: white;
                        }
                    }
                }
            }
        }
        //指定欄位下拉
        .filter2 {
            margin-left: 10px;
            box-sizing: border-box;
            @include flexrow;
            position: relative;
            @include smallcom {
                z-index: 3;
            }
            @include phone {
                flex-wrap: wrap;
                margin: 0;
                width: 100%;
            }
            .title {
                font-size: 18px;
                letter-spacing: 1px;
                margin: 5px 10px 0 0;
                @include pad {
                    font-size: 16px;
                    margin: 10px 5px 15px 0;
                }
                @include phone {
                    margin-right: 10px;
                    width: 20%;
                }
                @include phone5 {
                    width: 22%;
                }
            }
            .selectBlock {
                @include size(300px,
                30px);
                text-align: center;
                box-sizing: border-box;
                border-bottom: solid 1px #878787;
                cursor: pointer;
                @include pad {
                    @include size(40vw,
                    30px);
                }
                @include phone {
                    @include size(77%,
                    30px);
                }
                @include phone5 {
                    @include size(74%,
                    30px);
                }
                .text {
                    width: 100%;
                    font-size: 18px;
                    letter-spacing: 1px;
                    padding: 3px 0;
                    @include pad {
                        font-size: 16px;
                        padding: 5px 0 0 0;
                    }
                    .tri {
                        @include size(8px,
                        8px);
                        position: absolute;
                        right: 5px;
                        top: 10px;
                        border-top: solid 2px #878787;
                        border-right: solid 2px #878787;
                        transform: rotate(135deg);
                        cursor: pointer;
                    }
                }
                .optionBlock {
                    width: 100%;
                    border: solid 1px #878787;
                    border-bottom: none;
                    background-color: white;
                    box-sizing: border-box;
                    margin-top: 2px;
                    .option {
                        font-size: 18px;
                        letter-spacing: 1px;
                        text-align: center;
                        box-sizing: border-box;
                        padding: 8px;
                        border-bottom: solid 1px #878787;
                        cursor: pointer;
                        @include pad {
                            font-size: 16px;
                        }
                        &:hover {
                            background: black;
                            color: white;
                        }
                    }
                }
            }
        }
        //關鍵字輸入
        .InputBlock {
            margin-left: 10px;
            box-sizing: border-box;
            @include flexrow;
            position: relative;
            @include smallcom {
                z-index: -1;
            }
            @include phone {
                flex-wrap: wrap;
                margin: 0 0 10px 0;
                width: 100%;
            }
            .title {
                font-size: 18px;
                letter-spacing: 1px;
                margin: 5px 10px 0 0;
                @include pad {
                    font-size: 16px;
                    margin: 10px 5px 0 0;
                }
                @include phone {
                    margin: 10px 0 0 0;
                    width: 17%;
                }
                @include phone5 {
                    width: 20%;
                }
            }
            .Block {
                @include size(300px,
                30px);
                box-sizing: border-box;
                @include flexrow;
                border: none;
                border-bottom: solid 1px #878787;
                font-size: 15px;
                padding: 0 0 0 5px;
                outline: none;
                @include phone {
                    @include size(66%,
                    30px);
                }
                @include phone5 {
                    @include size(61%,
                    30px);
                }
            }
            .searchAlert {
                position: absolute;
                color: red;
                top: 42px;
                left: 74px;
                font-size: 15px;
                letter-spacing: 2px;
            }
            .searchButton {
                @include size(50px,
                30px);
                font-size: 15px;
                border: solid 1px #878787;
                border-radius: 3px;
                margin-left: 5px;
                box-sizing: border-box;
                text-align: center;
                cursor: pointer;
                padding-top: 3px;
                &:hover {
                    background: black;
                    color: white;
                }
            }
        }
    }
    .hrBottom {
        width: 100%;
        margin-top: 50px;
        // position: relative
        @include pad {
            margin-top: 3.5vw;
        }
        //沒有撈到東西的時候
        .default {
            font-size: 2vw;
            font-weight: 800;
            margin-top: 5vw;
            margin-left: 36%;
        }
        //每一層
        .cardBlock1 {
            width: 100%;
            height: 30vw;
            @include flexrow;
            box-sizing: border-box;
            margin-top: 1.5vw;
            @include pad {
                height: 30vw;
            }
            @include phone {
                @include flexcolumn;
                height: 480vw;
            }
            @include phone5 {
                height: 500vw;
            }
            .card1 {
                @include size(25%,
                100%);
                box-sizing: border-box;
                padding: 0 1.5vw;
                border-left: solid 1px $colorborder;
                border-right: solid 1px $colorborder;
                @include phone {
                    width: 100%;
                    height: calc( 100% / 4);
                    padding: 0 5vw;
                }
            }
            .card2 {
                @include size(25%,
                100%);
                box-sizing: border-box;
                padding: 0 1.5vw;
                border-right: solid 1px $colorborder;
                @include phone {
                    margin-top: 20px;
                    width: 100%;
                    height: calc( 100% / 4);
                    border-left: solid 1px $colorborder;
                    padding: 0 5vw;
                }
            }
            .card3 {
                @include size(25%,
                100%);
                box-sizing: border-box;
                padding: 0 1.5vw;
                border-right: solid 1px $colorborder;
                @include phone {
                    margin-top: 20px;
                    width: 100%;
                    height: calc( 100% / 4);
                    border-left: solid 1px $colorborder;
                    padding: 0 5vw;
                }
            }
            .card4 {
                @include size(25%,
                100%);
                box-sizing: border-box;
                padding: 0 1.5vw;
                border-right: solid 1px $colorborder;
                @include phone {
                    margin-top: 20px;
                    width: 100%;
                    height: calc( 100% / 4);
                    border-left: solid 1px $colorborder;
                    padding: 0 5vw;
                }
            }
        }
    }
/*
    .pageList {
        width: 100%;
        @include flexrow;
        justify-content: center;
        margin: 2vw 0;
        @include phone {
            margin: 8vw 0;
        }
        .final {
            font-size: 16px;
            margin-right: 10px;
            cursor: pointer;
        }
        .prev {
            width: 18px;
            height: 18px;
            background: url('../assets/page/prev.png');
            @include bgcon;
            margin-right: 10px;
            margin-top: 2px;
            cursor: pointer;
        }
        .page {
            font-size: 16px;
            margin-right: 10px;
            cursor: pointer;
        }
        .dot {}
        .next {
            width: 18px;
            height: 18px;
            background: url('../assets/page/next.png');
			background-size: contain;
			background-position: center;
            @include bgcon;
            margin-top: 2px;
            cursor: pointer;
        }
    }
*/
}