  .hcontainer {
    width: 88%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #e7e7e7;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

.acontainer {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* ?? 保证整体居中 */
  padding: 20px;
  box-sizing: border-box;
}
  .info {
    flex: 1;
    text-align: left; 
    margin-left: 30px;
  }
  .title {
    color: #000;
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 20px;
  }
  .image-container {
    border-radius: 18px;
    width: 250px;
    height: 250px; 
  }
  .image-title {
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
    color: #000;
    font-size: 2em;

  }
  .selection-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

  .selection-option {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    border: 2px solid #ad1515;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
 margin-right: 20px;
  }
  .selection-option:hover {
    color: #db3ca3;
    border-color: #db3ca3;
    transform: translateY(-5px);
  }
  .selection-option.selected {
    border-color: #db3ca3;
    background-color: #e37939;
  }
  .option-title {
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    color: #5d2fe3;
    font-size: 2em;
  }

  .total-price {
    color: #cb1818;
    font-size: 2em;
    margin-bottom: 20px;
  }
  .gmdbutton {
    background: linear-gradient(90deg, #e7a46e, #db3ca3);
    color: white;
    font-size: 1.3em;
    padding: 20px 120px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
.gmdbutton {
    line-height: normal;
}

        .ckpy-abutton {
      background-color: #98a3ff;
      border: none;
      color: #000;
      padding: 15px 212px;
      border-radius: 15px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 22px;
      margin: 4px 10px;
      cursor: pointer;
        }
  .ckpy-abutton:hover {
    background-color: #df7eaf; 
    color: #2C2E31;
  }

        .kkcustom-input {
            width: 350px;
            height: 40px;
            padding: 3px;
            font-size: 18px;
            border: 3px solid #333;
            border-radius: 15px; 
            background-color: #f5f5f5; 
            color: #333;
            transition: border-color 0.3s ease; 
        }
        .kkcustom-input:focus {
            border-color: #007BFF; 
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); 
        }
