Descrição
/* — CSS Reset & Global Styles — */
#tesery-pdp-wrapper {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
color: #333;
background-color: #ffffff;
line-height: 1.6;
max-width: 100%;
margin: 0 auto;
overflow-x: hidden; /* Prevent horizontal scroll */
box-sizing: border-box;
}
#tesery-pdp-wrapper * {
box-sizing: border-box;
}
/* Colors */
#tesery-pdp-wrapper :root {
–primary-blue: #007BFF;
–text-black: #000000;
–bg-white: #ffffff;
–gray-light: #f8f9fa;
}
/* Typography */
#tesery-pdp-wrapper h2 {
color: #007BFF;
font-size: 2rem;
margin-bottom: 0.5rem; /* Reduced bottom margin for subtitle */
font-weight: 700;
text-align: center;
line-height: 1.2;
}
#tesery-pdp-wrapper .section-subtitle {
text-align: center;
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
font-weight: 400;
padding: 0 10px;
}
#tesery-pdp-wrapper h3 {
font-size: 1.25rem;
color: #000;
margin: 0 0 0.5rem 0;
font-weight: 600;
}
#tesery-pdp-wrapper p {
margin-bottom: 1rem;
color: #444;
}
/* — Top Hero Section (21:9 Image) — */
.hero-banner {
width: 100%;
margin-bottom: 40px;
padding: 0 20px;
}
.hero-placeholder-image {
background-color: #e9ecef;
color: #6c757d;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: 500;
text-align: center;
border-radius: 12px;
width: 100%;
aspect-ratio: 21/9; /* 21:9 Aspect Ratio */
border: 2px dashed #ced4da;
transition: all 0.3s ease;
cursor: pointer;
}
.hero-placeholder-image:hover {
border-color: #007BFF;
box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
transform: translateY(-2px);
}
/* — Standard Placeholder for Feature Sections — */
.placeholder-image {
background-color: #e9ecef;
color: #6c757d;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.0rem;
text-align: center;
width: 100%;
border: 2px dashed #ced4da;
transition: all 0.3s ease;
}
.placeholder-image:hover {
border-color: #007BFF;
}
/* — Alternating Layout (Features) — */
.split-section {
display: flex;
flex-wrap: wrap;
width: 100%;
margin-bottom: 0; /* Continuous flow */
overflow: hidden;
}
/* Image Side */
.split-image-container {
width: 60%;
position: relative;
padding: 0;
}
.split-image-container .placeholder-image {
width: 100%;
height: 100%;
border-radius: 0; /* Reset for edge look */
border-radius: 12px; /* Per requirement */
aspect-ratio: 4/3;
object-fit: cover;
}
/* Text Side */
.split-text-container {
width: 40%;
padding: 3rem;
display: flex;
flex-direction: column;
justify-content: center;
background: #fff;
}
/* Alternating Logic */
.split-section:nth-of-type(odd) {
flex-direction: row; /* Image Left, Text Right */
}
.split-section:nth-of-type(even) {
flex-direction: row-reverse; /* Image Right, Text Left */
}
/* Feature Text Styling */
.feature-title {
color: #000;
}
.feature-title span {
color: #007BFF;
}
/* The Blue Separator Line */
.title-separator {
width: 50px;
height: 3px;
background-color: #007BFF;
margin: 15px 0 20px 0;
border-radius: 2px;
}
/* Text Overflow Protection */
.feature-desc {
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
/* Hover Effects for Sections */
.split-section {
transition: background-color 0.3s ease;
}
.split-section:hover .split-text-container {
background-color: #fcfcfc;
}
/* — Compatibility Section — */
.compatibility-section {
padding: 40px 20px;
text-align: center;
background-color: #f8f9fa;
margin: 40px 0;
border-radius: 12px;
}
.comp-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.comp-item {
background: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
display: flex;
align-items: center;
gap: 10px;
transition: transform 0.2s;
}
.comp-item:hover {
transform: scale(1.05);
}
.compatibility-icon {
font-size: 1.5rem;
color: #007BFF;
font-weight: bold;
}
/* — FAQ Section — */
.faq-section {
padding: 40px 20px;
max-width: 800px;
margin: 0 auto 40px auto;
}
.faq-item {
border-bottom: 1px solid #eee;
margin-bottom: 10px;
}
.faq-question {
cursor: pointer;
padding: 15px 0;
display: flex;
justify-content: space-between;
align-items: center;
transition: color 0.2s;
}
.faq-question:hover {
color: #007BFF;
}
.faq-question::after {
content: ‘+’;
font-size: 1.5rem;
color: #007BFF;
}
.faq-question.active::after {
content: ‘-‘;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
color: #555;
}
.faq-answer p {
padding-bottom: 15px;
margin: 0;
}
/* — Responsive Media Queries — */
@media (max-width: 768px) {
.hero-placeholder-image {
aspect-ratio: 16/9; /* Adjusted for mobile to avoid being too thin */
font-size: 1rem;
}
.split-section:nth-of-type(odd),
.split-section:nth-of-type(even) {
flex-direction: column; /* Stack vertically */
}
.split-image-container {
width: 100%;
padding: 0 15px;
margin-top: 20px;
}
.split-text-container {
width: 100%;
padding: 20px;
text-align: center;
align-items: center;
}
.title-separator {
margin: 15px auto 20px auto;
}
.placeholder-image {
border-radius: 12px;
}
}
Tesery Starlink Gen 3 Direct DC Power Supply

Ultimate Energy Efficiency
Extend your battery runtime by up to 30%. By converting your vehicle’s 12V or 24V DC power directly to the 57V needed by Starlink, this unit bypasses the energy loss associated with DC-to-AC inverters, operating with over 96% efficiency.

Stable High-Power Output
Reliable performance even during high-load activities. Delivers a consistent 57V at 4.5A (256W). This high amperage overhead ensures your Starlink dish has ample power for booting up, heavy data transmission, and operating internal heaters.

High Quality Cable DC Plug
Experience superior connectivity designed for durability and performance. This cable features a flexible PVC jacket and a waterproof gasket for protection against the elements. Inside, 18AWG copper wire ensures low impedance and a stable power supply for your devices.

Rugged & Safe Design
Built to survive harsh outdoors. Encased in a waterproof/dustproof aluminum shell (IP67 rated) with organic silicone potting. Includes smart protection against Over-voltage, Under-voltage, Over-current, Short-circuit, and Over-heating.
Hardware Compatibility
Exclusively designed for the Starlink Gen 3 (Standard) Router.
Frequently Asked Questions
Can I use this with Starlink Gen 2?
No. This device outputs 57V, which is specific to the Gen 3 Standard kit. Using it on Gen 2 hardware may cause damage.
Why choose this over an inverter?
Using an inverter converts DC to AC, and then back to DC, wasting power. The Tesery converter creates a direct DC link, saving up to 30% battery life—crucial for off-grid use.
Is the unit waterproof?
Yes, the converter body is sealed with silicone potting and is IP67 rated (waterproof, dustproof, shock-resistant). Please ensure wire connection points are kept dry.
Does it support the “Snow Melt” heater?
Absolutely. With a 4.5A (256W) output capacity, it exceeds the peak power requirements of the Starlink Gen 3, even when heating elements are active
(function() {
const questions = document.querySelectorAll(‘#tesery-pdp-wrapper .faq-question’);
questions.forEach(question => {
question.addEventListener(‘click’, function() {
const targetId = this.getAttribute(‘data-target’);
const answer = document.getElementById(targetId);
// Toggle active class on question for styling
this.classList.toggle(‘active’);
// Toggle max-height for slide effect
if (answer.style.maxHeight) {
answer.style.maxHeight = null;
} else {
answer.style.maxHeight = answer.scrollHeight + “px”;
}
});
});
})();











Avaliações
Ainda não existem avaliações.