﻿.breadcrumb {
    padding: .25rem 1rem;
    font-size: 0.8em;
    background-color: #fff;
    margin-bottom: 0;
}

    .breadcrumb a {
        color: #000000;
    }

        .breadcrumb a:after {
            content: '>';
            padding: 0 5px;
        }

.carousel-inner img {
    width: 100%;
    height: 100%;
}

.pet-pic-container .pet {
    position: relative;
}

.pet-pic-container .no {
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 1em;
    left: 10px;
    top: 5px;
    padding: 5px;
}

.pet-pic-container .status {
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 1em;
    right: 10px;
    top: 5px;
    padding: 5px;
}

.pet .card-body {
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 1em;
    right: 5px;
    bottom: 2px;
    padding: 5px;
    width: 90%;
    font-size: 0.8em;
}

.pet .card-title {
    margin-bottom: 2px;
}

.list-group-item {
    padding: .25rem 0.75rem
}

    .list-group-item.active {
        background: rgba(256,128,128,0.5);
        color: red;
    }

.gvPage a {
    display: inline-block;
    border: solid 1px gray;
    padding: 0 5px;
}

    .gvPage a:hover {
        background-color: lightpink;
    }

.pager {
    text-align: center;
}

.place {
    display: flex;
    flex-direction: row;
    padding: 10px 10px 0 10px;
}

    .place .set1, .place .set2 {
        flex-grow: 1;
    }

.divider {
    width: 100%;
    border-bottom: 1px solid;
}

img.dead {
    opacity: 0.5;
}



/*跑馬燈*/
.outer {
    width: 80%;
    height: 80px;
    overflow: hidden;
}

    .outer ul {
        display: inline-block;
        height: 80px;
        -webkit-transform: translate3d(0, 0, 0);
        /* 3d渲染，開啟硬體加速 */
        transform: translate3d(0, 0, 0);
        font-size: 0;
        /* 使inline-block無預設間距 */
        white-space: nowrap;
        /* 超出不折行 */
    }

        .outer ul li {
            display: inline-block;
            padding-right: 50px;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            font-size: 24px;
        }

.theanimation {
    animation: theanimation 20s infinite linear;
    -webkit-animation: theanimation 20s infinite linear;
}

.card-header {
    padding: 0;
}

/*.card-body:hover>a {
                background-color:lightpink;           
            }*/


.ad_h {
    width: 250px;
    height: 80px;
    display: inline;
    margin: 0 auto;
}

.ad-holder {
    height: 100px;
    width: 320px;
}

footer a {
color:#fff;
}

footer a:hover {
    color: #fff;
}




@media screen and (min-width:769px) {
    .ad-holder {
        height: 768px;
        width: 250px;
    }

    .ad_h {
        height: 225px;
        width: 768px;
        display: block;
        margin: 5px auto;
    }
}

@media screen and (max-width:768px) {
    .place {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
}

@keyframes theanimation {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes theanimation {
    from {
        -webkit-transform: translateX(0%);
    }

    to {
        -webkit-transform: translateX(-100%);
    }
}
