/* 全局变量定义 */
:root {
  /* 主题红色 */
  --text-color: #333333;
  --light-text: #666666;
  --bg-light: #f8f8f8;
  --white: #ffffff;
  --border-color: #eeeeee;
}
.fw600 {
  font-weight: 600;
}
.line {
  width: 50px;
  height: 5px;
  display: inline-block;
  background: var(--Secondary-color);
}
.juCenter {
  display: flex;
  justify-content: center;
}
.con {
  /* 标题通用样式 */
  /* 1. 首屏Banner区域 */
  /* 2. 联系门店区域 */
  /* 3. 服务介绍区域 */
  /* 4. 内容详情区域 */
}
.con .message-section .c_c {
  display: flex;
  justify-content: space-between;
}
.con .message-section .c_c .c_l {
  flex: 1;
}
.con .message-section .c_c .c_r {
  flex: 1;
}
.con .message-section .c_c .c_r li {
  border-top: 1px solid #eee;
}
.con .message-section .c_c .c_r li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.con .message-section .c_c .c_r .mes {
  color: #999;
}
.con .message-section .c_c .c_l .juCenter {
  justify-content: flex-start;
}
.con .section-title {
  text-align: center;
  font-weight: bold;
  color: var(--text-color);
  position: relative;
}
.con .btn {
  display: flex;
}
.con .btn a {
  min-width: 360px;
  margin-left: 0;
  border-color: var(--Secondary-color);
  background: var(--Secondary-color);
  color: #fff;
}
.con .banner-img {
  width: 100%;
}
.con .primary_btn .button_text:after {
  color: #fff;
}
.con .light-tex {
  margin-top: 10px;
}
.con .message-section {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.con .message-section-img {
  width: 100%;
  height: auto;
  display: block;
}
.con .store-section {
  background-color: var(--bg-light);
}
.con .store-section .line {
  margin-left: auto;
  margin-right: auto;
}
.con .store-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.con .store-list .primary_btn {
  margin-top: 15px;
  background: var(--Secondary-color);
  color: #fff;
  border-color: var(--Secondary-color);
}
.con .store-item {
  flex: 1;
  background-color: var(--white);
  padding: 80px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}
.con .store-item img{
   height: 200px;
   max-width: 100%;
   transition: all 0.3s linear;
}
.con .store-item:hover img{
     transform: translateY(-6px);

}
.con .store-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  fill: var(--Secondary-color);
}
.con .store-tel {
  color: var(--Secondary-color);
  margin-bottom: 15px;
}
.con .store-desc {
  color: #666;
}
.con .service-tab {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.con .service-tab-item {
  background: #f5f5f5;
  flex: 1;
  max-width: 33%;
  text-align: center;
  padding: 80px 20px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.con .service-tab-item:hover {
  color: var(--Secondary-color);
  border-bottom-color: var(--Secondary-color);
}
.con .service-tab-item img {
  height: 60px;
  margin-bottom: 10px;
filter: brightness(0);
transition: all 0.2s linear;
}
.con .service-tab-item:hover img{
    filter:none
}
.con .content-item {
  display: flex;
  align-items: center;
}
.con .content-item:first-child {
  margin-top: 0;
}
.con .content-item:nth-child(even) {
  flex-direction: row-reverse;
}
.con .content-img {
  width: 50%;
  overflow: hidden;
  
}
.con .content-img  img{
    width: 100%;
    height: auto;
  object-fit: cover;
  transition: all 0.4s linear;
}
.con .content-img:hover img{
  transform: scale(1.05);
}
.con .content-text {
  width: 50%;
  padding: 0 80px;
}
.con .content-title {
 
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-color);
}
.con .content-desc {
  color: #999;
  line-height: 2;
}
 
 
@media screen and (max-width: 1900px) {
	.con .btn a {
		min-width: 300px;
	}

	.con .store-item {
		padding: 4vw 20px;
	}

	.con .service-tab-item {
		padding: 4vw 20px;
	}

	.con .content-text {
		padding: 0 4vw;
	}
}

@media screen and (max-width: 1600px) {
	.con .btn a {
		min-width: 240px;
	}
	.con .store-item img{
	    height: 140px;
	}
	.con .service-tab-item img {
    height: 50px;
	}
}

@media screen and (max-width: 1200px) {
	.con .btn a {
		min-width: 200px;
	}
		.con .store-item img{
	    height: 120px;
	}
	.con .service-tab-item img {
    height: 40px;
	}
	    .con .store-item {
        padding: 4vw 10px;
    }
}

@media screen and (max-width: 768px) {
.con .store-item img{
	    height: 80px;
	}
	.con .message-section .c_c .c_r,
	.con .message-section .c_c .c_l {
		flex: 0 0 100%;
	}

	.con .message-section .c_c {
		flex-wrap: wrap;
	}

	.con .message-section .c_c .c_r {
		margin-top: 6vw;
	}

	.con .message-section .c_c .c_l h2 {
		text-align: center;
	}



	.con .message-section .c_c .c_l p {
		text-align: center;
	}

	.con .btn a {
		min-width: auto;
		margin: auto;
	}

	.con .message-section .c_c .c_l .juCenter {
		justify-content: center;
	}

	.con .store-item {
		flex: 0 0 100%;
		padding: 8vw 20px;
	}

	.con .store-list {
		flex-wrap: wrap;
	}

	.con .service-tab-item {
		padding: 8vw 20px;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.con .service-tab {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.con .content-item {
		flex-wrap: wrap;
	}

	.con .content-img {
		width: 100%;
	}

	.con .content-text {
		width: 100%;
		padding: 6vw 0 0 0;
	}
}
