* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
/*正常的未被访问过的链接*/
a:link {
  text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
  text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
  text-decoration: none;
}
/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
  text-decoration: none;
}
/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
  text-decoration: none;
}

body {
  font-size: 16px;
  font-family: -apple-system,Arial,Helvetica,Microsoft YaHei,Tohoma,sans-serif;
}
#web {
  display: none;
}

/* 导航 */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.nav .header {
  height: 1rem;
  padding: 0 3.6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
}
.nav .logo {
  width: 2.29rem;
  height: 0.63rem;
}
.nav .nav_list {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.nav_list .nav_item {
  width: 1.2rem;
  height: 0.32rem;
  font-size: 0.18rem;
  text-align: center;
  line-height: 0.32rem;
  color: #4e4e4e;
}
.nav_list .active {
  background-color: #0470fe;
  border-radius: 0.32rem;
  color: #ffffff;
}

/* 主体部分 */
.container {
  margin-top: 1rem;
}

/* banner */
.banner {
  width: 100%;
}

/* 首页公共标题 */
.module_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.module_title .title {
  color: #FFFFFF;
  font-size: 0.3rem;
}
.module_title .special_title {
  color: #252525;
  font-size: 0.0.3rem;
}
.module_title .line {
  width: 0.67rem;
  height: 0.04rem;
  background-color: #0470FE;
  margin-top: 0.1rem;
}
.module_title .special_line {
  width: 0.67rem;
  height: 0.04rem;
  background-color: #FFFFFF;
  margin-top: 0.1rem;
}

/* 首页  更多按钮 */
.more_btn {
  display: flex;
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid #D6D6D6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.more_btn span {
  color: #616161;
  font-size: 0.2rem;
}

/* 返回顶部 */
.to_top {
  position: fixed;
  display: none;
  right: 1.5rem;
  bottom: 2.2rem;
  width: 0.48rem;
  height: 0.48rem;
}

/* 底部 */
.footer {
  height: 1.8rem;
  padding: 0 3.6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #001B3F;
}
.footer .footer_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer .footer_left img {
  width: 2.29rem;
  height: 0.63rem;
  margin-bottom: 0.13rem;
}
.footer .footer_left{
  color: #CCCCCC;
  font-size: 0.14rem;
}
.footer .footer_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.footer .footer_right .footer_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.16rem;
}
.footer_right .footer_list .footer_item {
  width: 1.2rem;
  height: 0.32rem;
  color: #CCCCCC;
  font-size: 0.16rem;
  text-align: center;
  line-height: 0.32rem;
}
.footer_right p {
  color: rgba(255, 255, 255, 0.19);
  font-size: 0.14rem;
}

/* color line */
.color_line_blue {
  width: 3.4rem;
  height: 0.06rem;
  background-color: #0470FE;
}
.color_line_yellow {
  width: 3.4rem;
  height: 0.06rem;
  background-color: #FA9C00;
}

/* 咨询弹框 */
.consult_popup {
  position: fixed;
  z-index: 1;
  top: 5rem;
  right: 3.6rem;
  width: 3rem;
  height: 4.2rem;
  border-radius: 0.08rem;
  background-color: #F7F8FB;
}
.consult_popup .close {
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  top: 0.11rem;
  right: 0.11rem;
}
.consult_popup .top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 3.6rem;
  text-align: center;
}
.consult_popup .top  .text {
  color: #333333;
  font-size: 0.24rem;
  margin-top: 0.27rem;
  margin-bottom: 0.22rem;
}
.consult_popup .top  .Qr_code {
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.34rem;
}
.consult_popup .top .btn {
  width: 2.2rem;
  height: 0.5rem;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 0.5rem;
  background-color: #0470FE;
  color: #FFFFFF;
  font-size: 0.22rem;
  cursor: pointer;
}
.consult_popup .next {
  width: 100%;
  height: 0.6rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
  border-radius: 0 0 0.08rem 0.08rem;
}
.consult_popup .next img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.04rem;
}
.consult_popup .next .text {
  color: #333333;
}
.consult_popup .next .value {
  color: #000000;
}

/* 自助估价申请 */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.valuation_form, .apply_success {
  display: none;
  position: fixed;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 8.3rem;
  height: 4.73rem;
  background-image: url("https://qiniu.huitui666.com/huitui2/valuation_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.valuation_form .top, .apply_success .top {
  position: relative;
  width: 100%;
  height: 1.03rem;
  text-align: center;
  line-height: 1.03rem;
  color: #FFFFFF;
  font-size: 0.24rem;
}
.valuation_form .top .close, .apply_success .top .close {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  width: 0.18rem;
  height: 0.18rem;
}
.form {
  height: 2.82rem;
  background: #FFFFFF;
  padding: 0.59rem 0.3rem 0.29rem;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0 0 0.08rem 0.08rem;
  justify-content: space-between;
}
.form_item {
  max-height: 0.9rem;
}
.label {
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 0.16rem;
  margin-bottom: 0.08rem;
}
.label img{
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.02rem;
}
.input {
  width: 3.32rem;
  border: 1px solid #DADADA;
  border-radius: 0.04rem;
  padding: 0.09rem;
  display: flex;
  align-items: center;
}
.form_item input{
  width: 100%;
  height: 0.22rem;
  text-align: 0.22rem;
  border: 0;
  font-size: 0.16rem;
}
.form_item input:focus {
  outline:none;
  border:0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #BFBFBF;
  font-size:0.16rem; 
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color:#BFBFBF;
  font-size:0.16rem;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color:#BFBFBF;
  font-size:0.16rem;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color:#BFBFBF;
  font-size:0.16rem;
}

.get_code_btn {
  width: 1rem;
  text-align: center;
  color: #0470FE;
  font-size: 0.16rem;
  margin-left: 0.1rem;
  flex-shrink: 0;
  cursor: pointer;
}
.submit {
  width: 100%;
  height: 0.4rem;
  margin-top: 0.4rem;
}
.submit span {
  display: block;
  text-align: center;
  width: 100%;
  height: 0.4rem;
  line-height: 0.4rem;
  background: #0470FE;
  color: #FFF;
  font-size: 0.18rem;
  border-radius: 0.04rem;
  border: 0;
  cursor: pointer;
}
.submit input:focus {
  outline:none;
  border: 0;
}
.popup_active {
  display: block;
}
.btn_disabled {
  color: rgba(4, 112, 254, 0.5);
}

.apply_success .next{
  height: 2.82rem;
  background: #FFFFFF;
  padding: 0.59rem 0.3rem 0.29rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border-radius: 0 0 0.08rem 0.08rem;
  align-items: center;
  /* justify-content: center; */
}
.apply_success .check_circle {
  width: 0.8rem;
  height: 0.8rem;
  margin-bottom: 0.2rem;
}
.apply_success .success_text {
  color: #0470FE;
  font-size: 0.26rem;
  margin-bottom: 0.29rem;
}
.apply_success .success_tips {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.success_tips img {
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.05rem;
}
.success_tips span {
  color: #333333;
  font-size: 0.16rem;
}
.ok_btn {
  width: 100%;
  height: 0.4rem;
  background: #0470FE;
  color: #FFF;
  font-size: 0.18rem;
  text-align: center;
  line-height: 0.4rem;
  border-radius: 0.04rem;
  cursor: pointer;
}

.layui-laypage a:hover {
  color: #0470FE;
}