* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    background: #000000;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #3d2c2c;
    max-width: 480Px!important;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

.status-bar {
    height: 44px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.time {
    font-weight: bold;
}

.header {
    padding: 6px 10px;

    /*background-color: #3d2c2c;*/
}

.logo {
    height: 34px;
    vertical-align: middle;
}

.title {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-weight: bold;  
}

.banner {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
    padding:0 10px;

    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
    box-sizing: border-box;
    border-radius: 8px;
}

.notice {
    /*background-color: #f0f1f7;*/
    padding: 10px 0px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.notice-icon{
    background-color: #3d2c2c;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}
.notice-icon img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.notice-content {
    white-space: nowrap;
    animation: scrollText 10s linear infinite;
    color: #00a9ff;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.tabs {
    display: flex;
    border: 1px solid #5977ff;
    border-radius: 8px;
    margin: 0 10px;
    overflow: hidden;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    color: #ffffff;
    font-size: 15px;
}

.tab.active {
    background: #4768ff;
    position: relative;
    color: #fff;
    border-radius: 6px;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #4768ff;
}

.list-item {
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    background: #77370c;
    border-left: 4px solid #2242d126;
}

.item-image {
    width: 80px;
    height: 80px;

    border-radius: 8px;
    margin-right: 15px;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content {
    flex: 1;
    color: #fff;
    overflow:hidden; 
    text-overflow:ellipsis; 
    white-space:nowrap; 
}

.item-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.item-rating {
    color: #1de4ff;
    margin-bottom: 5px;
    font-size: 12px;
}
.item-rating img{
    width: 4rem;
    vertical-align: baseline;
}

.item-reviews {
    color: #f7ffd6;
    font-size: 12px;
    margin-bottom: 5px;
}

.item-features {
    color: #e6ff10;
    font-size: 12px;
    width: 100%;
    overflow:hidden; 
    text-overflow:ellipsis; 
    white-space:normal; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.btn-go {
    background-color: #4768ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 12px;
    margin-left: 10px;
    animation: myfirst 1s infinite;
}

a{
    text-decoration: none;
}
@-webkit-keyframes myfirst {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

@keyframes myfirst {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}
