.custom-layer-skin .layui-layer-title {
  background-color: #009688; /* 自定义标题背景色 */
  color: white; /* 自定义标题文字颜色 */
}

.payment-container {
  padding: 20px;
  text-align: center;
}

.payment-amount {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.amount {
  font-weight: bold;
  color: #009688;
}

.payment-options {
  display: flex; /* 使按钮横向排列 */
  flex-direction: column; /* 纵向排列 */
  gap: 10px;         /* 按钮之间的间距 */
}

.pay-button {
  background-color: #f0f0f0; /* 按钮背景色 */
  border: 1px solid #ccc;   /* 按钮边框 */
  padding: 10px 20px;      /* 按钮内边距 */
  border-radius: 5px;       /* 按钮圆角 */
  cursor: pointer;          /* 鼠标悬停时显示手型 */
  display: flex;           /* 使图标和文字居中对齐 */
  align-items: center;    /* 垂直居中 */
  justify-content: center; /* 水平居中 */
  gap: 5px;               /* 图标和文字之间的间距 */
  font-size: 14px;        /* 字体大小 */
  color: #333;            /* 文字颜色 */
}

.pay-button img {
  width: 20px;           /* 图标宽度 */
  height: 20px;          /* 图标高度 */
  vertical-align: middle; /* 垂直居中对齐图标 */
}

.pay-button:hover {
  background-color: #e0e0e0; /* 鼠标悬停时的背景色 */
}
