* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}
body {
    max-width: 100vw;
}
.navTop {
    max-width:600px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 2.5;
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}
.mainContainer {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
}
.hot, .daily {
    padding: 10px;
}
.hot h2, .daily h2 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #4CAF50;
}
.hot-news {
    list-style: none;
}
.hot-news li {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.hot-news a {
    color: #333;
    text-decoration: none;
    display: block;
}
.hot-news .item-title {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.4;
    margin-left: 12px;
}
.hot-news .item-info {
    font-size: 15px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hot-news .item-info .item-image {
    min-width: 31vw;
    max-width: 33vw;
    height: 26vw;
    margin-right: 3vw;
    overflow: hidden;
}
.hot-news .item-info .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-news .item-info .item-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}
.hot-news .item-info .item-meta .item-source {
    margin-right: 10px;
}
.hot-news .item-info .item-meta .item-time {
    color: #999;
}
body > .adm-nav-bar-back {
    text-align: left;
    font-size: 16px;
    line-height: 1.8em;
    padding: 8px 16px;
    cursor: pointer
}