   body {
	background-color: #f5f7f6;
	
}
.mobile-frame {
           
            
            background: #ffffff;
            border-radius: 10px;
           
            overflow: hidden;
			margin: 10px;
            
        }

        .filter-section {
            background: #ffffff;
           
            padding: 16px 10px;
            border-radius: 10px;
        
        
        }

        .filter-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .filter-title i {
            color: #ff5a3c;
        }

        .province-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            /*max-height: 240px;*/
            overflow-y: auto;
            padding-bottom: 15px;
        }

        .province-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 12px 6px;
            background: #f7f8fa;
            
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .province-btn i {
            font-size: 12px;
            color: #8e94a2;
            transition: transform 0.3s;
        }
        .province-btn.active {
            background: #ff5a3c;
            color: white;
            border-color: #ff5a3c;
        }
        .province-btn.active i {
            color: white;
            transform: rotate(180deg);
        }

        .city-container,
        .district-container {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 0;
        }
        .city-container.open,
        .district-container.open {
            max-height: 600px;
            /*margin-top: 12px;*/
        }

        .city-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 4px 0px 12px 0px;
        }

        .city-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 6px;
            background: #f7f8fc;
            border: 1px solid #e9ecf2;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        .city-btn i {
            font-size: 12px;
            color: #8e94a2;
            transition: transform 0.3s;
        }
        .city-btn.active {
            background: #ff5a3c;
            color: white;
            border-color: #ff5a3c;
        }
        .city-btn.active i {
            color: white;
            transform: rotate(180deg);
        }

        .district-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 4px 0;
        }

        .district-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 6px;
            background: #f0f2f5;
            border: 1px solid #e0e3ea;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            cursor: pointer;
            transition: background 0.2s;
            text-align: center;
        }
        .district-btn:hover {
            background: #e8ebf3;
        }
        .district-btn.no-link {
            opacity: 0.7;
            cursor: default;
        }
        .district-btn.no-link:hover {
            background: #f0f2f5;
        }

        .sub-title {
            font-size: 14px;
            font-weight: 600;
            color: #8e94a2;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .sub-title i {
            color: #ff5a3c;
        }

        .search-action {
            margin-top: 16px;
        }
        .search-action .btn-search {
            width: 100%;
            background: #ff5a3c;
            border: none;
            border-radius: 40px;
            padding: 14px;
            font-size: 16px;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: background 0.2s;
            box-shadow: 0 8px 20px rgba(255, 90, 60, 0.3);
        }
        .search-action .btn-search:hover {
            background: #e84a2e;
        }

        .empty-tip {
            padding: 10px 0;
            color: #8e94a2;
            font-size: 13px;
            text-align: center;
            grid-column: 1 / -1;
        }


.hotsale .title{
	height: 25px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	
	
}
.hotsale .tag {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	
}
.hotsale .orangemark{
	font-size: 14px;
}