﻿.index-contact-box{
    width: 100%;
    height: 360px;
    display: block;
    position: relative;
    font-size: 0;
}
.index-contact-list-more{
    width: 300px;
    display: block;
    box-sizing: border-box;
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 18px;
    color: #fff;
    line-height: 60px;
    letter-spacing: 0.2em;
    padding-left: 0.2em;
    background-color: #e48e00;
    transition: all .3s linear;
    position: relative;
}
.index-contact-list-more span{
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 30px;
}
.index-contact-info{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 30, 66, 0.9);
    display:         flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
}



@media only screen and (max-width: 1000px){
    .index-contact-box{
        height: 240px;
    }
}
@media only screen and (max-width: 550px){
    .index-contact-box{
        height: 120px;
    }
    .index-contact-list-more{
        width: 200px;
        font-size: 16px;
        line-height: 40px;
    }
}


@media only screen and (min-width: 769px){
    .index-contact-list-more:hover{
        background-color: #003b83;
        color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    }


    .index-contact-list-more{
        opacity: 0;
    }
    .index-contact-list-more.anima{
        animation: fadeInDown 1.4s ease 1 0s both;
    }
}