* {
    padding: 0;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.ui_item {
    margin: 8px;
    display: flex;
    background-color: #ffead4;
    border-radius: 10px;
    flex-direction: column;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.ui_item_correct {
    margin: 8px;
    display: flex;
    background-color: #effbed;
    border-radius: 10px;
    flex-direction: column;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.ui_item_error {
    margin: 8px;
    display: flex;
    background-color: #fbeded;
    border-radius: 10px;
    flex-direction: column;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.ui_item_1 {
    margin: 15px;
    font-size: 16px;
    color: #000;
}

.ui_item_2 {
    font-size: 14px;
    margin-left: 15px;
    margin-right: 15px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui_item_3 {
    font-size: 14px;
    margin-right: 15px;
    color: #b49474;
}

.ui_item_3_correct {
    font-size: 14px;
    margin-right: 15px;
    color: #38ccae;
}

.ui_item_3_error {
    font-size: 14px;
    margin-right: 15px;
    color: #ff0000;
}

.ui_item_d {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.jz {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss {
    margin-top: 10px;
    margin-left: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Optional: You can adjust the z-index as needed */
}

input {
    border: 0;
    outline: none;
    border-bottom: solid 1px;
    background-color: transparent;
    /* 设置背景透明 */
}

.load {
    width: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /*兼容ios 否则滑动不流畅*/
}

.load ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    position: relative;
}

.load ul li {
    position: relative;
}

.load .item {
    background: white;
    width: 96%;
    margin-left: 2%;
    height: 170px;
    margin-top: 10px;
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
}

.load .item img {
    width: 160px;
    height: 160px;
    margin: 5px;
    float: left;
}

.load ul li .item .right {
    height: 170px;
    margin-left: 170px;
    overflow: hidden;
}

.load ul li .item .right .title {
    font-size: 16px;
    color: #3e3936;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 6px;
}

.load ul li .item .right .price {
    color: #c9040d;
    font-size: 14px;
    position: absolute;
    top: 123px;
    left: 170px;
}

.load ul li .item .right .buy {
    width: 80px;
    height: 30px;
    background: #c9040d;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: white;
    border-radius: 40px;
    position: absolute;
    right: 10px;
    top: 120px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #fff;
}

::-webkit-scrollbar:hover {
    background-color: #eee;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

::-webkit-scrollbar-thumb:active {
    background-color: #888;
}