@charset "utf-8";

body{
    background: #f3f3f3;
}
.main{
    width: 95%;
    max-width:1340px;
    box-shadow: 0px 7px 21px rgba(174, 174, 174, 0.15);
    padding:40px 30px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 0 0 15px 15px;
}

.bmcx-box{
    display: flex;
    margin-top: 40px;
}
.bmcx-box .bmcx-left-nav{
    width: 20%;
    margin-right: 30px;
}
.nav-title{
    font-size: 1.1rem;
    font-weight: 700;
    color: #1559A3;
    margin-bottom: 10px;
    position: relative;    
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
    padding-left: 15px;
}
.nav-title::before{
    position: absolute;
    content: '';
    width: 4px;
    height: 22px;
    background: #1559A3;
    left: 0;
    top: 34%;
}

.bmcx-box .bmcx-right-content{
    width: 80%;
    background: #f3f3f3;
    padding: 20px;
}
.bmcx-box .bmcx-left-nav ul li{
    padding: 15px 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.bmcx-box .bmcx-left-nav ul li a{
    display: block;  
    width: 100%;
    height: 100%;  
}
.bmcx-box .bmcx-left-nav ul li a:hover{
    color: #343434;
}
.bmcx-box .bmcx-left-nav ul li.on,.bmcx-box .bmcx-left-nav ul li:hover{
    background: #f3f6f9;
    border-radius: 5px;
    cursor: pointer;    
}
.bmcx-box .bmcx-left-nav ul li.on{
    font-weight: 700;
    background: #f3f6f9 url(../images/icon-right.png) no-repeat 95% center;
    background-size: 24px;
}

.bmcx-right-content>div{
    display: none;
}
.bmcx-right-content>div{
    display: flex;
    flex-wrap: wrap;
}
.bmcx-right-content>div a{
    display: block;
    width: 32%;
    margin-right: 2%;
    background: #fff;
    padding: 20px;
    margin-bottom: 2%;
    text-align: center;
}
.bmcx-right-content>div a:hover{
    box-shadow: 0px 7px 21px rgba(174, 174, 174, 0.5);
}
.bmcx-right-content>div a:nth-of-type(3n){
    margin-right: 0;
}
.bmcx-right-content>div a p{
    font-size: 0.8rem;
    margin-bottom: 10px;
    min-height: 50px;
}
.bmcx-right-content>div a span{
    display: inline-block;
    padding: 5px 15px;
    background: #79aee6;
    border-radius: 2px;
    font-size: 0.7rem;
    color: #fff;
}
.bmcx-right-content>div a span:hover{
    background: #1559A3;
}

@media(max-width:1200px){
    .bmcx-right-content>div a{
        width: 49%;
    }
    .bmcx-right-content>div a:nth-of-type(3n){
        margin-right: 2%;
    }
    .bmcx-right-content>div a:nth-of-type(2n){
        margin-right: 0;
    }
}

@media(max-width:800px){
    .bmcx-box .bmcx-left-nav{
        width: 30%;
    }
    .bmcx-box .bmcx-right-content{
        width: 70%;
    }
    .bmcx-right-content>div a{
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    .bmcx-right-content>div a p{
        height: auto;
        min-height: auto;
        margin-bottom: 15px;
    }
}

@media(max-width:640px){
    .bmcx-box .bmcx-left-nav ul li{
        padding: 15px 10px;
    }
    .bmcx-box .bmcx-left-nav{
        width: 30%;
        margin-right: 15px;
    }
    .bmcx-box .bmcx-left-nav ul li.on{
        background-size: 18px;
    }
    .bmcx-box{
        margin-top: 20px;
    }
    .nav-title{
        padding: 12px 0;
        padding-left: 15px;
    }
    .nav-title::before{
        top: 32%;
        height: 20px;
    }
    .bmcx-box .bmcx-right-content{
        padding: 10px;
    }
}

@media(max-width:550px){
    .main{padding: 15px;}
}

@media(max-width:420px){
    .bmcx-box .bmcx-left-nav{
        width: 35%;
    }
    .bmcx-box .bmcx-right-content{
        width: 65%;
    }
    .bmcx-right-content>div a{
        padding: 10px;
    }
    .bmcx-box .bmcx-left-nav ul li{
        padding: 10px 5px;
        margin-bottom: 5px;
    }
    .nav-title{
        padding-left: 10px;
    }
    .nav-title::before{
        height: 16px;
        top: 34%;
        width: 3px;
    }
}