﻿.page-banner-box{
    width: 100%;
}
.page-banner-bc{
    width: 100%;
    height: 300px;
    letter-spacing: 2px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display:flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction:column;
}
.page-banner-title{
    font-size: 26px;
    color: #fff;
    font-weight: bold;
    transform: skew(-10deg);
    position: relative;
    z-index: 2;
}
.page-banner-mask{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.page-path-box{
    box-sizing: border-box;
    padding: 5px 0;
}
.page-path{
    display: inline-block;
    font-size: 14px;
    font-family: "微軟正黑體";
    letter-spacing: 1px;
    color: #888888;
    transition: all .3s ease;
    position: relative;
    padding: 0 10px;
}
.page-path:after{
    content: '>';
    font-size: 14px;
    color: #888;
    position: absolute;
    top: 0;
    right: -5px;
}
.page-path:nth-child(1){
    padding-left: 0;
}
.page-path:last-child:after{
    content: '';
}



/*<--------------hover-------------->*/
.page-path-box a:hover{
    color: #d3202f;
}



@media only screen and (max-width: 1000px){
    .page-path-box{
        display: none;
    }
}
@media only screen and (max-width: 600px){
    .page-banner-bc{
        height: 200px;
    }
    .page-banner-title{
        font-size: 22px;
    }
}

@media only screen and (min-width: 1001px){
    .page-banner-title,
    .page-path-box{
        opacity: 0;
    }
    .page-banner-title{
        animation: animation_ttob 1s ease both;
    }
    .page-path-box{
        animation: animation_ltor 1s ease both;
    }
}