/* 我的页面特有样式 */

/* 用户信息板块样式 */
.user-info-section {
    background: linear-gradient(135deg, #336df3, #336df3);
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 0 0 10px 10px; /* 底部圆角 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid rgba(255,255,255,0.3);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-nickname {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* 我的服务板块样式 */
.my-services-section {
    background: white;
    border-radius: 8px;
    padding: 10px 0;
    margin: 0 15px 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background-color: #f9f9f9;
}

.service-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #336df3;
    width: 24px;
    text-align: center;
}

.service-title {
    font-size: 16px;
    color: #333;
    flex: 1;
}

/* 页面备案号和版本说明样式 */
.footer-info {
    padding: 15px;
    margin: 0 15px 15px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.record-number {
    margin-bottom: 5px;
}

/* 用户信息卡片样式 */
.user-profile-card {
    background: linear-gradient(45deg, #336df3, #007DDB);
    border-radius: 8px;
    padding: 20px;
    color: white;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #336df3;
    margin-bottom: 10px;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.user-info {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

/* 功能入口网格样式 */
.function-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.function-item {
    text-align: center;
    padding: 15px 5px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.function-item:hover {
    transform: translateY(-3px);
}

.function-icon {
    font-size: 20px;
    color: #336df3;
    margin-bottom: 5px;
}

.function-text {
    font-size: 12px;
    color: #666;
}

/* 订单概览卡片样式 */
.order-overview {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.order-overview h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.order-status-item {
    text-align: center;
}

.order-status-icon {
    width: 40px;
    height: 40px;
    background: #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    color: #336df3;
    font-size: 16px;
}

.order-status-text {
    font-size: 12px;
    color: #666;
}

/* 设置列表样式 */
.settings-list {
    background: white;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.setting-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.3s;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item:hover {
    background: #f9f9f9;
}

.setting-icon {
    width: 40px;
    height: 40px;
    background: #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #336df3;
    font-size: 16px;
}

.setting-text {
    flex: 1;
    color: #333;
}

.setting-arrow {
    color: #ccc;
    font-size: 12px;
}

/* 会员特权样式 */
.vip-privileges {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vip-privileges h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.privilege-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.privilege-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.privilege-icon {
    color: #ff6b35;
    margin-right: 5px;
    font-size: 14px;
}

.privilege-text {
    font-size: 12px;
    color: #666;
}
