* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  color: #333;
  font-size:14px;
}

.container {
  width:94%;
  margin: 0 auto;
}
.flex-justify{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-start{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ml-10px{
  margin-left:10px;
}

 /* 底部导航 */
 .bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index:300;
  display: flex;
  justify-content: space-around;
  padding:6px 0;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
}

.bottom-nav-item {
  text-align: center;
  color: #B3B3B3;
  font-size: 14px;
  width:33.33%;
}
.bottom-nav-item a{
  text-decoration: none;
  color: #B3B3B3;
}
.bottom-nav-item.active a{
  color: #2979FF;
  font-weight: 500;
  
}
.bottom-nav-item .show-icon{
  display:block;
}
.bottom-nav-item .active{
  display:none;
}
.bottom-nav-item.active .show-icon{
  display:none;
}
.bottom-nav-item.active .active{
  display:block;
}


/* 弹窗遮罩层样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
 
/* 弹窗样式 */
.modal {
  background-color: #1F2630;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
}

/* 登录 */
.login-bg{
  height: 100vh;
  overflow: hidden;
}

.logo {
  margin:30px auto;
}

.logo img {
  display:block;
  margin:0 auto;
  width:65px;
}


.email,
.password {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.forgot-password {
  text-align: right;
  margin-bottom: 20px;
}

.forgot-password a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.remember-me input {
  margin-right: 5px;
}

.login-button {
  padding: 10px;
  background-color: #1E90FF;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.register-link {
  text-align: right;
  margin-top: 10px;
}

.register-link a {
  color: #1E90FF;
  text-decoration: none;
  font-size: 14px;
}

.support {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.support img {
  width: 40px;
}

.language-switch {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  color: #000;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.back-button {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  margin-right: 10px;
}

.page-header h1 {
  font-size: 16px;
  color:#000;
}
.msg-info{
  display:none;
}

.login-button {
  margin: 24px 0;
  width: 100%;
  padding: 12px;
  background-color: #2979FF;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.logout-modal-mask {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.logout-modal {
  background: #fff;
  border-radius: 18px;
  width: 90vw;
  max-width: 400px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 12px;
  text-align: center;
}
.logout-modal-content {
  padding:20px 0;
  font-size: 14px;
  color: #222;
}
.logout-modal-actions {
  display: flex;
  border-top: 1px solid #f3f3f3;
}
.logout-modal-btn {
  flex: 1;
  background: none;
  border: none;
  font-size: 14px;
  padding: 5px 0;
  cursor: pointer;
  color: #409eff;
  transition: background 0.2s;
}
.logout-modal-cancel {
  color: #000;
  border-right: 1px solid #f3f3f3;
}
.logout-modal-confirm {
  color: #409eff;
}
.logout-modal-btn:active {
  background: #f3f3f3;
}

.modal-area {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
}

.modal-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 35px;
  text-align: center;
  padding: 10px 0;
}

.modal-list li img {
  width: 30px;
  height: 30px;
}

.modal-title {
  margin-left: 10px;
}

.modal-list li.active {
  color: #0060DF;
}

.cancel {
  color: #666666;
}
.modal-area{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:10px;
  border-radius:10px 10px 0 0;
  background-color:#fff;
}