
.home_list_li {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #e2e2e2;
}

.home_list_div {
    width: 95%;
    margin: 16px auto;
    overflow: hidden;
}

.img_top {
    width: 42px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0
}

.repo_bottom {
    clear: both;
    padding-top: 8px;
    display: flex;
    align-items: center;
}

.repo_bottom img {
    width: 18px;
    height: 18px;
    margin-left: 36px;
}

.repo_bottom span {
    margin-left: 8px;
    color: #999999;
    vertical-align: middle;
}

.personal_info_item {
    display: flex;
    align-items: center;
    margin: 10px 16px;
    height: 26px;
}

.personal_info_item img {
    width: 18px;
    height: 18px;
}

.personal_info_item span {
    margin-left: 8px;
    color: #666666;
}

.personal_divider {
    height: 1px;
    background-color: #bbbbbb;
    margin: 0 16px;
}

.personal_divider2 {
    margin: 0 16px;
    border-top: 1px #bbbbbb dashed;
}

.pay_center {
    display: flex;
    width: 100%;
    margin: 10px 16px;
}

.pay_center div {
    width: 45%;
    line-height: 26px;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between
}

.p_user_name {
    color: #999999;
    width: 110px;
    display: inline-block;
    vertical-align: middle;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btnTargetRu {
    width: 120px;
    cursor: pointer;
    text-align: center;
    padding: 4px 8px 5px 8px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    margin-left: 18px;
    background-color: #3498DB;
    border: none;
    display: none;
}

.btnTargetRu:hover {
    color: yellow;
}

.banner_tip {
    padding-left: 16px;
    position: relative;
    bottom: 36px;
    line-height: 36px;
    height: 36px;
    color: white;
    background-color: rgba(0, 0, 0, .2)
}

.banner_right_box {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 28px;
}

.banner_right_box a {
    color: white;
}

.div_filter {
    display: flex;
    background-color: #FFFFCC;
    justify-content: space-between;
    margin: -10px -10px 0 -10px;
    height: 45px;
    color: #666666;
}

#p_statistic {
    height: 45px;
    line-height: 45px;
    padding-left: 12px;
}

.img_lose_trust {
    margin-top: -60px;
    float: right;
    width: 60px;
    height: 60px;
}

.img_lose_trust_follow {
    margin-top: -43px;
    float: right;
    width: 45px;
    height: 45px;
}

/* Switch开关样式 */
/* 必须是input为 checkbox class 添加 switch 才能实现以下效果 */
input[type='checkbox'].switch {
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 10px;
    margin-right: 16px;
    transition: border-color .3s, background-color .3s;
}

input[type='checkbox'].switch::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 2px #999;
    transition: .4s;
    top: 2px;
    position: absolute;
    left: 2px;
}

input[type='checkbox'].switch:checked {
    background: #3498DB;
}

/* 当input[type=checkbox]被选中时：伪元素显示下面样式 位置发生变化 */
input[type='checkbox'].switch:checked::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 2px;
}

#data_list a:visited {
    color: #999999;
}

.targetRepoAccount {
    margin-left: 6px;
    cursor: pointer;
    color: #1989fa;
    overflow: hidden;
    text-overflow: ellipsis;
}

.div_4_operation {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.div_4_operation_switch {
    display: flex;
    align-items: center;
}

/*lock img*/
.div_4_operation_switch > img {
    margin-right: 8px;
    /*visibility: hidden;*/
}

.badge_msg {
    margin-left: 8px;
    display: none;
}

.lock_img {
    opacity: 0.1; /* 不透明度 */
    overflow: hidden; /* 溢出隐藏 */
    /*background: #FF3; !* 背景色 *!*/
    animation-name: breath; /* 动画名称 */
    animation-duration: 800ms;
    animation-timing-function: ease-in-out; /* 动画速度曲线：以低速开始和结束 */
    animation-iteration-count: infinite; /* 播放次数：无限 */

    /* Safari and Chrome */
    -webkit-animation-name: breath; /* 动画名称 */
    -webkit-animation-duration: 700ms; /* 动画时长3秒 */
    -webkit-animation-timing-function: ease-in-out; /* 动画速度曲线：以低速开始和结束 */
    -webkit-animation-iteration-count: infinite; /* 播放次数：无限 */
}


@keyframes breath {
    from {
        opacity: 0.1;
    }
    /* 动画开始时的不透明度 */
    50% {
        opacity: 1;
    }
    /* 动画50% 时的不透明度 */
    to {
        opacity: 0.1;
    }
    /* 动画结束时的不透明度 */
}

@-webkit-keyframes breath {
    from {
        opacity: 0.1;
    }
    /* 动画开始时的不透明度 */
    50% {
        opacity: 1;
    }
    /* 动画50% 时的不透明度 */
    to {
        opacity: 0.1;
    }
    /* 动画结束时的不透明度 */
}