@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.page {
    display: none;
    padding: 10px;
}

#page1 {
    display: block;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.arrow-left,
.more,
.person {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 20px;
    height: 20px;
    color: #333;
    cursor: pointer;
    display: inline-block;
}

.arrow-left::before {
    content: '\f060';
}


.more::before {
    content: '\f141';
}

.person::before {
    content: '\f007';
}



.account-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 10px;
}

.account-text {
    display: flex;
    flex-direction: column;
}

.name {
    font-size: 25px;
    font-weight: bold;
    color: #000;
}

.region {
    font-size: 14px;
    color: #000;
}

.intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.original-count {
    font-size: 14px;
    color: #00008B;
    margin-bottom: 10px;
}

#follow-btn {
    background-color: #008000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: calc(100% - 20px);
    margin: 0 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
    margin-bottom: 20px;
}

#unfollow-btn,
#send-message-btn {
    background-color: #ccc;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 48%;
    font-size: 16px;
}

.tab-group {
    display: flex;
    margin-bottom: 20px;
    margin-left: 10px;
}

.tab {
    font-size: 12px;
    color: #999;
    margin-right: 20px;
}

.article-list {
    padding: 10px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date {
    color: #999;
    font-size: 14px;
}

/* 修改 .card-content 中 .title 的文字大小 */
.card-content .title {
    font-size: 16px;
    font-weight: bold;
    color: #111;
}

.info {
    color: #999;
    font-size: 14px;
    display: flex;
    gap: 12px;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-left: auto;
}

.chat-title {
    margin: 0;
}

.chat-messages {
    padding: 10px;
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

/* 修改 .message-content 的文字大小 */
.message-content {
    background-color: #e5e5ea;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
}

.bottom-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

.menu-item {
    cursor: pointer;
}

.menu-divider {
    width: 1px;
    height: 20px;
    background-color: #ccc;
}

.dropdown {
    display: none;
    position: absolute;
    bottom: 40px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.dropdown a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 5px 0;
}