/* 按钮样式 */
.open-dialog-btn {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.open-dialog-btn:hover {
    background-color: #45a049;
}

/* 弹窗样式 */
#dog_order_a,
#dog_order_b,
#dog_order_c,
#dog_order_d,
#dog_order_e,
#dog_order_f,
#dog_order_g,
#dog_order_h,
#dog_order_i,
#dog_order_j,
#dog_order_k,
#dog_order_l,
#dog_order_m,
#dog_order_n,
#dog_order_o,
#dog_order_p,
#dog_order_q,
#dog_order_r,
#dog_order_s,
#dog_order_t,
#dog_order_u,
#dog_order_v,
#dog_order_w,
#dog_order_x,
#dog_order_y,
#dog_order_z {
    width: 500px;
    max-width: 90%;
    border: none;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 弹窗容器（上中下结构） */
.dialog-container {
    display: flex;
    flex-direction: column;
    height: 80vh;
    /* 弹窗高度（可调整） */
}

/* 顶部区域（固定） */
.dialog-header {
    padding: 16px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    text-align: center;
    /* 标题文本居中 */
}

.dialog-header h3 {
    margin: 0;
    font-size: 18px;
}

/* 中间内容区域（可滚动，隐藏滚动条） */
.dialog-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: none;
    /* Firefox 隐藏滚动条 */
    -ms-overflow-style: none;
    /* IE/Edge 隐藏滚动条 */
}

/* 隐藏 Chrome/Safari 滚动条 */
.dialog-content::-webkit-scrollbar {
    display: none;
}

/* 底部按钮区域（固定） */
.dialog-footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    gap: 10px;
    justify-content: center;
    /* 居中 */

}

/* 按钮样式 */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-success {
    background-color: #4CAF50;
    color: white;
}

.btn-success:hover {
    background-color: #45a049;
}

.btn-danger {
    background-color: #f44336;
    color: white;
}

.btn-danger:hover {
    background-color: #d32f2f;
}

/* 表单项样式（label + input 上下结构） */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group select {
    width: 100%;
    /* padding: 8px; */
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* 选择项-单选 */
.radio-group {
    display: flex;
    justify-content: center;
    /* 关键：整个单选组水平居中 */
    gap: 30px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.radio-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin: 0 0 8px 0;
    transition: all 0.2s;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked {
    border-color: #4CAF50;
    background-color: #4CAF50;
    box-shadow: inset 0 0 0 3px white;
}

.radio-option:hover input[type="radio"] {
    border-color: #45a049;
}

.radio-option span {
    font-size: 14px;
    color: #333;
    text-align: center;
}




/* 弹窗选项内容 */
#myModal,
#myModal1,
#myModal2,
#myModal3,
#myModal4,
#myModal5,
#myModal6,
#myModal7,
#myModal8,
#myModal9,
#myModal10,
#myModal11,
#myModal12,
#myModal13,
#myModal14,
#myModal15
#myModal16,
#myModal17{
    width: 100%;
    height: auto;
}
.modal-content{
    width: 100%;
    background-color: rgb(170, 221, 228);
    border-radius: 8px;
    /* padding: 20px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* 弹窗标题 */
.modal-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}


/* 弹窗内读取按钮样式 */
#obtain,
#obtain1,
#obtain2,
#obtain3,
#obtain4,
#obtain5,
#obtain6,
#obtain7,
#obtain8,
#obtain9,
#obtain10,
#obtain11,
#obtain12,
#obtain13,
#obtain14 {
  margin-left: 20px;
  background-color: rgb(159, 241, 241);
  border: none;
  color: #333; /* 文字颜色 */
  font-size: 14px; /* 字体大小 */
  font-weight: 500; /* 字体粗细 */
  border-radius: 8px; /* 圆角 */
  cursor: pointer; /* 鼠标悬停手势 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
}

