/* ===== 布局 ===== */
.main-container {
    width: 100%;
}
/* 顶部封面 */
.dev-header {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
}
.dev-header img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: blur(10px);
    transform: scale(2);
}
/* 白色信息卡片 */
.dev-info {
    position: relative;
    background: #fff;
    padding: 50px 12px 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
/* logo */
.dev-avatar {
    position: absolute;
    left: 12px;
    top: -36px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    background-color: #fff;
}
.dev-avatar img {
    width: 100%;
}
/* follow */
.follow-btn {
    position: absolute;
    right: 15px;
    top: 12px;
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 12px;
    text-decoration: none;
    color: #14c56b;
    border: 1px solid #14c56b;
}
/* name */
.dev-name {
    margin-left: 3px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
/* slogan */
.dev-slogan {
    margin-left: 3px;
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}
/* stats */
.dev-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 3px;
    padding-bottom: 8px;
}
.dev-stats div {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 12px;
}
.dev-stats .n {
    font-size: 14px;
    margin-right: 4px;
    color: #666;
}
/* ========= 开发者介绍标题区 ========= */

.dev-desc-titlebox {
    padding: 12px;
    font-size: 13px;
    color: #888;
    background: #f7f7f7;
}
/* ========= 开发者信息正文 ========= */

.dev-desc-box {
    background: #fff;
    padding: 13px 15px 18px 15px;
    font-size: 14px;
    color: #333;
    line-height: 1.9;
}

.dev-desc-box p {
    margin-bottom: 15px;
}

.dev-desc-box p:last-child {
    margin-bottom: 0px;
}

/* ================= Module Block ================= */

.module-block {
    margin-bottom: 26px;
}

.module-block .module-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fff;
    padding: 15px 12px 16px 12px;
}

.module-block .module-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin: 0;
}


/* ================= Entry ================= */

.block-entry {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 9px 0;
}

.block-entry:hover {
    background: #f2fbf6;
    border-radius: 8px;
}

.block-entry:first-child {
    margin-top: -7px;
}

.block-entry:last-child {
    margin-bottom: -9px;
}

/* Thumbnail */

.entry-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    margin-right: 1px;
    border-radius: 18%;
    border: 1px solid #efefef;
}

.entry-thumb img {
    width: 100%;
    height: 100%;
}


/* Right Side Info */

.entry-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transform: translateY(-1px);
}

.entry-info .entry-name {
    font-size: 18px;
    line-height: 1.3;
    font-weight: normal;
}

.entry-info p {
    width: 95%;
    margin: 0;
    font-size: 12px;
    color: #9d9d9d;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Meta */

.entry-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #7a7d7a;
}

.entry-meta .score {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #23c268;
}

.entry-meta .score i {
    font-size: 10px;
    padding-right: 2px;
}
