* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f5f5;
}

/* 状态栏 */
.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    color: #fff;
    background: #FF4D4F;
}

.status-bar .icons {
    display: flex;
    gap: 5px;
}

/* 顶部搜索区 */
.header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #FF4D4F;
}

.logo {
    width: 100px;
}

.logo img {
    width: 100%;
    height: auto;
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 15px;
    margin: 0 15px;
}

.search-box i {
    color: #fff;
    margin-right: 8px;
}

.search-box input {
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 14px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.right-menu {
    display: flex;
    align-items: center;
    color: #fff;
}

.points {
    font-size: 12px;
    margin-right: 15px;
}

.points span:nth-child(2) {
    font-size: 16px;
    margin: 0 2px;
}

.my-link {
    font-size: 14px;
}

/* 导航栏 */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 15px;
    border-bottom: 1px solid #eee;
}

.nav-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
}

.nav-scroll::-webkit-scrollbar {
    display: none;
}

.nav-item {
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
    white-space: nowrap;
}

.nav-item.active {
    color: #FF4D4F;
    font-weight: bold;
}

.nav-tools {
    display: flex;
    gap: 20px;
    color: #666;
    padding-left: 15px;
}

/* 内容区域 */
.content {
    padding: 10px 0;
}

.banner {
    position: relative;
    margin-bottom: 15px;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.banner-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.banner-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.news-list {
    background: #fff;
    padding: 0 15px;
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h3 {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-info {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.news-info .source {
    margin-right: 10px;
}

.news-info .time {
    margin-right: 15px;
}

.news-info i {
    margin-right: 5px;
    color: #FF4D4F;
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    padding: 8px 0;
    border-top: 1px solid #eee;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}

.bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-nav .nav-item span {
    font-size: 12px;
}

.bottom-nav .center {
    margin-top: -25px;
}

.circle-btn {
    width: 50px;
    height: 50px;
    background: #FF4D4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.circle-btn i {
    font-size: 24px;
} 