| 1 |
.easyel-custom-code-page { |
| 2 |
font-family: "Inter", sans-serif; |
| 3 |
color: #1e293b; |
| 4 |
max-width: 1000px; |
| 5 |
margin: 20px auto; |
| 6 |
padding: 0 15px; |
| 7 |
} |
| 8 |
|
| 9 |
.easyel-banner { |
| 10 |
background: linear-gradient(135deg, #6d28d9, #a855f7); |
| 11 |
color: #fff; |
| 12 |
padding: 50px 40px; |
| 13 |
border-radius: 14px; |
| 14 |
text-align: center; |
| 15 |
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); |
| 16 |
margin-bottom: 40px; |
| 17 |
} |
| 18 |
|
| 19 |
.easyel-banner h1 { |
| 20 |
margin-bottom: 10px; |
| 21 |
font-size: 28px; |
| 22 |
font-weight: 700; |
| 23 |
color: #fff; |
| 24 |
} |
| 25 |
|
| 26 |
.easyel-banner p { |
| 27 |
font-size: 15px; |
| 28 |
opacity: 0.9; |
| 29 |
margin-bottom: 20px; |
| 30 |
} |
| 31 |
|
| 32 |
.easyel-upgrade-btn { |
| 33 |
background: #fff; |
| 34 |
color: #6d28d9; |
| 35 |
font-weight: 600; |
| 36 |
text-decoration: none; |
| 37 |
padding: 10px 22px; |
| 38 |
border-radius: 6px; |
| 39 |
transition: all 0.3s ease; |
| 40 |
display: inline-block; |
| 41 |
} |
| 42 |
|
| 43 |
.easyel-upgrade-btn:hover { |
| 44 |
background: #ede9fe; |
| 45 |
color: #4c1d95; |
| 46 |
} |
| 47 |
|
| 48 |
.easyel-features { |
| 49 |
background: #fff; |
| 50 |
border-radius: 12px; |
| 51 |
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); |
| 52 |
padding: 30px; |
| 53 |
} |
| 54 |
|
| 55 |
.easyel-features h2 { |
| 56 |
font-size: 20px; |
| 57 |
font-weight: 600; |
| 58 |
margin-bottom: 20px; |
| 59 |
text-align: center; |
| 60 |
} |
| 61 |
|
| 62 |
.easyel-feature-table { |
| 63 |
list-style: none; |
| 64 |
margin: 0; |
| 65 |
padding: 0; |
| 66 |
border-top: 1px solid #e5e7eb; |
| 67 |
} |
| 68 |
|
| 69 |
.easyel-feature-table li { |
| 70 |
padding: 14px 16px; |
| 71 |
font-size: 15px; |
| 72 |
border-bottom: 1px solid #e5e7eb; |
| 73 |
display: flex; |
| 74 |
align-items: center; |
| 75 |
gap: 10px; |
| 76 |
transition: background 0.2s ease; |
| 77 |
} |
| 78 |
|
| 79 |
.easyel-feature-table li::before { |
| 80 |
content: "✔"; |
| 81 |
color: #6d28d9; |
| 82 |
font-weight: 700; |
| 83 |
font-size: 14px; |
| 84 |
} |
| 85 |
|
| 86 |
.easyel-feature-table li:hover { |
| 87 |
background: #f9fafb; |
| 88 |
} |