/* aboutUs 移动端适配样式 */

@media (max-width: 767px) {
	/* 顶部横幅区域 */
	.banner {
		background-image: url('/images/about/6.png');
		padding: 110px 0 80px;
		position: relative;
		overflow: hidden;
		background-size: cover;
		background-position: center;
	}

	.banner-content {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0 auto;
		padding: 0 15px;
	}

	.banner-left {
		width: 100%;
		text-align: center;
		margin-bottom: 40px;
	}

	.banner-left h1 {
		font-size: 32px;
		font-weight: 700;
		color: #333;
		margin-bottom: 15px;
	}

	.banner-subtitle {
		font-size: 16px;
		color: #666;
		margin-bottom: 15px;
		line-height: 1.6;
	}

	.banner-description {
		font-size: 13px;
		color: #999;
		margin-bottom: 30px;
		line-height: 1.6;
	}

	.banner-buttons {
		margin-top: 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.btn-primary {
		background-color: #ff4d4f;
		border: none;
		padding: 12px 30px;
		font-size: 16px;
		font-weight: 600;
		border-radius: 4px;
		transition: all 0.3s ease;
		color: #fff;
		width: 200px;
		text-align: center;
	}

	.btn-primary:hover {
		background-color: #ff7875;
		transform: translateY(-2px);
	}

	.btn-secondary {
		background-color: transparent;
		border: 2px solid #ff4d4f;
		color: #ff4d4f;
		padding: 10px 28px;
		font-size: 16px;
		font-weight: 600;
		border-radius: 4px;
		transition: all 0.3s ease;
		width: 200px;
		text-align: center;
	}

	.btn-secondary:hover {
		background-color: #ff4d4f;
		color: #fff;
		transform: translateY(-2px);
	}

	.banner-right {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.stat-card {
		background-color: #fff;
		padding: 12px 20px;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
		position: relative;
		height: auto;
		margin-top: 0;
	}

	.stat-card.red-card {
		background-color: #ff4d4f;
		color: #fff;
	}

	.stat-number {
		font-size: 24px;
		font-weight: 700;
		margin-bottom: 5px;
	}

	.stat-label {
		font-size: 14px;
		line-height: 1.4;
		font-weight: 700;
		margin-bottom: 5px;
	}

	.stat-label-dec {
		color: #EF061C;
		font-size: 11px;
	}

	.stat-card:nth-of-type(4) .stat-label-dec {
		color: #FFF;
	}

	.stat-img {
		width: 50px;
		height: 50px;
		position: absolute;
		right: 8px;
		bottom: 8px;
	}

	/* 关于摩耶部分 */
	.about-section {
		position: relative;
		margin: 0 auto;
		padding: 0 10px;
	}

	.section-title {
		text-align: center;
		margin-bottom: 60px;
	}

	.section-title h2 {
		font-size: 28px;
		font-weight: 700;
		color: #333;
		margin-bottom: 15px;
	}

	.section-title p {
		font-size: 14px;
		color: #666;
		margin: 0 auto;
	}

	/* 关于摩耶新样式 */
	.about-header {
		position: relative;
		z-index: 1;
		text-align: center;
		margin-bottom: 40px;
	}

	.about-header h1 {
		font-size: 28px;
		font-weight: 700;
		color: #333;
		margin-bottom: 15px;
	}

	.about-subtitle {
		font-size: 14px;
		color: #666;
		margin-bottom: 20px;
	}

	.about-header h2 {
		font-size: 20px;
		font-weight: 600;
		color: #333;
		margin-bottom: 15px;
	}

	.about-description {
		font-size: 13px;
		color: #666;
		line-height: 1.6;
		max-width: 100%;
		margin: 0 auto;
	}

	/* 服务容器 */
	.services-container {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin: 30px 0;
	}

	/* 服务列表 */
	.service-list {
		width: 100%;
		display: flex;
		justify-content: space-between;
		gap: 10px;
	}

	.service-item {
		display: flex;
		align-items: center;
		background-color: #FFF;
		height: 100px;
		padding: 5px 5px;
		flex:1;
		border-radius: 8px;
		transition: all 0.3s ease;
		flex-direction: column;

	}
	.service-active-left {
		background-color: #FFEEF1;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.service-active-left .service-number {
		background-color: #EF071F;
		color: #FFF;
	}

	.service-active-left .service-arrow {
		background-image: url('/images/about/7.png');
	}

	.service-active-right {
		background-color: #FFEEF1;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.service-active-right .service-number {
		background-color: #EF071F;
		color: #FFF;
	}

	.service-active-right .service-arrow-right {
		background-image: url('/images/about/10.png');
	}
	


	.service-item:hover {
		background-color: #FFEEF1;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.service-item:hover .service-number {
		background-color: #EF071F;
		color: #FFF;
	}

	.service-item:hover .service-arrow {
		background-image: url('/images/about/7.png');
	}

	.service-item:hover .service-arrow-right {
		background-image: url('/images/about/10.png');
	}

	.service-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.service-number {
		font-size: 14px;
		font-weight: 600;
		color: #ff4d4f;
		width: 40px;
		height: 30px;
		text-align: center;
		line-height: 30px;
		background: #FFEEF1;
		border-radius: 5px;
	}

	.service-info {
	}

	.service-info h4 {
		font-size: 12px;
		font-weight: 600;
		color: #333;
		margin-bottom: 6px;
		margin-top: 6px;
	}

	.service-info p {
        display:none;
		font-size: 11px;
		color: #999;
		margin-bottom: 0;
	}

	.service-arrow {
		width: 22px;
		height: 22px;
		background-image: url('/images/about/9.png');
		background-size: 100% 100%;
		margin-top: 5px;
		transform: rotate(90deg);
	}

	.service-arrow-right {
		width: 22px;
		height: 22px;
		background-image: url('/images/about/8.png');
		background-size: 100% 100%;
	}
	.right-list .service-arrow-right{
		transform: rotate(90deg);
	}
	.right-list .service-item {
		flex-direction: column-reverse;
	}

	.right-list .service-number {
		margin-right: 0;
	}

	/* 主要服务卡片 */
	.main-services {
		width: 100%;
		display: flex;
		gap: 10px;
		align-items: center;
		justify-content: space-between;
	}

	.dec-item-wrap {
		padding: 8px 0;
		box-sizing: border-box;
		background-image: url('/images/news/17.png');
		background-size: 280px 420px;
		background-position: 0px 0px;
		width: 49%;
		height: 360px;
		transition: all 0.3s ease;
		border: 2px solid #FFF;
		border-radius: 10px;
	}

	.dec-item-wrap:hover {
		transform: scale(1.05);
	}

	.dec-item {
		position: relative;
		display: flex;
		flex-direction: column;
		border-radius: 38px;
		align-items: center;
	}

	.dec-image {
		width: 160px;
		height: 160px;
		border-radius: 10px;
	}

	.dec-name {
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 20px;
	}

	.dec-name-title {
		display: flex;
		flex-direction: column;
		margin-left: 10px;
	}

	.dec-text-itle {
		font-weight: 600;
		font-size: 14px;
	}

	.dec-text {
		color: #777777;
		font-size: 10px;
	}

	.dec-time {
		margin-right: 10px;
		display: flex;
		align-items: center;
	}

	.dec-time-icon {
		width: 13px;
		height: 13px;
	}

	.dec-time-length {
		color: #777777;
		font-size: 11px;
		margin-left: 2px;
	}

	.dec-price-num {
		color: #FF3F22;
	}

	.dec-price-after {
		font-size: 11px;
		margin-left: 10px;
		font-weight: 800;
	}

	.dec-price-info {
		font-size: 16px;
		font-weight: 800;
	}

	.dec-price-hua {
		margin-left: 10px;
		color: #777777;
		text-decoration: line-through;
		font-size: 12px;
	}

	.dec-price {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		width: 100%;
		margin-top: 12px;
	}

	.dec-btn {
		width: 130px;
		height: 40px;
		border-radius: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #FFF;
		font-size: 16px;
		background-color: #FB9548;
		line-height: 40px;
		margin-top: 15px;
		overflow: hidden;
		position: relative;
		transition: all 1000ms;
		cursor: pointer;
	}

	.dec-btn:hover {
		color: #FFF;
		transform: scale(1.05);
		outline: 2px solid #FFFFFF;
		box-shadow: 4px 5px 17px -4px #FFFFFF;
	}

	.dec-btn::before {
		content: "";
		position: absolute;
		left: -50px;
		top: 0;
		width: 0;
		height: 100%;
		background-color: #F53D50;
		transform: skewX(45deg);
		z-index: -1;
		transition: width 500ms;
	}

	.dec-btn:hover::before {
		width: 250%;
	}

	/* 优势网格 */
	.advantages-grid {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		gap: 15px;
		margin-top: 20px;
	}

	.advantage-card {
		background-color: rgba(255, 255, 255, 0.8);
		padding: 20px 15px;
		border-radius: 8px;
		transition: all 0.3s ease;
		display: flex;
		height: auto;
		align-items: center;
	}

	.advantage-card .advantage-icon {
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: #fff;
	}

	.advantage-icon-content {
		margin-left: 12px;
		flex: 1;
	}

	.advantage-icon-content-title1 {
		font-size: 14px;
		font-weight: 600;
		color: #333;
		margin-bottom: 10px;
	}

	.advantage-icon-content-title2 {
		font-size: 12px;
		color: #666;
		line-height: 1.6;
	}

	/* 摩耶故事部分 */
	.story-section {
		padding: 100px 0 0;
	}

	.story-content {
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding: 0 15px;
	}

	.story-item {
		padding: 20px;
		border-radius: 8px;
		transition: all 0.3s ease;
		margin-bottom: 0;
	}

	.story-item-wrap {
		display: flex;
		align-items: center;
	}

	.story-item:hover {
		transform: translateY(-10px);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.story-icon {
		width: 35px;
		height: 35px;
	}

	.story-title {
		font-size: 20px;
		font-weight: 600;
		color: #333;
		margin-left: 15px;
	}

	.story-content-text {
		margin-top: 12px;
		font-size: 13px;
		color: #666;
		line-height: 1.6;
	}

	/* 摩耶足迹部分 */
	.footprint-section {
		padding: 100px 0;
	}

	.footprint-content {
		margin: 0 auto;
		position: relative;
		padding: 0 15px;
		background-image: none;
	}

	.timeline {
		position: relative;
	}

	.timeline::before {
		content: '';
		position: absolute;
		top: 0;
		left: 23	px;
		width: 4px;
		height: 100%;
		background-color: #F45362;
	}

	.timeline-item {
		position: relative;
		margin-bottom: 40px;
		padding-left: 60px;
	}

	.timeline-item:last-of-type .timeline-content {
		background-color: #EF061C;
		box-shadow: 2px 2px 10px 1px #ef860d;
	}

	.timeline-item:last-of-type .timeline-content h3,
	.timeline-item:last-of-type .timeline-content p {
		color: #FFF !important;
	}

	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even) {
		left: 0;
		text-align: left;
	}

	.timeline-item::before {
		content: '';
		position: absolute;
		top: 20px;
		width: 16px;
		height: 16px;
		background-color: #FFF;
		border-radius: 50%;
		border: 3px solid #F45362;
		left: 12px;
	}

	.timeline-item:nth-child(odd)::before,
	.timeline-item:nth-child(even)::before {
		right: auto;
		left: 14px;
	}

	.timeline-item:nth-child(odd) .timeline-content {
		margin-left: 0;
	}

	.timeline-content {
		border: 1px solid #EF061C;
		border-radius: 20px;
		background-color: #FFEEF1;
		padding: 15px;
		border-radius: 8px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.timeline-content h3 {
		font-size: 16px;
		font-weight: 600;
		color: #333;
		margin-bottom: 8px;
	}

	.timeline-content p {
		font-size: 13px;
		color: #666;
		line-height: 1.6;
	}

	/* 前行之路部分 */
	.road-section {
		padding: 0px 0 80px;
		text-align: center;
		position: relative;
		overflow: hidden;
	}

	.road-header {
		margin-bottom: 40px;
		position: relative;
		z-index: 1;
	}

	.road-title {
		font-size: 24px;
		font-weight: 700;
		color: #333;
		margin-bottom: 8px;
	}

	.road-subtitle {
		font-size: 14px;
		color: #666;
	}

	.road-content {
		margin: 0 auto;
		position: relative;
		z-index: 1;
		padding: 0 15px;
	}

	.road-item {
		margin-bottom: 30px;
		position: relative;
		z-index: 1;
	}

	.road-item-title {
		font-size: 18px;
		font-weight: 600;
		color: #333;
		margin-bottom: 15px;
	}

	.road-item-content {
		font-size: 13px;
		color: #666;
		line-height: 1.6;
		width: 100%;
		margin: 0 auto;
	}

	.road-divider {
		width: 60px;
		height: 3px;
		background-color: #ff4d4f;
		margin: 60px auto;
	}

	.road-footer {
		margin-top: 40px;
		position: relative;
		z-index: 1;
	}

	.road-footer-title {
		font-size: 18px;
		font-weight: 600;
		color: #333;
		margin-bottom: 12px;
	}

	.road-footer-content {
		font-size: 13px;
		color: #666;
		margin-bottom: 8px;
	}

	.road-tagline {
		font-size: 13px;
		color: #F20921;
		font-weight: 600;
		margin-bottom: 20px;
	}

	.road-buttons {
		margin-top: 20px;
	}

	.road-button {
		background-color: #F20921;
		border: none;
		padding: 10px 25px;
		font-size: 14px;
		font-weight: 600;
		border-radius: 4px;
		color: #fff;
		transition: all 0.3s ease;
	}

	.road-button:hover {
		background-color: #ff7875;
		transform: translateY(-2px);
	}

	/* 容器宽度调整 */
	.container {
		padding: 0 15px;
	}
}
