4c9cc5 색바꾸기

.tab {
    overflow: hidden;
}

.tab > li {
    display: block;
    float: left;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: #f7f7f7;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tab li:hover {
    cursor: pointer;
}

.tab li:hover > a  {
    cursor: pointer;
    text-decoration: none;
    color: #ffffff!important;
    background: #4c9cc5;
    /*border-top-color: #4c9cc5;*/
    /*border-bottom-color: #4c9cc5;*/
}

.tab li.active > a {
    color: #ffffff;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

ul.tab > li:hover,
ul.tab > li.active {
    text-decoration: none;
    color: #fff;
    background: #4c9cc5;
    border-top-color: #4c9cc5;
    border-bottom-color: #4c9cc5;
}

@media only screen and (max-width: 767px) {
    ul.tab {
        margin: 0 0 30px 0 !important;
        display: block;
        /*border-top: 1px solid #ddd;*/
    }

    ul.tab > li {
        width: 100%;
    }

    ul.tab > li > a,
    ul.tab > li.active > a {
        display: block;
        padding: 0 42px 0 20px;
        height: 50px;
        line-height: 50px;
        text-align: left;
        /*border: 1px solid #ddd;*/
        border-top: none;
        position: relative;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;

    }
    ul.tab > li.active > a {
        /*border: 1px solid #4c9cc5;*/
        border-top: none;
    }
    ul.tab > li > a:hover {
        text-decoration: none;
        color: #fff !important;
        background: #4c9cc5 !important;
        border-color: #4c9cc5;
    }

    ul.tab > li > a:after {
        content: "∨";
        display: inline-block;
        font-size: 13px;
        font-family: "design_plus";
        /*line-height: 45px;*/
        color: #000;
        position: absolute;
        top: 0;
        right: 0;
        text-align: center;
        width: 42px;
        height: 42px;
    }

    ul.tab > li.has-children.children-open > a:after {
        content: "∨;";
    }

    ul.tab > li.active > a:after,
    ul.tab > li > a:hover:after,
    ul.tab > li.has-children > a:hover:after {
        color: #fff;
    }

    ul.tab > li.has-children.active > a {
        color: #000;
        background: #f7f7f7;
        border-color:#ddd;
    }

    ul.tab > li.has-children.active > a:hover {
        border-color:#4c9cc5;
    }

    ul.tab > li.has-children > a:after {
        color: #000;
    }

    ul.tab-children-pc,
    ul.tab-children-pc.active {
        display: none;
    }

    ul.tab .tab-children-mobile {
        display: block;
        margin: 0 !important;
        width: 100%;
        max-width: initial;
        font-size: 12px;
        text-align: left;
        position: static;
    }

    ul.tab .tab-children-mobile li {
        display: block;
        margin: 0;
        padding: 0;
        background: #f7f7f7;
        height: 0;
        overflow: hidden;
    }

    ul.tab .tab-children-mobile li a {
        display: block;
        padding: 0 20px;
        font-size: 14px;
        line-height: 45px;
        border: 1px solid #ddd;
        border-top: none;
    }

    ul.tab .tab-children-mobile li a:hover,
    ul.tab .tab-children-mobile li.active a {
        color: #fff;
        background: #4c9cc5;
        border-color: #4c9cc5;
        text-decoration: none;
    }

    ul.tab > li.active .tab-children-mobile {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        -o-animation: none;
        animation: none;
    }

    ul.tab .tab-children-mobile li {
        -webkit-transition: height 0.5s ease;
        -moz-transition: height 0.5s ease;
        -ms-transition: height 0.5s ease;
        -o-transition: height 0.5s ease;
        transition: height 0.5s ease;
    }

    ul.tab .children-open .tab-children-mobile li {
        height: 46px;
    }

    .tab-content-header {
        margin: 0 0 24px 0;
        padding: 0;
        border: none;
    }

    .tab-content-header:before {
        display: none;
    }

    .tab-content-header .headline {
        font-size: 14px;
        line-height: 2.2;
        color: #4c9cc5;
        font-weight: bold;
    }

    .tab-content-header p {
        margin: 0 !important;
    }
}