.one-sign-container {
    padding: 1rem;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 2px 0 rgba(98, 124, 153, .1);
    margin-bottom: 12px;
}

/* 签到按钮样式 */
.one-sign-button-area {
    margin-bottom: 1rem;
}

.one-sign-button {
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    border: none;
    background: #1985ff;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.one-sign-button:hover {
    color: white;
}

.one-sign-button:active {
    transform: scale(0.98);
}

.one-sign-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.one-sign-desc {
    font-size: 12px;
    opacity: 0.8;
}

.one-sign-button.one-signed {
    background: #94a3b8;
}

/* 功能模块样式 */
.one-function-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.one-module-item {
    height: 74px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #1e293b;
    transition: transform 0.2s, box-shadow 0.2s;
}

.one-module-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.one-module-item img {
    height: 50px;
}

.one-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    background: #1985ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.one-module-text {
    font-size: 14px;
    font-weight: 500;
}


.one-rank-list {
    width: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 1rem;
    box-sizing: border-box;
    margin-bottom: 12px;
    box-shadow: 0 0 2px 0 rgba(98, 124, 153, .1);
}

.one-rank-title {
    display: flex;
    align-items: center;
    height: 22px;
    font-size: 16px;
    font-weight: 400;
    color: #18191a;
    line-height: 22px;
    margin-bottom: 16px;
}

.one-title-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url('../images/crown-gold.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.one-title-icon-2 {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url('../images/cup.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.one-rank-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.one-rank-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.one-rank-item:hover {
    background: #f1f5f9;
}

.one-rank-index {
    width: 24px;
    text-align: center;
    font-size: 16px;
    color: #64748b;
}

.one-crown {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.one-crown-gold {
    background-image: url('../images/rank-1.png');
}

.one-crown-silver {
    background-image: url('../images/rank-2.png');
}

.one-crown-bronze {
    background-image: url('../images/rank-3.png');
}

.one-rank-avatar {
    width: 36px;
    height: 36px;
    margin: 0 12px;
    border-radius: 50%;
    overflow: hidden;
}

.one-rank-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.one-rank-name {
    flex: 1;
    font-size: 15px;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}