/*
Theme Name: My Static Theme with Slider
Description: Static homepage migrated to WordPress with responsive slider
Version: 1.0
Author: Your Name
*/
html, body {
overflow-x: hidden;
width: 100%;
font-family: 'SF Pro Text', 'Helvetica Neue', Arial, 'Roboto', sans-serif;
}
/* 针对桌面端Plans下拉菜单 */
.absolute  {
  min-width: 280px; /* 增加最小宽度，确保文字不换行 */
  left: 50%;       /* 改为居中定位（可选，也可保持left:0） */
  transform: translateX(-50%) translateY(2px); /* 居中并调整垂直位移 */
}

/* 确保下拉菜单项的文字不换行 */
.group .absolute a {
  white-space: nowrap; /* 强制文字不换行 */
}
