.my-count-container{
    width: 83%;
    margin: 0 auto;
    box-sizing: border-box;
}
.my-count-breadcrumb-box{
    margin-top: 20px;
}

.my-count-main{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.my-count-left{
    width: 300px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.my-count-right {
    width: calc(100% - 315px);
    background: #F6F6F6;
    border-radius: 5px;
    box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);

}
.my-count-profile-avatar{
    width: 100%;
    padding: 60px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background: #F6F6F6;
    border-radius: 5px;
    box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);

    font-size: 22px;
    text-align: center;
    color: #333333;
    flex-shrink: 0;
}
.my-count-profile-avatar img {
    width: 80%;
    margin-bottom: 22px;
}
.my-count-profile-avatar span {
    color: var(--framing-main-color);
}

.my-count-nav-list{
    width: 100%;
    height: 100%;
    background: #F6F6F6;
    border-radius: 5px;
    box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}
.my-count-nav-title{
    width: 100%;
    box-sizing: border-box;
    border-left: 3px solid var(--framing-main-color);
    color: var(--framing-main-color);
    font-size: 28px;
    padding: 10px 10px 10px 2em;
    font-weight: bold;
    margin-bottom: 10px;
}
.my-count-nav-item{
    width: 100%;
    padding: 10px 10px 10px 4em;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    font-size: 22px;
    text-decoration: none;
    color: #333333;
}
.my-count-nav-item.active {
    color: var(--framing-main-color);
    font-weight: bold;
}
.my-count-nav-item.active svg path {
    fill: var(--framing-main-color);
}
.my-count-nav-item img,.my-count-nav-item i {
    width: 20px;
    margin-right: 0.5em;
}
.my-count-nav-item svg{
    width: 18px;
    height: 18px;
    margin-right: 0.5em;
    flex-shrink: 0;
}
.my-count-nav-item:hover svg path {
    fill: var(--framing-main-color);
}

.my-count-active-title{
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
    font-size: 20px;
    font-weight: bold;
    box-sizing: border-box;
}
.my-count-active-title::before{
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    display: inline-block;
    margin-right: 10px;
}
.my-count-content{
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
}

@media screen and (max-width: 1600px){
    .my-count-profile-avatar,.my-count-nav-item{
        font-size: 22px;
    }
    .my-count-nav-title{
        font-size: 24px;
    }
    .my-count-nav-item img{
        width: 17px;
    }
}

@media screen and (max-width: 1400px){
    .my-count-container{
        width: 90%;
    }
    .my-count-profile-avatar,.my-count-nav-item{
        font-size: 20px;
    }
    .my-count-nav-title{
        font-size: 22px;
    }
    .my-count-nav-item img{
        width: 16px;
    }
}
@media screen and (max-width: 1200px){
    .my-count-container{
        width: 95%;
    }
    .my-count-nav-title{
        margin-bottom: 0;
    }
    .my-count-left{
        width: 270px;
    }
    .my-count-right{
        width: calc(100% - 285px);
    }
    .my-count-profile-avatar,.my-count-nav-item{
        font-size: 18px;
    }
    .my-count-nav-item{
        padding-left: 3.5em;
    }
    .my-count-nav-title{
        font-size: 20px;
    }
    .my-count-nav-item img{
        width: 16px;
    }
}
@media screen and (max-width: 970px){
    .my-count-container{
        width: 100%;
        padding: 0 15px;
    }
    .my-count-nav-title{
        margin-bottom: 0;
    }
    .my-count-left{
        width: 230px;
    }
    .my-count-right{
        width: calc(100% - 245px);
    }
    .my-count-profile-avatar,.my-count-nav-item{
        font-size: 18px;
    }
    .my-count-nav-item{
        padding-left: 3.5em;
    }
    .my-count-nav-title{
        font-size: 20px;
    }
    .my-count-nav-item img{
        width: 16px;
    }
    .my-count-nav-item svg{
        width: 16px;
    }
    .my-count-active-title{
        font-size: 16px;
    }
    .my-count-active-title::before{
        width: 12px;
        height: 12px;
    }
}
@media screen and (max-width: 768px){
    .my-count-main{
        flex-wrap: wrap;
    }
    .my-count-left{
        flex-direction: row;
        width: 100%;
        margin-bottom: 15px;
    }
    .my-count-right{
        width: 100%;
    }
    .my-count-profile-avatar {
        width: 150px;
        box-sizing: border-box;
        padding: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
        margin-right: 15px;
    }
    .my-count-nav-list{
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-between;
    }
    .my-count-nav-title{
        width: 100%;
        font-size: 18px;
    }
    .my-count-nav-item{
        width: 48%;
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 15px;
        height: auto;
    }
}
@media screen and (max-width: 550px){
    .my-count-nav-title{
        width: 100%;
        font-size: 16px;
        padding: 10px 15px;
    }
    .my-count-nav-item{
        width: 100%;
        font-size: 12px;
    }
    .my-count-nav-item img{
        width: 12px;
    }
    .my-count-nav-item svg{
        width: 12px;
    }


}



