.header {
  border-bottom: 1px solid #eee;
}
.header .box-site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header .box-site .logo {
  width: 84px;
  height: 42px;
  padding-right: 10px;
}
.header .box-site .site {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 25px 15px 15px;
  color: #333;
  font-size: 16px;
  cursor: pointer;
}
.header .box-site .site:hover .down {
  transform: rotate(180deg);
}
.header .box-site .site:hover .site-pop {
  display: flex;
}
.header .box-site .site .down {
  width: 12px;
  height: 6px;
  margin-left: 3px;
  transition: transform 0.24s ease;
}
.header .box-site .site .site-pop {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 110;
  display: none;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 35px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 17px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .box-site .site .site-pop .list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 670px;
  padding-bottom: 10px;
  column-count: 2;
  column-gap: 30px;
}
.header .box-site .site .site-pop .list .item {
  display: flex;
  width: 320px;
  padding-top: 15px;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}
.header .box-site .site .site-pop .list .item .letter {
  width: 10px;
}
.header .box-site .site .site-pop .list .item .city-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.header .box-site .site .site-pop .list .item .city-list .city {
  padding-left: 10px;
  color: #333;
  cursor: pointer;
}
.header .box-site .site .site-pop .list .item .city-list .city:hover {
  color: #1d479c;
}
.header .box-site .site .site-pop .topic {
  display: flex;
  flex-wrap: wrap;
  color: #333;
  font-size: 14px;
  line-height: 40px;
  column-count: 2;
  column-gap: 30px;
  background: linear-gradient(90deg, transparent, rgba(22, 87, 218, 0.05) 15%, rgba(22, 87, 218, 0.05) 85%, transparent);
}
.header .box-site .site .site-pop .topic .item {
  flex: 1;
}
.header .box-site .site .site-pop .topic .item a:hover {
  color: #1d479c;
}
.header .box-site .site .site-pop .bottom {
  padding: 10px 0;
  color: #1d479c;
  font-size: 16px;
  text-align: center;
  border-top: 1px solid #eee;
}
.header .box-site .tab {
  padding: 0 10px;
}
.header .box-site .tab .tab-item {
  box-sizing: border-box;
  height: 50px;
  padding: 0 15px;
  color: #333;
  font-size: 18px;
  line-height: 50px;
  transition: color 0.24s ease;
}
.header .box-site .tab .tab-item.active {
  color: #1d479c;
}
.header .box-site .phone {
  margin-left: 30px;
  padding-left: 30px;
  color: #1d479c;
  font-size: 20px;
  background: url("../images/phone.png") no-repeat left center;
}
.header .box-site .login {
  width: 73px;
  height: 26px;
  margin-left: 30px;
  color: #fff;
  line-height: 26px;
  text-align: center;
  background: #1d479c;
  border-radius: 13px;
  cursor: pointer;
}
.header .box-site .login.user {
  position: relative;
  width: auto;
  height: 40px;
  padding-left: 45px;
  color: #333;
  font-size: 15px;
  line-height: 40px;
  background: initial;
}
.header .box-site .login.user:hover .popper {
  display: block;
}
.header .box-site .login.user::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../images/avatar.png") no-repeat center left/100% 100%;
  border-radius: 50%;
  content: "";
}
.header .box-site .login.user .popper {
  position: absolute;
  top: 40px;
  left: 20px;
  z-index: 10;
  display: none;
  box-sizing: border-box;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: break-word;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
.header .box-site .login.user .popper .list {
  flex-wrap: wrap;
  align-items: center;
  padding: 0 5px;
}
.header .box-site .login.user .popper .list .item {
  box-sizing: border-box;
  padding: 5px 0;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.24s ease;
}
.header .box-site .login.user .popper .list .item:hover {
  color: #1d479c;
}
.header .box-site .login.user .popper .popper__arrow {
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: -1;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
}
.header .box-site .login.user .popper .popper__arrow::before {
  position: absolute;
  right: 0;
  z-index: -1;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-right-color: rgba(0, 0, 0, 0) !important;
  border-bottom-color: rgba(0, 0, 0, 0) !important;
  border-top-left-radius: 2px;
  transform: rotate(45deg);
  content: "";
}

.fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  width: 90px;
  height: 270px;
  margin: auto 0;
  background: #fff;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fixed .fixed-sider-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  color: #0f356c;
  font-size: 12px;
  cursor: pointer;
}

