.personal {
    display: flex;
    flex-wrap:wrap;
    width: 80%;
    margin-left: 10%;
}


.personal-header {
    border-bottom: 2px solid #ffffff;
    margin-bottom: 30px;
}

.personal-header h1 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 500;
}

.personal-wrapper {
    position: relative;
    display: flex;
    width: 100%;
}

/* 个人信息 */
.personal-panel {
    width: 47.5%;
    background: rgba(255, 253, 253, 0.08);
    text-align: center;
    color: #fffdfd;
}
.info{
    padding: 20px;
}
.info img{
    width: 60px;
}
.summary-item {
    color: #fffdfd;
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.27);;
    font-size: var(--general-size);
}





/* 结算面板 */
.order-panel{
    width: 47.5%;
    margin-left: 5%;
    background: rgba(255, 253, 253, 0.08);
    color: #fffdfd;
    padding: 20px;
    text-align: center;
}

.order-options{
    display: flex;
    position: relative;
    width: 100%;
    text-align: center;
    align-items: center;
}
.order-option a:hover{

     color: #e7185c;
 }
.order-option {
    margin-left: 2%;
}
.order-option a{
    color: #fffdfd;
    text-decoration: none;
}
.order-option.selected {
    border-bottom: 2px solid #c10040;
}

.cart-item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid white;

}
.item-title{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    text-align: left;
}
.item-title p{
    color: #ffcc00;
    font-size: var(--general-size);
}

.item-image {
    width: 20%;
    align-content: center;
}
.item-image img {
    width: 100%;
    border-radius: 4px;
}
.item-info{
    position: relative;
    width: 40%;
    padding-top: 0;
    margin-left: 10%;
}

.item-sku {
    color: #95A5A6;
    font-size: var(--general-size);
    line-height: 0.3rem;
}


.item-price {
    color: #e7185c;
    text-align: right;
    width: 30%;
}
.item-price p{
    color: #e7185c;
    font-size: var(--general-size);
    line-height: 0.3rem;

}
.item-price a{
    color: rgba(255, 253, 253, 0.75);
    text-align: right;
    font-size: var(--general-size);
}
.item-price a:hover{
    color: #fffdfd;
    text-align: right;
    font-weight: 500;
}

.conf-btn{
    background: #d9a01e;
    padding: 2px;
    border-radius: 4px;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .personal {
        width: 90%;
        margin-left: 5%;
    }

    .personal-wrapper {
        flex-wrap: wrap;
    }

    /* 商品列表样式 */
    .personal-panel {
        width: 100%;
        margin-left: 0;
    }

    /* 结算面板 */
    .order-panel {
        width: 100%;
        margin-left: 0;
        margin-top: 5%;
    }
    /* 商品列表样式 */
    .cart-items {
        width: 100%;
    }
    .item-sku {
        font-size:0.8rem;
    }
    .item-price p{
        font-size:0.8rem;
    }
    .item-price a{
        font-size:0.7rem;
    }
    .item-image {
        width: 25%;
        align-content: center;
    }
    .item-info{
        width: 25%;
    }


}
