        /* 地址列表样式 */
        .address-list {
            margin-top: 1.5rem;
        }

        .address-item {
            background: #fff;
            margin-bottom: 10px;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
        }

        .address-info {
            flex: 1;
            margin-right: 15px;
        }

        .address-header {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .address-header .name {
            font-size: 15px;
            font-weight: 500;
        }

        .address-header .phone {
            color: #666;
        }

        .address-header .badge {
            font-weight: normal;
            padding: 2px 8px;
            font-size: 12px;
            border-radius: 4px;
        }

        .address-detail {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
        }

        .address-actions {
            display: flex;
            gap: 15px;
        }

        .address-actions .btn {
            padding: 0;
            font-size: 16px;
        }

        /* 添加地址按钮 */
        .add-address {
            margin-top: 20px;
        }

        .add-address .btn {
            border-radius: 4px;
            padding: 12px;
            font-size: 14px;
        }

        /* 空地址提示 */
        .empty-address {
            text-align: center;
            padding: 3rem 0;
        }

        .empty-address i {
            font-size: 3rem;
            color: #ccc;
            margin-bottom: 1rem;
        }

        .empty-address p {
            color: #999;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .empty-address .btn {
            padding: 8px 30px;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 0 !important;
            }

            h2 {
                padding: 15px;
                margin: 0;
                background: #fff;
                font-size: 16px;
                border-bottom: 1px solid #f5f5f5;
            }

            .address-list {
                margin-top: 0;
            }

            .address-item {
                margin-top: 15px;
                padding: 12px 15px;
            }

            .address-header {
                gap: 6px;
            }

            .address-header .name {
                font-size: 14px;
            }

            .address-header .phone {
                font-size: 13px;
            }

            .address-detail {
                font-size: 13px;
                margin-top: 5px;
            }

            .address-actions {
                gap: 20px;
            }

            .address-actions .btn {
                font-size: 15px;
            }

            .add-address {
                position: fixed;
                bottom: 60px;
                left: 0;
                right: 0;
                margin: 0;
                padding: 10px 15px;
                background: #fff;
                box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .add-address .btn {
                padding: 8px;
                font-size: 14px;
            }

            /* 为底部按钮预留空间 */
            .main-content {
                padding-bottom: 130px !important;
            }

            /* 修改卡片圆角 */
            .card {
                border-radius: 0;
            }

            .empty-address {
                margin-top: 0;
                padding: 30px 0;
            }

            .empty-address i {
                font-size: 35px;
                margin-bottom: 8px;
            }

            .empty-address p {
                font-size: 13px;
                margin-bottom: 12px;
            }

            .empty-address .btn {
                padding: 6px 25px;
                font-size: 13px;
            }
        }

        /* PC端样式调整 */
        @media (min-width: 768px) {
            .address-item {
                height: 100%;
                margin-bottom: 0;
            }

            .address-info {
                margin-bottom: 15px;
            }

            .address-actions {
                justify-content: flex-end;
            }
        }