@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  -webkit-tap-highlight-color: transparent;
}
/* scroll bar */
::-webkit-scrollbar {
  display: none;
}
/* ::-webkit-scrollbar-track {
  background: transparent; 
}
::-webkit-scrollbar-thumb {
  background: var(--scrollBar_color); 
  border-radius: 2px;
} */

:root {
  --theme_blue: #4d74e9;
  --theme_red: #d83c3c;
  --theme_yellow: #f0d433;
  --avatar_width_normal: 35%;
  --avatar_width_small: 65%;
  --avatar_figureCaption_size: 0.9rem;
  --theme_area_height: max(2.2vh, 26px);
  --info_exp_btn_height: 50px;
  --info_exp_btn_width: 150px;
  --theme_area_width: min(56px, 20%);
  --project_title_color: #fff;
  --flowBtn_highlight_border_color: #1e1e29;
  --info_container_width: 800px;
  --me_card_width: 280px;
  --exp_content_index: 4;
}
/* :root {
  --nav_bgColor: #0d0d0f;
  --nav_bgColor_light: #ececec;
  --content_bgColor: #131517;
  --dark_default_font-color: #565b65;
  --dark_highlight_font-color: #b4bacb;
  --dark-selected-bgColor: #09090c;
  --icon_default_color: #565b65;
  --icon_highlight_color: #b4bacb;
  --theme_blue: #4d74e9;
  --theme_red: #d83c3c;
  --theme_yellow: #f0d433;
  --scrollBar_color: #23252a;
  --avatar_width_normal: 35%;
  --avatar_width_small: 50%;
  --avatar_figureCaption_size: 0.9rem;
  --theme_btn_border_color: #212223;
  --theme_btn_color: #212328;
  --theme_btn_bgColor: #09090c;
  --theme_area_height: max(2.2vh, 26px);
  --theme_area_width: min(56px, 20%);
  --dark_theme_highlight_color: #feffc0;
  --project_title_color: #fff;
  --flowBtn_highlight_border_color: #1e1e29;
  --flowBtn_shadow_border_color: #000;
} */
img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: #fff;
  touch-action: manipulation;
}
svg {
  display: block;
}
::selection {
  background-color: var(--theme_red); /* 设置选中时的背景色为橙色 */
  color: #ffffff; /* 设置选中时的文字颜色为白色 */
  text-decoration: underline;
}
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#footer {
  width: 100%;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 400;
}

#footer_year {
  font-weight: 400;
}
#footer_name {
  top: -1px;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 1px;
  font-weight: bold;
  cursor: pointer;
  color: var(--dark_default_font-color);
}
#footer_name:hover {
  color: var(--dark_highlight_font-color);
}
#footer_icon_svg {
  display: inline-block;
  width: 12px;
  height: 12px;
}
#cursor_icon_container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  margin-top: 6px;
  opacity: 0.7;
}
#cursor_icon {
  display: inline-block;
  width: 50px;
  height: 12px;
}
.cursor_icon_svg {
  width: 40px;
  height: 12px;
  fill: var(--dark_default_font-color);
}
.cursor_icon_svg:hover {
  fill: var(--dark_highlight_font-color);
}
.cursor_icon_img {
  width: 12px;
  height: 12px;
}
.cursor_icon_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