.fixed .fixed-sider-item:first-child {
  border-start-start-radius: 10px;
}

.fixed .fixed-sider-item:last-child {
  border-end-start-radius: 10px;
}

.fixed .fixed-sider-item:last-child::after {
  content: none;
}

.fixed .fixed-sider-item::after {
  position: absolute;
  right: 9px;
  bottom: 0;
  left: 9px;
  height: 1px;
  background: #eee;
  content: "";
}

.fixed .fixed-sider-item:hover {
  background-color: #0f356c;
}

.fixed .fixed-sider-item:hover::after {
  content: none;
}

.fixed .fixed-sider-item:hover .img.icon {
  display: none;
}

.fixed .fixed-sider-item:hover .img.icon-active {
  display: block;
}

.fixed .fixed-sider-item:hover .title {
  color: #fff;
}

.fixed .fixed-sider-item .img {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.fixed .fixed-sider-item:nth-child(1) .icon {
  display: block;
  background-image: url("../images/fixed1.png");
}

.fixed .fixed-sider-item:nth-child(1) .icon-active {
  display: none;
  background-image: url("../images/fixed1-active.png");
}

.fixed .fixed-sider-item:nth-child(2) .icon {
  display: block;
  background-image: url("../images/fixed2.png");
}

.fixed .fixed-sider-item:nth-child(2) .icon-active {
  display: none;
  background-image: url("../images/fixed2-active.png");
}

.fixed .fixed-sider-item:nth-child(3) .icon {
  display: block;
  background-image: url("../images/fixed3.png");
}

.fixed .fixed-sider-item:nth-child(3) .icon-active {
  display: none;
  background-image: url("../images/fixed3-active.png");
}

.pop-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.pop-box .pop-com {
  position: relative;
  width: 400px;
  background: #fff;
  border-radius: 17px;
}

.pop-box .pop-com.listen {
  height: 358px;
}

.pop-box .pop-com.code {
  height: 450px;
}

.pop-box .pop-com .close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 20px;
  height: 20px;
  padding: 10px;
  background: url("../images/pop-close1.png") no-repeat center;
  cursor: pointer;
}

.pop-box .pop-com .head {
  background: linear-gradient(180deg, rgba(22, 87, 218, 0.07), #fff);
}

.pop-box .pop-com .head .title {
  padding: 15px 30px;
  color: #1d479c;
  font-weight: 500;
  font-size: 24px;
}

.pop-box .pop-com .form-container {
  width: 340px;
  padding: 0 30px;
}

.pop-box .pop-com .form-container .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 340px;
  height: 50px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 50px;
  background-color: #fff;
  border: none !important;
  border-bottom: 1px solid #eee !important;
  border-radius: 0;
}

.pop-box .pop-com .form-container .form-item .label {
  width: 60px;
  margin-right: 15px;
  font-weight: bold;
  text-align: right;
}

.pop-box .pop-com .form-container .form-item .label span {
  margin-right: 4px;
  color: #ff4500;
}

.pop-box .pop-com .form-container .form-item input {
  flex: 1;
}

