* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
}

.page__hd {
    margin-bottom: 20px;
}

.weui-cells__title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.page__ft {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.location-btn {
    padding: 10px 15px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.location-btn:hover {
    background-color: #e0e0e0;
}

.location-btn.active {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.page__bd {
    margin-top: 20px;
}

.weui-cells {
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.weui-cell {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.weui-cell:last-child {
    border-bottom: none;
}

.weui-cells__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    padding: 0 15px;
}

.charger-id {
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
}

.charger-id::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 10px;
}