/* 页面基础样式 */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
}

.page-container {
    max-width: 390px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    border: 1px solid #333333;
}

/* 头部样式 */
.aui-navBar {
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    max-width: 390px;
    margin: 0 auto;
}

.aui-navBar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.indexA {
    display: block;
    height: 30PX;
    border: 1px solid #ff5987;
    color: #ff5987;
    font-size: 15px;
    line-height: 30PX;
    position: fixed;
    left: 10px;
    border-radius: 34px;
    padding: 0 15px;
    top: 7px;
}

.indexB {
    display: block;
    height: 30PX;
    border: 1px solid #ff5987;
    color: #ff5987;
    font-size: 15px;
    line-height: 30PX;
    position: fixed;
    right: 10px;
    border-radius: 34px;
    padding: 0 15px;
    top: 7px;
}
.panel-control-left a, .indexB {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

/* 轮播图样式 */
.banner {
    width: 100%;
    margin-top: 44px;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* 按钮容器样式 */
.container {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    gap: 10px;
}

.button {
    padding: 8px 16px;
    border: none;
    background: #f5f5f5;
    color: #333;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.button.active {
    background: #ff3c7b;
    color: #fff;
}

/* 应用列表样式 */
.app-items {
    padding: 0 15px;
    background: #fff;
}

.app-item {
    display: flex;
    align-items: center;
    border-bottom: 0.5px solid #ddd;
    padding: 10px 0;
}

.app-item img {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    border-radius: 10px;
}

.app-info {
    flex: 1;
}

.app-info h4 {
    margin: 8px 0 5px 0;
    font-size: 16px;
    color: #333;
}

.app-info p {
    float: left;
    font-size: 0.7rem;
    color: #565656;
    font-style: normal;
    margin: 0;
    margin-top: -5px;
}

.btn {
    border: 1px solid #ff3c7b;
    color: #ff3c7b;
    padding: 4px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 14px;
}

.no-apps {
    padding: 20px;
    text-align: center;
    color: #666;
}

/* 加载状态样式 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.app-items.loading {
    opacity: 0.6;
    pointer-events: none;
} 