        .service-app-container {
            width: 100%;
            height: 540px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .service-app-header {
            background: linear-gradient(to right, #ff9020, #ff5a23);
            color: white;
            text-align: center;
            padding: 15px 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        .service-app-header h2 {
            font-size: 18px;
            margin: 0;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }
        
        .service-app-header p {
            font-size: 12px;
            opacity: 0.9;
            margin-top: 4px;
        }
        
        .service-content-area {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
            position: relative;
        }
        
        .service-grid-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 5px;
        }
        
        .service-item-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
            border-radius: 12px;
            padding: 10px 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 128, 0.1);
        }
        
        .service-item-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 128, 0.15);
            background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%);
        }
        
        .service-item-card:hover::before {
            content: "";
            position: absolute;
            top: -22px;
            left: -22px;
            right: -22px;
            bottom: -22px;
            background: linear-gradient(45deg, #fff, #eee, #fff);
            z-index: -1;
            animation: service-border-anim 4s linear infinite;
            border-radius: 12px;
        }
        
        @keyframes service-border-anim {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .service-item-icon {
            font-size: 24px;
            margin-bottom: 8px;
            color: #1a73e8;
            transition: transform 0.3s ease;
        }
        
        .service-item-card:hover .service-item-icon {
            transform: scale(1.2);
            color: #e52e71;
        }
        
        .service-item-name {
            font-size: 12px;
            font-weight: 600;
            color: #333;
            transition: color 0.3s ease;
        }
        
        .service-item-card:hover .service-item-name {
            color: #1a73e8;
            text-shadow: 0 0 2px rgba(26, 115, 232, 0.2);
        }
        
        .service-search-container {
            padding: 8px;
            display: flex;
            margin: 10px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        
        .service-search-container input {
            flex: 1;
            padding: 6px 12px;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 12px;
            outline: none;
        }
        
        .service-app-footer {
           background: linear-gradient(to right, #3333, #6666);
            text-align: center;
            padding: 8px;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .service-category-label {
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 8px;
            padding: 2px 6px;
            border-radius: 10px;
            background: rgba(26, 115, 232, 0.1);
            color: #1a73e8;
            font-weight: bold;
        }
        
        /* 自定义滚动条 */
        .service-content-area::-webkit-scrollbar {
            width: 6px;
        }
        
        .service-content-area::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #ccc, #999);
            border-radius: 3px;
        }
        
        .service-content-area::-webkit-scrollbar-track {
            background: #f2f2f2;
        }
        
        .service-highlight {
            background-color: rgba(255, 220, 0, 0.3);
            animation: service-highlight-anim 1.5s ease-in-out;
        }
        
        @keyframes service-highlight-anim {
            0% { background-color: rgba(255, 220, 0, 0); }
            50% { background-color: rgba(255, 220, 0, 0.5); }
            100% { background-color: rgba(255, 220, 0, 0.3); }
        }

        .calculator-container {
            width: 100%;
            height: 354px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .bj_header {
	position: relative;
	border-bottom: 1px solid #f0f0f0;
	background: linear-gradient(135deg, #3a8dfc, #2b5fc1);
    padding: 14px 10px 10px;
        }
        
        .bj_title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }
        
        .bj_subtitle {
            font-size: 11px;
            color: #fff;
        }
        
        .discount-tag {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #FF8BA7, #FF5A87);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: white;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(255, 90, 135, 0.3);
        }
        
        .price-section {
	text-align: center;
	background-color: #fafafa;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
        }
        
        .price-label {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .price-container {
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }
        
        #price {
            font-size: 28px;
            font-weight: 800;
            color: #e74c3c;
            position: relative;
        }
        
        .price-flash {
            animation: flash 0.5s ease;
        }
        
        .yuan {
            font-size: 13px;
            color: #666;
            margin-left: 2px;
            padding-bottom: 4px;
        }
        
        .form-section {
            padding: 10px;
        }
        
        .input-group {
            margin-bottom: 8px;
        }
        
        .input-group label {
            display: block;
            font-size: 11px;
            color: #444;
            margin-bottom: 3px;
        }
        
        .input-group input {
            width: 95%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 12px;
            outline: none;
        }
        
        .input-group input:focus {
            border-color: #3a8dfc;
            box-shadow: 0 0 0 2px rgba(58, 141, 252, 0.15);
        }
        
        .agreement {
	font-size: 10px;
	color: #999;
	text-align: center;
	line-height: 1.4;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
        }
        
        .agreement a {
            color: #3a8dfc;
            text-decoration: none;
        }
        
        .btn-container {
            padding: 0 10px;
        }
        
        #quote-btn {
            width: 100%;
            padding: 8px;
            background: linear-gradient(to right, #e74c3c, #c0392b);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
        }
        
        #quote-btn:hover {
            background: linear-gradient(to right, #c0392b, #a53126);
        }
        
        .footer-note {
            font-size: 9px;
            color: #999;
            text-align: center;
            padding: 6px 0;
        }
        
        @keyframes flash {
            0%, 100% { transform: scale(1); color: #e74c3c; }
            50% { transform: scale(1.05); color: #ff6b6b; }
        }
        
                /* 整体容器 */
        .home-services-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 750px;
        }
        
        /* 装修服务卡片 - 重新命名CSS类 */
        .home-renovation-card {
            width: 348px;
            height: 250px;
            background: white;
            border-radius: 14px;
            overflow: hidden;
            
            display: flex;
            flex-direction: column;
        }
        
        .renovation-header {
            background: #e02c2c;
            color: white;
            text-align: center;
            padding: 12px;
            position: relative;
        }
        
        .renovation-brand-row {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0px;
        }
        
        .renovation-brand-name {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        .renovation-brand-badge {
            background: white;
            color: #e02c2c;
            font-size: 12px;
            border-radius: 10px;
            padding: 0px 10px;
            margin-left: 12px;
            font-weight: bold;
        }
        
        .renovation-service-promo {
            font-size: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 3px;
        }
        
        .renovation-learn-more {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            text-decoration: none;
            margin-left: 8px;
            border-bottom: 1px dashed rgba(255,255,255,0.6);
            transition: all 0.2s;
        }
        
        .renovation-learn-more:hover {
            color: white;
            border-bottom-color: white;
        }
        
        .renovation-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .renovation-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            padding: 15px;
        }
        
        .renovation-feature {
            display: flex;
            align-items: center;
            padding: 10px;
            border-radius: 10px;
            background: #f9f9f9;
            transition: all 0.3s ease;
        }
        
        .renovation-feature:hover {
            background: #fff0f0;
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(224, 44, 44, 0.1);
        }
        
        .renovation-feature-icon {
            width: 30px;
            height: 30px;
            background: #e02c2c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: white;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .renovation-feature-text {
            font-size: 13.5px;
        }
        
        .renovation-feature-key {
            font-weight: bold;
            color: #333;
            font-size: 13.5px;
            margin-bottom: 0px;
        }
        
        .renovation-feature-value {
            font-size: 12.5px;
            color: #666;
        }
        
        .renovation-highlight {
            color: #e02c2c;
            font-weight: bold;
        }
        
        .renovation-bottom-area {
            display: flex;
            border-top: 1px solid #eee;
            padding: 8px 20px;
            background: #f9f9f9;
        }
        
        .renovation-badge {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }
        
        .renovation-badge-name {
            font-size: 17px;
            font-weight: bold;
            color: #e02c2c;
            line-height: 1.3;
        }
        
        .renovation-badge-title {
            font-size: 12.5px;
            color: #999;
        }
        
        .renovation-stats {
            flex: 1;
            text-align: right;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .renovation-stats-count {
            font-size: 19px;
            font-weight: bold;
            color: #e02c2c;
        }
        
        .renovation-stats-text {
            font-size: 12.5px;
            color: #666;
        }
        
        .renovation-decor-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ffd166, #ef476f, #06d6a0);
        }
        
        /* 维修流程卡片 - 重新命名CSS类 */
        .home-repair-card {
            width: 348px;
            height: 300px;
            background: white;
            border-radius: 14px;
            overflow: hidden;
            
            display: flex;
            flex-direction: column;
        }
        
        .repair-header {
            height: 50px;
            background: linear-gradient(90deg, #ff7e00, #ff5500);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            font-weight: bold;
            position: relative;
            padding: 0 20px;
        }
        
        .repair-header:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(180deg, rgba(255, 129, 0, 0.4), transparent);
        }
        
        .repair-steps-container {
            flex: 1;
            padding: 18px 15px 5px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 15px;
        }
        
        .repair-step-card {
            background: #fff9f3;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6px 6px;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid #ffeee0;
        }
        
        .repair-step-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 126, 0, 0.2);
            z-index: 2;
        }
        
        .repair-step-icon {
            width: 42px;
            height: 42px;
            background: #ff7e00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 22px;
            margin-bottom: 8px;
            box-shadow: 0 3px 6px rgba(255, 126, 0, 0.4);
        }
        
        .repair-step-text {
            font-size: 15px;
            color: #333;
            font-weight: 500;
            line-height: 1.4;
        }
        
        .repair-step-special {
            font-weight: bold;
            color: #ff5500;
        }
        
        .repair-button-area {
            padding: 12px 20px;
            display: flex;
            justify-content: center;
        }
        
        .repair-btn-book {
            background: black;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 5px 45px;
            font-size: 17px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        }
        
        .repair-btn-book:hover {
            background: #333;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        }
        
        .repair-btn-book i {
            margin-right: 10px;
        }
        
        .repair-decor-line {
            position: absolute;
            top: 75px;
            left: 30px;
            right: 30px;
            height: 2px;
            background: #ffd8b9;
            z-index: 0;
        }