.market-wrap{
    margin:40px 0;
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
}

.market-header{
    display:flex;
    border-bottom:1px solid #eee;
    background:#fafafa;
}

.market-tab{
    flex:1;
    height:60px;
    border:0;
    background:none;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
    color:#666;
}

.market-tab:hover{
    background:#f5f5f5;
}

.market-tab.active{
    background:#2F80ED;
    color:#fff;
}

.market-tab:last-child.active{
    background:#2E7D32;
}

.market-content{
    display:none;
    padding:20px 50px;
}
.market-content.active{
    display:block;
}


/* 카드 */
.market-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    text-align:center;
    padding:12px;
    transition:.25s;
    height:165px;
}

.market-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(0,0,0,.12);

}

.market-name{

    font-size:15px;

    font-weight:700;

    margin-bottom:6px;

    overflow:hidden;

    text-overflow:ellipsis;

    white-space:nowrap;

}

.market-unit{

    color:#888;

    font-size:11px;

    margin-bottom:8px;

}

.market-price{

    color:#d32f2f;

    font-size:20px;

    font-weight:bold;

    margin-bottom:8px;

}

.market-prev{

    font-size:11px;

    color:#666;

    line-height:18px;

}

.market-change{

    margin-top:6px;

    font-size:12px;

    font-weight:bold;

}

.market-up{

    color:#d32f2f;

}

.market-down{

    color:#1976d2;

}

.market-same{

    color:#666;

}


/* swiper */

.market-wrap .swiper{

    padding-bottom:40px;

}

.market-wrap .swiper-pagination{

    bottom:0 !important;

}

.market-wrap .swiper-button-next,

.market-wrap .swiper-button-prev{

    color:#444;

}

.market-wrap .swiper-slide{
    display:flex;
    height:auto;
}

.market-wrap .swiper-slide .market-card{
    width:100%;
}

/* 반응형 */

@media (min-width:1200px){

    .market-card{
        height:180px;

    }

}

@media (max-width:991px){

    .market-tab{
        font-size:18px;

    }

}

@media (max-width:767px){

    .market-tab{
        font-size:16px;
        height:50px;

    }

    .market-content{

        padding:15px;

    }

    .market-card{

        height:170px;

    }

    .market-price{

        font-size:22px;

    }

}