* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* 全局统一去除点击高亮，比只写body更稳 */
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

body {
  font-family: system-ui;
}

/* 自定义按压反馈 */
a:active, button:active, .click-item:active {
  opacity: 0.9;
  transform: scale(0.98);
  transition: 0.1s ease;
}
.user {
  width: 80px;
  height: 30px;
  position: relative;
  margin-top: 20px;
  float: right;
  margin-right: 20px;
  background-color: #006efc;
  border-radius: 10px;
  /* 文字垂直居中 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.user-text {
  color: #ffffff;
  font-size: 15px;
  text-align: center;
}

/* 手机平板 宽度＜992px */
@media screen and (max-width: 991px) {
  /* 用户登录 */
  .user {
    width: 40px;
    height: 40px;
    position: relative;
    background-color: transparent;
    float: right;
    margin-right: 20px;
    /* 清除PC端margin-top高度错位 */
    margin-top: 0;
  }
  /* 头部圆圈 */
  .user::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #999;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 13px;
    transform: translateX(-50%);
  }
  /* 下半弧形，开口向下 */
  .user::after {
    content: "";
    width: 22px;
    height: 8px;
    border: 2px solid #999;
    border-bottom: transparent;
    border-radius: 13px 13px 0 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  /* 移动端隐藏登录文字 */
  .user-text {
    display: none;
  }
}




.Login-window {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
/* 弹窗内部盒子直接写在Login-window内部，不新建类 */
.Login-window > div {
 width: 100%;
 height: 100%;
  background: #fff;
  padding: 30px 24px;
  position: relative;
  box-sizing: border-box;
}

/* 移动端适配，仅针对你现有弹窗容器 */
@media screen and (max-width:991px) {
  .Login-window > div {
    width: 100%;
	height: 100%;
	  border-radius:0px;
  }
}
/* 关闭按钮、输入框、登录按钮全部使用标签选择器，不新建class */
.Login-window span {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
}
.Login-window span:hover {
  color: #000;
}
.Login-window input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}
.Login-window button {
  width: 100%;
  padding: 12px;
  margin-top:10px;
  border: none;
  background-color: #006efc;
  color:#fff;
  border-radius:8px;
  font-size:16px;
  cursor:pointer;
}
.Login-window p {
  margin-top:16px;
  font-size:13px;
  color:#666;
  text-align:center;
}
.Login-window h3 {
  text-align:center;
  margin:0 0 18px 0;
}
.Login-title{
	font-size:18px;
	font-weight: 700;
	color: #444;
	text-align:center;
	margin-top: 30px;
	margin-bottom:10px;
}
.CloseLogin {
    position: absolute;
    right:10px;
    top: 0px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    /* 关键：转为弹性块，宽高才能生效 */
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    /* 扩大点击范围缓冲 */
    padding: 4px;
}

/* ========== 仅新增这段，只作用于PC大屏(≥992px) ========== */
@media screen and (min-width: 992px) {
  .Login-window input {
    width: 30%;
    display: block;
    margin: 8px auto;
  }
  .Login-window button {
    width: 30%;
    display: block;
    margin: 10px auto 0 auto;
  }
  .Login-title{
  	font-size:25px;
  	font-weight: 700;
  	color: #444;
  	text-align:center;
	margin-top: 30px;
	margin-bottom:20px;
  }
.CloseLogin {
    position: absolute;
    right:20px;
    top:10px;
    font-size:50px;
    color: #999;
    cursor: pointer;
    /* 关键：转为弹性块，宽高才能生效 */
    display: inline-flex !important;
    width: 44px;
    height:40px;
	border-radius: 50%;
    align-items: center;
    justify-content: center;
    /* 扩大点击范围缓冲 */
    padding: 4px;
}
.CloseLogin:hover{ color: red;}
}