.current-nav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    margin: 0px auto 30px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;

}

.current-nav div:nth-of-type(1) {
    display: flex;
    align-items: center;
}

.current-nav div:nth-of-type(1) span:nth-of-type(1) {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../new-images/home.png);
}

.current-nav div:nth-of-type(2):hover,
.current-nav div:nth-of-type(3):hover {
    color: #2ca4e4;
    cursor: pointer;
}

.select-text {
    color: #2ca4e4;
}

.scd_l {
    box-shadow: 3px 3px 9px #eee;
    background: #fefefe;
}

.scd_l .s_name span:nth-of-type(1) {
    color: #fff;
}

.scd_l .s_name span:nth-of-type(2) {
    font-size: 13px;
    margin-left: 8px;
    color: #efefef;
}

.s_nav {
    margin-bottom: 0px !important;
    padding: 0px;
    list-style: none;
    background: #fff !important;
}

.s_nav .now {
    color: #2ca4e4;
}

.s_nav li {
    height: 40px;
    font-size: 17px;
    line-height: 40px;
    list-style: none;
}
.s_nav li:hover {
    list-style: none;
    color: #2ca4e4;
    cursor: pointer;
}

.r_name {
    display: flex;
    align-items: center;
}

.r_name span:nth-of-type(1) {
    display: inline-block;
    width: 20px;
    height: 40px;
    font-weight: bold;
    background-image: url(../new-images/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.new {
    flex: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: calc((100% / 2) - 60px);
    padding:0px 10px 40px;
    /* box-shadow: 0px 0px 9px #efefef; */
}
.row-card:nth-of-type(2n){
    margin-left:60px;
}
.card-header{
    text-align: start;
    font-size:19px;
    padding:0px;

}
.card-content{
    margin-top:10px;
    margin-bottom:10px;
    line-height: 26px;
    font-size:15px;
    color:#343434;
}
.card-img{
    display: flex;
    justify-content: center;
}
.card-img img{
    display: flex;
    width:86%;
}
/* 
.row-card:hover {
    color: #2ca4e4;
    cursor: pointer;
    transform: scale(1.1, 1.1);
    box-shadow: 0px 0px 9px #2ca4e44a;
} */

/* .row-card div:nth-of-type(1) {
    width: 60%;
}

.row-card img {
    display: flex;
    width: 100%;
}

.row-card div:nth-of-type(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
} */

.pages {
    margin-top:30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pages div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin:0px 5px;
    box-shadow: 0px 0px 2px #ccc;
    cursor: pointer;
}

.btn-left {
    background-image: url(../new-images/arrow-left.png);
    background-size:20px;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-count{
    color:#2ca4e4;
}
.btn-right {
    background-image: url(../new-images/arrow-right.png);
    background-size:20px;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 768px) {
    .row .row-card{
        width: calc(100%  - 60px);
    }
   .row .row-card:nth-of-type(2n){
        margin-left:0px;
    }
    
}