/* ======================================
【第一部分：全局公共通用 PC+手机共用】
====================================== */
/* 全局重置 */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: -apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Source Han Sans CN",Roboto,Arial,sans-serif;
    font-size:14px;
    line-height:1.7;
    color:#333;
}
/* 清除浮动工具 */
.clearfix::after{
    content:"";
    display:block;
    clear:both;
    height:0;
    visibility:hidden;
}
.fl{float:left;}
/* 通用居中容器 */
.wrap{
	max-width:1200px;
	margin:0 auto;
	padding:0 0px;
}
.wrap::after{
	display:table;
	clear:both;
	content:"";
}
/* 通用模块标题 */
.custom{
    color: #000;
    text-align: center;
    padding-top: 10px ;
}
.custom .custom-title{
    font-size: 18px;
    color: #000;
    font-weight: 600; 
    padding-bottom:10px;
}
/* 问答标记 */
.ask-mark,.ans-mark {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    font-size:14px;
}
.ask-mark {background-color: #e6212a;color: #fff;}
.ans-mark {background-color: #2196e6;color: #fff;}
/* 虚线分割线 */
.split-line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #eee;
	margin: 18px 0;
}
/* 回到顶部悬浮按钮 */
.fix-nav{
	display:none;
	position:fixed;
	left:100%;
	bottom:60px;
	width:100%;
	margin-left:-60px;
	z-index:999;
}
.fix-nav .fix-nav-wrap{
	background-color:rgba(0,70,132,0.6);
	width:32px;
	height:32px;
	text-align:center;
	border-radius:4px;
	cursor:pointer;
}
.fix-nav .i-totop{
	width:28px;
	display:block;
}

/* ======================================
【第二部分：顶部搜索栏 searchtop】
====================================== */
.searchtop{

    width:100%;
    overflow:hidden; 
	background-color: #ffffff;
}
.search-box {
 
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 200px;
  padding: 10px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 14px;
}
.search-txt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #fff;
}
.search-tit {
  color: #888888;
}
.search-link {
  color: #333333;
  text-decoration: none;
}
.search-link:hover {
  color: #0088f5;
}
.search-form {
  display: flex;
  height: 38px;
  background: #fff;
}
.search-input {
  width: 260px;
  border: 1px solid #cccccc;
  border-right: none;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  background: #ffffff;
}
.search-input:focus {
  border-color: #0088f5;
}
.search-btn {
  width: 64px;
  height: 100%;
  border: 1px solid #0088f5;
  background-color: #0088f5;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 0 0 9.5 3 6.5 6.5 0 0 0 3 9.5 6.5 6.5 0 0 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 26px;
}
.search-btn:hover {
  background-color: #0077dd;
  border-color: #0077dd;
}

/* ======================================
【第三部分：头部LOGO+电话+二维码 header-brand-wrap】
====================================== */
.header-brand-wrap {
  width: 100%;
  background:#ffffff;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px; 
}
/* 左侧Logo文字 */
.brand-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-left img {
  height: 70px;
  object-fit: contain;
}
.brand-name-text h1 {
  font-size: 48px;
  color: #222222;
  margin: 0;
  font-weight: normal;
}
.brand-name-text p {
  font-size: 17px;
  color: #444444;
  margin: 6px 0 0;
  letter-spacing: 1px;
}
/* 中间电话区域 */
.brand-middle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-middle img {
  height: 86px;
  object-fit: contain;
}
.tel-text-box p {
  margin: 0;
  font-size: 22px;
  color: #e6212a;
}
.tel-number {
  color:#e6212a!important;
  font-size: 22px !important;
  font-weight: bold;
}
/* 右侧二维码 */
.brand-right {
  text-align: center;
}
.brand-right img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.brand-right p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #000000;
}

/* ======================================
【第四部分：PC主导航 nav 下拉菜单】
====================================== */
.header{
    width: 100%;
    background-color: #0052aa;
}

.nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  background: #0052aa; width:1200px;
   
}
.nav .sub {
  position: relative;
  padding: 0 22px; border-right:1px solid rgba(255,255,255,0.35);
  
}
.nav .sub a {
  display: block;
  color: #fff;
  line-height: 50px;
  font-size: 16px;
  text-decoration: none;
}
/* 当前栏目高亮红色 */
.nav .sub.logo {
  background: #ffffff;
}
/* 当前栏目高亮红色 */
.nav .sub.current {
  background: #e6212a;
}
/* 下拉子菜单默认隐藏 */
.subNav {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #0052aa;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 160px;
  z-index:99;
}
.subNav li {
  padding: 0 16px;
  white-space: nowrap;
}
.subNav li a {
  line-height: 44px;
}
/* 仅电脑端hover显示下拉 */
@media screen and (min-width:769px) {
  .has-sub:hover .subNav {
    display: block;
  }
}
/* ======================================
【第五部分：首页轮播 banner】
====================================== */
/* ======================================
【第五部分：首页轮播 banner】
====================================== */
.topbanner{
    height: 300px;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.topbanner .banner,
.topbanner #wrapper,
.topbanner .fullwidthbanner-container,
.topbanner .fullwidthbanner,
.topbanner .fullwidthbanner ul,
.topbanner .fullwidthbanner li {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.topbanner .fullwidthbanner li img {
    width: 100%;
    height: 300px;
    /* 等比缩放，居中裁切，车辆文字不会拉伸变形 */
    object-fit: cover;
    object-position: center center;
    display: block;
}


/* ======================================
【第六部分：高价收购二手车 fuwu】
====================================== */
.fuwu{
    width:100%;
    overflow:hidden; margin-top:10px; margin-bottom:10px;
}
.fuwu-wrap{
    max-width:1200px;
    margin:0 auto;
    padding:0 1px; 
}
.fuwu .clearfix{
    display:flex;
    flex-wrap:wrap;
    gap:2%; margin-top:20px;
}
.fuwu .fuwu-list{
    flex:1;
    min-width:200px;
	min-height:100px;
    height:auto;
    overflow:hidden;
	background-color:#ffffff;
}
.fuwu .item{
    height:50px;
    width:50px;
    overflow:hidden;
    margin:15px auto 10px;
    display:flex;             
    justify-content:center;    
    align-items:center; 
}
.fuwu .item img{
    width:30px;
    height:30px;
    object-fit:contain;
}
.fuwu .fuwu-title{
    font-weight:600;
    color:#666;
    text-align:center;
    margin:0 0 8px;
    font-size:18px;
}
.fuwu .fuwu-content{
    color:#666;
    text-align:center;
    margin:10px;
	padding:10px;
    font-size:14px;
    line-height:1.6;
    font-weight:normal;
}
.fuwu .fuwu-content p{
    margin:0;
    padding:0;
}
.fuwu p{
	color:#666;
	padding:0 5px;
	margin:0;
	font-size:14px;
}
.fuwu a{
    display:block;
    width:50%;
    padding:5px 0;
    border:2px solid #004684;
    text-align:center;
    margin:10px auto;
    font-weight:600;
	font-size:14px;
}
.fuwu .fuwu-list:hover a{
    color:#fff;
    background-color:#004684;
    transition:all .5s ease-in-out 0s;
}

/* ======================================
【第七部分：公司简介 about-module】
====================================== */
.about-module {
    padding: 5px 0;background-color: #f8f8f8;
}
.about-module-wrap {
    width: 1200px;
    margin: 0 auto; 
	
}
.about-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.about-text-box {
    flex: 1; padding:10px;
}
.about-title {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
    text-align: center;
}
.about-text-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}
.about-img-box {
    flex: 1;
}
.about-img-box img {
 min-height:300px;
    height: auto;
    display: block;
}

/* ======================================
【第八部分：收购流程 flow-module】
====================================== */
.flow-module{
	padding:5px 0;
	background-color:#ffffff;
	margin-top:5px;
}
.flow-row{
	display:grid;
	grid-template-columns: repeat(5, 1fr);
	gap:35px 20px;
	margin-top:10px;
}
.flow-item{
	display:flex;
	gap:16px;
	align-items:flex-start;
}
.flow-num{
	width:50px;
	height:50px;
	flex-shrink:0;
	border-radius:50%;
	background:#f8f8f8;
	color:#004684;  
	font-size:32px;
	font-weight:bold;
	display:flex;
	align-items:center;
	justify-content:center;
}
.flow-info h4{
	font-size:18px;
	color:#222;
	margin:2px 0 2px;
	font-weight:bold;
}
.flow-info p{
	font-size:14px;
	color:#666;
	line-height:1.7;
	margin:0;
}

/* ======================================
【第九部分：二手车收购类型 service】
====================================== */
.service{
	width:100%;
	overflow:hidden;
	padding-top:0;
	padding-bottom:5px;
	margin-top:5px;
}
.service .service-wrap{
	max-width:1200px;
	margin:0 auto;
	padding:0;
}
.service .custom{
	width:100%;
	margin-bottom:5px;
	text-align:center;
}
.service_item_one ul{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}
.service_item_one li{
	flex:0 0 calc(25% - 15px);
	min-width:260px;
	height:auto;
	overflow:hidden;
	background:#fff;
	transition:all .3s linear;
	cursor:pointer;
	position:relative;
	border-bottom:1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.service_item_one li:hover{
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
	background-color:#eef1f5;
}
.service_img{
	width:100%;
	overflow:hidden;
	margin:0;
	padding:0;
}
.service_img img{
	width: 80%;
	height: auto;
	display:block;
	vertical-align:bottom;
	margin:10px auto;border:1px solid #eee;
}
.service_item_one .content{
	width:100%;
	text-align:center;
	color:#666;
	margin:0;
	padding:0;
}
.service_item_one .content .content_tit{
	color:#565656;
	margin:0;
	padding:2px 0;
	font-weight:600;
	font-size:16px;
}
.service_item_one li:hover .content .content_tit{
	color:#004684;
}

/* ======================================
【第十部分：行业优势 advantage-banner-wrap】
====================================== */
.advantage-banner-wrap{
    width: 100%;
    padding:10px 0;
    margin-top: 10px;
}
.advantage-banner-container{
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.advantage-banner-title{
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
	padding-top:15px;
}
.advantage-banner-desc{
    font-size: 14px;
    color: #000000;
    line-height:1.5;
    margin: 0 auto 20px;
}
.advantage-banner-orange-line{
    width: 100%;
    height: 1px;
    background-color: #004684;
    margin: 0 auto 20px;
}
.advantage-banner-orange-line::after{
    display: none;
}
.advantage-banner-list{
   display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.advantage-banner-item{
    position: relative;
    min-width:80px;
	min-height:80px;
    padding: 10px 10px;
    text-align: center;
	background-color:#002C52;
	margin-bottom:40px;
    overflow:visible;
    cursor: pointer;
    transition: background 0.2s;
}
.advantage-banner-item:hover{
    background-color:#004684;
}
.advantage-banner-item-icon{
    width: 40px;
    height: 40px;
    margin: 0 auto;
    overflow:hidden;
	color:#fff;
    font-size:24px;
    line-height:40px;
}
.advantage-banner-item-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.advantage-banner-item-text{
    font-size: 14px;
    color: #ffffff;
}
.tips-box{
    position: absolute;
    left: 50%;
    top: 105%;
    transform: translateX(-50%);
    width: 240px;
    padding: 12px 16px;
    background: #fff;
    color: #333;
    font-size:14px;
    line-height:1.8;
    border-radius:4px;

    box-shadow: 0 3px 14px rgba(0,0,0,0.18);
    display: none;
    z-index:999;
}
.tips-box::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:100%;
    transform: translateX(-50%);
    border:6px solid transparent;
    border-bottom-color:#fff;
}
.advantage-banner-item:hover .tips-box{
    display:block;
}

/* ======================================
【第十一部分：新闻动态 news-new-wrap】
====================================== */
.news-new-wrap {
    padding: 10px 0;
    background: #f8f8f8;
}
.news-new-title {
    position: relative;
    text-align: center;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 10px 0;
}
.news-new-title p {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.news-new-title p a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}
.news-new-title p a:hover {
    color: #004684;
}
.news-new-container {
    display: flex;
    gap: 10px;
}
.news-new-left {
    width: 38%;
    background: #fff;
}
.news-new-img {
    display: flex;
    justify-content: center;
}
.news-new-img img { min-width:300px;
    height: auto;
    display: block; padding-top:10px;
}
.news-new-about-title {
font-size: 18px;
    text-align: center;
    color: #222;
    margin: 12px 0 8px;
    line-height: 1.4; 
}
.news-new-about-content {
 font-size: 14px;
    text-align: left;
    color: #666;
    line-height: 1.6;
	 padding-left:30px;
	padding-right:30px;
 }
.news-new-right {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-new-right-item {
    background: #fff;
    padding: 20px;
    display: flex;
    gap: 15px;
}
.news-new-right-day {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: #222;
}
.news-new-right-ym {
    font-size: 14px;
    color: #777;
    display: block;
    margin-top: 4px;
}
.news-new-right-text {
    flex: 1;
}
.news-new-right-title {
    font-size: 18px;
    color: #222;
    display: block;
    margin-bottom: 6px;
}
.news-new-right-title:hover {
    color: #004684;
}
.news-new-right-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ======================================
【第十二部分：常见问题 qa-wrap】
====================================== */
.qa-wrap {
    padding: 10px 0;
    width: 100%;
}
.qa-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.red-tag {
    background-color: #e6212a;
    color: #fff;
    padding: 6px 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
}
.more-btn {
    border: 1px solid #ccc;
    padding: 3px 10px;
    font-size: 12px;
    color: #666;
}
.more-btn:hover {
    background: #004684;
    color: #fff;
    border-color: #004684;
    transition: 0.3s;
}
.qa-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.qa-item-row {
    padding-bottom: 16px;
    margin-bottom: 0;
    background: #fff;
    padding: 16px;
}
.qa-title {
    font-size: 18px;
    color: #222;
}
.qa-title:hover {
    color: #004684;
}
.qa-answer {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 14px;
    color: #666;
    margin-top:6px;
}
.ans-text {
    font-size:14px;
    line-height:1.6;
}

/* ======================================
【底部 footer PC端样式】
====================================== */
.footer{
	width:100%;
	background-color:#222222;
	padding:5px 0 0;
	color:#ffffff;
}
.footer .wrap{
	max-width:1200px;
	margin:0 auto;
	padding:0 5px;
}
.footer-box{
	width:100%;
	overflow:hidden;
}
/* 底部栏目整体弹性横向排列 */
.footer-nav{
	width:100%;
	display:flex;
}
/* 每个栏目盒子均分宽度 */
.footer-nav .footer-col{
	flex:1;
	padding:0 32px;
	border-right:1px solid #333333;
}
/* 最后一列取消右侧竖线边框 */
.footer-nav .footer-col:last-child{
	border-right:none;
}
/* 栏目标题 固定18px */
.footer-nav .footer-col dt{
	font-size:18px;
	color:#ffffff;
	margin-bottom:10px;
	font-weight:normal;
}
.footer-nav .footer-col dd{
	padding:4px 0;
}
/* 栏目内链接文字 固定14px */
.footer-nav .footer-col dd a{
	color:#bbbbbb;
	font-size:14px;
	text-decoration:none;
}
.footer-nav .footer-col dd a:hover{
	color:#ffdd00;
}
/* 联系电话加粗放大 */
.footer-nav .contact .tel{
	font-size:22px;
	color:#ffffff;
	font-weight:bold;
	line-height:1.2;
	margin:8px 0;
}
/* 邮箱字号14px */
.footer-nav .contact .email{
	font-size:14px;
	color:#bbbbbb;
}
/* 版权栏flex横向排列+居中 */
.copyright{
	display:flex;
	gap:30px;
	margin:5px auto;
	padding:5px;
	border-top:1px solid #333333;
	font-size:16px;
	color:#ffffff;
	justify-content: center;
}

/* PC端隐藏手机底部悬浮导航 */
.mobile-bottom-nav {
    display: none;
}

/* ======================================
【响应式媒体查询 顺序：大屏平板→小平板→手机】
====================================== */
/* 3.1 992 ~ 1199 大屏平板 */
@media screen and (min-width:992px) and (max-width:1199px){
	/* 旧版顶部冗余标签兼容 */
	.left-box,nav,.search,.social_nav{display:none;}
	.logo{margin-top:10px;margin-bottom:10px;float:none;}
	.logo img{width:208px;height:40px;}
	.meun{top:40px;display:block;}
	.meunBox,.meunCont{display:block;}
	.meunCont dl{border-top:1px solid #e5e5e5;padding:5px 0;}
	.meunCont dt{font-size:16px;}
	.meunCont dt a{color:#333;font-size:16px;}
	.meunCont dd{display:none;}
	.service_item_one{width:740px;overflow:hidden;}
	.service_item_one li{width:230.66px;margin:20px 8px 10px;}
	.service_img{width:230.66px;height:165px;}
	.service_img img{width:230.66px;height:165px;}
	.flow-row{grid-template-columns: repeat(3, 1fr);}
	.about-card-row{grid-template-columns: repeat(2, 1fr);}
	.about-module-wrap {width: 94% !important;}
	.about-row {gap: 22px !important;}
	.wrap {width: 94% !important;}
    .page-footer-nav {gap: 20px !important;}
}

/* 3.2 768 ~ 991 小平板 */
@media screen and (min-width:768px) and (max-width:991px){
	.wrap{width:740px;}
	.left-box, nav, .search, .right-box .phone,.right-box .email,.top-box{display:none;}
	.logo{padding-top:10px;padding-bottom:10px;float:none;}
	.logo img{width:208px;height:40px;}
	.meun{top:10px;display:block;}
	.meunBox,.meunCont{display:block;}
	.meunCont dl{border-top:1px solid #e5e5e5;padding:5px 0;}
	.meunCont dt{font-size:16px;}
	.meunCont dt a{color:#333;font-size:16px;}
	.meunCont dd{display:none;}
	.fuwu .fuwu-list{width:46%;padding:2%;}
	.fuwu .item{height:80px;width:80px;}
	.fuwu a{width:80%;}
	.service_item_one li{flex:0 0 calc(50% - 10px);margin-bottom:30px;}
	.flow-row{grid-template-columns: repeat(3, 1fr);}
	.about-card-row{grid-template-columns: repeat(2, 1fr);}
	.news-qa-box {flex-direction: column;gap: 20px;}
	.news-left, .qa-right {width: 100%;}
}

/* 4 手机端 320 ~ 767px */
@media screen and (min-width:320px) and (max-width:767px){
	body{padding-bottom: 60px !important;}
	.wrap{width: 100%;padding: 0 12px;box-sizing: border-box;}
	/* 顶部栏隐藏冗余旧标签 */
	.left-box,.search,.right-box .email{display:none;}
	.top-box{height:auto;padding:6px 0;}
	.right-box{float:none;text-align:center;}
	.right-box .phone{font-size:18px;padding-right:0;line-height:2;}
	.logo{padding-top:10px;padding-bottom:10px;float:none;text-align:center;}
	.logo img{width:208px;height:40px;}
	 
	/* 手机隐藏头部logo电话栏 */
	.header-container {display:none;}
	/* 搜索适配 */
   .search-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .search-form {
    width: 100%;
  }
  .search-input {
    width: 100%;
  }
 .search-txt { display:none;}
  /* 行业优势手机适配 */
    .advantage-banner-container{width: 92%;}
    .advantage-banner-orange-line{width: 100%;margin: 0 auto 10px;}
    .advantage-banner-desc{margin: 0 auto 0px;}
    .advantage-banner-list{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        row-gap: 16px;
    }
    .advantage-banner-item{
        min-width:0;
        min-height:30px;
        margin-bottom:2px;
    }
    .tips-box{width:170px;}
	.advantage-banner-item-icon{
        width: 20px;
        height: 25px;
        line-height:24px;
    }
    .advantage-banner-wrap{padding:0px 0;margin-top: 0px;}
	/* 收购类型手机两列 */
	.service .service-wrap{
		width:100%;
		padding:0 8px;
	}
	.service_item_one ul{
		display:flex;
		flex-wrap:wrap;
		gap:12px;
		padding:0;
	}
	.service_item_one li{
		float:none;
		flex:0 0 calc(50% - 6px);
		min-width:0;
		margin-bottom:5px;
		border-radius:3px;
	}
	.service_img img{
		margin:10px auto 5px;
	}
	.content_tit{
		font-size:14px;
		padding:1px 0;
	}
	/* 收购流程单列 */
	.flow-row{display: grid !important;grid-template-columns: 1fr !important;gap: 12px;padding: 0 10px !important;}
	.flow-item{display: flex !important;gap:8px !important;}
	.flow-num{width:40px !important;height:40px !important;font-size:22px !important;}
	.flow-info h4{font-size:18px !important;margin:0 0 3px 0 !important;}
	.flow-info p{font-size:14px !important;line-height:1.5 !important;}
	/* 公司简介上下堆叠 */
.about-module {
    padding: 5px 0;
    background-color:#ffffff;
}
.about-module-wrap {
    width: 100% !important;
    padding: 0 5px !important;
}
.about-row {
    flex-direction: column !important;
    gap: 5px;
}
.about-text-box,.about-img-box {
    width: 90% !important;
	margin:0px auto;
}
.about-title {
    font-size: 18px !important;
    margin: 0 0 6px 0 !important;
}
.about-img img {
    min-height: unset !important;
}
	/* 高价收车两栏整体布局样式 */
.fuwu .clearfix {
    flex-wrap: wrap !important;    /* 弹性布局自动换行 */
    gap:3px !important;           /* 子元素之间间距3px */
    padding: 0 0px !important;     /* 整体左右内边距2px */
}

/* 收车列表项 实现左右两栏均分 */
.fuwu .fuwu-list {
    flex: 0 0 calc(50% - 6px) !important;  /* 宽度占比一半，减去间距适配gap */
    min-width: 0 !important;               /* 取消最小宽度限制，适配小屏幕压缩 */
    margin-bottom: 2px;                    /* 列表下方外边距8px */
}

/* 列表内图标外容器尺寸 */
.fuwu .item { 

/* display:none;*/
    width: 30px;
    height: 30px;
	 
    margin: 0px auto !important;    /* 上下外边距1px，水平居中 */
}

/* 图标图片大小限制 */
.fuwu .item img {
    width: 28px;
    height: 28px;
}

/* 板块标题样式 统一字号18px */
.fuwu .fuwu-title {
    font-size: 18px !important;     /* 标题固定字号18px */
    margin: 0 0 0px 0 !important;   /* 仅保留下方1px外边距，其余清零 */ 
}

/* 板块正文内容 统一字号14px */
.fuwu .fuwu-content { 
    font-size: 14px !important;     /* 内容固定字号14px */
    line-height: 1.35 !important;  /* 行高1.35，文字疏密适中 */
    margin-bottom: 0 !important;    /* 清除底部外边距 */
    padding-bottom: 0 !important;   /* 清除底部内边距 */ 
}
	/* 问答单列 */
	.qa-list{grid-template-columns: 1fr !important;gap: 16px !important;}
    .qa-item-row{padding: 12px !important;}
    .qa-title{font-size: 18px !important;}
    .ans-text{font-size: 14px !important;}
	/* 新闻上下堆叠 */
    .news-new-wrap {padding: 0px 0;}
    .news-new-title {font-size: 24px;margin-bottom: 0px;}
	.news-new-title p {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;}

	.news-new-img{width: 88%; margin:0px auto;display: block;}
    .news-new-container {flex-direction: column !important;gap: 5px;}
    .news-new-left, .news-new-right {width: 98% !important;}
    .news-new-day {font-size: 42px !important;}
    .news-new-right-day {font-size: 36px !important;}
    .news-new-title-text, .news-new-right-title {font-size: 18px !important;word-wrap: break-word;}
    .news-new-desc, .news-new-right-desc {font-size: 14px !important;line-height: 1.5;}
	/* 底部隐藏，手机底部固定导航 */
 

.footer {
	   display: none;
        padding: 15px 0 0;
    }
    .footer .wrap {
        width: 100%;
        padding: 0 15px;
    }

    /* 底部导航横向改纵向，竖排堆叠 */
    .footer-nav {
        flex-direction: column;
    }

    /* 每个栏目取消均分宽度，100%铺满；去掉右边框，改为下边框分隔 */
    .footer-nav .footer-col {
        flex: none;
        width: 100%;
        padding: 15px 0;
        border-right: none;
        border-bottom: 1px solid #333;
    }

    /* 最后一列删掉下边框 */
    .footer-nav .footer-col:last-child {
        border-bottom: none;
    }

    /* 标题保持固定18px，间距微调适配手机 */
    .footer-nav .footer-col dt {
        font-size: 18px;
        margin-bottom: 8px;
    }

    /* 链接正文固定14px */
    .footer-nav .footer-col dd a {
        font-size: 14px;
    }
    .footer-nav .footer-col dd {
        padding: 3px 0;
    }

    /* 联系方式适配手机 */
    .footer-nav .contact .tel {
        font-size: 20px;
        margin: 6px 0;
    }
    .footer-nav .contact .email {
        font-size: 14px;
    }

    /* 版权区域：横向放不下改成自动换行，间距缩小，居中不变 */
    .copyright {
        flex-wrap: wrap;
        gap: 8px 16px;
        font-size: 14px;
        padding: 12px 8px;
        text-align: center;
        line-height: 1.6;
    }


.mobile-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #3d3d3d;
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1;
    line-height:2.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 2px;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.mobile-bottom-nav .nav-item:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #ffffff;
}
.mobile-bottom-nav i {display: none;}
.mobile-bottom-nav span {
    font-size: 14px;
    font-weight: bold;
}
    .top-box {height: auto;padding: 4px 0;}
    .left-box,.right-box {float: none;width: 100%;}
    .left-box .item {font-size: 13px;line-height: 26px;}
    .right-box {text-align: left;}
    .right-box .phone {font-size: 20px;line-height: 26px;}
	
	
	 .header .nav-wrap {
        width: 100%;
        padding: 0;
        flex-wrap: wrap;
    }
    .logo-box {
        padding: 8px 15px;
    }
    /* 菜单改为竖排，自动换行 */
    .nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
    }
    /* 取消右侧竖边框，改成底部分隔线 */
    .nav .sub {
        width: 25%;
        padding: 6px 5px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.25);
        text-align: center;
    }
    /* 文字允许换行，取消强制不换行 */
    .nav .sub a {
        font-size: 13px;
        line-height: 1.4;
        white-space: normal;
    }
    /* 手机屏蔽下拉菜单 */
    .has-sub .subNav {
        display: none !important;
    }
 
    .topbanner,
    .topbanner .banner,
    .topbanner #wrapper,
    .topbanner .fullwidthbanner-container,
    .topbanner .fullwidthbanner,
    .topbanner .fullwidthbanner ul,
    .topbanner .fullwidthbanner li,
    .topbanner .fullwidthbanner li img{
        height: 120px;
    }
}
	
	
}