.resolve-puzzle-container {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
    padding: 5rem 18.75rem;
}
.resolve-puzzle-title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 2.375rem;
    color: #333333;
}
.puzzle-list {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2.625rem;
}
.puzzle-item {
    flex: 1;
    height: 14.375rem;
    padding: 1.875rem 1.25rem;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}
.puzzle-item-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.puzzle-item-font {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.puzzle-item-title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 1.625rem;
    color: #333333;
}
.puzzle-item-sub-title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 1.25rem;
    color: #666666;
}
