.personal-center {
    flex: 1;
    margin-left: 16px;
    display: flex;
}

.personal-center-left {
    width: 234px;
    min-height: 100%;
    background-color: #1A1A1A;
    margin-right: 14px;
    border-radius: 4px;
    padding: 36px 0;
}

.personal-center-left_nav {
    margin: 0 48px 12px;
}

.personal-center-left_nav-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 52px;
}

.personal-center-left_nav-ul {
    list-style: none;
    padding-left: 10px;
}

.personal-center-left_nav-ul_li {
    color: #DBA91C;
    cursor: pointer;
    font-size: 12px;
}

.personal-center-right {
    flex: 1;
    
    padding: 36px 50px;
}

.personal-particulars {
    display: flex;
    padding: 0 20px 50px;
    border-bottom: 1px solid #2C2C2C;
}

.personal-particulars-head {
    width: 110px;
    height: 110px;
}

.personal-particulars-head img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.personal-particulars-msg {
    margin-left: 50px;
}

.personal-particulars-msg_user {
    font-size: 20px;
}

.personal-particulars-msg_studentid {
    font-size: 16px;
    padding-top: 15px;
}

.asset-details {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 20px;
}

.asset-details-title {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.asset-details-item {
    margin-right: 30px;
    text-align: center;
}

.asset-details-item img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    cursor: pointer;
}

.asset-details-item_name {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}


.container {
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
  }

  .profile-head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dba81c51;
    height: 62px;
  }
  .profile-item:last-child {
    border-bottom: none;
  }
  .profile-item span {
    font-size: 16px;
  }

  .profile-item-label {
    display: inline-block;
    width: 120px;
  }
  .edit-btn {
    font-size: 18px;
    margin: 10px 0;
    color: #DBA91C;
    cursor: pointer;
  }
  #editModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }
  #editTitle {
    text-align: center;
    padding: 10px 0 20px;
    color: #666;
  }
  #editContent {
    display: flex;
    justify-content: center;
  }
  #editModal input,
  #editModal select {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  #editModal button {
    width: 100%;
    padding: 8px;
    background-color: orange;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
  }
  #avatarPreview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  input[type="file"] {
    display: none;
  }


@media (max-width: 1200px) {
    .personal-particulars-content .personal-center-left {
        margin-right: 0;
        display: none;
    }

    .asset-details {
        padding: 30px 10px;
    }

    .asset-details-item {
        margin-right: 20px;
        margin-bottom: 10px;
        
    }

    .personal-center-right {
        padding: 36px 20px;
    }
}