.pop-box .pop-com .form-container .form-code {
  display: flex;
  justify-content: space-between;
  width: 340px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.pop-box .pop-com .form-container .form-code .form-item {
  width: 200px;
  margin: 0;
  border: none !important;
}

.pop-box .pop-com .form-container .form-code .kaptcha-code {
  padding: 0;
  border: none;
}

.pop-box .pop-com .form-container .form-code .kaptcha-btn {
  width: 120px;
  height: 50px;
  color: #1d479c;
  font-weight: bold;
  font-size: 14px;
  line-height: 50px;
  background: transparent;
}

.pop-box .pop-com .form-container .form-code .kaptcha-btn:active {
  color: #153371;
}

.pop-box .pop-com .form-container .form-privacy {
  justify-content: center;
  margin-top: 25px;
  color: #999;
  font-size: 14px;
}

.pop-box .pop-com .form-container .form-privacy .privacy-validate {
  margin: 0 5px;
}

.pop-box .pop-com .form-container .form-privacy a {
  color: #666;
}

.pop-box .pop-com .form-container .submit {
  width: 100%;
  height: 42px;
  margin-top: 25px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 42px;
  background: #1d479c;
  border: none;
  border-radius: 21px;
}

.pop-box .pop-com .form-container .submit:active {
  background: #153371;
}

.pop-box .pop-com .code-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.pop-box .pop-com .code-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pop-box .pop-com .code-list .item .icon {
  width: 154px;
  height: 154px;
}

.pop-box .pop-com .code-list .item .name {
  color: #1d479c;
  font-size: 16px;
}

.login-pop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.24s ease;
}

.login-pop.show {
  z-index: 120;
  opacity: 1;
}

.login-pop .head {
  height: 46px;
  background: linear-gradient(to bottom, rgba(22, 87, 218, 0.07), rgb(255, 255, 255));
}

.login-pop .login {
  position: relative;
  width: 400px;
  background: #fff;
  border-radius: 17px;
}

.login-pop .login .close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 20px;
  height: 20px;
  padding: 10px;
  background: url("../images/pop-close2.png") no-repeat center;
  cursor: pointer;
}

.login-pop .login .login-com {
  margin: -15px 25px 0;
}

.login-pop .login .login-com .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}

.login-pop .login .login-com .title .name {
  color: #333;
  font-weight: bold;
  font-size: 21px;
}

.login-pop .login .login-com .title .login-chaneg {
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.login-pop .login .login-com .form {
  padding: 10px 0;
}

.login-pop .login .login-com .form .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 340px;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.login-pop .login .login-com .form .form-item .label {
  width: 60px;
  margin-right: 15px;
  font-weight: bold;
}

.login-pop .login .login-com .form .form-item .label span {
  margin-right: 4px;
  color: #ff4500;
}

.login-pop .login .login-com .form .form-item .form-input {
  flex: 1;
  width: 120px;
  height: 100%;
  border: none;
  outline: 0;
}

.login-pop .login .login-com .form .form-item .kaptcha-btn {
  padding: 0 20px;
  color: #1d479c;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.login-pop .login .login-com .form .form-item .kaptcha-btn.disabled {
  opacity: 0.5;
}

.login-pop .login .login-com .form .form-item .kaptcha-btn:active {
  color: #153371;
}

.login-pop .login .login-com .form .form-btn {
  width: 100%;
  height: 42px;
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 42px;
  text-align: center;
  background: #1d479c;
  border-radius: 21px;
  cursor: pointer;
}

.login-pop .login .login-com .form .form-btn:active {
  background: #153371;
}

.login-pop .login .login-com .privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.login-pop .login .login-com .privacy .txt1 {
  margin-left: 5px;
  color: #999;
}

.login-pop .login .login-com .privacy .txt2 {
  color: #666;
}

.login-pop .login .login-com .botom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: #999;
  font-size: 14px;
}

.login-pop .login .login-com .botom1 {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
  color: #666;
  font-size: 14px;
}

.login-pop .login .login-com .pass .form-item .label {
  width: 90px;
  margin-right: 5px;
}

.login-pop .code-com {
  position: relative;
  width: 400px;
  background: #fff;
  border-radius: 17px;
}

.login-pop .code-com .title {
  padding: 0;
  color: #1d479c;
  font-size: 21px;
  text-align: center;
}

.login-pop .code-com .list {
  padding: 20px 95px;
  color: #999;
  font-size: 14px;
  line-height: 30px;
  border-bottom: 1px solid #eee;
}

.login-pop .code-com .confirm {
  padding: 15px 0;
  color: #1d479c;
  font-size: 18px;
  text-align: center;
}

.login-pop .pointer {
  cursor: pointer;
}

.login-pop .login,
.login-pop .code-com {
  display: none;
}

.login-pop .login.show,
.login-pop .code-com.show {
  display: block;
}
