/* iPhone 16 Pro 样式 */
.iphone-container {
    position: relative;
    margin: 0 auto;
}

.iphone-frame {
    width: 390px;
    height: 844px;
    background-color: #fff;
    border-radius: 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border: 12px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

/* 状态栏 */
.status-bar {
    height: 48px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.status-notch {
    position: absolute;
    width: 30%;
    height: 24px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.status-left, .status-right {
    z-index: 10;
    display: flex;
    align-items: center;
}

.status-left .time {
    font-weight: 600;
}

.status-right i {
    margin-left: 8px;
}

/* 内容区域 */
.content-area {
    flex: 1;
    overflow: hidden;
}

.content-area iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 底部导航栏 */
.bottom-nav {
    height: 80px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 15px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.nav-item i {
    font-size: 24px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 12px;
}

.nav-item.active {
    color: #fd2c54;
}

/* 通用内容页样式 */
.page-container {
    padding: 16px;
    height: 100%;
    overflow-y: auto;
    background-color: #f8f8f8;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ccc;
} 