/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background: linear-gradient(180deg, #0076FD 0%, #ffffff 100%);
    color: #333;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* 顶部标题 */


.header h1 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
}

/* 搜索栏 */
.search-box {
    display: flex;
    align-items: center;
    background: #EDF3FF;
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 20px;
    border:1px solid #fff;
    position: relative;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;

    border-radius: 6px;
    padding: 0 10px;
    height: 44px;
}

.search-icon {
   background: url(../img/h1.png) no-repeat center;
   background-size: 100%;
   width: 20px; height: 20px;
   margin-right: 10px;
   margin-left: 10px;
}

.search-input input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
}

.search-input input::placeholder {
    color: #999;
}

.search-btn {
    width: 80px;
    height: 44px;
    background: #007AFF;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    margin-left: 8px;
    font-size: 14px;
    cursor: pointer;
}

.search-btn:active {
    background: #0066CC;
}

/* 内容区 */
.content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 卡片行 */
.card-row {
    display: flex;
    gap: 15px;
}

.card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.card-header {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.card-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.orange-dot {
    background: #FF9F43;
}

.red-dot {
    background: #FF4D4F;
}

.card-header h2 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-header p {
    color: #666;
    font-size: 14px;
}

.card-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* 图标网格 */
.icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.icon-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.icon-item p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 底部版权 */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.footer p {
    color: #FFFFFF;
    font-size: 12px;
}

.status-bar {
    background-color: #1677ff;
    color: white;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.header {
    background-color: #1677ff;
    color: white;
    padding: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.news-list {
    padding: 12px;
}
.news-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-content {
    flex: 1;
}
.news-title {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    font-weight: bold;
}
.news-thumb {
    width: 120px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
}
.footer {
    text-align: center;
    padding: 16px;
    color: #999;
    font-size: 12px;
}