body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #fff;
color: #222;
margin: 0;
padding: 20px;
direction: rtl;
line-height: 1.6;
}
main {
max-width: 800px;
margin: 30px auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 12px rgba(0,0,0,0.1);
background-color: #fafafa;
}
h1 {
text-align: center;
color: #0059b3;
margin-bottom: 30px;
font-weight: 700;
font-size: 2rem;
}
dl {
margin: 0;
}
dt {
background-color: #0059b3;
color: #fff;
padding: 15px 20px;
margin-bottom: 5px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
position: relative;
user-select: none;
transition: background-color 0.3s ease;
}
dt:hover {
background-color: #004080;
}
dt::after {
content: '+';
position: absolute;
left: 20px;
font-size: 1.3rem;
transition: transform 0.3s ease;
}
dt.active::after {
content: '-';
transform: rotate(180deg);
}
dd {
background: #e8f0fe;
margin: 0 0 15px 0;
padding: 15px 20px;
border-radius: 0 0 8px 8px;
display: none;
font-size: 1rem;
color: #333;
line-height: 1.5;
}
dd a {
color: #0059b3;
text-decoration: none;
}
dd a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 600px) {
main {
padding: 15px;
margin: 20px 10px;
}
dt, dd {
padding: 12px 15px;
font-size: 0.9rem;
}
h1 {
font-size: 1.6rem;
}
}
الأسئلة الشائعة حول متجر البلس السنوي
🛡️ متجر JkoStore هو مصدر موثوق للتطبيقات المعدلة ومجرب من آلاف المستخدمين.
// تفعيل خاصية الأكوردين لتوسيع وإخفاء الإجابات
document.querySelectorAll('dt').forEach((question) => {
question.addEventListener('click', () => {
question.classList.toggle('active');
const answer = question.nextElementSibling;
if (answer.style.display === 'block') {
answer.style.display = 'none';
} else {
answer.style.display = 'block';
}
});
});