/* 新增字体和基础颜色 */
body {
  font-family: 'PingFang SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  color: #222;
  align-items: center;
  justify-content: center;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600PX;
}

.site-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
}


/* 容器的宽度设置 */
.container {
  width: 100%;
  max-width: 1200px;
  /* 设置最大宽度，适应大屏 */
  box-sizing: border-box;
  /* 防止 padding 溢出 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}


/* 购物车页面结账按钮 */
.wc-block-components-button__text {
  background-color: rgb(0, 90, 255);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  /* 去掉文字下划线 */
}

.wc-block-components-button__text:hover {
  background-color: #d4af37;
  color: #fff;
}

.wc-block-cart__submit-container a {
  text-decoration: none;
  /* 去掉文字下划线 */
}