/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  width: 100%;
  height: 94px;
  background: transparent;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
}
.navbar .logo img {
  width: 50px;
  height: 50px;
  margin-right: 6px;
}

.navbar .nav {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  height: 100%;
}

.navbar .nav div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
  position: relative;
}
.navbar .nav div span {
  width: 14px;
  height: 2px;
  background: #D9D9D9;
  position: absolute;
  bottom: -4px;
  display: none;
}
.navbar .nav div:hover span {
  display: block;
}

.navbar .nav a {
  font-weight: 400;
  font-size: 16px;
}
.navbar .nav img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  display: none;
  cursor: pointer;
}
.navbar .user-log {
  width: 100px;
  height: 96px;
  background: #FFFFFF;
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
  border-radius:6px;
  position: absolute;
  bottom: -80px;
  flex-direction: column;
  justify-content: center;
  display: none;
}
.navbar .user-log a {
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}
.navbar .user-log a:hover {
  background: #2C93F7;
  color: #FFFFFF;
}
#islogin {
  height: 100%;
  position: relative;
  display: none;
}
#islogin:hover .user-log {
  display: flex;
}

.footer {
  width: 100%;
  height: 172px;
  background: linear-gradient( 90deg, #2878BC 0%, #1994B6 100%);
  display: flex;
  align-items: center;
  position: relative;
}
.footer-box {
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.footer-box .ater {
  width: 88px;
  height: 88px;
  background: #D9D9D9;
  border-radius: 50%;
  overflow: hidden;
}
.footer-box .footer-text {
  margin-left: 29px;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
  padding: 16px 0;
}
.footer-city {
  display: flex;
}
.footer-box .footer-city span {
  flex: 1;
}
.footer-box .footer-city span:nth-child(2){
  margin-left: 45px;
}
.footer-phone {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  height: 88px;
}
.footer-phone img {
  width: 14px;
  height: 14px;
  margin-bottom: 13px;
  margin-top: 21px;
}
.contact {
  position: fixed;
  width: 249px;
  height: 118px;
  border-radius: 10px;
  right:20px;
  bottom: 208px;
  background: url('/image/contact_1.png') center no-repeat;
  background-size: 100%;
  cursor: pointer;
  z-index: 1;
}
.contact img {
  width: 10px;
  height: 10px;
  position: absolute;
  top:10px;
  right:10px;
}




/* 弹窗模块 */

.alert-success {
  color: rgb(113, 238, 134);
  position: fixed;
  top: 50px;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 1000;
}
.alert-error {
  color: red;
  position: fixed;
  top: 50px;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 1000;
}

.login-content {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
  overflow: hidden; /* 阻止外层滚动 */
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.auth-container {
  width: 565px;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 44px 28px;
}
.form-title {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}
.input-group {
  margin-bottom: 20px;
  display: flex;
  position: relative;
}
.input-group input {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  padding: 16px 18px;
  font-weight: 400;
  font-size: 20px;
}
input:focus {
    border: 1px solid #007BFF; /* 改变边框颜色 */
    outline: none; /* 移除默认的outline */
}
.input-group-86 {
  position: absolute;
  width: 77px;
  height: 60px;
  border-right: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  color: #555555;
}
.forgot-class input{
  padding-left: 94px;
}
.btn {
  width: 100%;
  height: 60px;
  background: #2C93F7;
  border-radius:7px;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.switch-link {
  font-weight: 400;
  font-size: 20px;
  color: #2C93F7;
  margin-top: 20px;
  cursor: pointer;
}
.code-box {
  display: flex;
  gap: 10px;
}
.code-box input {
  flex: 1;
}
.hidden {
  display: none;
}
.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.checkbox-group span {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
}
.checkbox-group input {
  margin-right: 20px;
  width: 18px;
  height: 18px;
  border: 1px solid #CCCCCC;
  cursor: pointer;
}
.switch-link-cont {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.code-btn {
  width: 136px;
  height: 60px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  cursor: pointer;
}
.register-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.register-btn .btn {
  width: 240px;
}
.register-btn .switch-link {
  margin-top: 0px;
}

.msg-dialog {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
  overflow: hidden; /* 阻止外层滚动 */
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.msg-content {
  width: 566px;
  height: 173px;
  background: #FFFFFF;
  border-radius: 4px;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  text-align: center;
}
.msg-content img {
  width: 40px;
  height: 40px;
}
.msg-content div {
  margin: 40px 0 36px 0;
}
