8833 lines
163 KiB
CSS
8833 lines
163 KiB
CSS
@charset "UTF-8";
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
html {
|
||
font-size: 16px;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
text-rendering: optimizeLegibility;
|
||
}
|
||
|
||
body {
|
||
font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
|
||
line-height: 1.6;
|
||
color: #1A1A2E;
|
||
background-color: #FFFFFF;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
ul, ol {
|
||
list-style: none;
|
||
}
|
||
|
||
a {
|
||
text-decoration: none;
|
||
color: inherit;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
img {
|
||
max-width: 100%;
|
||
height: auto;
|
||
display: block;
|
||
}
|
||
|
||
button {
|
||
font-family: inherit;
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
cursor: pointer;
|
||
background: transparent;
|
||
border: none;
|
||
padding: 0;
|
||
}
|
||
|
||
input,
|
||
textarea,
|
||
select {
|
||
font-family: inherit;
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
border: none;
|
||
outline: none;
|
||
}
|
||
|
||
table {
|
||
border-collapse: collapse;
|
||
border-spacing: 0;
|
||
}
|
||
|
||
h1, h2, h3, h4, h5, h6 {
|
||
font-weight: 700;
|
||
line-height: 1.2;
|
||
}
|
||
|
||
article, aside, details, figcaption, figure,
|
||
footer, header, hgroup, main, menu, nav,
|
||
section, summary {
|
||
display: block;
|
||
}
|
||
|
||
::selection {
|
||
background-color: rgba(75, 155, 255, 0.2);
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
::-moz-selection {
|
||
background-color: rgba(75, 155, 255, 0.2);
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
body {
|
||
font-size: 16px;
|
||
font-weight: 400;
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
h1, .h1 {
|
||
font-size: 56px;
|
||
font-weight: 800;
|
||
margin-bottom: 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
h1, .h1 {
|
||
font-size: 40px;
|
||
}
|
||
}
|
||
@media (max-width: 480px) {
|
||
h1, .h1 {
|
||
font-size: 32px;
|
||
}
|
||
}
|
||
|
||
h2, .h2 {
|
||
font-size: 48px;
|
||
font-weight: 700;
|
||
margin-bottom: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
h2, .h2 {
|
||
font-size: 32px;
|
||
}
|
||
}
|
||
@media (max-width: 480px) {
|
||
h2, .h2 {
|
||
font-size: 24px;
|
||
}
|
||
}
|
||
|
||
h3, .h3 {
|
||
font-size: 40px;
|
||
font-weight: 700;
|
||
margin-bottom: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
h3, .h3 {
|
||
font-size: 24px;
|
||
}
|
||
}
|
||
|
||
h4, .h4 {
|
||
font-size: 32px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
h5, .h5 {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
h6, .h6 {
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
p {
|
||
margin-bottom: 16px;
|
||
line-height: 1.6;
|
||
}
|
||
p:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.text-gradient {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
.text-gradient-accent {
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
.text-gradient-warm {
|
||
background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
.text-primary {
|
||
color: #4B9BFF;
|
||
}
|
||
|
||
.text-secondary {
|
||
color: #2E7FF7;
|
||
}
|
||
|
||
.text-dark {
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
.text-gray {
|
||
color: #64748B;
|
||
}
|
||
|
||
.text-light {
|
||
color: #94A3B8;
|
||
}
|
||
|
||
.text-white {
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.text-left {
|
||
text-align: left;
|
||
}
|
||
|
||
.text-center {
|
||
text-align: center;
|
||
}
|
||
|
||
.text-right {
|
||
text-align: right;
|
||
}
|
||
|
||
.font-regular {
|
||
font-weight: 400;
|
||
}
|
||
|
||
.font-medium {
|
||
font-weight: 500;
|
||
}
|
||
|
||
.font-semibold {
|
||
font-weight: 600;
|
||
}
|
||
|
||
.font-bold {
|
||
font-weight: 700;
|
||
}
|
||
|
||
.font-extrabold {
|
||
font-weight: 800;
|
||
}
|
||
|
||
.text-xs {
|
||
font-size: 12px;
|
||
}
|
||
|
||
.text-sm {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.text-base {
|
||
font-size: 16px;
|
||
}
|
||
|
||
.text-lg {
|
||
font-size: 20px;
|
||
}
|
||
|
||
.text-xl {
|
||
font-size: 24px;
|
||
}
|
||
|
||
.lead {
|
||
font-size: 20px;
|
||
font-weight: 400;
|
||
line-height: 1.8;
|
||
color: #64748B;
|
||
}
|
||
|
||
.caption {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
}
|
||
|
||
.code {
|
||
font-family: "Fira Code", "Courier New", monospace;
|
||
font-size: 14px;
|
||
background: #F8FAFC;
|
||
padding: 2px 6px;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
a {
|
||
color: #4B9BFF;
|
||
}
|
||
a:hover {
|
||
color: #2E7FF7;
|
||
}
|
||
|
||
blockquote {
|
||
padding: 16px;
|
||
margin: 16px 0;
|
||
border-left: 4px solid #4B9BFF;
|
||
background: #F8FAFC;
|
||
font-style: italic;
|
||
}
|
||
blockquote p {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
hr {
|
||
border: none;
|
||
border-top: 1px solid #E2E8F0;
|
||
margin: 32px 0;
|
||
}
|
||
|
||
@keyframes float {
|
||
0%, 100% {
|
||
transform: translateY(0) rotate(0deg);
|
||
}
|
||
50% {
|
||
transform: translateY(-30px) rotate(10deg);
|
||
}
|
||
}
|
||
@keyframes bounce {
|
||
0%, 100% {
|
||
transform: translateY(0);
|
||
}
|
||
50% {
|
||
transform: translateY(-10px);
|
||
}
|
||
}
|
||
@keyframes slideInDown {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(-30px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
@keyframes slideInUp {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(30px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
@keyframes slideInLeft {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateX(-30px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
@keyframes slideInRight {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateX(30px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
@keyframes fadeIn {
|
||
from {
|
||
opacity: 0;
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
@keyframes fadeInScale {
|
||
from {
|
||
opacity: 0;
|
||
transform: scale(0.9);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
@keyframes spin {
|
||
from {
|
||
transform: rotate(0deg);
|
||
}
|
||
to {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
@keyframes pulse {
|
||
0% {
|
||
transform: scale(1);
|
||
}
|
||
50% {
|
||
transform: scale(1.05);
|
||
}
|
||
100% {
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
@keyframes shimmer {
|
||
0% {
|
||
transform: translateX(-100%) rotate(45deg);
|
||
}
|
||
100% {
|
||
transform: translateX(100%) rotate(45deg);
|
||
}
|
||
}
|
||
@keyframes wave {
|
||
0% {
|
||
transform: rotate(0deg);
|
||
}
|
||
10% {
|
||
transform: rotate(14deg);
|
||
}
|
||
20% {
|
||
transform: rotate(-8deg);
|
||
}
|
||
30% {
|
||
transform: rotate(14deg);
|
||
}
|
||
40% {
|
||
transform: rotate(-4deg);
|
||
}
|
||
50% {
|
||
transform: rotate(10deg);
|
||
}
|
||
60% {
|
||
transform: rotate(0deg);
|
||
}
|
||
100% {
|
||
transform: rotate(0deg);
|
||
}
|
||
}
|
||
@keyframes popIn {
|
||
0% {
|
||
opacity: 0;
|
||
transform: scale(0.5);
|
||
}
|
||
80% {
|
||
transform: scale(1.1);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
@keyframes popupFadeIn {
|
||
from {
|
||
opacity: 0;
|
||
transform: scale(0.95);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
@keyframes ripple {
|
||
0% {
|
||
transform: scale(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
transform: scale(4);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@keyframes gradientShift {
|
||
0% {
|
||
background-position: 0% 50%;
|
||
}
|
||
50% {
|
||
background-position: 100% 50%;
|
||
}
|
||
100% {
|
||
background-position: 0% 50%;
|
||
}
|
||
}
|
||
.animate-float {
|
||
animation: float 20s ease-in-out infinite;
|
||
}
|
||
|
||
.animate-bounce {
|
||
animation: bounce 2s infinite;
|
||
}
|
||
|
||
.animate-spin {
|
||
animation: spin 1s linear infinite;
|
||
}
|
||
|
||
.animate-pulse {
|
||
animation: pulse 2s ease-in-out infinite;
|
||
}
|
||
|
||
.animate-fade-in {
|
||
animation: fadeIn 0.6s ease-out;
|
||
}
|
||
|
||
.animate-slide-up {
|
||
animation: slideInUp 0.8s ease-out;
|
||
}
|
||
|
||
.animate-slide-down {
|
||
animation: slideInDown 0.6s ease-out;
|
||
}
|
||
|
||
.animate-pop {
|
||
animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
||
}
|
||
|
||
.delay-1 {
|
||
animation-delay: 0.1s;
|
||
}
|
||
|
||
.delay-2 {
|
||
animation-delay: 0.2s;
|
||
}
|
||
|
||
.delay-3 {
|
||
animation-delay: 0.3s;
|
||
}
|
||
|
||
.delay-4 {
|
||
animation-delay: 0.4s;
|
||
}
|
||
|
||
.delay-5 {
|
||
animation-delay: 0.5s;
|
||
}
|
||
|
||
.duration-fast {
|
||
animation-duration: 0.3s;
|
||
}
|
||
|
||
.duration-normal {
|
||
animation-duration: 0.6s;
|
||
}
|
||
|
||
.duration-slow {
|
||
animation-duration: 1s;
|
||
}
|
||
|
||
.duration-slower {
|
||
animation-duration: 2s;
|
||
}
|
||
|
||
.hover-grow {
|
||
transition: transform 0.3s ease;
|
||
}
|
||
.hover-grow:hover {
|
||
transform: scale(1.05);
|
||
}
|
||
|
||
.hover-lift {
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
}
|
||
.hover-lift:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
|
||
.hover-rotate {
|
||
transition: transform 0.3s ease;
|
||
}
|
||
.hover-rotate:hover {
|
||
transform: rotate(5deg);
|
||
}
|
||
|
||
.hover-shine {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.hover-shine::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: -50%;
|
||
left: -50%;
|
||
width: 200%;
|
||
height: 200%;
|
||
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
|
||
transform: rotate(45deg);
|
||
transition: transform 0.6s ease;
|
||
transform: translateX(-200%);
|
||
}
|
||
.hover-shine:hover::before {
|
||
transform: translateX(200%) rotate(45deg);
|
||
}
|
||
|
||
:root {
|
||
--primary-blue: #4B9BFF;
|
||
--secondary-blue: #2E7FF7;
|
||
--accent-cyan: #00D4FF;
|
||
--accent-yellow: #FFD93D;
|
||
--accent-orange: #FF6B6B;
|
||
--accent-green: #6BCF7F;
|
||
--accent-purple: #A78BFA;
|
||
--text-dark: #1A1A2E;
|
||
--text-gray: #64748B;
|
||
--text-light: #94A3B8;
|
||
--white: #FFFFFF;
|
||
--gray-bg: #F8FAFC;
|
||
--light-bg: #EFF6FF;
|
||
--border-gray: #E2E8F0;
|
||
--gradient-primary: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
--gradient-accent: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
--gradient-warm: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
|
||
--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
--shadow-md: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
--shadow-lg: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
--shadow-xl: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
|
||
.blind {
|
||
position: absolute;
|
||
width: 1px;
|
||
height: 1px;
|
||
padding: 0;
|
||
margin: -1px;
|
||
overflow: hidden;
|
||
clip: rect(0, 0, 0, 0);
|
||
white-space: nowrap;
|
||
border: 0;
|
||
}
|
||
|
||
.global-header {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
background: rgba(255, 255, 255, 0.95);
|
||
backdrop-filter: blur(10px);
|
||
-webkit-backdrop-filter: blur(10px);
|
||
box-shadow: var(--shadow-sm);
|
||
z-index: 1000;
|
||
height: 80px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.header-content {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
height: 80px;
|
||
max-width: 1280px;
|
||
margin: 0 auto;
|
||
padding: 0 20px;
|
||
}
|
||
|
||
.header-left {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
.header-left .logo {
|
||
height: 45px;
|
||
width: auto;
|
||
}
|
||
|
||
.logo-wrapper {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
}
|
||
|
||
.logo {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
height: 45px;
|
||
z-index: 10;
|
||
}
|
||
.logo a {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
height: 100%;
|
||
text-decoration: none;
|
||
}
|
||
.logo img {
|
||
height: 45px;
|
||
width: auto;
|
||
}
|
||
|
||
.logo-text {
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
color: var(--primary-blue);
|
||
padding: 4px 12px;
|
||
background: var(--light-bg);
|
||
border-radius: 20px;
|
||
text-decoration: none;
|
||
display: inline-block;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.logo-text:hover {
|
||
background: var(--primary-blue);
|
||
color: var(--white);
|
||
transform: translateY(-1px);
|
||
box-shadow: var(--shadow-md);
|
||
}
|
||
.logo-text:visited {
|
||
color: var(--primary-blue);
|
||
}
|
||
|
||
.logo-link,
|
||
.mobile-logo-link,
|
||
.drawer-logo-link {
|
||
display: inline-block;
|
||
text-decoration: none;
|
||
transition: transform 0.3s ease;
|
||
}
|
||
.logo-link:hover,
|
||
.mobile-logo-link:hover,
|
||
.drawer-logo-link:hover {
|
||
transform: scale(1.05);
|
||
}
|
||
.logo-link img,
|
||
.mobile-logo-link img,
|
||
.drawer-logo-link img {
|
||
display: block;
|
||
}
|
||
|
||
.header-right {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
|
||
.search-btn {
|
||
width: 40px;
|
||
height: 40px;
|
||
background: var(--gray-bg);
|
||
border: none;
|
||
border-radius: 50%;
|
||
cursor: pointer;
|
||
font-size: 16px;
|
||
color: var(--text-gray);
|
||
transition: all 0.3s ease;
|
||
}
|
||
.search-btn:hover {
|
||
background: var(--light-bg);
|
||
color: var(--primary-blue);
|
||
transform: scale(1.1);
|
||
}
|
||
|
||
.desktop-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
width: 100%;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.desktop-header {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
.mobile-header {
|
||
display: none;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
width: 100%;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.mobile-header {
|
||
display: flex;
|
||
}
|
||
}
|
||
|
||
.mobile-left .mobile-logo {
|
||
height: 32px;
|
||
width: auto;
|
||
}
|
||
|
||
.mobile-center {
|
||
flex: 1;
|
||
text-align: center;
|
||
}
|
||
.mobile-center .mobile-title {
|
||
font-size: 18px;
|
||
font-weight: 700;
|
||
color: var(--text-dark);
|
||
margin: 0;
|
||
}
|
||
|
||
.mobile-right .mobile-menu-btn {
|
||
width: 40px;
|
||
height: 40px;
|
||
background: transparent;
|
||
border: none;
|
||
cursor: pointer;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 8px;
|
||
border-radius: 8px;
|
||
transition: background-color 0.3s ease;
|
||
}
|
||
.mobile-right .mobile-menu-btn:hover {
|
||
background: var(--gray-bg);
|
||
}
|
||
.mobile-right .mobile-menu-btn .hamburger-line {
|
||
width: 24px;
|
||
height: 2px;
|
||
background: var(--text-dark);
|
||
transition: all 0.3s ease;
|
||
border-radius: 1px;
|
||
}
|
||
.mobile-right .mobile-menu-btn.active .hamburger-line:nth-child(1) {
|
||
transform: rotate(45deg) translateY(6px);
|
||
}
|
||
.mobile-right .mobile-menu-btn.active .hamburger-line:nth-child(2) {
|
||
opacity: 0;
|
||
}
|
||
.mobile-right .mobile-menu-btn.active .hamburger-line:nth-child(3) {
|
||
transform: rotate(-45deg) translateY(-6px);
|
||
}
|
||
|
||
.mobile-drawer {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
z-index: 9999;
|
||
visibility: hidden;
|
||
opacity: 0;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.mobile-drawer.active {
|
||
visibility: visible;
|
||
opacity: 1;
|
||
}
|
||
.mobile-drawer.active .drawer-content {
|
||
transform: translateY(0);
|
||
}
|
||
.mobile-drawer .drawer-overlay {
|
||
display: none;
|
||
}
|
||
.mobile-drawer .drawer-content {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: var(--white);
|
||
transform: translateY(100%);
|
||
transition: transform 0.3s ease;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.mobile-drawer .drawer-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 20px;
|
||
border-bottom: 2px solid var(--border-gray);
|
||
background: var(--white);
|
||
box-shadow: var(--shadow-sm);
|
||
min-height: 60px;
|
||
}
|
||
.mobile-drawer .drawer-header .drawer-logo {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
}
|
||
.mobile-drawer .drawer-header .drawer-logo .logo {
|
||
height: 32px;
|
||
width: auto;
|
||
}
|
||
.mobile-drawer .drawer-header .drawer-logo .logo-text {
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
color: var(--primary-blue);
|
||
}
|
||
.mobile-drawer .drawer-header .drawer-close {
|
||
width: 40px;
|
||
height: 40px;
|
||
background: transparent;
|
||
border: none;
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-radius: 8px;
|
||
font-size: 18px;
|
||
color: var(--text-gray);
|
||
transition: all 0.3s ease;
|
||
}
|
||
.mobile-drawer .drawer-header .drawer-close:hover {
|
||
background: var(--white);
|
||
color: var(--text-dark);
|
||
}
|
||
.mobile-drawer .drawer-nav {
|
||
flex: 1;
|
||
padding: 0;
|
||
overflow-y: auto;
|
||
background: var(--white);
|
||
}
|
||
.mobile-drawer .drawer-nav .drawer-menu {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 20px 0;
|
||
}
|
||
.mobile-drawer .drawer-nav .drawer-menu li {
|
||
margin-bottom: 8px;
|
||
}
|
||
.mobile-drawer .drawer-nav .drawer-menu li .drawer-link {
|
||
display: block;
|
||
padding: 16px 24px;
|
||
margin: 0 20px;
|
||
color: var(--text-dark);
|
||
text-decoration: none;
|
||
font-size: 18px;
|
||
font-weight: 500;
|
||
border-radius: 12px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.mobile-drawer .drawer-nav .drawer-menu li .drawer-link:hover, .mobile-drawer .drawer-nav .drawer-menu li .drawer-link:active {
|
||
background: var(--light-bg);
|
||
color: var(--primary-blue);
|
||
transform: translateX(4px);
|
||
box-shadow: var(--shadow-sm);
|
||
}
|
||
.mobile-drawer .drawer-actions {
|
||
padding: 24px;
|
||
border-top: 2px solid var(--border-gray);
|
||
background: var(--white);
|
||
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
|
||
}
|
||
.mobile-drawer .drawer-actions .drawer-login-btn {
|
||
display: block;
|
||
text-align: center;
|
||
padding: 14px 20px;
|
||
color: var(--text-dark);
|
||
text-decoration: none;
|
||
border: 2px solid var(--primary-blue);
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
margin-bottom: 12px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.mobile-drawer .drawer-actions .drawer-login-btn:hover {
|
||
background: var(--light-bg);
|
||
color: var(--primary-blue);
|
||
}
|
||
.mobile-drawer .drawer-actions .drawer-signup-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
padding: 14px 20px;
|
||
background: var(--gradient-primary);
|
||
color: var(--white);
|
||
text-decoration: none;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
margin-bottom: 12px;
|
||
transition: all 0.3s ease;
|
||
box-shadow: var(--shadow-md);
|
||
}
|
||
.mobile-drawer .drawer-actions .drawer-signup-btn:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: var(--shadow-lg);
|
||
}
|
||
.mobile-drawer .drawer-actions .drawer-search-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
width: 100%;
|
||
padding: 14px 20px;
|
||
background: var(--gray-bg);
|
||
color: var(--text-dark);
|
||
border: none;
|
||
border-radius: 12px;
|
||
font-weight: 500;
|
||
font-size: 16px;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.mobile-drawer .drawer-actions .drawer-search-btn:hover {
|
||
background: var(--light-bg);
|
||
color: var(--primary-blue);
|
||
}
|
||
|
||
.btn-mobilemenu {
|
||
position: absolute;
|
||
right: 16px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
width: 40px;
|
||
height: 40px;
|
||
background: transparent;
|
||
border: none;
|
||
cursor: pointer;
|
||
padding: 8px;
|
||
z-index: 501;
|
||
}
|
||
.btn-mobilemenu span {
|
||
display: block;
|
||
width: 24px;
|
||
height: 2px;
|
||
background: #1A1A2E;
|
||
position: relative;
|
||
transition: all all 0.15s ease;
|
||
text-indent: -9999px;
|
||
}
|
||
.btn-mobilemenu span::before, .btn-mobilemenu span::after {
|
||
content: "";
|
||
position: absolute;
|
||
left: 0;
|
||
width: 24px;
|
||
height: 2px;
|
||
background: #1A1A2E;
|
||
transition: all all 0.15s ease;
|
||
}
|
||
.btn-mobilemenu span::before {
|
||
top: -8px;
|
||
}
|
||
.btn-mobilemenu span::after {
|
||
top: 8px;
|
||
}
|
||
.btn-mobilemenu.on span {
|
||
background: transparent;
|
||
}
|
||
.btn-mobilemenu.on span::before {
|
||
top: 0;
|
||
transform: rotate(45deg);
|
||
}
|
||
.btn-mobilemenu.on span::after {
|
||
top: 0;
|
||
transform: rotate(-45deg);
|
||
}
|
||
|
||
.main-nav.m-nav {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background: #FFFFFF;
|
||
z-index: 500;
|
||
right: -100%;
|
||
transition: none;
|
||
overflow-y: auto;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.main-nav.m-nav .nav-header {
|
||
padding: 24px;
|
||
background: #F8FAFC;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
.main-nav.m-nav .nav-list {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
flex-grow: 1;
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item {
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item > a {
|
||
display: flex;
|
||
align-items: center;
|
||
padding: 24px;
|
||
color: #1A1A2E;
|
||
font-size: 18px;
|
||
font-weight: 500;
|
||
text-decoration: none;
|
||
position: relative;
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item.has-submenu > a::after {
|
||
content: "";
|
||
position: absolute;
|
||
right: 24px;
|
||
top: 50%;
|
||
width: 8px;
|
||
height: 8px;
|
||
border-right: 2px solid #64748B;
|
||
border-bottom: 2px solid #64748B;
|
||
transform: translateY(-50%) rotate(45deg);
|
||
transition: transform all 0.15s ease;
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item.expanded > a::after {
|
||
transform: translateY(-25%) rotate(-135deg);
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item .sub-menu {
|
||
display: none;
|
||
list-style: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
background: #F8FAFC;
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item .sub-menu a {
|
||
display: block;
|
||
padding: 16px 24px 16px 48px;
|
||
color: #64748B;
|
||
font-size: 14px;
|
||
text-decoration: none;
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item .sub-menu a:hover {
|
||
background: #FFFFFF;
|
||
color: #4B9BFF;
|
||
}
|
||
.main-nav.m-nav .nav-list .nav-item.expanded .sub-menu {
|
||
display: block;
|
||
}
|
||
.main-nav.m-nav .info_wrap {
|
||
padding: 32px 24px;
|
||
background: #FFFFFF;
|
||
border-top: 1px solid #E2E8F0;
|
||
margin-top: auto;
|
||
}
|
||
|
||
.nav-menu {
|
||
display: flex;
|
||
list-style: none;
|
||
gap: 8px;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.nav-menu > li {
|
||
position: relative;
|
||
}
|
||
.nav-menu > li.submenu-open > .nav-link {
|
||
background: var(--light-bg);
|
||
color: var(--primary-blue);
|
||
}
|
||
.nav-menu > li.submenu-open .sub-menu {
|
||
visibility: visible;
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
.nav-menu > li .sub-menu {
|
||
position: absolute;
|
||
top: calc(100% + 8px);
|
||
left: 0;
|
||
min-width: 200px;
|
||
background: var(--white);
|
||
border: 1px solid var(--border-gray);
|
||
border-radius: 12px;
|
||
box-shadow: var(--shadow-xl);
|
||
padding: 8px 0;
|
||
visibility: hidden;
|
||
opacity: 0;
|
||
transform: translateY(-10px);
|
||
transition: all 0.3s ease;
|
||
z-index: 100;
|
||
list-style: none;
|
||
margin: 0;
|
||
}
|
||
.nav-menu > li .sub-menu li {
|
||
margin: 0;
|
||
}
|
||
.nav-menu > li .sub-menu li a {
|
||
display: block;
|
||
padding: 8px 24px;
|
||
color: var(--text-dark);
|
||
text-decoration: none;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.nav-menu > li .sub-menu li a:hover {
|
||
background: var(--light-bg);
|
||
color: var(--primary-blue);
|
||
}
|
||
|
||
.nav-link {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
text-decoration: none;
|
||
color: var(--text-dark);
|
||
font-weight: 500;
|
||
font-size: 15px;
|
||
padding: 8px 16px;
|
||
border-radius: 8px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.nav-link:hover {
|
||
background: var(--light-bg);
|
||
color: var(--primary-blue);
|
||
transform: translateY(-2px);
|
||
}
|
||
|
||
.nav-icon {
|
||
font-size: 18px;
|
||
}
|
||
|
||
.signup-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
text-decoration: none;
|
||
background: var(--gradient-primary);
|
||
color: var(--white);
|
||
padding: 12px 24px;
|
||
border-radius: 50px;
|
||
font-weight: 600;
|
||
transition: all 0.3s ease;
|
||
box-shadow: var(--shadow-md);
|
||
}
|
||
.signup-btn:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: var(--shadow-lg);
|
||
}
|
||
|
||
body {
|
||
padding-top: 80px;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.global-header {
|
||
height: 60px;
|
||
}
|
||
.global-header .container .header-content {
|
||
padding: 0 16px;
|
||
height: 60px;
|
||
}
|
||
body {
|
||
padding-top: 60px;
|
||
}
|
||
}
|
||
@media (max-width: 480px) {
|
||
.global-header .header-content {
|
||
padding: 0 12px;
|
||
}
|
||
.logo .logo-text {
|
||
display: none;
|
||
}
|
||
}
|
||
.global-footer {
|
||
background: #1A1A2E;
|
||
color: #FFFFFF;
|
||
padding: 80px 0 40px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.global-footer {
|
||
padding: 48px 0 32px;
|
||
}
|
||
}
|
||
|
||
.footer-top {
|
||
display: grid;
|
||
grid-template-columns: 2fr 3fr;
|
||
gap: 80px;
|
||
margin-bottom: 64px;
|
||
max-width: 1280px;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
padding: 0 24px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.footer-top {
|
||
grid-template-columns: 1fr;
|
||
gap: 40px;
|
||
}
|
||
}
|
||
|
||
.footer-brand {
|
||
max-width: 360px;
|
||
}
|
||
.footer-brand .footer-logo {
|
||
height: 48px;
|
||
margin-bottom: 24px;
|
||
}
|
||
.footer-brand .footer-desc {
|
||
font-size: 14px;
|
||
line-height: 1.8;
|
||
color: rgba(255, 255, 255, 0.7);
|
||
margin-bottom: 24px;
|
||
}
|
||
.footer-brand .footer-newsletter {
|
||
margin-bottom: 32px;
|
||
}
|
||
.footer-brand .footer-newsletter h4 {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
margin-bottom: 16px;
|
||
}
|
||
.footer-brand .footer-newsletter .newsletter-form {
|
||
display: flex;
|
||
gap: 8px;
|
||
}
|
||
.footer-brand .footer-newsletter .newsletter-form input {
|
||
flex: 1;
|
||
padding: 8px 16px;
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||
border-radius: 8px;
|
||
color: #FFFFFF;
|
||
font-size: 14px;
|
||
}
|
||
.footer-brand .footer-newsletter .newsletter-form input::placeholder {
|
||
color: rgba(255, 255, 255, 0.5);
|
||
}
|
||
.footer-brand .footer-newsletter .newsletter-form input:focus {
|
||
background: rgba(255, 255, 255, 0.15);
|
||
border-color: #4B9BFF;
|
||
outline: none;
|
||
}
|
||
.footer-brand .footer-newsletter .newsletter-form button {
|
||
padding: 8px 24px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border-radius: 8px;
|
||
font-weight: 600;
|
||
font-size: 14px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.footer-brand .footer-newsletter .newsletter-form button:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
|
||
.social-links {
|
||
display: flex;
|
||
gap: 16px;
|
||
}
|
||
.social-links a {
|
||
width: 44px;
|
||
height: 44px;
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border-radius: 12px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
color: #FFFFFF;
|
||
transition: all 0.3s ease;
|
||
font-size: 20px;
|
||
}
|
||
.social-links a:hover {
|
||
background: #4B9BFF;
|
||
transform: translateY(-3px);
|
||
}
|
||
.social-links a.facebook:hover {
|
||
background: #1877f2;
|
||
}
|
||
.social-links a.twitter:hover {
|
||
background: #1da1f2;
|
||
}
|
||
.social-links a.linkedin:hover {
|
||
background: #0077b5;
|
||
}
|
||
.social-links a.github:hover {
|
||
background: #333;
|
||
}
|
||
.social-links a.youtube:hover {
|
||
background: #ff0000;
|
||
}
|
||
|
||
.footer-links {
|
||
display: grid;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
gap: 40px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.footer-links {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.footer-links {
|
||
grid-template-columns: 1fr;
|
||
text-align: center;
|
||
}
|
||
}
|
||
|
||
.footer-column h4 {
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
margin-bottom: 24px;
|
||
color: #FFFFFF;
|
||
}
|
||
.footer-column ul {
|
||
list-style: none;
|
||
}
|
||
.footer-column ul li {
|
||
margin-bottom: 16px;
|
||
}
|
||
.footer-column ul li a {
|
||
color: rgba(255, 255, 255, 0.7);
|
||
font-size: 14px;
|
||
transition: all 0.3s ease;
|
||
position: relative;
|
||
}
|
||
.footer-column ul li a::after {
|
||
content: "";
|
||
position: absolute;
|
||
bottom: -2px;
|
||
left: 0;
|
||
width: 0;
|
||
height: 1px;
|
||
background: #00D4FF;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.footer-column ul li a:hover {
|
||
color: #00D4FF;
|
||
}
|
||
.footer-column ul li a:hover::after {
|
||
width: 100%;
|
||
}
|
||
.footer-column .footer-badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 4px 8px;
|
||
background: rgba(107, 207, 127, 0.2);
|
||
color: #6BCF7F;
|
||
border-radius: 50px;
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
margin-left: 8px;
|
||
}
|
||
|
||
.footer-bottom {
|
||
padding-top: 40px;
|
||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||
max-width: 1280px;
|
||
margin: 0 auto;
|
||
padding-left: 24px;
|
||
padding-right: 24px;
|
||
}
|
||
|
||
.footer-legal {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.footer-legal {
|
||
flex-direction: column;
|
||
gap: 24px;
|
||
text-align: center;
|
||
}
|
||
}
|
||
.footer-legal p {
|
||
color: rgba(255, 255, 255, 0.5);
|
||
font-size: 14px;
|
||
margin: 0;
|
||
}
|
||
.footer-legal .legal-links {
|
||
display: flex;
|
||
gap: 24px;
|
||
}
|
||
.footer-legal .legal-links a {
|
||
color: rgba(255, 255, 255, 0.7);
|
||
font-size: 14px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.footer-legal .legal-links a:hover {
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.footer-decoration {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.footer-decoration::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: -100px;
|
||
right: -100px;
|
||
width: 300px;
|
||
height: 300px;
|
||
background: radial-gradient(circle, rgba(75, 155, 255, 0.1) 0%, transparent 70%);
|
||
border-radius: 50%;
|
||
}
|
||
.footer-decoration::after {
|
||
content: "";
|
||
position: absolute;
|
||
bottom: -150px;
|
||
left: -150px;
|
||
width: 400px;
|
||
height: 400px;
|
||
background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.grid {
|
||
display: grid;
|
||
gap: 24px;
|
||
}
|
||
.grid-cols-1 {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
.grid-cols-2 {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
.grid-cols-3 {
|
||
grid-template-columns: repeat(3, 1fr);
|
||
}
|
||
.grid-cols-4 {
|
||
grid-template-columns: repeat(4, 1fr);
|
||
}
|
||
.grid-cols-5 {
|
||
grid-template-columns: repeat(5, 1fr);
|
||
}
|
||
.grid-cols-6 {
|
||
grid-template-columns: repeat(6, 1fr);
|
||
}
|
||
.grid-cols-12 {
|
||
grid-template-columns: repeat(12, 1fr);
|
||
}
|
||
.grid-auto {
|
||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
}
|
||
.grid-auto-sm {
|
||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||
}
|
||
.grid-auto-lg {
|
||
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||
}
|
||
.grid.gap-0 {
|
||
gap: 0;
|
||
}
|
||
.grid.gap-sm {
|
||
gap: 8px;
|
||
}
|
||
.grid.gap-md {
|
||
gap: 16px;
|
||
}
|
||
.grid.gap-lg {
|
||
gap: 24px;
|
||
}
|
||
.grid.gap-xl {
|
||
gap: 32px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.grid-md-cols-1 {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
.grid-md-cols-2 {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.grid-sm-cols-1 {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
.grid-sm-cols-2 {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
|
||
.col-span-1 {
|
||
grid-column: span 1;
|
||
}
|
||
|
||
.col-span-2 {
|
||
grid-column: span 2;
|
||
}
|
||
|
||
.col-span-3 {
|
||
grid-column: span 3;
|
||
}
|
||
|
||
.col-span-4 {
|
||
grid-column: span 4;
|
||
}
|
||
|
||
.col-span-5 {
|
||
grid-column: span 5;
|
||
}
|
||
|
||
.col-span-6 {
|
||
grid-column: span 6;
|
||
}
|
||
|
||
.col-span-full {
|
||
grid-column: 1/-1;
|
||
}
|
||
|
||
.row-span-1 {
|
||
grid-row: span 1;
|
||
}
|
||
|
||
.row-span-2 {
|
||
grid-row: span 2;
|
||
}
|
||
|
||
.row-span-3 {
|
||
grid-row: span 3;
|
||
}
|
||
|
||
.api-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
gap: 24px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.api-grid {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.experience-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
gap: 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.experience-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.partners-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||
gap: 40px;
|
||
align-items: center;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.partners-grid {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
|
||
.feature-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 32px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.feature-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.demo-wrapper {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 40px;
|
||
align-items: start;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.demo-wrapper {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.footer-grid {
|
||
display: grid;
|
||
grid-template-columns: 2fr 3fr;
|
||
gap: 80px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.footer-grid {
|
||
grid-template-columns: 1fr;
|
||
gap: 40px;
|
||
}
|
||
}
|
||
.footer-grid .footer-links {
|
||
display: grid;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
gap: 40px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.footer-grid .footer-links {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.footer-grid .footer-links {
|
||
grid-template-columns: 1fr;
|
||
text-align: center;
|
||
}
|
||
}
|
||
|
||
.pricing-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 24px;
|
||
align-items: center;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.pricing-grid {
|
||
grid-template-columns: 1fr;
|
||
gap: 32px;
|
||
}
|
||
}
|
||
|
||
.testimonial-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||
gap: 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.testimonial-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.stats-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
gap: 32px;
|
||
text-align: center;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.stats-grid {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.stats-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.two-column {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 48px;
|
||
align-items: center;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.two-column {
|
||
grid-template-columns: 1fr;
|
||
gap: 32px;
|
||
}
|
||
}
|
||
.two-column.reverse {
|
||
direction: rtl;
|
||
}
|
||
.two-column.reverse > * {
|
||
direction: ltr;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.two-column.reverse {
|
||
direction: ltr;
|
||
}
|
||
}
|
||
|
||
.three-column {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 32px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.three-column {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.container {
|
||
max-width: 1280px;
|
||
margin: 0 auto;
|
||
padding: 0 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.container {
|
||
padding: 0 16px;
|
||
}
|
||
}
|
||
.container-fluid {
|
||
max-width: 100%;
|
||
padding: 0 24px;
|
||
}
|
||
.container-narrow {
|
||
max-width: 960px;
|
||
}
|
||
.container-wide {
|
||
max-width: 1440px;
|
||
}
|
||
|
||
.section {
|
||
padding: 100px 0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.section {
|
||
padding: 64px 0;
|
||
}
|
||
}
|
||
.section-sm {
|
||
padding: 48px 0;
|
||
}
|
||
.section-lg {
|
||
padding: 150px 0;
|
||
}
|
||
.section-no-top {
|
||
padding-top: 0;
|
||
}
|
||
.section-no-bottom {
|
||
padding-bottom: 0;
|
||
}
|
||
|
||
.section-bg-gray {
|
||
background: #F8FAFC;
|
||
}
|
||
.section-bg-light {
|
||
background: #EFF6FF;
|
||
}
|
||
.section-bg-gradient {
|
||
background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
|
||
}
|
||
.section-bg-gradient-reverse {
|
||
background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
|
||
}
|
||
.section-bg-primary {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
}
|
||
.section-bg-dark {
|
||
background: #1A1A2E;
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.section-header {
|
||
text-align: center;
|
||
margin-bottom: 64px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.section-header {
|
||
margin-bottom: 48px;
|
||
}
|
||
}
|
||
.section-header .section-badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 4px 16px;
|
||
background: #EFF6FF;
|
||
color: #4B9BFF;
|
||
border-radius: 50px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
margin-bottom: 16px;
|
||
}
|
||
.section-header .section-title {
|
||
font-size: 40px;
|
||
font-weight: 700;
|
||
margin-bottom: 16px;
|
||
color: #1A1A2E;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.section-header .section-title {
|
||
font-size: 32px;
|
||
}
|
||
}
|
||
.section-header .section-title .title-highlight {
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
.section-header .section-subtitle {
|
||
font-size: 18px;
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.section-header .section-subtitle {
|
||
font-size: 16px;
|
||
}
|
||
}
|
||
|
||
.content-wrapper {
|
||
position: relative;
|
||
min-height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.content-wrapper .main-content {
|
||
flex: 1;
|
||
padding-top: 80px;
|
||
}
|
||
|
||
.page-wrapper {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.inner-content {
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.btn {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 16px 32px;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
cursor: pointer;
|
||
border: none;
|
||
}
|
||
.btn:hover {
|
||
transform: translateY(-3px);
|
||
}
|
||
.btn {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.btn-sm {
|
||
padding: 8px 16px;
|
||
font-size: 14px;
|
||
}
|
||
.btn-md {
|
||
padding: 16px 24px;
|
||
font-size: 16px;
|
||
}
|
||
.btn-lg {
|
||
padding: 16px 32px;
|
||
font-size: 18px;
|
||
}
|
||
.btn-xl {
|
||
padding: 24px 40px;
|
||
font-size: 20px;
|
||
}
|
||
.btn-primary {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.btn-primary:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.btn-primary:active {
|
||
transform: translateY(-1px);
|
||
}
|
||
.btn-secondary {
|
||
background: #FFFFFF;
|
||
color: #4B9BFF;
|
||
border: 2px solid #4B9BFF;
|
||
}
|
||
.btn-secondary:hover {
|
||
background: #EFF6FF;
|
||
transform: translateY(-3px);
|
||
}
|
||
.btn-accent {
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
color: #FFFFFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.btn-accent:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.btn-warm {
|
||
background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
|
||
color: #FFFFFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.btn-warm:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.btn-success {
|
||
background: #6BCF7F;
|
||
color: #FFFFFF;
|
||
}
|
||
.btn-success:hover {
|
||
background: rgb(68.4897959184, 194.5102040816, 93.693877551);
|
||
transform: translateY(-3px);
|
||
}
|
||
.btn-danger {
|
||
background: #FF6B6B;
|
||
color: #FFFFFF;
|
||
}
|
||
.btn-danger:hover {
|
||
background: #ff3838;
|
||
transform: translateY(-3px);
|
||
}
|
||
.btn-ghost {
|
||
background: transparent;
|
||
color: #4B9BFF;
|
||
border: 2px solid transparent;
|
||
}
|
||
.btn-ghost:hover {
|
||
background: rgba(75, 155, 255, 0.1);
|
||
border-color: #4B9BFF;
|
||
}
|
||
.btn-outline {
|
||
background: transparent;
|
||
color: #1A1A2E;
|
||
border: 2px solid #E2E8F0;
|
||
}
|
||
.btn-outline:hover {
|
||
border-color: #4B9BFF;
|
||
color: #4B9BFF;
|
||
transform: translateY(-3px);
|
||
}
|
||
.btn:disabled, .btn.disabled {
|
||
opacity: 0.5;
|
||
cursor: not-allowed;
|
||
pointer-events: none;
|
||
}
|
||
.btn.loading {
|
||
color: transparent;
|
||
pointer-events: none;
|
||
}
|
||
.btn.loading::after {
|
||
content: "";
|
||
position: absolute;
|
||
width: 16px;
|
||
height: 16px;
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
border: 2px solid #FFFFFF;
|
||
border-radius: 50%;
|
||
border-top-color: transparent;
|
||
animation: spin 0.6s linear infinite;
|
||
}
|
||
.btn-icon {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 44px;
|
||
height: 44px;
|
||
padding: 0;
|
||
border-radius: 50%;
|
||
}
|
||
.btn-icon.btn-sm {
|
||
width: 32px;
|
||
height: 32px;
|
||
}
|
||
.btn-icon.btn-lg {
|
||
width: 56px;
|
||
height: 56px;
|
||
}
|
||
.btn-block {
|
||
width: 100%;
|
||
justify-content: center;
|
||
}
|
||
.btn-group {
|
||
display: inline-flex;
|
||
gap: -1px;
|
||
}
|
||
.btn-group .btn {
|
||
border-radius: 0;
|
||
}
|
||
.btn-group .btn:first-child {
|
||
border-top-left-radius: 12px;
|
||
border-bottom-left-radius: 12px;
|
||
}
|
||
.btn-group .btn:last-child {
|
||
border-top-right-radius: 12px;
|
||
border-bottom-right-radius: 12px;
|
||
}
|
||
|
||
.fab {
|
||
position: fixed;
|
||
bottom: 32px;
|
||
right: 32px;
|
||
width: 60px;
|
||
height: 60px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
border: none;
|
||
border-radius: 50%;
|
||
color: #FFFFFF;
|
||
font-size: 24px;
|
||
cursor: pointer;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
transition: all 0.3s ease;
|
||
z-index: 300;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
.fab:hover {
|
||
transform: scale(1.1);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.fab:hover .fab-label {
|
||
opacity: 1;
|
||
transform: translateX(-10px);
|
||
}
|
||
.fab .fab-label {
|
||
position: absolute;
|
||
right: 70px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
background: #1A1A2E;
|
||
color: #FFFFFF;
|
||
padding: 8px 16px;
|
||
border-radius: 8px;
|
||
font-size: 14px;
|
||
white-space: nowrap;
|
||
opacity: 0;
|
||
transition: all 0.3s ease;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.btn-cta-primary {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 16px 32px;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
cursor: pointer;
|
||
border: none;
|
||
}
|
||
.btn-cta-primary:hover {
|
||
transform: translateY(-3px);
|
||
}
|
||
.btn-cta-primary {
|
||
background: #FFFFFF;
|
||
color: #4B9BFF;
|
||
padding: 16px 40px;
|
||
font-size: 18px;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.btn-cta-primary:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.btn-cta-secondary {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 16px 32px;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
cursor: pointer;
|
||
border: none;
|
||
}
|
||
.btn-cta-secondary:hover {
|
||
transform: translateY(-3px);
|
||
}
|
||
.btn-cta-secondary {
|
||
background: transparent;
|
||
color: #FFFFFF;
|
||
border: 2px solid #FFFFFF;
|
||
padding: 16px 40px;
|
||
font-size: 18px;
|
||
}
|
||
.btn-cta-secondary:hover {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
transform: translateY(-3px);
|
||
}
|
||
|
||
.card {
|
||
background: #FFFFFF;
|
||
border-radius: 20px;
|
||
padding: 32px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.card {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.card::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: -50%;
|
||
left: -50%;
|
||
width: 200%;
|
||
height: 200%;
|
||
background: linear-gradient(45deg, transparent 30%, rgba(75, 155, 255, 0.03) 50%, transparent 70%);
|
||
transform: rotate(45deg);
|
||
transition: all 0.5s ease;
|
||
opacity: 0;
|
||
}
|
||
.card:hover::before {
|
||
animation: shimmer 0.6s ease;
|
||
opacity: 1;
|
||
}
|
||
|
||
.api-card {
|
||
background: #FFFFFF;
|
||
border-radius: 20px;
|
||
padding: 32px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.api-card {
|
||
text-align: center;
|
||
border: 2px solid #E2E8F0;
|
||
}
|
||
.api-card:hover {
|
||
border-color: #4B9BFF;
|
||
transform: translateY(-8px);
|
||
}
|
||
.api-card-popular {
|
||
border-color: #FFD93D;
|
||
background: linear-gradient(180deg, rgba(255, 217, 61, 0.05) 0%, #FFFFFF 100%);
|
||
}
|
||
.api-card-new {
|
||
border-color: #6BCF7F;
|
||
background: linear-gradient(180deg, rgba(107, 207, 127, 0.05) 0%, #FFFFFF 100%);
|
||
}
|
||
.api-card .api-badge {
|
||
position: absolute;
|
||
top: -12px;
|
||
right: 20px;
|
||
padding: 4px 16px;
|
||
background: #FFD93D;
|
||
color: #1A1A2E;
|
||
border-radius: 20px;
|
||
font-size: 12px;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
}
|
||
.api-card .api-badge.new {
|
||
background: #6BCF7F;
|
||
color: #FFFFFF;
|
||
}
|
||
.api-card .api-badge.beta {
|
||
background: #A78BFA;
|
||
color: #FFFFFF;
|
||
}
|
||
.api-card .api-icon {
|
||
width: 60px;
|
||
height: 60px;
|
||
margin: 0 auto 24px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
font-size: 28px;
|
||
background: #EFF6FF;
|
||
color: #4B9BFF;
|
||
border-radius: 16px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-card:hover .api-icon {
|
||
transform: scale(1.1);
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
}
|
||
.api-card .api-name {
|
||
font-size: 20px;
|
||
font-weight: 700;
|
||
margin-bottom: 16px;
|
||
color: #1A1A2E;
|
||
}
|
||
.api-card .api-description {
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
margin-bottom: 24px;
|
||
font-size: 14px;
|
||
}
|
||
.api-card .api-features {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
margin-bottom: 24px;
|
||
flex-wrap: wrap;
|
||
}
|
||
.api-card .api-features .feature-tag {
|
||
padding: 4px 8px;
|
||
background: #F8FAFC;
|
||
color: #64748B;
|
||
border-radius: 20px;
|
||
font-size: 12px;
|
||
font-weight: 500;
|
||
}
|
||
.api-card .api-link {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
color: #4B9BFF;
|
||
font-weight: 600;
|
||
font-size: 14px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-card .api-link:hover {
|
||
gap: 8px;
|
||
color: #2E7FF7;
|
||
}
|
||
|
||
.experience-card {
|
||
background: #FFFFFF;
|
||
border-radius: 20px;
|
||
padding: 32px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.experience-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.experience-card {
|
||
text-align: center;
|
||
}
|
||
.experience-card .card-icon {
|
||
width: 56px;
|
||
height: 56px;
|
||
margin: 0 auto 24px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
font-size: 24px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border-radius: 16px;
|
||
}
|
||
.experience-card h3 {
|
||
font-size: 20px;
|
||
font-weight: 700;
|
||
margin-bottom: 16px;
|
||
color: #1A1A2E;
|
||
}
|
||
.experience-card p {
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
margin-bottom: 24px;
|
||
font-size: 14px;
|
||
}
|
||
.experience-card .card-metric {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
padding-top: 24px;
|
||
border-top: 1px solid #E2E8F0;
|
||
}
|
||
.experience-card .card-metric .metric-value {
|
||
font-size: 24px;
|
||
font-weight: 800;
|
||
color: #4B9BFF;
|
||
}
|
||
.experience-card .card-metric .metric-label {
|
||
font-size: 12px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.feature-card {
|
||
background: #FFFFFF;
|
||
border-radius: 20px;
|
||
padding: 32px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.feature-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.feature-card {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 24px;
|
||
}
|
||
.feature-card .feature-icon {
|
||
flex-shrink: 0;
|
||
width: 48px;
|
||
height: 48px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border-radius: 12px;
|
||
font-size: 24px;
|
||
}
|
||
.feature-card .feature-content {
|
||
flex: 1;
|
||
}
|
||
.feature-card .feature-content h4 {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
color: #1A1A2E;
|
||
}
|
||
.feature-card .feature-content p {
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.testimonial-card {
|
||
background: #FFFFFF;
|
||
border-radius: 20px;
|
||
padding: 32px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.testimonial-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.testimonial-card {
|
||
position: relative;
|
||
}
|
||
.testimonial-card::before {
|
||
content: '"';
|
||
position: absolute;
|
||
top: 16px;
|
||
left: 16px;
|
||
font-size: 60px;
|
||
color: #4B9BFF;
|
||
opacity: 0.1;
|
||
font-weight: 700;
|
||
}
|
||
.testimonial-card .testimonial-content {
|
||
position: relative;
|
||
z-index: 1;
|
||
font-size: 16px;
|
||
line-height: 1.8;
|
||
color: #1A1A2E;
|
||
margin-bottom: 24px;
|
||
font-style: italic;
|
||
}
|
||
.testimonial-card .testimonial-author {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
.testimonial-card .testimonial-author .author-avatar {
|
||
width: 48px;
|
||
height: 48px;
|
||
border-radius: 50%;
|
||
object-fit: cover;
|
||
}
|
||
.testimonial-card .testimonial-author .author-info .author-name {
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 2px;
|
||
}
|
||
.testimonial-card .testimonial-author .author-info .author-title {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
}
|
||
|
||
.pricing-card {
|
||
background: #FFFFFF;
|
||
border-radius: 20px;
|
||
padding: 32px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.pricing-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.pricing-card {
|
||
text-align: center;
|
||
position: relative;
|
||
}
|
||
.pricing-card.featured {
|
||
border: 2px solid #4B9BFF;
|
||
transform: scale(1.05);
|
||
}
|
||
.pricing-card.featured .pricing-badge {
|
||
position: absolute;
|
||
top: -14px;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
padding: 4px 16px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border-radius: 50px;
|
||
font-size: 12px;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
}
|
||
.pricing-card .pricing-header {
|
||
padding-bottom: 24px;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
margin-bottom: 24px;
|
||
}
|
||
.pricing-card .pricing-header h3 {
|
||
font-size: 24px;
|
||
font-weight: 700;
|
||
margin-bottom: 8px;
|
||
color: #1A1A2E;
|
||
}
|
||
.pricing-card .pricing-header .price {
|
||
display: flex;
|
||
align-items: baseline;
|
||
justify-content: center;
|
||
gap: 4px;
|
||
}
|
||
.pricing-card .pricing-header .price .currency {
|
||
font-size: 20px;
|
||
color: #64748B;
|
||
}
|
||
.pricing-card .pricing-header .price .amount {
|
||
font-size: 48px;
|
||
font-weight: 800;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
.pricing-card .pricing-header .price .period {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
}
|
||
.pricing-card .pricing-features {
|
||
list-style: none;
|
||
margin-bottom: 24px;
|
||
}
|
||
.pricing-card .pricing-features li {
|
||
padding: 8px 0;
|
||
color: #64748B;
|
||
font-size: 14px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
.pricing-card .pricing-features li::before {
|
||
content: "✓";
|
||
color: #6BCF7F;
|
||
font-weight: 700;
|
||
}
|
||
.pricing-card .pricing-features li.disabled {
|
||
opacity: 0.5;
|
||
}
|
||
.pricing-card .pricing-features li.disabled::before {
|
||
content: "×";
|
||
color: #94A3B8;
|
||
}
|
||
.pricing-card .pricing-cta {
|
||
margin-top: auto;
|
||
}
|
||
|
||
.form-group {
|
||
margin-bottom: 24px;
|
||
}
|
||
.form-group label {
|
||
display: block;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
color: #1A1A2E;
|
||
margin-bottom: 8px;
|
||
}
|
||
.form-group label .required {
|
||
color: #FF6B6B;
|
||
margin-left: 2px;
|
||
}
|
||
.form-group .form-hint {
|
||
font-size: 12px;
|
||
color: #64748B;
|
||
margin-top: 4px;
|
||
}
|
||
.form-group .form-error {
|
||
font-size: 12px;
|
||
color: #FF6B6B;
|
||
margin-top: 4px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
}
|
||
|
||
.form-control {
|
||
width: 100%;
|
||
padding: 12px 16px;
|
||
font-size: 16px;
|
||
font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
|
||
color: #1A1A2E;
|
||
background: #FFFFFF;
|
||
border: 2px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.form-control::placeholder {
|
||
color: #94A3B8;
|
||
}
|
||
.form-control:focus {
|
||
outline: none;
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 0 0 3px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.form-control:disabled {
|
||
background: #F8FAFC;
|
||
color: #64748B;
|
||
cursor: not-allowed;
|
||
}
|
||
.form-control-sm {
|
||
padding: 8px 16px;
|
||
font-size: 14px;
|
||
}
|
||
.form-control-lg {
|
||
padding: 16px 24px;
|
||
font-size: 18px;
|
||
}
|
||
.form-control.is-valid {
|
||
border-color: #6BCF7F;
|
||
}
|
||
.form-control.is-valid:focus {
|
||
box-shadow: 0 0 0 3px rgba(107, 207, 127, 0.1);
|
||
}
|
||
.form-control.is-invalid {
|
||
border-color: #FF6B6B;
|
||
}
|
||
.form-control.is-invalid:focus {
|
||
box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
|
||
}
|
||
|
||
textarea.form-control {
|
||
min-height: 120px;
|
||
resize: vertical;
|
||
}
|
||
|
||
select.form-control {
|
||
appearance: none;
|
||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%2364748B'/%3E%3C/svg%3E");
|
||
background-repeat: no-repeat;
|
||
background-position: right 16px center;
|
||
background-size: 12px;
|
||
padding-right: 40px;
|
||
}
|
||
|
||
.form-check {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 16px;
|
||
}
|
||
.form-check input[type=checkbox],
|
||
.form-check input[type=radio] {
|
||
width: 20px;
|
||
height: 20px;
|
||
margin-right: 8px;
|
||
cursor: pointer;
|
||
}
|
||
.form-check label {
|
||
margin-bottom: 0;
|
||
cursor: pointer;
|
||
user-select: none;
|
||
}
|
||
.form-check.disabled {
|
||
opacity: 0.5;
|
||
cursor: not-allowed;
|
||
}
|
||
.form-check.disabled input,
|
||
.form-check.disabled label {
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.form-switch {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
.form-switch .switch {
|
||
position: relative;
|
||
width: 48px;
|
||
height: 24px;
|
||
background: #E2E8F0;
|
||
border-radius: 50px;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.form-switch .switch::after {
|
||
content: "";
|
||
position: absolute;
|
||
top: 2px;
|
||
left: 2px;
|
||
width: 20px;
|
||
height: 20px;
|
||
background: #FFFFFF;
|
||
border-radius: 50%;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.form-switch .switch.active {
|
||
background: #4B9BFF;
|
||
}
|
||
.form-switch .switch.active::after {
|
||
transform: translateX(24px);
|
||
}
|
||
|
||
.input-group {
|
||
display: flex;
|
||
width: 100%;
|
||
}
|
||
.input-group .input-group-text {
|
||
padding: 12px 16px;
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
background: #F8FAFC;
|
||
border: 2px solid #E2E8F0;
|
||
border-radius: 8px 0 0 8px;
|
||
border-right: none;
|
||
}
|
||
.input-group .form-control {
|
||
border-radius: 0 8px 8px 0;
|
||
}
|
||
.input-group.input-group-append .input-group-text {
|
||
border-radius: 0 8px 8px 0;
|
||
border-right: 2px solid #E2E8F0;
|
||
border-left: none;
|
||
}
|
||
.input-group.input-group-append .form-control {
|
||
border-radius: 8px 0 0 8px;
|
||
}
|
||
|
||
.form-inline {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
gap: 16px;
|
||
}
|
||
.form-inline .form-group {
|
||
margin-bottom: 0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.form-inline {
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
.form-inline .form-group {
|
||
margin-bottom: 16px;
|
||
}
|
||
}
|
||
|
||
.form-row {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.form-row {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.modal-backdrop {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background: rgba(0, 0, 0, 0.5);
|
||
z-index: 400;
|
||
opacity: 0;
|
||
visibility: hidden;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.modal-backdrop.show {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
}
|
||
|
||
.modal {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
z-index: 500;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 24px;
|
||
opacity: 0;
|
||
visibility: hidden;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.modal.show {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
}
|
||
.modal.show .modal-dialog {
|
||
transform: scale(1);
|
||
}
|
||
|
||
.modal-dialog {
|
||
position: relative;
|
||
background: #FFFFFF;
|
||
border-radius: 16px;
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
max-width: 500px;
|
||
width: 100%;
|
||
max-height: 90vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
transform: scale(0.95);
|
||
transition: all 0.3s ease;
|
||
}
|
||
.modal-dialog.modal-sm {
|
||
max-width: 400px;
|
||
}
|
||
.modal-dialog.modal-lg {
|
||
max-width: 800px;
|
||
}
|
||
.modal-dialog.modal-xl {
|
||
max-width: 1200px;
|
||
}
|
||
.modal-dialog.modal-fullscreen {
|
||
max-width: 100%;
|
||
max-height: 100%;
|
||
height: 100%;
|
||
margin: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.modal-header {
|
||
padding: 24px;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.modal-header .modal-title {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin: 0;
|
||
}
|
||
.modal-header .modal-close {
|
||
width: 32px;
|
||
height: 32px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
background: transparent;
|
||
border: none;
|
||
border-radius: 8px;
|
||
color: #64748B;
|
||
font-size: 24px;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.modal-header .modal-close:hover {
|
||
background: #F8FAFC;
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
.modal-body {
|
||
padding: 24px;
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
color: #1A1A2E;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.modal-footer {
|
||
padding: 24px;
|
||
border-top: 1px solid #E2E8F0;
|
||
display: flex;
|
||
gap: 16px;
|
||
justify-content: flex-end;
|
||
}
|
||
.modal-footer.modal-footer-center {
|
||
justify-content: center;
|
||
}
|
||
.modal-footer.modal-footer-between {
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.modal-alert .modal-dialog {
|
||
max-width: 400px;
|
||
}
|
||
.modal-alert .modal-body {
|
||
text-align: center;
|
||
padding: 32px;
|
||
}
|
||
.modal-alert .modal-body .alert-icon {
|
||
width: 64px;
|
||
height: 64px;
|
||
margin: 0 auto 24px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
font-size: 32px;
|
||
border-radius: 50%;
|
||
}
|
||
.modal-alert .modal-body .alert-icon.alert-success {
|
||
background: rgba(107, 207, 127, 0.1);
|
||
color: #6BCF7F;
|
||
}
|
||
.modal-alert .modal-body .alert-icon.alert-warning {
|
||
background: rgba(255, 217, 61, 0.1);
|
||
color: #FFD93D;
|
||
}
|
||
.modal-alert .modal-body .alert-icon.alert-danger {
|
||
background: rgba(255, 107, 107, 0.1);
|
||
color: #FF6B6B;
|
||
}
|
||
.modal-alert .modal-body .alert-icon.alert-info {
|
||
background: rgba(75, 155, 255, 0.1);
|
||
color: #4B9BFF;
|
||
}
|
||
.modal-alert .modal-body .alert-title {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
color: #1A1A2E;
|
||
}
|
||
.modal-alert .modal-body .alert-message {
|
||
color: #64748B;
|
||
}
|
||
|
||
.breadcrumb {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 16px 0;
|
||
font-size: 14px;
|
||
}
|
||
.breadcrumb .breadcrumb-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
color: #64748B;
|
||
}
|
||
.breadcrumb .breadcrumb-item a {
|
||
color: #64748B;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.breadcrumb .breadcrumb-item a:hover {
|
||
color: #4B9BFF;
|
||
}
|
||
.breadcrumb .breadcrumb-item.active {
|
||
color: #1A1A2E;
|
||
font-weight: 500;
|
||
}
|
||
.breadcrumb .breadcrumb-item:not(:last-child)::after {
|
||
content: "/";
|
||
color: #94A3B8;
|
||
margin-left: 8px;
|
||
}
|
||
|
||
.nav-tabs {
|
||
display: flex;
|
||
gap: 4px;
|
||
border-bottom: 2px solid #E2E8F0;
|
||
margin-bottom: 32px;
|
||
}
|
||
.nav-tabs .nav-item {
|
||
position: relative;
|
||
}
|
||
.nav-tabs .nav-link {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 16px 24px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
border-bottom: 2px solid transparent;
|
||
margin-bottom: -2px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.nav-tabs .nav-link:hover {
|
||
color: #1A1A2E;
|
||
}
|
||
.nav-tabs .nav-link.active {
|
||
color: #4B9BFF;
|
||
border-bottom-color: #4B9BFF;
|
||
}
|
||
.nav-tabs .nav-link .badge {
|
||
padding: 2px 6px;
|
||
background: #F8FAFC;
|
||
color: #64748B;
|
||
border-radius: 50px;
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.nav-pills {
|
||
display: flex;
|
||
gap: 8px;
|
||
padding: 4px;
|
||
background: #F8FAFC;
|
||
border-radius: 12px;
|
||
}
|
||
.nav-pills .nav-link {
|
||
padding: 8px 24px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
border-radius: 8px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.nav-pills .nav-link:hover {
|
||
color: #1A1A2E;
|
||
background: rgba(255, 255, 255, 0.5);
|
||
}
|
||
.nav-pills .nav-link.active {
|
||
background: #FFFFFF;
|
||
color: #4B9BFF;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.sidebar-nav .nav-section {
|
||
margin-bottom: 32px;
|
||
}
|
||
.sidebar-nav .nav-section .nav-title {
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
text-transform: uppercase;
|
||
color: #64748B;
|
||
padding: 8px 16px;
|
||
letter-spacing: 0.05em;
|
||
}
|
||
.sidebar-nav .nav-menu {
|
||
list-style: none;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-item {
|
||
margin-bottom: 4px;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-link {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
padding: 8px 16px;
|
||
color: #1A1A2E;
|
||
border-radius: 8px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-link .nav-icon {
|
||
width: 20px;
|
||
height: 20px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
font-size: 18px;
|
||
color: #64748B;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-link:hover {
|
||
background: #F8FAFC;
|
||
color: #4B9BFF;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-link:hover .nav-icon {
|
||
color: #4B9BFF;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-link.active {
|
||
background: #EFF6FF;
|
||
color: #4B9BFF;
|
||
font-weight: 500;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-link.active .nav-icon {
|
||
color: #4B9BFF;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-submenu {
|
||
margin-left: 40px;
|
||
margin-top: 4px;
|
||
list-style: none;
|
||
}
|
||
.sidebar-nav .nav-menu .nav-submenu .nav-link {
|
||
font-size: 14px;
|
||
padding: 4px 16px;
|
||
}
|
||
|
||
.pagination {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
}
|
||
.pagination .page-item.disabled .page-link {
|
||
opacity: 0.5;
|
||
cursor: not-allowed;
|
||
pointer-events: none;
|
||
}
|
||
.pagination .page-item.active .page-link {
|
||
background: #4B9BFF;
|
||
color: #FFFFFF;
|
||
border-color: #4B9BFF;
|
||
}
|
||
.pagination .page-link {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
min-width: 36px;
|
||
height: 36px;
|
||
padding: 0 8px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
color: #1A1A2E;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.pagination .page-link:hover {
|
||
background: #F8FAFC;
|
||
border-color: #4B9BFF;
|
||
color: #4B9BFF;
|
||
}
|
||
.pagination .page-link.page-prev, .pagination .page-link.page-next {
|
||
font-size: 18px;
|
||
}
|
||
.pagination .page-dots {
|
||
padding: 0 8px;
|
||
color: #64748B;
|
||
}
|
||
|
||
.partners {
|
||
padding: 80px 0;
|
||
background: #FFFFFF;
|
||
}
|
||
|
||
.final-cta {
|
||
position: relative;
|
||
padding: 150px 0;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
overflow: hidden;
|
||
}
|
||
|
||
#passwordInputPopup .modal-dialog {
|
||
max-width: 450px;
|
||
}
|
||
#passwordInputPopup .pop_input_group {
|
||
text-align: left;
|
||
margin: 0;
|
||
}
|
||
#passwordInputPopup .pop_input_field {
|
||
width: 100%;
|
||
padding: 12px 16px;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
font-size: 14px;
|
||
font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
|
||
transition: all 0.3s ease;
|
||
box-sizing: border-box;
|
||
}
|
||
#passwordInputPopup .pop_input_field:focus {
|
||
outline: none;
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 0 0 3px rgba(75, 155, 255, 0.1);
|
||
}
|
||
#passwordInputPopup .pop_input_field::placeholder {
|
||
color: #94A3B8;
|
||
}
|
||
#passwordInputPopup .pop_input_field.error {
|
||
border-color: #FF6B6B;
|
||
}
|
||
#passwordInputPopup .pop_input_field.error:focus {
|
||
border-color: #FF6B6B;
|
||
box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
|
||
}
|
||
#passwordInputPopup .error-message {
|
||
color: #FF6B6B;
|
||
font-size: 12px;
|
||
margin-top: 4px;
|
||
display: none;
|
||
animation: fadeInDown 0.3s ease;
|
||
}
|
||
#passwordInputPopup .error-message.show {
|
||
display: block;
|
||
}
|
||
|
||
@keyframes fadeInDown {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(-10px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
.auth-group {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
.auth-group.authenticated {
|
||
gap: 0;
|
||
}
|
||
|
||
.login-btn {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
padding: 10px 20px;
|
||
color: #1A1A2E;
|
||
text-decoration: none;
|
||
border: 2px solid #4B9BFF;
|
||
border-radius: 50px;
|
||
font-weight: 600;
|
||
font-size: 14px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.login-btn:hover {
|
||
background: #EFF6FF;
|
||
color: #4B9BFF;
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
|
||
.user-profile-dropdown {
|
||
position: relative;
|
||
}
|
||
.user-profile-dropdown .user-profile-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 10px 20px;
|
||
background: #EFF6FF;
|
||
border: 2px solid transparent;
|
||
border-radius: 50px;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
|
||
font-size: 14px;
|
||
}
|
||
.user-profile-dropdown .user-profile-btn .user-name {
|
||
color: #1A1A2E;
|
||
font-weight: 600;
|
||
}
|
||
.user-profile-dropdown .user-profile-btn i {
|
||
color: #64748B;
|
||
font-size: 12px;
|
||
transition: transform all 0.15s ease;
|
||
}
|
||
.user-profile-dropdown .user-profile-btn:hover {
|
||
background: #FFFFFF;
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.user-profile-dropdown .user-profile-btn:hover .user-name {
|
||
color: #4B9BFF;
|
||
}
|
||
.user-profile-dropdown .user-profile-btn:hover i {
|
||
color: #4B9BFF;
|
||
}
|
||
.user-profile-dropdown.active .user-profile-btn i {
|
||
transform: rotate(180deg);
|
||
}
|
||
.user-profile-dropdown.active .profile-dropdown-menu {
|
||
visibility: visible;
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
.user-profile-dropdown .profile-dropdown-menu {
|
||
position: absolute;
|
||
top: calc(100% + 12px);
|
||
right: 0;
|
||
width: 280px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 12px;
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
visibility: hidden;
|
||
opacity: 0;
|
||
transform: translateY(-10px);
|
||
transition: all all 0.3s ease;
|
||
z-index: 100;
|
||
overflow: hidden;
|
||
}
|
||
.user-profile-dropdown .profile-header {
|
||
padding: 24px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
text-align: center;
|
||
}
|
||
.user-profile-dropdown .profile-header .user-greeting {
|
||
margin: 0 0 4px 0;
|
||
font-size: 18px;
|
||
font-weight: 700;
|
||
}
|
||
.user-profile-dropdown .profile-header .user-message {
|
||
font-size: 12px;
|
||
opacity: 0.9;
|
||
}
|
||
.user-profile-dropdown .profile-menu-list {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 8px 0;
|
||
}
|
||
.user-profile-dropdown .profile-menu-list li {
|
||
margin: 0;
|
||
}
|
||
.user-profile-dropdown .profile-menu-list li a {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
padding: 12px 24px;
|
||
color: #1A1A2E;
|
||
text-decoration: none;
|
||
font-size: 14px;
|
||
transition: all 0.15s ease;
|
||
}
|
||
.user-profile-dropdown .profile-menu-list li a i {
|
||
width: 20px;
|
||
color: #64748B;
|
||
font-size: 14px;
|
||
}
|
||
.user-profile-dropdown .profile-menu-list li a:hover {
|
||
background: #EFF6FF;
|
||
color: #4B9BFF;
|
||
}
|
||
.user-profile-dropdown .profile-menu-list li a:hover i {
|
||
color: #4B9BFF;
|
||
}
|
||
.user-profile-dropdown .profile-footer {
|
||
padding: 8px 24px 24px;
|
||
border-top: 1px solid #E2E8F0;
|
||
}
|
||
.user-profile-dropdown .profile-footer .logout-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
width: 100%;
|
||
padding: 12px;
|
||
background: #F8FAFC;
|
||
color: #1A1A2E;
|
||
text-decoration: none;
|
||
border-radius: 8px;
|
||
font-weight: 600;
|
||
font-size: 14px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.user-profile-dropdown .profile-footer .logout-btn i {
|
||
font-size: 14px;
|
||
}
|
||
.user-profile-dropdown .profile-footer .logout-btn:hover {
|
||
background: #FF6B6B;
|
||
color: #FFFFFF;
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
|
||
.drawer-user-info {
|
||
padding: 24px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||
}
|
||
.drawer-user-info .drawer-profile {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
.drawer-user-info .drawer-profile .profile-avatar {
|
||
width: 60px;
|
||
height: 60px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: rgba(255, 255, 255, 0.2);
|
||
border-radius: 50%;
|
||
color: #FFFFFF;
|
||
}
|
||
.drawer-user-info .drawer-profile .profile-avatar i {
|
||
font-size: 32px;
|
||
}
|
||
.drawer-user-info .drawer-profile .profile-info {
|
||
flex: 1;
|
||
color: #FFFFFF;
|
||
}
|
||
.drawer-user-info .drawer-profile .profile-info .profile-name {
|
||
margin: 0 0 4px 0;
|
||
font-size: 18px;
|
||
font-weight: 700;
|
||
}
|
||
.drawer-user-info .drawer-profile .profile-info .profile-greeting {
|
||
font-size: 12px;
|
||
opacity: 0.9;
|
||
}
|
||
|
||
.drawer-logout-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
width: 100%;
|
||
padding: 14px 20px;
|
||
background: #FF6B6B;
|
||
color: #FFFFFF;
|
||
text-decoration: none;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
transition: all 0.3s ease;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.drawer-logout-btn i {
|
||
font-size: 16px;
|
||
}
|
||
.drawer-logout-btn:hover {
|
||
background: #ff3838;
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.user-profile-dropdown .profile-dropdown-menu {
|
||
width: 260px;
|
||
right: -10px;
|
||
}
|
||
}
|
||
@media (max-width: 480px) {
|
||
.user-profile-dropdown .user-profile-btn {
|
||
padding: 8px 16px;
|
||
}
|
||
.user-profile-dropdown .user-profile-btn .user-name {
|
||
max-width: 100px;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.user-profile-dropdown .profile-dropdown-menu {
|
||
width: 240px;
|
||
right: -20px;
|
||
}
|
||
}
|
||
.hero-section {
|
||
position: relative;
|
||
padding: 160px 0 100px;
|
||
background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
|
||
overflow: hidden;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.hero-section {
|
||
padding: 120px 0 60px;
|
||
}
|
||
}
|
||
|
||
.hero-patterns {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
pointer-events: none;
|
||
}
|
||
.hero-patterns .pattern-circle {
|
||
position: absolute;
|
||
border-radius: 50%;
|
||
opacity: 0.1;
|
||
}
|
||
.hero-patterns .pattern-circle.pattern-1 {
|
||
width: 400px;
|
||
height: 400px;
|
||
background: #00D4FF;
|
||
border-radius: 50%;
|
||
opacity: 0.1;
|
||
position: absolute;
|
||
top: -200px;
|
||
right: -100px;
|
||
animation: float 20s ease-in-out infinite;
|
||
}
|
||
.hero-patterns .pattern-circle.pattern-2 {
|
||
width: 300px;
|
||
height: 300px;
|
||
background: #FFD93D;
|
||
border-radius: 50%;
|
||
opacity: 0.1;
|
||
position: absolute;
|
||
bottom: -150px;
|
||
left: -50px;
|
||
animation: float 15s ease-in-out infinite reverse;
|
||
}
|
||
.hero-patterns .pattern-dots {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 10%;
|
||
width: 100px;
|
||
height: 100px;
|
||
background-image: radial-gradient(circle, #A78BFA 2px, transparent 2px);
|
||
background-size: 20px 20px;
|
||
opacity: 0.3;
|
||
}
|
||
|
||
.hero-content {
|
||
text-align: center;
|
||
position: relative;
|
||
z-index: 1;
|
||
max-width: 1280px;
|
||
margin: 0 auto;
|
||
padding: 0 24px;
|
||
}
|
||
|
||
.hero-badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 24px;
|
||
background: #FFFFFF;
|
||
border: 2px solid #FFD93D;
|
||
border-radius: 50px;
|
||
margin-bottom: 24px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
animation: slideInDown 0.6s ease-out;
|
||
}
|
||
.hero-badge .badge-icon {
|
||
font-size: 20px;
|
||
animation: bounce 2s infinite;
|
||
}
|
||
|
||
.main-headline {
|
||
font-size: 56px;
|
||
font-weight: 800;
|
||
line-height: 1.2;
|
||
margin-bottom: 24px;
|
||
color: #1A1A2E;
|
||
animation: slideInUp 0.8s ease-out;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.main-headline {
|
||
font-size: 40px;
|
||
}
|
||
}
|
||
@media (max-width: 480px) {
|
||
.main-headline {
|
||
font-size: 32px;
|
||
}
|
||
}
|
||
.main-headline .headline-highlight {
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
.sub-headline {
|
||
font-size: 20px;
|
||
font-weight: 400;
|
||
line-height: 1.6;
|
||
margin-bottom: 40px;
|
||
color: #64748B;
|
||
animation: slideInUp 0.9s ease-out;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.sub-headline {
|
||
font-size: 16px;
|
||
}
|
||
}
|
||
|
||
.hero-buttons {
|
||
display: flex;
|
||
gap: 16px;
|
||
justify-content: center;
|
||
margin-bottom: 64px;
|
||
animation: slideInUp 1s ease-out;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.hero-buttons {
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
}
|
||
.hero-buttons .btn {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 16px 32px;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
cursor: pointer;
|
||
border: none;
|
||
}
|
||
.hero-buttons .btn:hover {
|
||
transform: translateY(-3px);
|
||
}
|
||
.hero-buttons .btn.btn-primary {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.hero-buttons .btn.btn-primary:hover {
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.hero-buttons .btn.btn-secondary {
|
||
background: #FFFFFF;
|
||
color: #4B9BFF;
|
||
border: 2px solid #4B9BFF;
|
||
}
|
||
.hero-buttons .btn.btn-secondary:hover {
|
||
background: #EFF6FF;
|
||
}
|
||
@media (max-width: 480px) {
|
||
.hero-buttons .btn {
|
||
width: 100%;
|
||
justify-content: center;
|
||
}
|
||
}
|
||
|
||
.hero-stats {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 64px;
|
||
animation: fadeIn 1.2s ease-out;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.hero-stats {
|
||
flex-direction: column;
|
||
gap: 24px;
|
||
}
|
||
}
|
||
.hero-stats .stat-item {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
.hero-stats .stat-item .stat-number {
|
||
font-size: 40px;
|
||
font-weight: 800;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
.hero-stats .stat-item .stat-label {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.hero-image {
|
||
position: relative;
|
||
margin-top: 64px;
|
||
text-align: center;
|
||
}
|
||
.hero-image img {
|
||
max-width: 100%;
|
||
height: auto;
|
||
border-radius: 16px;
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.hero-image .hero-decoration {
|
||
position: absolute;
|
||
width: 100%;
|
||
height: 100%;
|
||
top: 0;
|
||
left: 0;
|
||
pointer-events: none;
|
||
}
|
||
.hero-image .hero-decoration::before, .hero-image .hero-decoration::after {
|
||
content: "";
|
||
position: absolute;
|
||
border-radius: 50%;
|
||
}
|
||
.hero-image .hero-decoration::before {
|
||
width: 60px;
|
||
height: 60px;
|
||
background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
|
||
top: -30px;
|
||
right: 10%;
|
||
animation: bounce 2s infinite;
|
||
}
|
||
.hero-image .hero-decoration::after {
|
||
width: 40px;
|
||
height: 40px;
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
bottom: -20px;
|
||
left: 15%;
|
||
animation: bounce 2s infinite 0.5s;
|
||
}
|
||
|
||
.api-search-section {
|
||
padding: 64px 0;
|
||
background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
|
||
position: relative;
|
||
}
|
||
.api-search-section::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
width: 600px;
|
||
height: 600px;
|
||
background: radial-gradient(circle, rgba(75, 155, 255, 0.03) 0%, transparent 70%);
|
||
pointer-events: none;
|
||
}
|
||
.api-search-section .search-container {
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
text-align: center;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.api-search-section .search-form {
|
||
margin-bottom: 32px;
|
||
animation: slideInUp 0.8s ease-out;
|
||
}
|
||
.api-search-section .search-wrapper {
|
||
display: flex;
|
||
gap: 16px;
|
||
padding: 0 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-search-section .search-wrapper {
|
||
flex-direction: column;
|
||
gap: 8px;
|
||
}
|
||
}
|
||
.api-search-section .search-input {
|
||
flex: 1;
|
||
padding: 16px 32px;
|
||
font-size: 16px;
|
||
border: 2px solid #E2E8F0;
|
||
border-radius: 50px;
|
||
background: #FFFFFF;
|
||
transition: all 0.3s ease;
|
||
outline: none;
|
||
}
|
||
.api-search-section .search-input::placeholder {
|
||
color: #94A3B8;
|
||
}
|
||
.api-search-section .search-input:focus {
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 0 0 4px rgba(75, 155, 255, 0.1);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-search-section .search-input {
|
||
width: 100%;
|
||
padding: 16px 24px;
|
||
}
|
||
}
|
||
.api-search-section .search-button {
|
||
padding: 16px 40px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border: none;
|
||
border-radius: 50px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
white-space: nowrap;
|
||
}
|
||
.api-search-section .search-button i {
|
||
font-size: 20px;
|
||
}
|
||
.api-search-section .search-button:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
background: linear-gradient(135deg, rgb(49.5, 140.8333333333, 255) 0%, rgb(21.4400921659, 111.9585253456, 246.0599078341) 100%);
|
||
}
|
||
.api-search-section .search-button:active {
|
||
transform: translateY(0);
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-search-section .search-button {
|
||
width: 100%;
|
||
justify-content: center;
|
||
padding: 16px 32px;
|
||
}
|
||
}
|
||
.api-search-section .hashtag-suggestions {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 16px;
|
||
flex-wrap: wrap;
|
||
padding: 0 24px;
|
||
animation: fadeIn 0.8s ease-out 0.2s both;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-search-section .hashtag-suggestions {
|
||
gap: 8px;
|
||
justify-content: flex-start;
|
||
}
|
||
}
|
||
.api-search-section .hashtag-label {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-search-section .hashtag-label {
|
||
width: 100%;
|
||
margin-bottom: 4px;
|
||
}
|
||
}
|
||
.api-search-section .hashtag {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
padding: 4px 24px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 50px;
|
||
font-size: 14px;
|
||
color: #1A1A2E;
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.api-search-section .hashtag::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: -100%;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
transition: left 0.3s ease;
|
||
z-index: 0;
|
||
}
|
||
.api-search-section .hashtag:hover {
|
||
border-color: #4B9BFF;
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
color: #FFFFFF;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.api-search-section .hashtag:hover::before {
|
||
left: 0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-search-section .hashtag {
|
||
padding: 4px 16px;
|
||
font-size: 12px;
|
||
}
|
||
}
|
||
|
||
.api-showcase {
|
||
padding: 100px 0;
|
||
background: #FFFFFF;
|
||
}
|
||
|
||
.info-section {
|
||
padding: 100px 0;
|
||
background: #FFFFFF;
|
||
position: relative;
|
||
}
|
||
.info-section::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
height: 1px;
|
||
background: linear-gradient(90deg, transparent 0%, #E2E8F0 20%, #E2E8F0 80%, transparent 100%);
|
||
}
|
||
.info-section .info-wrapper {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 48px;
|
||
}
|
||
.info-section .image-container {
|
||
width: 100%;
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
}
|
||
.info-section .image-placeholder {
|
||
position: relative;
|
||
width: 100%;
|
||
height: 300px;
|
||
background: linear-gradient(135deg, #EFF6FF 0%, rgba(75, 155, 255, 0.1) 100%);
|
||
border-radius: 20px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 16px;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
overflow: hidden;
|
||
}
|
||
.info-section .image-placeholder::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: -50%;
|
||
left: -50%;
|
||
width: 200%;
|
||
height: 200%;
|
||
background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
|
||
animation: rotate 20s linear infinite;
|
||
}
|
||
.info-section .image-placeholder::after {
|
||
content: "";
|
||
position: absolute;
|
||
bottom: -20px;
|
||
right: -20px;
|
||
width: 100px;
|
||
height: 100px;
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
border-radius: 50%;
|
||
opacity: 0.3;
|
||
filter: blur(40px);
|
||
}
|
||
.info-section .image-placeholder i {
|
||
font-size: 64px;
|
||
color: #4B9BFF;
|
||
z-index: 1;
|
||
}
|
||
.info-section .image-placeholder span {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
z-index: 1;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.info-section .image-placeholder {
|
||
height: 200px;
|
||
}
|
||
.info-section .image-placeholder i {
|
||
font-size: 48px;
|
||
}
|
||
.info-section .image-placeholder span {
|
||
font-size: 20px;
|
||
}
|
||
}
|
||
.info-section .info-content {
|
||
text-align: center;
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
}
|
||
.info-section .highlight-text {
|
||
font-size: 24px;
|
||
line-height: 1.8;
|
||
color: #1A1A2E;
|
||
margin-bottom: 48px;
|
||
font-weight: 500;
|
||
}
|
||
.info-section .highlight-text .text-accent {
|
||
color: #4B9BFF;
|
||
font-weight: 600;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.info-section .highlight-text {
|
||
font-size: 20px;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.info-section .highlight-text {
|
||
font-size: 16px;
|
||
padding: 0 24px;
|
||
margin-bottom: 40px;
|
||
}
|
||
}
|
||
.info-section .action-buttons {
|
||
display: flex;
|
||
gap: 24px;
|
||
justify-content: center;
|
||
flex-wrap: wrap;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.info-section .action-buttons {
|
||
flex-direction: column;
|
||
align-items: center;
|
||
padding: 0 24px;
|
||
}
|
||
}
|
||
.info-section .action-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
padding: 16px 32px;
|
||
background: #FFFFFF;
|
||
border: 2px solid #E2E8F0;
|
||
border-radius: 50px;
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
min-width: 280px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.info-section .action-btn::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 0;
|
||
height: 100%;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
transition: width 0.3s ease;
|
||
z-index: 0;
|
||
}
|
||
.info-section .action-btn:hover {
|
||
border-color: #4B9BFF;
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.info-section .action-btn:hover::before {
|
||
width: 100%;
|
||
}
|
||
.info-section .action-btn:hover .btn-number {
|
||
background: #FFFFFF;
|
||
color: #4B9BFF;
|
||
}
|
||
.info-section .action-btn:hover .btn-text,
|
||
.info-section .action-btn:hover i {
|
||
color: #FFFFFF;
|
||
}
|
||
.info-section .action-btn .btn-number {
|
||
position: relative;
|
||
z-index: 1;
|
||
width: 32px;
|
||
height: 32px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border-radius: 50%;
|
||
font-weight: 700;
|
||
font-size: 16px;
|
||
flex-shrink: 0;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.info-section .action-btn .btn-text {
|
||
position: relative;
|
||
z-index: 1;
|
||
font-size: 16px;
|
||
font-weight: 500;
|
||
color: #1A1A2E;
|
||
transition: color 0.3s ease;
|
||
}
|
||
.info-section .action-btn i {
|
||
position: relative;
|
||
z-index: 1;
|
||
font-size: 14px;
|
||
color: #94A3B8;
|
||
margin-left: auto;
|
||
transition: all 0.3s ease;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.info-section .action-btn {
|
||
min-width: 100%;
|
||
justify-content: flex-start;
|
||
}
|
||
}
|
||
|
||
@keyframes rotate {
|
||
from {
|
||
transform: rotate(0deg);
|
||
}
|
||
to {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
.support-center {
|
||
padding: 100px 0;
|
||
background: #F8FAFC;
|
||
}
|
||
.support-center .section-header {
|
||
text-align: center;
|
||
margin-bottom: 64px;
|
||
}
|
||
.support-center .section-header .section-title {
|
||
font-size: 48px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.support-center .section-header .section-title {
|
||
font-size: 40px;
|
||
}
|
||
}
|
||
.support-center .section-header .section-title .title-highlight {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
.support-center .section-header .section-subtitle {
|
||
font-size: 20px;
|
||
color: #64748B;
|
||
line-height: 1.8;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.support-center .section-header .section-subtitle {
|
||
font-size: 16px;
|
||
}
|
||
}
|
||
.support-center .support-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 32px;
|
||
max-width: 1000px;
|
||
margin: 0 auto;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.support-center .support-grid {
|
||
grid-template-columns: 1fr;
|
||
gap: 24px;
|
||
max-width: 500px;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.support-center .support-grid {
|
||
gap: 16px;
|
||
padding: 0 16px;
|
||
}
|
||
}
|
||
.support-center .support-card {
|
||
position: relative;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
padding: 40px 32px;
|
||
background: #FFFFFF;
|
||
border-radius: 16px;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
text-decoration: none;
|
||
transition: all 0.3s ease;
|
||
overflow: hidden;
|
||
}
|
||
.support-center .support-card::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
height: 4px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
transform: scaleX(0);
|
||
transition: transform 0.3s ease;
|
||
}
|
||
.support-center .support-card:hover {
|
||
transform: translateY(-8px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.support-center .support-card:hover::before {
|
||
transform: scaleX(1);
|
||
}
|
||
.support-center .support-card:hover .card-icon {
|
||
transform: scale(1.1) rotate(5deg);
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
}
|
||
.support-center .support-card:hover .card-arrow {
|
||
transform: translateX(5px);
|
||
color: #4B9BFF;
|
||
}
|
||
.support-center .support-card .card-icon {
|
||
width: 80px;
|
||
height: 80px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #EFF6FF;
|
||
border-radius: 50px;
|
||
margin-bottom: 24px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.support-center .support-card .card-icon i {
|
||
font-size: 36px;
|
||
color: #4B9BFF;
|
||
}
|
||
.support-center .support-card h3 {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 8px;
|
||
text-align: center;
|
||
}
|
||
.support-center .support-card p {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
text-align: center;
|
||
line-height: 1.8;
|
||
margin-bottom: 24px;
|
||
}
|
||
.support-center .support-card .card-arrow {
|
||
margin-top: auto;
|
||
color: #94A3B8;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.support-center .support-card .card-arrow i {
|
||
font-size: 20px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.support-center .support-card {
|
||
padding: 32px 24px;
|
||
}
|
||
.support-center .support-card .card-icon {
|
||
width: 70px;
|
||
height: 70px;
|
||
}
|
||
.support-center .support-card .card-icon i {
|
||
font-size: 30px;
|
||
}
|
||
.support-center .support-card h3 {
|
||
font-size: 20px;
|
||
}
|
||
.support-center .support-card p {
|
||
font-size: 14px;
|
||
}
|
||
}
|
||
|
||
.api-stats-section {
|
||
padding: 100px 0;
|
||
background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.api-stats-section::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 50%;
|
||
left: -100px;
|
||
width: 200px;
|
||
height: 200px;
|
||
background: radial-gradient(circle, #00D4FF 0%, transparent 70%);
|
||
opacity: 0.1;
|
||
border-radius: 50%;
|
||
transform: translateY(-50%);
|
||
}
|
||
.api-stats-section::after {
|
||
content: "";
|
||
position: absolute;
|
||
top: 50%;
|
||
right: -100px;
|
||
width: 300px;
|
||
height: 300px;
|
||
background: radial-gradient(circle, #4B9BFF 0%, transparent 70%);
|
||
opacity: 0.08;
|
||
border-radius: 50%;
|
||
transform: translateY(-50%);
|
||
}
|
||
.api-stats-section .section-header {
|
||
text-align: center;
|
||
margin-bottom: 80px;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.api-stats-section .section-header .section-title {
|
||
font-size: 40px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
line-height: 1.8;
|
||
margin-bottom: 40px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.api-stats-section .section-header .section-title {
|
||
font-size: 32px;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-stats-section .section-header .section-title {
|
||
font-size: 24px;
|
||
padding: 0 24px;
|
||
}
|
||
}
|
||
.api-stats-section .section-header .section-title .title-highlight {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
font-weight: 800;
|
||
}
|
||
.api-stats-section .stats-cards {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 40px;
|
||
max-width: 1100px;
|
||
margin: 0 auto;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.api-stats-section .stats-cards {
|
||
grid-template-columns: 1fr;
|
||
gap: 32px;
|
||
max-width: 400px;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-stats-section .stats-cards {
|
||
padding: 0 24px;
|
||
}
|
||
}
|
||
.api-stats-section .stat-card {
|
||
background: #FFFFFF;
|
||
border-radius: 16px;
|
||
padding: 40px;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
border: 1px solid rgba(75, 155, 255, 0.1);
|
||
position: relative;
|
||
overflow: hidden;
|
||
transition: all 0.4s ease;
|
||
}
|
||
.api-stats-section .stat-card::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: -2px;
|
||
left: -2px;
|
||
right: -2px;
|
||
bottom: -2px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
border-radius: 16px;
|
||
opacity: 0;
|
||
z-index: -1;
|
||
transition: opacity 0.4s ease;
|
||
}
|
||
.api-stats-section .stat-card:hover {
|
||
transform: translateY(-10px) scale(1.02);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.api-stats-section .stat-card:hover::before {
|
||
opacity: 1;
|
||
}
|
||
.api-stats-section .stat-card:hover .stat-icon {
|
||
transform: rotate(360deg) scale(1.1);
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
}
|
||
.api-stats-section .stat-card:hover .stat-icon i {
|
||
color: #FFFFFF;
|
||
}
|
||
.api-stats-section .stat-card:hover .stat-number {
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
.api-stats-section .stat-card .stat-icon {
|
||
width: 70px;
|
||
height: 70px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #EFF6FF;
|
||
border-radius: 50px;
|
||
margin-bottom: 24px;
|
||
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
|
||
}
|
||
.api-stats-section .stat-card .stat-icon i {
|
||
font-size: 32px;
|
||
color: #4B9BFF;
|
||
transition: color 0.3s ease;
|
||
}
|
||
.api-stats-section .stat-card .stat-content .stat-number {
|
||
font-size: 48px;
|
||
font-weight: 800;
|
||
color: #1A1A2E;
|
||
margin-bottom: 8px;
|
||
transition: all 0.3s ease;
|
||
display: block;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-stats-section .stat-card .stat-content .stat-number {
|
||
font-size: 40px;
|
||
}
|
||
}
|
||
.api-stats-section .stat-card .stat-content .stat-number[data-formatted]::after {
|
||
content: attr(data-formatted);
|
||
}
|
||
.api-stats-section .stat-card .stat-content .stat-label {
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 4px;
|
||
}
|
||
.api-stats-section .stat-card .stat-content .stat-description {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
}
|
||
.api-stats-section .stat-card:nth-child(1) .stat-icon {
|
||
background: rgba(0, 212, 255, 0.1);
|
||
}
|
||
.api-stats-section .stat-card:nth-child(1) .stat-icon i {
|
||
color: #00D4FF;
|
||
}
|
||
.api-stats-section .stat-card:nth-child(1):hover .stat-icon {
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
}
|
||
.api-stats-section .stat-card:nth-child(2) .stat-icon {
|
||
background: rgba(107, 207, 127, 0.1);
|
||
}
|
||
.api-stats-section .stat-card:nth-child(2) .stat-icon i {
|
||
color: #6BCF7F;
|
||
}
|
||
.api-stats-section .stat-card:nth-child(2):hover .stat-icon {
|
||
background: linear-gradient(135deg, #6BCF7F 0%, rgb(68.4897959184, 194.5102040816, 93.693877551) 100%);
|
||
}
|
||
.api-stats-section .stat-card:nth-child(3) .stat-icon {
|
||
background: rgba(167, 139, 250, 0.1);
|
||
}
|
||
.api-stats-section .stat-card:nth-child(3) .stat-icon i {
|
||
color: #A78BFA;
|
||
}
|
||
.api-stats-section .stat-card:nth-child(3):hover .stat-icon {
|
||
background: linear-gradient(135deg, #A78BFA 0%, rgb(129.9090909091, 90.1074380165, 247.8925619835) 100%);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-stats-section .stat-card {
|
||
padding: 32px;
|
||
}
|
||
.api-stats-section .stat-card .stat-icon {
|
||
width: 60px;
|
||
height: 60px;
|
||
}
|
||
.api-stats-section .stat-card .stat-icon i {
|
||
font-size: 28px;
|
||
}
|
||
}
|
||
|
||
@keyframes countUp {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
.stat-number {
|
||
animation: countUp 0.6s ease-out forwards;
|
||
}
|
||
|
||
.api-market-container {
|
||
display: flex;
|
||
min-height: 100vh;
|
||
background-color: #F8FAFC;
|
||
position: relative;
|
||
}
|
||
|
||
.api-market-sidebar {
|
||
width: 280px;
|
||
background-color: #FFFFFF;
|
||
border-right: 1px solid #E2E8F0;
|
||
padding: 40px 24px;
|
||
position: sticky;
|
||
top: 0;
|
||
height: 100vh;
|
||
overflow-y: auto;
|
||
flex-shrink: 0;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.api-market-sidebar {
|
||
width: 240px;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-market-sidebar {
|
||
position: fixed;
|
||
left: 0;
|
||
top: 60px;
|
||
transform: translateX(-100%);
|
||
transition: transform 0.3s ease;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
z-index: 500;
|
||
height: calc(100vh - 60px);
|
||
}
|
||
.api-market-sidebar.mobile-open {
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
.api-sidebar-nav .menu-section {
|
||
margin-bottom: 4px;
|
||
}
|
||
.api-sidebar-nav .menu-title {
|
||
padding: 12px 16px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #2E7FF7;
|
||
cursor: pointer;
|
||
border-radius: 8px;
|
||
transition: all 0.3s ease;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.api-sidebar-nav .menu-title:hover {
|
||
background-color: #F8FAFC;
|
||
}
|
||
.api-sidebar-nav .menu-title.active {
|
||
background-color: #EFF6FF;
|
||
color: #2E7FF7;
|
||
}
|
||
.api-sidebar-nav .menu-title .api-count {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
min-width: 24px;
|
||
height: 24px;
|
||
padding: 0 8px;
|
||
background-color: rgba(75, 155, 255, 0.1);
|
||
color: #4B9BFF;
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
border-radius: 50px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-sidebar-nav .menu-title.active .api-count {
|
||
background-color: #4B9BFF;
|
||
color: #FFFFFF;
|
||
}
|
||
.api-sidebar-nav .api-list {
|
||
padding-left: 16px;
|
||
margin-top: 4px;
|
||
margin-bottom: 8px;
|
||
}
|
||
.api-sidebar-nav .api-item {
|
||
padding: 8px 16px;
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
cursor: pointer;
|
||
border-radius: 6px;
|
||
transition: all 0.3s ease;
|
||
display: flex;
|
||
align-items: center;
|
||
position: relative;
|
||
margin-bottom: 4px;
|
||
}
|
||
.api-sidebar-nav .api-item::before {
|
||
content: "•";
|
||
margin-right: 8px;
|
||
color: #4B9BFF;
|
||
opacity: 0.5;
|
||
}
|
||
.api-sidebar-nav .api-item:hover {
|
||
background-color: rgba(75, 155, 255, 0.05);
|
||
color: #1A1A2E;
|
||
padding-left: 20px;
|
||
}
|
||
.api-sidebar-nav .api-item:hover::before {
|
||
opacity: 1;
|
||
}
|
||
.api-sidebar-nav .api-item.active {
|
||
background-color: rgba(75, 155, 255, 0.1);
|
||
color: #4B9BFF;
|
||
font-weight: 500;
|
||
}
|
||
.api-sidebar-nav .api-item.active::before {
|
||
opacity: 1;
|
||
}
|
||
.api-sidebar-nav .api-item .api-name {
|
||
flex: 1;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.api-market-content {
|
||
flex: 1;
|
||
padding: 40px 48px;
|
||
min-height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-market-content {
|
||
padding: 24px 16px;
|
||
}
|
||
}
|
||
|
||
.api-mobile-toggle {
|
||
display: none;
|
||
position: fixed;
|
||
bottom: 24px;
|
||
right: 24px;
|
||
width: 56px;
|
||
height: 56px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
border-radius: 50%;
|
||
border: none;
|
||
color: #FFFFFF;
|
||
font-size: 24px;
|
||
cursor: pointer;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
z-index: 501;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-mobile-toggle:hover {
|
||
transform: scale(1.05);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.api-mobile-toggle:active {
|
||
transform: scale(0.95);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-mobile-toggle {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
}
|
||
|
||
.api-market-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 40px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-market-header {
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
gap: 24px;
|
||
}
|
||
}
|
||
|
||
.api-market-title h1 {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
font-weight: 400;
|
||
margin-bottom: 4px;
|
||
}
|
||
.api-market-title h2 {
|
||
font-size: 32px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
.api-market-search {
|
||
position: relative;
|
||
width: 300px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-market-search {
|
||
width: 100%;
|
||
}
|
||
}
|
||
.api-market-search form {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
.api-market-search input {
|
||
flex: 1;
|
||
padding: 12px 48px 12px 16px;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 12px;
|
||
font-size: 14px;
|
||
outline: none;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-market-search input:focus {
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 0 0 3px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.api-market-search input::placeholder {
|
||
color: #94A3B8;
|
||
}
|
||
.api-market-search .search-submit-btn {
|
||
position: absolute;
|
||
right: 4px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
width: 36px;
|
||
height: 36px;
|
||
background: transparent;
|
||
border: none;
|
||
border-radius: 8px;
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
transition: all 0.3s ease;
|
||
color: #64748B;
|
||
}
|
||
.api-market-search .search-submit-btn:hover {
|
||
background: #EFF6FF;
|
||
color: #4B9BFF;
|
||
transform: translateY(-50%) scale(1.05);
|
||
}
|
||
.api-market-search .search-submit-btn:active {
|
||
transform: translateY(-50%) scale(0.95);
|
||
}
|
||
.api-market-search .search-submit-btn .search-icon {
|
||
font-size: 18px;
|
||
display: block;
|
||
}
|
||
|
||
.api-result-count {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
margin-bottom: 32px;
|
||
}
|
||
.api-result-count strong {
|
||
color: #4B9BFF;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.api-card-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
||
gap: 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-card-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.api-card {
|
||
background: #FFFFFF;
|
||
border-radius: 12px;
|
||
padding: 32px;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
transition: all 0.3s ease;
|
||
cursor: pointer;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-between;
|
||
min-height: 220px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.api-card::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
height: 4px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
transform: scaleX(0);
|
||
transform-origin: left;
|
||
transition: transform 0.3s ease;
|
||
}
|
||
.api-card:hover {
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
transform: translateY(-5px);
|
||
}
|
||
.api-card:hover::before {
|
||
transform: scaleX(1);
|
||
}
|
||
.api-card:hover .api-card-icon {
|
||
transform: scale(1.1);
|
||
}
|
||
.api-card:active {
|
||
transform: translateY(-3px);
|
||
}
|
||
|
||
.api-card-header {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
.api-card-badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
padding: 6px 12px;
|
||
background-color: #F8FAFC;
|
||
border-radius: 6px;
|
||
font-size: 12px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
}
|
||
.api-card-badge::before {
|
||
content: "◉";
|
||
color: #4B9BFF;
|
||
font-size: 10px;
|
||
}
|
||
|
||
.api-card-title {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 12px;
|
||
line-height: 1.2;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.api-card-description {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
flex-grow: 1;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 3;
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.api-card-icon {
|
||
text-align: center;
|
||
margin-top: 24px;
|
||
font-size: 48px;
|
||
opacity: 0.8;
|
||
transition: transform 0.3s ease;
|
||
}
|
||
.api-card-icon img {
|
||
max-width: 60px;
|
||
max-height: 60px;
|
||
object-fit: contain;
|
||
}
|
||
|
||
.api-card:nth-child(3n+1) .api-card-icon {
|
||
color: #60a5fa;
|
||
}
|
||
|
||
.api-card:nth-child(3n+2) .api-card-icon {
|
||
color: #34d399;
|
||
}
|
||
|
||
.api-card:nth-child(3n+3) .api-card-icon {
|
||
color: #818cf8;
|
||
}
|
||
|
||
.api-empty-state {
|
||
text-align: center;
|
||
padding: 80px 24px;
|
||
color: #64748B;
|
||
}
|
||
.api-empty-state .empty-icon {
|
||
font-size: 80px;
|
||
margin-bottom: 24px;
|
||
opacity: 0.5;
|
||
}
|
||
.api-empty-state h3 {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
.api-empty-state p {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
}
|
||
|
||
.api-loading {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
padding: 80px;
|
||
}
|
||
.api-loading .spinner {
|
||
width: 48px;
|
||
height: 48px;
|
||
border: 4px solid #E2E8F0;
|
||
border-top-color: #4B9BFF;
|
||
border-radius: 50%;
|
||
animation: spin 1s linear infinite;
|
||
}
|
||
|
||
@keyframes spin {
|
||
to {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
.api-mobile-overlay {
|
||
display: none;
|
||
position: fixed;
|
||
top: 60px;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background-color: rgba(0, 0, 0, 0.5);
|
||
z-index: 499;
|
||
opacity: 0;
|
||
transition: opacity 0.3s ease;
|
||
pointer-events: none;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-mobile-overlay {
|
||
display: block;
|
||
}
|
||
}
|
||
.api-mobile-overlay.active {
|
||
opacity: 1;
|
||
pointer-events: auto;
|
||
}
|
||
|
||
.api-detail-content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 32px;
|
||
}
|
||
|
||
.api-detail-tabs {
|
||
display: flex;
|
||
gap: 8px;
|
||
border-bottom: 2px solid #E2E8F0;
|
||
margin-bottom: 32px;
|
||
}
|
||
.api-detail-tabs .tab-button {
|
||
padding: 16px 24px;
|
||
background: transparent;
|
||
border: none;
|
||
border-bottom: 3px solid transparent;
|
||
font-size: 16px;
|
||
font-weight: 500;
|
||
color: #64748B;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
position: relative;
|
||
bottom: -2px;
|
||
}
|
||
.api-detail-tabs .tab-button:hover {
|
||
color: #4B9BFF;
|
||
background-color: rgba(75, 155, 255, 0.05);
|
||
}
|
||
.api-detail-tabs .tab-button.active {
|
||
color: #4B9BFF;
|
||
font-weight: 600;
|
||
border-bottom-color: #4B9BFF;
|
||
}
|
||
|
||
.tab-content {
|
||
display: none;
|
||
flex-direction: column;
|
||
gap: 32px;
|
||
min-height: 200px;
|
||
}
|
||
.tab-content.active {
|
||
display: flex;
|
||
}
|
||
|
||
.api-overview-card {
|
||
background: #FFFFFF;
|
||
border-radius: 12px;
|
||
padding: 32px;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 24px;
|
||
}
|
||
.api-overview-card .api-overview-header {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-overview-card .api-overview-header {
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
}
|
||
}
|
||
.api-overview-card .api-method-badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
flex-shrink: 0;
|
||
padding: 8px 16px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
border-radius: 6px;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.5px;
|
||
}
|
||
.api-overview-card .api-endpoint {
|
||
flex: 1;
|
||
}
|
||
.api-overview-card .api-endpoint code {
|
||
display: block;
|
||
padding: 8px 16px;
|
||
background-color: #F8FAFC;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
font-size: 18px;
|
||
font-family: "Courier New", monospace;
|
||
color: #1A1A2E;
|
||
word-break: break-all;
|
||
}
|
||
.api-overview-card .api-simple-description {
|
||
padding: 16px 0;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
.api-overview-card .api-simple-description p {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
margin: 0;
|
||
}
|
||
.api-overview-card .api-overview-info h4 {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
.api-details-grid {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 24px;
|
||
}
|
||
|
||
.api-detail-card {
|
||
background: #FFFFFF;
|
||
border-radius: 12px;
|
||
padding: 32px;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-detail-card:hover {
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.api-detail-card h3 {
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
padding-bottom: 8px;
|
||
border-bottom: 2px solid #EFF6FF;
|
||
}
|
||
.api-detail-card .detail-content {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
}
|
||
.api-detail-card .detail-content pre {
|
||
background-color: #F8FAFC;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
padding: 16px;
|
||
overflow-x: auto;
|
||
margin: 0;
|
||
}
|
||
.api-detail-card .detail-content pre code {
|
||
font-family: "Courier New", monospace;
|
||
font-size: 14px;
|
||
color: #1A1A2E;
|
||
white-space: pre-wrap;
|
||
word-break: break-word;
|
||
}
|
||
.api-detail-card .detail-content table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
margin: 16px 0;
|
||
background-color: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
.api-detail-card .detail-content table thead {
|
||
background-color: #EFF6FF;
|
||
}
|
||
.api-detail-card .detail-content table th {
|
||
text-align: left;
|
||
padding: 8px 16px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
border-bottom: 2px solid #E2E8F0;
|
||
background-color: rgba(75, 155, 255, 0.05);
|
||
}
|
||
.api-detail-card .detail-content table th:not(:last-child) {
|
||
border-right: 1px solid #E2E8F0;
|
||
}
|
||
.api-detail-card .detail-content table td {
|
||
padding: 8px 16px;
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
.api-detail-card .detail-content table td:not(:last-child) {
|
||
border-right: 1px solid #E2E8F0;
|
||
}
|
||
.api-detail-card .detail-content table tr {
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-detail-card .detail-content table tr:last-child td {
|
||
border-bottom: none;
|
||
}
|
||
.api-detail-card .detail-content table tr:hover {
|
||
background-color: rgba(75, 155, 255, 0.02);
|
||
}
|
||
.api-detail-card .detail-content table tbody tr:nth-child(even) {
|
||
background-color: rgba(248, 250, 252, 0.3);
|
||
}
|
||
|
||
.api-info-table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
}
|
||
.api-info-table tr {
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
.api-info-table tr:last-child {
|
||
border-bottom: none;
|
||
}
|
||
.api-info-table th {
|
||
text-align: left;
|
||
padding: 8px 16px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
width: 30%;
|
||
background-color: #F8FAFC;
|
||
}
|
||
.api-info-table td {
|
||
padding: 8px 16px;
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
}
|
||
.api-info-table td code {
|
||
display: inline-block;
|
||
padding: 2px 8px;
|
||
background-color: #F8FAFC;
|
||
border-radius: 6px;
|
||
font-family: "Courier New", monospace;
|
||
font-size: 12px;
|
||
color: #4B9BFF;
|
||
}
|
||
|
||
.login-page {
|
||
min-height: calc(100vh - 140px);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: linear-gradient(135deg, var(--light-bg) 0%, var(--gray-bg) 100%);
|
||
padding: 40px 20px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.login-page::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: -50%;
|
||
right: -20%;
|
||
width: 600px;
|
||
height: 600px;
|
||
background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
|
||
opacity: 0.1;
|
||
border-radius: 50%;
|
||
}
|
||
.login-page::after {
|
||
content: "";
|
||
position: absolute;
|
||
bottom: -30%;
|
||
left: -10%;
|
||
width: 400px;
|
||
height: 400px;
|
||
background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
|
||
opacity: 0.1;
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.login-container {
|
||
width: 100%;
|
||
max-width: 480px;
|
||
margin: 0 auto;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.login-card {
|
||
background: var(--white);
|
||
border-radius: 24px;
|
||
box-shadow: var(--shadow-xl);
|
||
padding: 48px 40px;
|
||
backdrop-filter: blur(10px);
|
||
border: 1px solid rgba(255, 255, 255, 0.8);
|
||
}
|
||
@media (max-width: 480px) {
|
||
.login-card {
|
||
padding: 32px 24px;
|
||
border-radius: 16px;
|
||
}
|
||
}
|
||
|
||
.login-header {
|
||
text-align: center;
|
||
margin-bottom: 40px;
|
||
}
|
||
.login-header .login-logo {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
margin-bottom: 24px;
|
||
}
|
||
.login-header .login-logo img {
|
||
height: 48px;
|
||
width: auto;
|
||
}
|
||
.login-header .login-logo .logo-text {
|
||
font-size: 20px;
|
||
font-weight: 700;
|
||
color: var(--primary-blue);
|
||
padding: 6px 16px;
|
||
background: var(--light-bg);
|
||
border-radius: 24px;
|
||
}
|
||
.login-header .login-title {
|
||
font-size: 28px;
|
||
font-weight: 700;
|
||
color: var(--text-dark);
|
||
margin-bottom: 8px;
|
||
}
|
||
.login-header .login-subtitle {
|
||
font-size: 15px;
|
||
color: var(--text-gray);
|
||
}
|
||
|
||
.login-form {
|
||
margin-bottom: 24px;
|
||
}
|
||
.login-form .form-group {
|
||
margin-bottom: 20px;
|
||
}
|
||
.login-form .form-group:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
.login-form .form-label {
|
||
display: block;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: var(--text-dark);
|
||
margin-bottom: 8px;
|
||
}
|
||
.login-form .form-input {
|
||
width: 100%;
|
||
padding: 14px 16px;
|
||
font-size: 15px;
|
||
border: 2px solid var(--border-gray);
|
||
border-radius: 12px;
|
||
background: var(--white);
|
||
transition: all 0.3s ease;
|
||
outline: none;
|
||
}
|
||
.login-form .form-input::placeholder {
|
||
color: var(--text-light);
|
||
}
|
||
.login-form .form-input:focus {
|
||
border-color: var(--primary-blue);
|
||
box-shadow: 0 0 0 4px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.login-form .form-input.error {
|
||
border-color: var(--accent-orange);
|
||
}
|
||
.login-form .form-input.error:focus {
|
||
box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
|
||
}
|
||
.login-form .form-checkbox {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
margin-top: 16px;
|
||
}
|
||
.login-form .form-checkbox input[type=checkbox] {
|
||
width: 18px;
|
||
height: 18px;
|
||
accent-color: var(--primary-blue);
|
||
cursor: pointer;
|
||
}
|
||
.login-form .form-checkbox label {
|
||
font-size: 14px;
|
||
color: var(--text-gray);
|
||
cursor: pointer;
|
||
user-select: none;
|
||
}
|
||
|
||
.login-button {
|
||
width: 100%;
|
||
padding: 16px 24px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: var(--white);
|
||
background: var(--gradient-primary);
|
||
border: none;
|
||
border-radius: 12px;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
box-shadow: var(--shadow-md);
|
||
}
|
||
.login-button:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: var(--shadow-lg);
|
||
}
|
||
.login-button:active {
|
||
transform: translateY(0);
|
||
}
|
||
.login-button:disabled {
|
||
opacity: 0.6;
|
||
cursor: not-allowed;
|
||
transform: none;
|
||
}
|
||
|
||
.login-links {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
gap: 16px;
|
||
margin-top: 32px;
|
||
padding-top: 32px;
|
||
border-top: 1px solid var(--border-gray);
|
||
flex-wrap: wrap;
|
||
}
|
||
@media (max-width: 480px) {
|
||
.login-links {
|
||
gap: 12px;
|
||
margin-top: 24px;
|
||
padding-top: 24px;
|
||
}
|
||
}
|
||
.login-links a {
|
||
font-size: 14px;
|
||
color: var(--text-gray);
|
||
text-decoration: none;
|
||
transition: color 0.3s ease;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
.login-links a:hover {
|
||
color: var(--primary-blue);
|
||
}
|
||
.login-links a i {
|
||
font-size: 16px;
|
||
}
|
||
.login-links .link-separator {
|
||
color: var(--border-gray);
|
||
font-size: 14px;
|
||
}
|
||
|
||
.login-alert {
|
||
margin-bottom: 20px;
|
||
padding: 12px 16px;
|
||
border-radius: 8px;
|
||
font-size: 14px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
.login-alert.alert-error {
|
||
background: rgba(255, 107, 107, 0.1);
|
||
color: var(--accent-orange);
|
||
border: 1px solid rgba(255, 107, 107, 0.2);
|
||
}
|
||
.login-alert.alert-success {
|
||
background: rgba(107, 207, 127, 0.1);
|
||
color: var(--accent-green);
|
||
border: 1px solid rgba(107, 207, 127, 0.2);
|
||
}
|
||
.login-alert.alert-info {
|
||
background: rgba(75, 155, 255, 0.1);
|
||
color: var(--primary-blue);
|
||
border: 1px solid rgba(75, 155, 255, 0.2);
|
||
}
|
||
.login-alert i {
|
||
font-size: 18px;
|
||
}
|
||
|
||
.login-loading {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background: rgba(255, 255, 255, 0.9);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-radius: 24px;
|
||
z-index: 10;
|
||
opacity: 0;
|
||
pointer-events: none;
|
||
transition: opacity 0.3s ease;
|
||
}
|
||
.login-loading.active {
|
||
opacity: 1;
|
||
pointer-events: all;
|
||
}
|
||
.login-loading .spinner {
|
||
width: 40px;
|
||
height: 40px;
|
||
border: 3px solid var(--border-gray);
|
||
border-top-color: var(--primary-blue);
|
||
border-radius: 50%;
|
||
animation: spin 1s linear infinite;
|
||
}
|
||
|
||
@keyframes spin {
|
||
to {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
.signup-selection-page {
|
||
min-height: calc(100vh - 140px);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
|
||
padding: 64px 24px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.signup-selection-page::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: -30%;
|
||
right: -15%;
|
||
width: 500px;
|
||
height: 500px;
|
||
background: radial-gradient(circle, #00D4FF 0%, transparent 70%);
|
||
opacity: 0.08;
|
||
border-radius: 50%;
|
||
}
|
||
.signup-selection-page::after {
|
||
content: "";
|
||
position: absolute;
|
||
bottom: -25%;
|
||
left: -10%;
|
||
width: 400px;
|
||
height: 400px;
|
||
background: radial-gradient(circle, #4B9BFF 0%, transparent 70%);
|
||
opacity: 0.08;
|
||
border-radius: 50%;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-selection-page {
|
||
padding: 48px 16px;
|
||
}
|
||
}
|
||
|
||
.signup-selection-container {
|
||
width: 100%;
|
||
max-width: 1000px;
|
||
margin: 0 auto;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.signup-header {
|
||
text-align: center;
|
||
margin-bottom: 64px;
|
||
}
|
||
.signup-header .signup-title {
|
||
font-size: 48px;
|
||
font-weight: 800;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-header .signup-title {
|
||
font-size: 40px;
|
||
}
|
||
}
|
||
.signup-header .signup-subtitle {
|
||
font-size: 18px;
|
||
color: #64748B;
|
||
line-height: 1.8;
|
||
margin: 0;
|
||
}
|
||
.signup-header .signup-subtitle strong {
|
||
color: #4B9BFF;
|
||
font-weight: 700;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-header .signup-subtitle {
|
||
font-size: 16px;
|
||
}
|
||
}
|
||
|
||
.signup-selection-cards {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 32px;
|
||
margin-bottom: 48px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.signup-selection-cards {
|
||
grid-template-columns: 1fr;
|
||
gap: 24px;
|
||
}
|
||
}
|
||
|
||
.signup-card {
|
||
background: #FFFFFF;
|
||
border-radius: 20px;
|
||
padding: 48px;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
border: 2px solid transparent;
|
||
transition: all all 0.3s ease;
|
||
position: relative;
|
||
overflow: hidden;
|
||
display: flex;
|
||
flex-direction: column;
|
||
min-height: 480px;
|
||
}
|
||
.signup-card::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
height: 4px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
opacity: 0;
|
||
transition: opacity all 0.3s ease;
|
||
}
|
||
.signup-card:hover {
|
||
transform: translateY(-8px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
border-color: #4B9BFF;
|
||
}
|
||
.signup-card:hover::before {
|
||
opacity: 1;
|
||
}
|
||
.signup-card:hover .signup-card-icon {
|
||
transform: scale(1.1);
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
}
|
||
.signup-card:hover .signup-card-icon i {
|
||
color: #FFFFFF;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-card {
|
||
padding: 40px;
|
||
min-height: auto;
|
||
}
|
||
}
|
||
.signup-card.signup-card-featured {
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.signup-card.signup-card-featured::before {
|
||
opacity: 1;
|
||
}
|
||
.signup-card.signup-card-featured .signup-card-icon {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
}
|
||
.signup-card.signup-card-featured .signup-card-icon i {
|
||
color: #FFFFFF;
|
||
}
|
||
.signup-card.signup-card-featured .signup-card-btn {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.signup-card-badge {
|
||
position: absolute;
|
||
top: 24px;
|
||
right: 24px;
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
color: #FFFFFF;
|
||
padding: 4px 16px;
|
||
border-radius: 50px;
|
||
font-size: 12px;
|
||
font-weight: 700;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
z-index: 2;
|
||
}
|
||
|
||
.signup-card-icon {
|
||
width: 80px;
|
||
height: 80px;
|
||
background: #EFF6FF;
|
||
border-radius: 16px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
margin-bottom: 24px;
|
||
transition: all all 0.3s ease;
|
||
}
|
||
.signup-card-icon i {
|
||
font-size: 36px;
|
||
color: #4B9BFF;
|
||
transition: color all 0.3s ease;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-card-icon {
|
||
width: 64px;
|
||
height: 64px;
|
||
}
|
||
.signup-card-icon i {
|
||
font-size: 28px;
|
||
}
|
||
}
|
||
|
||
.signup-card-content {
|
||
flex: 1;
|
||
margin-bottom: 32px;
|
||
}
|
||
.signup-card-content .signup-card-title {
|
||
font-size: 32px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-card-content .signup-card-title {
|
||
font-size: 24px;
|
||
}
|
||
}
|
||
.signup-card-content .signup-card-description {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
margin-bottom: 24px;
|
||
}
|
||
|
||
.signup-card-features {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.signup-card-features li {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 0;
|
||
font-size: 14px;
|
||
color: #1A1A2E;
|
||
}
|
||
.signup-card-features li i {
|
||
color: #6BCF7F;
|
||
font-size: 14px;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.signup-card-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
width: 100%;
|
||
padding: 16px 24px;
|
||
background: #EFF6FF;
|
||
color: #4B9BFF;
|
||
text-decoration: none;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
transition: all all 0.3s ease;
|
||
border: 2px solid transparent;
|
||
margin-top: auto;
|
||
}
|
||
.signup-card-btn i {
|
||
font-size: 16px;
|
||
transition: transform all 0.15s ease;
|
||
}
|
||
.signup-card-btn:hover {
|
||
background: #4B9BFF;
|
||
color: #FFFFFF;
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.signup-card-btn:hover i {
|
||
transform: translateX(4px);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-card-btn {
|
||
padding: 16px;
|
||
font-size: 14px;
|
||
}
|
||
}
|
||
|
||
.signup-navigation {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
gap: 24px;
|
||
padding: 32px;
|
||
background: #FFFFFF;
|
||
border-radius: 16px;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
flex-wrap: wrap;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.signup-navigation {
|
||
gap: 16px;
|
||
padding: 24px;
|
||
}
|
||
}
|
||
|
||
.signup-nav-link {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 16px;
|
||
color: #64748B;
|
||
text-decoration: none;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
border-radius: 8px;
|
||
transition: all all 0.3s ease;
|
||
}
|
||
.signup-nav-link i {
|
||
font-size: 16px;
|
||
color: #94A3B8;
|
||
transition: color all 0.3s ease;
|
||
}
|
||
.signup-nav-link:hover {
|
||
color: #4B9BFF;
|
||
background: #EFF6FF;
|
||
}
|
||
.signup-nav-link:hover i {
|
||
color: #4B9BFF;
|
||
}
|
||
|
||
.signup-nav-separator {
|
||
color: #E2E8F0;
|
||
font-size: 14px;
|
||
}
|
||
@media (max-width: 480px) {
|
||
.signup-nav-separator {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.signup-selection-page {
|
||
min-height: auto;
|
||
}
|
||
.signup-selection-cards {
|
||
margin-bottom: 40px;
|
||
}
|
||
}
|
||
.apikey-container {
|
||
max-width: 1280px;
|
||
margin: 0 auto;
|
||
padding: 40px 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-container {
|
||
padding: 24px 16px;
|
||
}
|
||
}
|
||
|
||
.apikey-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: flex-end;
|
||
margin-bottom: 40px;
|
||
padding-bottom: 24px;
|
||
border-bottom: 2px solid #E2E8F0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-header {
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
gap: 24px;
|
||
}
|
||
}
|
||
|
||
.apikey-title h1 {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
font-weight: 400;
|
||
margin-bottom: 4px;
|
||
}
|
||
.apikey-title h2 {
|
||
font-size: 32px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
.apikey-actions .btn-create-app {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 12px 24px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border: none;
|
||
border-radius: 12px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.apikey-actions .btn-create-app:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.apikey-actions .btn-create-app:active {
|
||
transform: translateY(0);
|
||
}
|
||
.apikey-actions .btn-create-app .btn-icon {
|
||
font-size: 18px;
|
||
}
|
||
|
||
.apikey-result-count {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
margin-bottom: 32px;
|
||
}
|
||
.apikey-result-count strong {
|
||
color: #4B9BFF;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.apikey-card-grid {
|
||
display: grid;
|
||
grid-template-columns: 1fr;
|
||
gap: 24px;
|
||
margin-bottom: 40px;
|
||
}
|
||
|
||
.apikey-card {
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 12px;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
transition: all 0.3s ease;
|
||
cursor: pointer;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
gap: 24px;
|
||
padding: 24px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
text-decoration: none;
|
||
color: inherit;
|
||
}
|
||
.apikey-card::before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
bottom: 0;
|
||
width: 4px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
transform: scaleY(0);
|
||
transform-origin: top;
|
||
transition: transform 0.3s ease;
|
||
}
|
||
.apikey-card:hover {
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
transform: translateX(4px);
|
||
border-color: rgba(75, 155, 255, 0.3);
|
||
}
|
||
.apikey-card:hover::before {
|
||
transform: scaleY(1);
|
||
}
|
||
.apikey-card:active {
|
||
transform: translateX(2px);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-card {
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
gap: 16px;
|
||
}
|
||
}
|
||
|
||
.apikey-card-icon {
|
||
flex-shrink: 0;
|
||
width: 80px;
|
||
height: 80px;
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
background: #F8FAFC;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border: 1px solid #E2E8F0;
|
||
}
|
||
.apikey-card-icon .app-icon-image {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
}
|
||
.apikey-card-icon .app-icon-placeholder {
|
||
color: #64748B;
|
||
opacity: 0.5;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-card-icon {
|
||
width: 60px;
|
||
height: 60px;
|
||
}
|
||
}
|
||
|
||
.apikey-card-content {
|
||
flex: 1;
|
||
min-width: 0;
|
||
}
|
||
.apikey-card-content .apikey-card-title {
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 4px;
|
||
}
|
||
.apikey-card-content .apikey-card-description {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
line-height: 1.5;
|
||
margin: 0;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.apikey-card-status-wrapper {
|
||
flex-shrink: 0;
|
||
}
|
||
.apikey-card-status-wrapper .apikey-card-status {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
padding: 6px 16px;
|
||
border-radius: 50px;
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.5px;
|
||
white-space: nowrap;
|
||
}
|
||
.apikey-card-status-wrapper .apikey-card-status.status-active {
|
||
background-color: rgba(107, 207, 127, 0.15);
|
||
color: #4FA065;
|
||
}
|
||
.apikey-card-status-wrapper .apikey-card-status.status-inactive {
|
||
background-color: rgba(255, 107, 107, 0.15);
|
||
color: #D9534F;
|
||
}
|
||
.apikey-card-status-wrapper .apikey-card-status.status-pending {
|
||
background-color: rgba(255, 217, 61, 0.15);
|
||
color: #F0AD4E;
|
||
}
|
||
|
||
.apikey-empty-state {
|
||
text-align: center;
|
||
padding: 80px 24px;
|
||
background: #FFFFFF;
|
||
border-radius: 12px;
|
||
border: 2px dashed #E2E8F0;
|
||
}
|
||
.apikey-empty-state .empty-icon {
|
||
font-size: 80px;
|
||
margin-bottom: 24px;
|
||
opacity: 0.6;
|
||
display: inline-block;
|
||
animation: bounce 2s infinite;
|
||
}
|
||
.apikey-empty-state h3 {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
.apikey-empty-state p {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
margin-bottom: 32px;
|
||
}
|
||
.apikey-empty-state .btn-create-app-large {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 14px 32px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
border: none;
|
||
border-radius: 12px;
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.apikey-empty-state .btn-create-app-large:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.apikey-empty-state .btn-create-app-large:active {
|
||
transform: translateY(-1px);
|
||
}
|
||
.apikey-empty-state .btn-create-app-large .btn-icon {
|
||
font-size: 20px;
|
||
}
|
||
|
||
@keyframes bounce {
|
||
0%, 100% {
|
||
transform: translateY(0);
|
||
}
|
||
50% {
|
||
transform: translateY(-10px);
|
||
}
|
||
}
|
||
.apikey-loading {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
padding: 80px;
|
||
}
|
||
.apikey-loading .spinner {
|
||
width: 48px;
|
||
height: 48px;
|
||
border: 4px solid #E2E8F0;
|
||
border-top-color: #4B9BFF;
|
||
border-radius: 50%;
|
||
animation: spin 1s linear infinite;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.apikey-empty-state {
|
||
padding: 48px 16px;
|
||
}
|
||
.apikey-empty-state .empty-icon {
|
||
font-size: 60px;
|
||
}
|
||
}
|
||
.apikey-register-container {
|
||
max-width: 1280px;
|
||
margin: 0 auto;
|
||
padding: 40px 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-register-container {
|
||
padding: 24px 16px;
|
||
}
|
||
}
|
||
.apikey-register-container.with-sidebar {
|
||
display: flex;
|
||
min-height: calc(100vh - 200px);
|
||
position: relative;
|
||
padding: 0;
|
||
}
|
||
|
||
.register-progress {
|
||
margin-bottom: 48px;
|
||
padding: 0 24px;
|
||
}
|
||
.register-progress .progress-steps {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
position: relative;
|
||
}
|
||
.register-progress .progress-step {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
position: relative;
|
||
z-index: 2;
|
||
}
|
||
.register-progress .progress-step .step-number {
|
||
width: 40px;
|
||
height: 40px;
|
||
border-radius: 50%;
|
||
background: #FFFFFF;
|
||
border: 2px solid #E2E8F0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-weight: 600;
|
||
color: #64748B;
|
||
transition: all 0.3s ease;
|
||
margin-bottom: 8px;
|
||
}
|
||
.register-progress .progress-step .step-label {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
white-space: nowrap;
|
||
}
|
||
.register-progress .progress-step.active .step-number {
|
||
background: #4B9BFF;
|
||
border-color: #4B9BFF;
|
||
color: #FFFFFF;
|
||
box-shadow: 0 0 0 4px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.register-progress .progress-step.active .step-label {
|
||
color: #4B9BFF;
|
||
font-weight: 500;
|
||
}
|
||
.register-progress .progress-step.completed .step-number {
|
||
background: #6BCF7F;
|
||
border-color: #6BCF7F;
|
||
color: #FFFFFF;
|
||
}
|
||
.register-progress .progress-step.completed .step-label {
|
||
color: #1A1A2E;
|
||
}
|
||
.register-progress .progress-line {
|
||
flex: 1;
|
||
height: 2px;
|
||
background: #E2E8F0;
|
||
margin: 0 16px;
|
||
margin-bottom: 28px;
|
||
position: relative;
|
||
}
|
||
.register-progress .progress-line.filled {
|
||
background: #6BCF7F;
|
||
}
|
||
|
||
.register-header {
|
||
text-align: center;
|
||
margin-bottom: 48px;
|
||
padding: 0 24px;
|
||
}
|
||
.register-header h1 {
|
||
font-size: 32px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
margin-bottom: 8px;
|
||
}
|
||
.register-header h2 {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #4B9BFF;
|
||
margin-bottom: 16px;
|
||
}
|
||
.register-header .header-description {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.apikey-register-sidebar {
|
||
width: 280px;
|
||
background-color: #FFFFFF;
|
||
border-right: 1px solid #E2E8F0;
|
||
padding: 40px 24px;
|
||
position: sticky;
|
||
top: 0;
|
||
height: 100vh;
|
||
overflow-y: auto;
|
||
flex-shrink: 0;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.apikey-register-sidebar {
|
||
width: 240px;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-register-sidebar {
|
||
position: fixed;
|
||
left: 0;
|
||
top: 60px;
|
||
transform: translateX(-100%);
|
||
transition: transform 0.3s ease;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
z-index: 500;
|
||
height: calc(100vh - 60px);
|
||
}
|
||
.apikey-register-sidebar.mobile-open {
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
.apikey-sidebar-nav .menu-section {
|
||
margin-bottom: 4px;
|
||
}
|
||
.apikey-sidebar-nav .menu-title {
|
||
padding: 12px 16px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #2E7FF7;
|
||
cursor: pointer;
|
||
border-radius: 8px;
|
||
transition: all 0.3s ease;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.apikey-sidebar-nav .menu-title:hover {
|
||
background-color: #F8FAFC;
|
||
}
|
||
.apikey-sidebar-nav .menu-title.active {
|
||
background-color: #EFF6FF;
|
||
color: #2E7FF7;
|
||
}
|
||
.apikey-sidebar-nav .menu-title .api-count {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
min-width: 24px;
|
||
height: 24px;
|
||
padding: 0 8px;
|
||
background-color: rgba(75, 155, 255, 0.1);
|
||
color: #4B9BFF;
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
border-radius: 50px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.apikey-sidebar-nav .menu-title.active .api-count {
|
||
background-color: #4B9BFF;
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.apikey-register-content {
|
||
flex: 1;
|
||
padding: 40px 48px;
|
||
min-height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-register-content {
|
||
padding: 24px 16px;
|
||
}
|
||
}
|
||
|
||
.apikey-mobile-toggle {
|
||
display: none;
|
||
position: fixed;
|
||
bottom: 24px;
|
||
right: 24px;
|
||
width: 56px;
|
||
height: 56px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
border-radius: 50%;
|
||
border: none;
|
||
color: #FFFFFF;
|
||
font-size: 24px;
|
||
cursor: pointer;
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
z-index: 501;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.apikey-mobile-toggle:hover {
|
||
transform: scale(1.05);
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
.apikey-mobile-toggle:active {
|
||
transform: scale(0.95);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-mobile-toggle {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
}
|
||
|
||
.apikey-mobile-overlay {
|
||
display: none;
|
||
position: fixed;
|
||
top: 60px;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background-color: rgba(0, 0, 0, 0.5);
|
||
z-index: 499;
|
||
opacity: 0;
|
||
transition: opacity 0.3s ease;
|
||
pointer-events: none;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-mobile-overlay {
|
||
display: block;
|
||
}
|
||
}
|
||
.apikey-mobile-overlay.active {
|
||
opacity: 1;
|
||
pointer-events: auto;
|
||
}
|
||
|
||
.api-filter-header {
|
||
display: flex;
|
||
justify-content: flex-end;
|
||
align-items: center;
|
||
margin-bottom: 32px;
|
||
gap: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-filter-header {
|
||
justify-content: stretch;
|
||
}
|
||
}
|
||
|
||
.api-search-box {
|
||
position: relative;
|
||
width: 320px;
|
||
flex-shrink: 0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-search-box {
|
||
width: 100%;
|
||
}
|
||
}
|
||
.api-search-box .search-input {
|
||
width: 100%;
|
||
padding: 12px 48px 12px 16px;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 12px;
|
||
font-size: 14px;
|
||
outline: none;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.api-search-box .search-input:focus {
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 0 0 3px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.api-search-box .search-input::placeholder {
|
||
color: #94A3B8;
|
||
}
|
||
.api-search-box .search-icon {
|
||
position: absolute;
|
||
right: 16px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
color: #64748B;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.selection-counter {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
white-space: nowrap;
|
||
}
|
||
.selection-counter .counter-value {
|
||
font-weight: 600;
|
||
color: #4B9BFF;
|
||
}
|
||
|
||
.api-filter-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 24px;
|
||
margin-bottom: 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-filter-header {
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
gap: 16px;
|
||
}
|
||
}
|
||
.api-filter-header .select-all-wrapper {
|
||
display: flex;
|
||
align-items: center;
|
||
flex: 1;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-filter-header .select-all-wrapper {
|
||
order: 2;
|
||
}
|
||
}
|
||
.api-filter-header .select-all-label {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
cursor: pointer;
|
||
font-size: 16px;
|
||
color: #1A1A2E;
|
||
user-select: none;
|
||
}
|
||
.api-filter-header .select-all-label:hover {
|
||
color: #4B9BFF;
|
||
}
|
||
.api-filter-header .select-all-checkbox {
|
||
width: 18px;
|
||
height: 18px;
|
||
cursor: pointer;
|
||
accent-color: #4B9BFF;
|
||
}
|
||
.api-filter-header .select-all-checkbox:indeterminate {
|
||
opacity: 0.6;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-filter-header .api-search-box {
|
||
order: 1;
|
||
}
|
||
}
|
||
|
||
.api-result-count {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
margin-bottom: 32px;
|
||
}
|
||
.api-result-count strong {
|
||
color: #4B9BFF;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.api-selection-card-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 24px;
|
||
margin-bottom: 32px;
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.api-selection-card-grid {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 16px;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-selection-card-grid {
|
||
grid-template-columns: 1fr;
|
||
gap: 16px;
|
||
}
|
||
}
|
||
|
||
.api-selection-card {
|
||
background: #FFFFFF;
|
||
border: 2px solid #E2E8F0;
|
||
border-radius: 12px;
|
||
padding: 24px;
|
||
transition: all 0.3s ease;
|
||
cursor: pointer;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 16px;
|
||
position: relative;
|
||
}
|
||
@media (min-width: 1280px) {
|
||
.api-selection-card {
|
||
min-width: 250px;
|
||
}
|
||
}
|
||
.api-selection-card:hover {
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
transform: translateY(-2px);
|
||
}
|
||
.api-selection-card.selected {
|
||
border-color: #4B9BFF;
|
||
background-color: rgba(75, 155, 255, 0.02);
|
||
}
|
||
.api-selection-card .checkbox-wrapper {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 8px;
|
||
}
|
||
.api-selection-card .checkbox-wrapper input[type=checkbox] {
|
||
margin-top: 4px;
|
||
cursor: pointer;
|
||
}
|
||
.api-selection-card .api-card-content {
|
||
flex: 1;
|
||
}
|
||
.api-selection-card .api-card-content .api-card-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 8px;
|
||
gap: 8px;
|
||
}
|
||
.api-selection-card .api-card-content .api-card-header .api-card-badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
padding: 4px 10px;
|
||
background-color: #F8FAFC;
|
||
border-radius: 6px;
|
||
font-size: 12px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
flex-shrink: 0;
|
||
}
|
||
.api-selection-card .api-card-content .api-card-header .api-method {
|
||
padding: 4px 10px;
|
||
background: #EFF6FF;
|
||
border-radius: 6px;
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
color: #4B9BFF;
|
||
text-transform: uppercase;
|
||
}
|
||
.api-selection-card .api-card-content .api-name {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 4px;
|
||
line-height: 1.2;
|
||
}
|
||
.api-selection-card .api-card-content .api-description {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
line-height: 1.6;
|
||
margin-bottom: 8px;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
}
|
||
.api-selection-card .api-card-content .api-endpoint code {
|
||
display: block;
|
||
font-family: "Fira Code", "Courier New", monospace;
|
||
font-size: 12px;
|
||
color: #2E7FF7;
|
||
background: #F8FAFC;
|
||
padding: 6px 10px;
|
||
border-radius: 6px;
|
||
word-break: break-all;
|
||
}
|
||
|
||
.selected-summary {
|
||
background: #EFF6FF;
|
||
border-radius: 12px;
|
||
padding: 24px;
|
||
margin-bottom: 32px;
|
||
}
|
||
.selected-summary h3 {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
.selected-summary .selected-list {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 8px;
|
||
}
|
||
.selected-summary .selected-list .selected-chip {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 6px 12px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #4B9BFF;
|
||
border-radius: 50px;
|
||
font-size: 14px;
|
||
color: #4B9BFF;
|
||
}
|
||
.selected-summary .selected-list .selected-chip .remove-chip {
|
||
background: none;
|
||
border: none;
|
||
color: #4B9BFF;
|
||
font-size: 18px;
|
||
cursor: pointer;
|
||
padding: 0;
|
||
margin-left: 4px;
|
||
}
|
||
.selected-summary .selected-list .selected-chip .remove-chip:hover {
|
||
color: #FF6B6B;
|
||
}
|
||
|
||
.empty-api-state {
|
||
padding: 48px;
|
||
text-align: center;
|
||
color: #64748B;
|
||
}
|
||
.empty-api-state .empty-icon {
|
||
font-size: 60px;
|
||
margin-bottom: 24px;
|
||
opacity: 0.5;
|
||
}
|
||
.empty-api-state h3 {
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 8px;
|
||
}
|
||
.empty-api-state p {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
}
|
||
|
||
.loading-state {
|
||
padding: 48px;
|
||
text-align: center;
|
||
color: #64748B;
|
||
}
|
||
.loading-state .loading-spinner {
|
||
width: 48px;
|
||
height: 48px;
|
||
margin: 0 auto 24px;
|
||
border: 4px solid #E2E8F0;
|
||
border-top-color: #4B9BFF;
|
||
border-radius: 50%;
|
||
animation: spin 1s linear infinite;
|
||
}
|
||
.loading-state p {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
}
|
||
|
||
@keyframes spin {
|
||
to {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
.register-form {
|
||
width: 100%;
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
}
|
||
.register-form .form-card {
|
||
background: #FFFFFF;
|
||
border-radius: 12px;
|
||
padding: 40px;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
margin-bottom: 32px;
|
||
}
|
||
.register-form .form-group {
|
||
margin-bottom: 32px;
|
||
}
|
||
.register-form .form-group:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
.register-form .form-label {
|
||
display: block;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 8px;
|
||
}
|
||
.register-form .form-label.required .required-mark {
|
||
color: #FF6B6B;
|
||
margin-left: 4px;
|
||
}
|
||
.register-form .form-input,
|
||
.register-form .form-select,
|
||
.register-form .form-textarea {
|
||
width: 100%;
|
||
padding: 12px 16px;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
font-size: 16px;
|
||
transition: all 0.3s ease;
|
||
background: #FFFFFF;
|
||
}
|
||
.register-form .form-input:focus,
|
||
.register-form .form-select:focus,
|
||
.register-form .form-textarea:focus {
|
||
outline: none;
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 0 0 3px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.register-form .form-input::placeholder,
|
||
.register-form .form-select::placeholder,
|
||
.register-form .form-textarea::placeholder {
|
||
color: #94A3B8;
|
||
}
|
||
.register-form .form-textarea {
|
||
resize: vertical;
|
||
min-height: 100px;
|
||
font-family: inherit;
|
||
}
|
||
.register-form .form-hint {
|
||
display: block;
|
||
font-size: 12px;
|
||
color: #64748B;
|
||
margin-top: 4px;
|
||
}
|
||
.register-form .form-hint .char-counter {
|
||
float: right;
|
||
color: #94A3B8;
|
||
}
|
||
.register-form .radio-group {
|
||
display: flex;
|
||
gap: 24px;
|
||
flex-wrap: wrap;
|
||
}
|
||
.register-form .radio-group .radio-label {
|
||
display: flex;
|
||
align-items: center;
|
||
cursor: pointer;
|
||
}
|
||
.register-form .radio-group .radio-label input[type=radio] {
|
||
margin-right: 8px;
|
||
}
|
||
.register-form .radio-group .radio-label .radio-text {
|
||
font-size: 16px;
|
||
color: #1A1A2E;
|
||
}
|
||
.register-form .icon-upload-wrapper {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 24px;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview {
|
||
width: 120px;
|
||
height: 120px;
|
||
border: 2px dashed #E2E8F0;
|
||
border-radius: 12px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #F8FAFC;
|
||
overflow: hidden;
|
||
position: relative;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview:hover {
|
||
border-color: #4B9BFF;
|
||
background: rgba(75, 155, 255, 0.05);
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview .icon-placeholder {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
color: #64748B;
|
||
text-align: center;
|
||
padding: 16px;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview .icon-placeholder svg {
|
||
opacity: 0.5;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview .icon-placeholder span {
|
||
font-size: 12px;
|
||
font-weight: 500;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview .btn-remove-icon {
|
||
position: absolute;
|
||
top: 8px;
|
||
right: 8px;
|
||
width: 28px;
|
||
height: 28px;
|
||
padding: 0;
|
||
background: rgba(255, 255, 255, 0.95);
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 50%;
|
||
color: #64748B;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
display: none;
|
||
align-items: center;
|
||
justify-content: center;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
z-index: 10;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview .btn-remove-icon svg {
|
||
width: 14px;
|
||
height: 14px;
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview .btn-remove-icon:hover {
|
||
background: #FF6B6B;
|
||
border-color: #FF6B6B;
|
||
color: #FFFFFF;
|
||
transform: scale(1.1);
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-preview .btn-remove-icon:active {
|
||
transform: scale(0.95);
|
||
}
|
||
.register-form .icon-upload-wrapper .icon-input {
|
||
display: none;
|
||
}
|
||
.register-form .icon-upload-wrapper .btn-icon-select {
|
||
padding: 10px 20px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
color: #1A1A2E;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.register-form .icon-upload-wrapper .btn-icon-select:hover {
|
||
background: #4B9BFF;
|
||
border-color: #4B9BFF;
|
||
color: #FFFFFF;
|
||
}
|
||
.register-form .icon-upload-wrapper .btn-icon-select:active {
|
||
transform: scale(0.98);
|
||
}
|
||
.register-form .ip-input-group {
|
||
display: flex;
|
||
gap: 8px;
|
||
margin-bottom: 16px;
|
||
}
|
||
.register-form .ip-input-group .form-input {
|
||
flex: 1;
|
||
}
|
||
.register-form .ip-input-group .btn-add-ip {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 10px 16px;
|
||
background: #4B9BFF;
|
||
border: none;
|
||
border-radius: 8px;
|
||
color: #FFFFFF;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
white-space: nowrap;
|
||
}
|
||
.register-form .ip-input-group .btn-add-ip svg {
|
||
flex-shrink: 0;
|
||
}
|
||
.register-form .ip-input-group .btn-add-ip:hover {
|
||
background: #2E7FF7;
|
||
transform: translateY(-1px);
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.register-form .ip-input-group .btn-add-ip:active {
|
||
transform: translateY(0);
|
||
}
|
||
.register-form .ip-list {
|
||
margin-top: 16px;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
background: #FFFFFF;
|
||
overflow: hidden;
|
||
}
|
||
.register-form .ip-list .ip-list-header {
|
||
padding: 16px;
|
||
background: #F8FAFC;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
.register-form .ip-list .ip-list-header .ip-count {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
}
|
||
.register-form .ip-list .ip-list-header .ip-count strong {
|
||
color: #4B9BFF;
|
||
font-weight: 600;
|
||
}
|
||
.register-form .ip-list .ip-items {
|
||
max-height: 240px;
|
||
overflow-y: auto;
|
||
}
|
||
.register-form .ip-list .ip-items::-webkit-scrollbar {
|
||
width: 6px;
|
||
}
|
||
.register-form .ip-list .ip-items::-webkit-scrollbar-track {
|
||
background: #F8FAFC;
|
||
}
|
||
.register-form .ip-list .ip-items::-webkit-scrollbar-thumb {
|
||
background: #E2E8F0;
|
||
border-radius: 3px;
|
||
}
|
||
.register-form .ip-list .ip-items::-webkit-scrollbar-thumb:hover {
|
||
background: #94A3B8;
|
||
}
|
||
.register-form .ip-list .ip-item {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 16px;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.register-form .ip-list .ip-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
.register-form .ip-list .ip-item:hover {
|
||
background: #F8FAFC;
|
||
}
|
||
.register-form .ip-list .ip-item .ip-address {
|
||
font-family: "Fira Code", "Courier New", monospace;
|
||
font-size: 14px;
|
||
color: #1A1A2E;
|
||
font-weight: 500;
|
||
}
|
||
.register-form .ip-list .ip-item .btn-remove-ip {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 28px;
|
||
height: 28px;
|
||
padding: 0;
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 6px;
|
||
color: #64748B;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.register-form .ip-list .ip-item .btn-remove-ip svg {
|
||
width: 14px;
|
||
height: 14px;
|
||
}
|
||
.register-form .ip-list .ip-item .btn-remove-ip:hover {
|
||
background: #FF6B6B;
|
||
border-color: #FF6B6B;
|
||
color: #FFFFFF;
|
||
transform: scale(1.1);
|
||
}
|
||
.register-form .ip-list .ip-item .btn-remove-ip:active {
|
||
transform: scale(0.95);
|
||
}
|
||
|
||
.form-actions {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-top: 40px;
|
||
padding: 0 24px 24px;
|
||
gap: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.form-actions {
|
||
flex-direction: column;
|
||
width: 100%;
|
||
}
|
||
.form-actions .btn-primary,
|
||
.form-actions .btn-secondary {
|
||
width: 100%;
|
||
justify-content: center;
|
||
}
|
||
}
|
||
.form-actions .btn-primary,
|
||
.form-actions .btn-secondary {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 12px 24px;
|
||
border-radius: 8px;
|
||
font-size: 16px;
|
||
font-weight: 500;
|
||
transition: all 0.3s ease;
|
||
text-decoration: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
}
|
||
.form-actions .btn-primary .icon,
|
||
.form-actions .btn-secondary .icon {
|
||
font-size: 18px;
|
||
}
|
||
.form-actions .btn-primary {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.form-actions .btn-primary:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.form-actions .btn-secondary {
|
||
background: #FFFFFF;
|
||
color: #1A1A2E;
|
||
border: 1px solid #E2E8F0;
|
||
}
|
||
.form-actions .btn-secondary:hover {
|
||
background: #F8FAFC;
|
||
border-color: #4B9BFF;
|
||
color: #4B9BFF;
|
||
}
|
||
|
||
.register-result {
|
||
text-align: center;
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
}
|
||
.register-result.success .result-icon {
|
||
background: rgba(107, 207, 127, 0.1);
|
||
color: #6BCF7F;
|
||
}
|
||
.register-result.error .result-icon {
|
||
background: rgba(255, 107, 107, 0.1);
|
||
color: #FF6B6B;
|
||
}
|
||
.register-result .result-icon-wrapper {
|
||
margin-bottom: 32px;
|
||
}
|
||
.register-result .result-icon-wrapper .result-icon {
|
||
width: 80px;
|
||
height: 80px;
|
||
border-radius: 50%;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 40px;
|
||
}
|
||
.register-result .result-header {
|
||
margin-bottom: 40px;
|
||
}
|
||
.register-result .result-header h1 {
|
||
font-size: 32px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
.register-result .result-header .result-description {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
max-width: 500px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.alert {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 16px;
|
||
padding: 16px 24px;
|
||
border-radius: 8px;
|
||
margin-bottom: 32px;
|
||
}
|
||
.alert.alert-warning {
|
||
background: rgba(255, 217, 61, 0.1);
|
||
border: 1px solid rgba(255, 217, 61, 0.3);
|
||
color: #B89900;
|
||
}
|
||
.alert.alert-warning .alert-icon {
|
||
font-size: 20px;
|
||
}
|
||
.alert.alert-warning .alert-content {
|
||
flex: 1;
|
||
text-align: left;
|
||
}
|
||
.alert.alert-warning .alert-content strong {
|
||
font-weight: 600;
|
||
}
|
||
.alert.alert-error {
|
||
background: rgba(255, 107, 107, 0.1);
|
||
border: 1px solid rgba(255, 107, 107, 0.3);
|
||
color: #ff3838;
|
||
align-items: center;
|
||
}
|
||
.alert.alert-error svg {
|
||
flex-shrink: 0;
|
||
}
|
||
.alert.alert-error span {
|
||
flex: 1;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.key-info-card {
|
||
background: #FFFFFF;
|
||
border-radius: 12px;
|
||
padding: 32px;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
margin-bottom: 32px;
|
||
text-align: left;
|
||
}
|
||
.key-info-card .info-row {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 16px 0;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
.key-info-card .info-row:last-child {
|
||
border-bottom: none;
|
||
}
|
||
.key-info-card .info-row .info-label {
|
||
font-size: 14px;
|
||
color: #64748B;
|
||
font-weight: 500;
|
||
min-width: 120px;
|
||
}
|
||
.key-info-card .info-row .info-value {
|
||
font-size: 16px;
|
||
color: #1A1A2E;
|
||
font-weight: 500;
|
||
}
|
||
.key-info-card .info-row .key-display {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
flex: 1;
|
||
justify-content: flex-end;
|
||
}
|
||
.key-info-card .info-row .key-display .key-value {
|
||
font-family: "Fira Code", "Courier New", monospace;
|
||
font-size: 14px;
|
||
background: #F8FAFC;
|
||
padding: 8px 12px;
|
||
border-radius: 6px;
|
||
color: #2E7FF7;
|
||
margin-right: 8px;
|
||
}
|
||
.key-info-card .info-row .key-display .btn-copy,
|
||
.key-info-card .info-row .key-display .btn-toggle-visibility {
|
||
padding: 6px 10px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 6px;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.key-info-card .info-row .key-display .btn-copy:hover,
|
||
.key-info-card .info-row .key-display .btn-toggle-visibility:hover {
|
||
background: #4B9BFF;
|
||
border-color: #4B9BFF;
|
||
color: #FFFFFF;
|
||
}
|
||
.key-info-card .info-row .status-badge.active {
|
||
padding: 4px 12px;
|
||
background: rgba(107, 207, 127, 0.15);
|
||
color: #4FA065;
|
||
border-radius: 50px;
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.selected-apis-summary {
|
||
background: #F8FAFC;
|
||
border-radius: 12px;
|
||
padding: 24px;
|
||
margin-bottom: 32px;
|
||
text-align: left;
|
||
}
|
||
.selected-apis-summary h3 {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
.selected-apis-summary .api-chips {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 8px;
|
||
margin-bottom: 16px;
|
||
}
|
||
.selected-apis-summary .api-chips .api-chip {
|
||
padding: 6px 12px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #4B9BFF;
|
||
border-radius: 50px;
|
||
font-size: 14px;
|
||
color: #4B9BFF;
|
||
}
|
||
.selected-apis-summary .api-note {
|
||
font-size: 12px;
|
||
color: #64748B;
|
||
font-style: italic;
|
||
}
|
||
|
||
.next-steps-card {
|
||
background: #EFF6FF;
|
||
border-radius: 12px;
|
||
padding: 32px;
|
||
margin-bottom: 32px;
|
||
text-align: left;
|
||
}
|
||
.next-steps-card h3 {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin-bottom: 16px;
|
||
}
|
||
.next-steps-card .steps-list {
|
||
margin-left: 24px;
|
||
color: #64748B;
|
||
font-size: 14px;
|
||
line-height: 1.8;
|
||
}
|
||
.next-steps-card .steps-list li {
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.result-actions {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 16px;
|
||
flex-wrap: wrap;
|
||
}
|
||
.result-actions .btn-primary,
|
||
.result-actions .btn-secondary {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 12px 24px;
|
||
border-radius: 8px;
|
||
font-size: 16px;
|
||
font-weight: 500;
|
||
transition: all 0.3s ease;
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
border: none;
|
||
}
|
||
.result-actions .btn-primary .icon,
|
||
.result-actions .btn-secondary .icon {
|
||
font-size: 18px;
|
||
}
|
||
.result-actions .btn-primary {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
color: #FFFFFF;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
.result-actions .btn-primary:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
.result-actions .btn-secondary {
|
||
background: #FFFFFF;
|
||
color: #1A1A2E;
|
||
border: 1px solid #E2E8F0;
|
||
}
|
||
.result-actions .btn-secondary:hover {
|
||
background: #F8FAFC;
|
||
border-color: #4B9BFF;
|
||
color: #4B9BFF;
|
||
}
|
||
|
||
.floating-cart-btn {
|
||
position: fixed;
|
||
bottom: 80px;
|
||
right: 40px;
|
||
height: 56px;
|
||
padding: 0 24px;
|
||
border-radius: 50px;
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
border: none;
|
||
color: #FFFFFF;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
cursor: pointer;
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
transition: all 0.3s ease;
|
||
z-index: 300;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
white-space: nowrap;
|
||
}
|
||
.floating-cart-btn svg {
|
||
width: 24px;
|
||
height: 24px;
|
||
flex-shrink: 0;
|
||
}
|
||
.floating-cart-btn .cart-text {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
}
|
||
.floating-cart-btn .cart-badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #FFFFFF;
|
||
color: #4B9BFF;
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
min-width: 28px;
|
||
height: 28px;
|
||
border-radius: 50px;
|
||
padding: 0 8px;
|
||
margin-left: 4px;
|
||
}
|
||
.floating-cart-btn:hover {
|
||
transform: translateY(-4px);
|
||
box-shadow: 0 12px 32px rgba(75, 155, 255, 0.3);
|
||
}
|
||
.floating-cart-btn:active {
|
||
transform: translateY(-2px);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.floating-cart-btn {
|
||
bottom: 24px;
|
||
right: 24px;
|
||
height: 48px;
|
||
padding: 0 16px;
|
||
gap: 4px;
|
||
}
|
||
.floating-cart-btn svg {
|
||
width: 20px;
|
||
height: 20px;
|
||
}
|
||
.floating-cart-btn .cart-text {
|
||
font-size: 12px;
|
||
}
|
||
.floating-cart-btn .cart-badge {
|
||
font-size: 12px;
|
||
min-width: 24px;
|
||
height: 24px;
|
||
padding: 0 6px;
|
||
}
|
||
}
|
||
|
||
.selected-apis-modal {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100vh;
|
||
z-index: 1000;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 24px;
|
||
opacity: 0;
|
||
visibility: hidden;
|
||
transition: opacity 0.3s ease, visibility 0.3s ease;
|
||
pointer-events: none;
|
||
overflow-y: auto;
|
||
}
|
||
.selected-apis-modal.show {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
pointer-events: auto;
|
||
}
|
||
.selected-apis-modal.show .modal-dialog {
|
||
transform: scale(1);
|
||
}
|
||
.selected-apis-modal .modal-backdrop {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100vh;
|
||
background: rgba(0, 0, 0, 0.6);
|
||
z-index: -1;
|
||
opacity: 0;
|
||
visibility: hidden;
|
||
transition: opacity 0.3s ease, visibility 0.3s ease;
|
||
}
|
||
.selected-apis-modal .modal-backdrop.show {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
}
|
||
.selected-apis-modal .modal-dialog {
|
||
position: relative;
|
||
background: #FFFFFF;
|
||
border-radius: 16px;
|
||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
||
max-width: 700px;
|
||
width: calc(100% - 48px);
|
||
max-height: 85vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
transform: scale(0.95);
|
||
transition: transform 0.3s ease;
|
||
z-index: 1;
|
||
margin: auto;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.selected-apis-modal .modal-dialog {
|
||
max-width: 100%;
|
||
width: calc(100% - 32px);
|
||
max-height: 90vh;
|
||
}
|
||
}
|
||
.selected-apis-modal .modal-header {
|
||
padding: 24px;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.selected-apis-modal .modal-header .modal-title {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #1A1A2E;
|
||
margin: 0;
|
||
}
|
||
.selected-apis-modal .modal-header .modal-close {
|
||
width: 32px;
|
||
height: 32px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: transparent;
|
||
border: none;
|
||
border-radius: 8px;
|
||
color: #64748B;
|
||
font-size: 24px;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.selected-apis-modal .modal-header .modal-close:hover {
|
||
background: #F8FAFC;
|
||
color: #1A1A2E;
|
||
}
|
||
.selected-apis-modal .modal-body {
|
||
padding: 24px;
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
color: #1A1A2E;
|
||
line-height: 1.6;
|
||
}
|
||
.selected-apis-modal .modal-body .empty-message {
|
||
text-align: center;
|
||
color: #64748B;
|
||
padding: 48px 0;
|
||
font-size: 18px;
|
||
}
|
||
.selected-apis-modal .modal-footer {
|
||
padding: 24px;
|
||
border-top: 1px solid #E2E8F0;
|
||
display: flex;
|
||
gap: 16px;
|
||
justify-content: flex-end;
|
||
}
|
||
.selected-apis-modal .selected-apis-list {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 8px;
|
||
align-items: flex-start;
|
||
}
|
||
.selected-apis-modal .api-pill {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 12px 8px 16px;
|
||
background: #EFF6FF;
|
||
border: 1px solid #4B9BFF;
|
||
border-radius: 50px;
|
||
transition: all 0.2s ease;
|
||
max-width: 100%;
|
||
}
|
||
.selected-apis-modal .api-pill:hover {
|
||
background: rgba(75, 155, 255, 0.15);
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-name {
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
color: #4B9BFF;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
max-width: 280px;
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-remove {
|
||
flex-shrink: 0;
|
||
width: 20px;
|
||
height: 20px;
|
||
padding: 0;
|
||
background: transparent;
|
||
border: none;
|
||
border-radius: 50%;
|
||
color: #4B9BFF;
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
transition: all 0.2s ease;
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-remove svg {
|
||
width: 14px;
|
||
height: 14px;
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-remove:hover {
|
||
background: #4B9BFF;
|
||
color: #FFFFFF;
|
||
transform: scale(1.1);
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-remove:active {
|
||
transform: scale(0.95);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.selected-apis-modal .api-pill {
|
||
padding: 6px 10px 6px 14px;
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-name {
|
||
font-size: 12px;
|
||
max-width: 200px;
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-remove {
|
||
width: 18px;
|
||
height: 18px;
|
||
}
|
||
.selected-apis-modal .api-pill .api-pill-remove svg {
|
||
width: 12px;
|
||
height: 12px;
|
||
}
|
||
}
|
||
|
||
.apikey-detail-container {
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
padding: 64px;
|
||
padding-top: 0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.apikey-detail-container {
|
||
padding: 16px;
|
||
}
|
||
}
|
||
|
||
.register-header {
|
||
text-align: center;
|
||
margin-bottom: 80px;
|
||
}
|
||
.register-header h1 {
|
||
font-size: 48px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
margin-bottom: 8px;
|
||
}
|
||
.register-header .header-description {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
}
|
||
|
||
.status-section {
|
||
text-align: center;
|
||
margin-bottom: 64px;
|
||
}
|
||
|
||
.status-badge {
|
||
display: inline-block;
|
||
padding: 8px 24px;
|
||
border-radius: 50px;
|
||
font-weight: 600;
|
||
font-size: 14px;
|
||
}
|
||
.status-badge.badge-pending {
|
||
background-color: #FFF3CD;
|
||
color: #856404;
|
||
}
|
||
.status-badge.badge-approved {
|
||
background-color: #D4EDDA;
|
||
color: #155724;
|
||
}
|
||
.status-badge.badge-rejected {
|
||
background-color: #F8D7DA;
|
||
color: #721C24;
|
||
}
|
||
|
||
.detail-section {
|
||
background: #FFFFFF;
|
||
border-radius: 12px;
|
||
padding: 64px;
|
||
margin-bottom: 24px;
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.detail-section {
|
||
padding: 32px;
|
||
}
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 24px;
|
||
font-weight: 700;
|
||
color: #1A1A2E;
|
||
margin-bottom: 24px;
|
||
padding-bottom: 16px;
|
||
border-bottom: 2px solid #E2E8F0;
|
||
}
|
||
|
||
.detail-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.detail-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.detail-item {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 8px;
|
||
}
|
||
.detail-item.full-width {
|
||
grid-column: 1/-1;
|
||
}
|
||
|
||
.detail-label {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #64748B;
|
||
}
|
||
|
||
.detail-value {
|
||
font-size: 16px;
|
||
color: #1A1A2E;
|
||
word-break: break-word;
|
||
}
|
||
|
||
.app-icon-display {
|
||
width: 120px;
|
||
height: 120px;
|
||
}
|
||
|
||
.app-icon-image {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
border-radius: 12px;
|
||
border: 2px solid #E2E8F0;
|
||
}
|
||
|
||
.app-icon-placeholder {
|
||
width: 100%;
|
||
height: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-color: #F8FAFC;
|
||
border-radius: 12px;
|
||
border: 2px dashed #94A3B8;
|
||
font-size: 48px;
|
||
}
|
||
|
||
.ip-list {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 8px;
|
||
}
|
||
|
||
.ip-tag {
|
||
display: inline-block;
|
||
padding: 4px 16px;
|
||
background-color: #EFF6FF;
|
||
color: #2E7FF7;
|
||
border-radius: 6px;
|
||
font-size: 14px;
|
||
font-family: "Fira Code", "Courier New", monospace;
|
||
}
|
||
|
||
.credential-code {
|
||
display: inline-block;
|
||
padding: 8px 16px;
|
||
background-color: #F8FAFC;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 6px;
|
||
font-family: "Fira Code", "Courier New", monospace;
|
||
font-size: 14px;
|
||
color: #2E7FF7;
|
||
}
|
||
|
||
.secret-box {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.secret-box {
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
}
|
||
}
|
||
|
||
.btn-copy {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 8px 16px;
|
||
background-color: #4B9BFF;
|
||
color: #FFFFFF;
|
||
border: none;
|
||
border-radius: 6px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.2s;
|
||
}
|
||
.btn-copy:hover {
|
||
background-color: #2E7FF7;
|
||
}
|
||
.btn-copy svg {
|
||
width: 16px;
|
||
height: 16px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.btn-copy {
|
||
align-self: stretch;
|
||
justify-content: center;
|
||
}
|
||
}
|
||
|
||
.status-indicator {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 4px 16px;
|
||
border-radius: 16px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
}
|
||
.status-indicator.status-active {
|
||
background-color: #D4EDDA;
|
||
color: #155724;
|
||
}
|
||
.status-indicator.status-inactive {
|
||
background-color: #F8D7DA;
|
||
color: #721C24;
|
||
}
|
||
|
||
.status-dot {
|
||
width: 8px;
|
||
height: 8px;
|
||
border-radius: 50%;
|
||
background-color: currentColor;
|
||
}
|
||
|
||
.api-detail-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 8px;
|
||
}
|
||
|
||
.api-list-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
padding: 16px 24px;
|
||
background: #FFFFFF;
|
||
border: 1px solid #E2E8F0;
|
||
border-radius: 8px;
|
||
transition: all 0.2s;
|
||
}
|
||
.api-list-item:hover {
|
||
border-color: #4B9BFF;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.api-list-item {
|
||
padding: 16px;
|
||
gap: 8px;
|
||
}
|
||
}
|
||
|
||
.api-method {
|
||
display: inline-block;
|
||
padding: 4px 16px;
|
||
border-radius: 6px;
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
font-family: "Fira Code", "Courier New", monospace;
|
||
min-width: 80px;
|
||
text-align: center;
|
||
}
|
||
.api-method.method-get {
|
||
background-color: #D1FAE5;
|
||
color: #065F46;
|
||
}
|
||
.api-method.method-post {
|
||
background-color: #DBEAFE;
|
||
color: #1E40AF;
|
||
}
|
||
.api-method.method-put {
|
||
background-color: #FEF3C7;
|
||
color: #92400E;
|
||
}
|
||
.api-method.method-delete {
|
||
background-color: #FEE2E2;
|
||
color: #991B1B;
|
||
}
|
||
.api-method.method-other {
|
||
background-color: #E2E8F0;
|
||
color: #1A1A2E;
|
||
}
|
||
|
||
.api-list-item .api-name {
|
||
flex: 1;
|
||
font-size: 16px;
|
||
font-weight: 500;
|
||
color: #1A1A2E;
|
||
margin: 0;
|
||
}
|
||
|
||
.api-status {
|
||
padding: 4px 16px;
|
||
border-radius: 12px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
}
|
||
.api-status.status-pending {
|
||
background-color: #FFF3CD;
|
||
color: #856404;
|
||
}
|
||
.api-status.status-active {
|
||
background-color: #D4EDDA;
|
||
color: #155724;
|
||
}
|
||
|
||
.history-table-wrapper {
|
||
overflow-x: auto;
|
||
}
|
||
|
||
.history-table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
}
|
||
.history-table th {
|
||
background-color: #F8FAFC;
|
||
padding: 16px 16px;
|
||
text-align: left;
|
||
font-weight: 600;
|
||
color: #64748B;
|
||
border-bottom: 2px solid #E2E8F0;
|
||
}
|
||
.history-table td {
|
||
padding: 16px;
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
|
||
.history-status {
|
||
display: inline-block;
|
||
padding: 4px 16px;
|
||
background-color: #EFF6FF;
|
||
color: #2E7FF7;
|
||
border-radius: 12px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.empty-state {
|
||
grid-column: 1/-1;
|
||
text-align: center;
|
||
padding: 48px 24px;
|
||
}
|
||
.empty-state .empty-icon {
|
||
font-size: 64px;
|
||
margin-bottom: 16px;
|
||
}
|
||
.empty-state p {
|
||
font-size: 16px;
|
||
color: #64748B;
|
||
}
|
||
|
||
.detail-actions {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 16px;
|
||
flex-wrap: wrap;
|
||
margin-top: 64px;
|
||
padding-top: 64px;
|
||
border-top: 1px solid #E2E8F0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.detail-actions {
|
||
flex-direction: column;
|
||
}
|
||
}
|
||
|
||
.btn-action,
|
||
.btn-secondary {
|
||
padding: 16px 64px;
|
||
border-radius: 8px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
cursor: pointer;
|
||
transition: all 0.2s;
|
||
text-decoration: none;
|
||
display: inline-block;
|
||
border: none;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.btn-action,
|
||
.btn-secondary {
|
||
width: 100%;
|
||
}
|
||
}
|
||
|
||
.btn-action.btn-primary {
|
||
background-color: #4B9BFF;
|
||
color: #FFFFFF;
|
||
}
|
||
.btn-action.btn-primary:hover {
|
||
background-color: #2E7FF7;
|
||
}
|
||
.btn-action.btn-info {
|
||
background-color: #00D4FF;
|
||
color: #FFFFFF;
|
||
}
|
||
.btn-action.btn-info:hover {
|
||
background-color: rgb(0, 169.6, 204);
|
||
}
|
||
.btn-action.btn-danger {
|
||
background-color: #FF6B6B;
|
||
color: #FFFFFF;
|
||
}
|
||
.btn-action.btn-danger:hover {
|
||
background-color: #ff3838;
|
||
}
|
||
|
||
.btn-secondary,
|
||
.btn-cancel {
|
||
background-color: #F8FAFC;
|
||
color: #1A1A2E;
|
||
border: 1px solid #E2E8F0;
|
||
}
|
||
.btn-secondary:hover,
|
||
.btn-cancel:hover {
|
||
background-color: #E2E8F0;
|
||
}
|
||
|
||
.btn-cancel {
|
||
padding: 16px 64px;
|
||
border-radius: 8px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
cursor: pointer;
|
||
transition: all 0.2s;
|
||
background-color: #FEE2E2;
|
||
color: #991B1B;
|
||
border: 1px solid #FCA5A5;
|
||
}
|
||
.btn-cancel:hover {
|
||
background-color: #FCA5A5;
|
||
color: #7F1D1D;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.btn-cancel {
|
||
width: 100%;
|
||
}
|
||
}
|
||
|
||
.container {
|
||
max-width: 1280px;
|
||
margin: 0 auto;
|
||
padding: 0 24px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.container {
|
||
padding: 0 16px;
|
||
}
|
||
}
|
||
|
||
.d-none {
|
||
display: none !important;
|
||
}
|
||
|
||
.d-block {
|
||
display: block !important;
|
||
}
|
||
|
||
.d-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
|
||
.d-flex {
|
||
display: flex !important;
|
||
}
|
||
|
||
.d-inline-flex {
|
||
display: inline-flex !important;
|
||
}
|
||
|
||
.d-grid {
|
||
display: grid !important;
|
||
}
|
||
|
||
.flex-center {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
|
||
.flex-between {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
|
||
.flex-column {
|
||
flex-direction: column;
|
||
}
|
||
|
||
.flex-wrap {
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.align-center {
|
||
align-items: center;
|
||
}
|
||
|
||
.align-start {
|
||
align-items: flex-start;
|
||
}
|
||
|
||
.align-end {
|
||
align-items: flex-end;
|
||
}
|
||
|
||
.justify-center {
|
||
justify-content: center;
|
||
}
|
||
|
||
.justify-start {
|
||
justify-content: flex-start;
|
||
}
|
||
|
||
.justify-end {
|
||
justify-content: flex-end;
|
||
}
|
||
|
||
.justify-between {
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.justify-around {
|
||
justify-content: space-around;
|
||
}
|
||
|
||
.gap-xs {
|
||
gap: 4px;
|
||
}
|
||
|
||
.gap-sm {
|
||
gap: 8px;
|
||
}
|
||
|
||
.gap-md {
|
||
gap: 16px;
|
||
}
|
||
|
||
.gap-lg {
|
||
gap: 24px;
|
||
}
|
||
|
||
.gap-xl {
|
||
gap: 32px;
|
||
}
|
||
|
||
.m-0 {
|
||
margin: 0 !important;
|
||
}
|
||
|
||
.mt-0 {
|
||
margin-top: 0 !important;
|
||
}
|
||
|
||
.mb-0 {
|
||
margin-bottom: 0 !important;
|
||
}
|
||
|
||
.ml-0 {
|
||
margin-left: 0 !important;
|
||
}
|
||
|
||
.mr-0 {
|
||
margin-right: 0 !important;
|
||
}
|
||
|
||
.mx-0 {
|
||
margin-left: 0 !important;
|
||
margin-right: 0 !important;
|
||
}
|
||
|
||
.my-0 {
|
||
margin-top: 0 !important;
|
||
margin-bottom: 0 !important;
|
||
}
|
||
|
||
.m-xs {
|
||
margin: 4px !important;
|
||
}
|
||
|
||
.mt-xs {
|
||
margin-top: 4px !important;
|
||
}
|
||
|
||
.mb-xs {
|
||
margin-bottom: 4px !important;
|
||
}
|
||
|
||
.ml-xs {
|
||
margin-left: 4px !important;
|
||
}
|
||
|
||
.mr-xs {
|
||
margin-right: 4px !important;
|
||
}
|
||
|
||
.mx-xs {
|
||
margin-left: 4px !important;
|
||
margin-right: 4px !important;
|
||
}
|
||
|
||
.my-xs {
|
||
margin-top: 4px !important;
|
||
margin-bottom: 4px !important;
|
||
}
|
||
|
||
.m-sm {
|
||
margin: 8px !important;
|
||
}
|
||
|
||
.mt-sm {
|
||
margin-top: 8px !important;
|
||
}
|
||
|
||
.mb-sm {
|
||
margin-bottom: 8px !important;
|
||
}
|
||
|
||
.ml-sm {
|
||
margin-left: 8px !important;
|
||
}
|
||
|
||
.mr-sm {
|
||
margin-right: 8px !important;
|
||
}
|
||
|
||
.mx-sm {
|
||
margin-left: 8px !important;
|
||
margin-right: 8px !important;
|
||
}
|
||
|
||
.my-sm {
|
||
margin-top: 8px !important;
|
||
margin-bottom: 8px !important;
|
||
}
|
||
|
||
.m-md {
|
||
margin: 16px !important;
|
||
}
|
||
|
||
.mt-md {
|
||
margin-top: 16px !important;
|
||
}
|
||
|
||
.mb-md {
|
||
margin-bottom: 16px !important;
|
||
}
|
||
|
||
.ml-md {
|
||
margin-left: 16px !important;
|
||
}
|
||
|
||
.mr-md {
|
||
margin-right: 16px !important;
|
||
}
|
||
|
||
.mx-md {
|
||
margin-left: 16px !important;
|
||
margin-right: 16px !important;
|
||
}
|
||
|
||
.my-md {
|
||
margin-top: 16px !important;
|
||
margin-bottom: 16px !important;
|
||
}
|
||
|
||
.m-lg {
|
||
margin: 24px !important;
|
||
}
|
||
|
||
.mt-lg {
|
||
margin-top: 24px !important;
|
||
}
|
||
|
||
.mb-lg {
|
||
margin-bottom: 24px !important;
|
||
}
|
||
|
||
.ml-lg {
|
||
margin-left: 24px !important;
|
||
}
|
||
|
||
.mr-lg {
|
||
margin-right: 24px !important;
|
||
}
|
||
|
||
.mx-lg {
|
||
margin-left: 24px !important;
|
||
margin-right: 24px !important;
|
||
}
|
||
|
||
.my-lg {
|
||
margin-top: 24px !important;
|
||
margin-bottom: 24px !important;
|
||
}
|
||
|
||
.m-xl {
|
||
margin: 32px !important;
|
||
}
|
||
|
||
.mt-xl {
|
||
margin-top: 32px !important;
|
||
}
|
||
|
||
.mb-xl {
|
||
margin-bottom: 32px !important;
|
||
}
|
||
|
||
.ml-xl {
|
||
margin-left: 32px !important;
|
||
}
|
||
|
||
.mr-xl {
|
||
margin-right: 32px !important;
|
||
}
|
||
|
||
.mx-xl {
|
||
margin-left: 32px !important;
|
||
margin-right: 32px !important;
|
||
}
|
||
|
||
.my-xl {
|
||
margin-top: 32px !important;
|
||
margin-bottom: 32px !important;
|
||
}
|
||
|
||
.m-2xl {
|
||
margin: 40px !important;
|
||
}
|
||
|
||
.mt-2xl {
|
||
margin-top: 40px !important;
|
||
}
|
||
|
||
.mb-2xl {
|
||
margin-bottom: 40px !important;
|
||
}
|
||
|
||
.ml-2xl {
|
||
margin-left: 40px !important;
|
||
}
|
||
|
||
.mr-2xl {
|
||
margin-right: 40px !important;
|
||
}
|
||
|
||
.mx-2xl {
|
||
margin-left: 40px !important;
|
||
margin-right: 40px !important;
|
||
}
|
||
|
||
.my-2xl {
|
||
margin-top: 40px !important;
|
||
margin-bottom: 40px !important;
|
||
}
|
||
|
||
.m-3xl {
|
||
margin: 48px !important;
|
||
}
|
||
|
||
.mt-3xl {
|
||
margin-top: 48px !important;
|
||
}
|
||
|
||
.mb-3xl {
|
||
margin-bottom: 48px !important;
|
||
}
|
||
|
||
.ml-3xl {
|
||
margin-left: 48px !important;
|
||
}
|
||
|
||
.mr-3xl {
|
||
margin-right: 48px !important;
|
||
}
|
||
|
||
.mx-3xl {
|
||
margin-left: 48px !important;
|
||
margin-right: 48px !important;
|
||
}
|
||
|
||
.my-3xl {
|
||
margin-top: 48px !important;
|
||
margin-bottom: 48px !important;
|
||
}
|
||
|
||
.m-4xl {
|
||
margin: 64px !important;
|
||
}
|
||
|
||
.mt-4xl {
|
||
margin-top: 64px !important;
|
||
}
|
||
|
||
.mb-4xl {
|
||
margin-bottom: 64px !important;
|
||
}
|
||
|
||
.ml-4xl {
|
||
margin-left: 64px !important;
|
||
}
|
||
|
||
.mr-4xl {
|
||
margin-right: 64px !important;
|
||
}
|
||
|
||
.mx-4xl {
|
||
margin-left: 64px !important;
|
||
margin-right: 64px !important;
|
||
}
|
||
|
||
.my-4xl {
|
||
margin-top: 64px !important;
|
||
margin-bottom: 64px !important;
|
||
}
|
||
|
||
.m-auto {
|
||
margin: auto !important;
|
||
}
|
||
|
||
.mt-auto {
|
||
margin-top: auto !important;
|
||
}
|
||
|
||
.mb-auto {
|
||
margin-bottom: auto !important;
|
||
}
|
||
|
||
.ml-auto {
|
||
margin-left: auto !important;
|
||
}
|
||
|
||
.mr-auto {
|
||
margin-right: auto !important;
|
||
}
|
||
|
||
.mx-auto {
|
||
margin-left: auto !important;
|
||
margin-right: auto !important;
|
||
}
|
||
|
||
.my-auto {
|
||
margin-top: auto !important;
|
||
margin-bottom: auto !important;
|
||
}
|
||
|
||
.p-0 {
|
||
padding: 0 !important;
|
||
}
|
||
|
||
.pt-0 {
|
||
padding-top: 0 !important;
|
||
}
|
||
|
||
.pb-0 {
|
||
padding-bottom: 0 !important;
|
||
}
|
||
|
||
.pl-0 {
|
||
padding-left: 0 !important;
|
||
}
|
||
|
||
.pr-0 {
|
||
padding-right: 0 !important;
|
||
}
|
||
|
||
.px-0 {
|
||
padding-left: 0 !important;
|
||
padding-right: 0 !important;
|
||
}
|
||
|
||
.py-0 {
|
||
padding-top: 0 !important;
|
||
padding-bottom: 0 !important;
|
||
}
|
||
|
||
.p-xs {
|
||
padding: 4px !important;
|
||
}
|
||
|
||
.pt-xs {
|
||
padding-top: 4px !important;
|
||
}
|
||
|
||
.pb-xs {
|
||
padding-bottom: 4px !important;
|
||
}
|
||
|
||
.pl-xs {
|
||
padding-left: 4px !important;
|
||
}
|
||
|
||
.pr-xs {
|
||
padding-right: 4px !important;
|
||
}
|
||
|
||
.px-xs {
|
||
padding-left: 4px !important;
|
||
padding-right: 4px !important;
|
||
}
|
||
|
||
.py-xs {
|
||
padding-top: 4px !important;
|
||
padding-bottom: 4px !important;
|
||
}
|
||
|
||
.p-sm {
|
||
padding: 8px !important;
|
||
}
|
||
|
||
.pt-sm {
|
||
padding-top: 8px !important;
|
||
}
|
||
|
||
.pb-sm {
|
||
padding-bottom: 8px !important;
|
||
}
|
||
|
||
.pl-sm {
|
||
padding-left: 8px !important;
|
||
}
|
||
|
||
.pr-sm {
|
||
padding-right: 8px !important;
|
||
}
|
||
|
||
.px-sm {
|
||
padding-left: 8px !important;
|
||
padding-right: 8px !important;
|
||
}
|
||
|
||
.py-sm {
|
||
padding-top: 8px !important;
|
||
padding-bottom: 8px !important;
|
||
}
|
||
|
||
.p-md {
|
||
padding: 16px !important;
|
||
}
|
||
|
||
.pt-md {
|
||
padding-top: 16px !important;
|
||
}
|
||
|
||
.pb-md {
|
||
padding-bottom: 16px !important;
|
||
}
|
||
|
||
.pl-md {
|
||
padding-left: 16px !important;
|
||
}
|
||
|
||
.pr-md {
|
||
padding-right: 16px !important;
|
||
}
|
||
|
||
.px-md {
|
||
padding-left: 16px !important;
|
||
padding-right: 16px !important;
|
||
}
|
||
|
||
.py-md {
|
||
padding-top: 16px !important;
|
||
padding-bottom: 16px !important;
|
||
}
|
||
|
||
.p-lg {
|
||
padding: 24px !important;
|
||
}
|
||
|
||
.pt-lg {
|
||
padding-top: 24px !important;
|
||
}
|
||
|
||
.pb-lg {
|
||
padding-bottom: 24px !important;
|
||
}
|
||
|
||
.pl-lg {
|
||
padding-left: 24px !important;
|
||
}
|
||
|
||
.pr-lg {
|
||
padding-right: 24px !important;
|
||
}
|
||
|
||
.px-lg {
|
||
padding-left: 24px !important;
|
||
padding-right: 24px !important;
|
||
}
|
||
|
||
.py-lg {
|
||
padding-top: 24px !important;
|
||
padding-bottom: 24px !important;
|
||
}
|
||
|
||
.p-xl {
|
||
padding: 32px !important;
|
||
}
|
||
|
||
.pt-xl {
|
||
padding-top: 32px !important;
|
||
}
|
||
|
||
.pb-xl {
|
||
padding-bottom: 32px !important;
|
||
}
|
||
|
||
.pl-xl {
|
||
padding-left: 32px !important;
|
||
}
|
||
|
||
.pr-xl {
|
||
padding-right: 32px !important;
|
||
}
|
||
|
||
.px-xl {
|
||
padding-left: 32px !important;
|
||
padding-right: 32px !important;
|
||
}
|
||
|
||
.py-xl {
|
||
padding-top: 32px !important;
|
||
padding-bottom: 32px !important;
|
||
}
|
||
|
||
.p-2xl {
|
||
padding: 40px !important;
|
||
}
|
||
|
||
.pt-2xl {
|
||
padding-top: 40px !important;
|
||
}
|
||
|
||
.pb-2xl {
|
||
padding-bottom: 40px !important;
|
||
}
|
||
|
||
.pl-2xl {
|
||
padding-left: 40px !important;
|
||
}
|
||
|
||
.pr-2xl {
|
||
padding-right: 40px !important;
|
||
}
|
||
|
||
.px-2xl {
|
||
padding-left: 40px !important;
|
||
padding-right: 40px !important;
|
||
}
|
||
|
||
.py-2xl {
|
||
padding-top: 40px !important;
|
||
padding-bottom: 40px !important;
|
||
}
|
||
|
||
.p-3xl {
|
||
padding: 48px !important;
|
||
}
|
||
|
||
.pt-3xl {
|
||
padding-top: 48px !important;
|
||
}
|
||
|
||
.pb-3xl {
|
||
padding-bottom: 48px !important;
|
||
}
|
||
|
||
.pl-3xl {
|
||
padding-left: 48px !important;
|
||
}
|
||
|
||
.pr-3xl {
|
||
padding-right: 48px !important;
|
||
}
|
||
|
||
.px-3xl {
|
||
padding-left: 48px !important;
|
||
padding-right: 48px !important;
|
||
}
|
||
|
||
.py-3xl {
|
||
padding-top: 48px !important;
|
||
padding-bottom: 48px !important;
|
||
}
|
||
|
||
.p-4xl {
|
||
padding: 64px !important;
|
||
}
|
||
|
||
.pt-4xl {
|
||
padding-top: 64px !important;
|
||
}
|
||
|
||
.pb-4xl {
|
||
padding-bottom: 64px !important;
|
||
}
|
||
|
||
.pl-4xl {
|
||
padding-left: 64px !important;
|
||
}
|
||
|
||
.pr-4xl {
|
||
padding-right: 64px !important;
|
||
}
|
||
|
||
.px-4xl {
|
||
padding-left: 64px !important;
|
||
padding-right: 64px !important;
|
||
}
|
||
|
||
.py-4xl {
|
||
padding-top: 64px !important;
|
||
padding-bottom: 64px !important;
|
||
}
|
||
|
||
.w-25 {
|
||
width: 25%;
|
||
}
|
||
|
||
.w-50 {
|
||
width: 50%;
|
||
}
|
||
|
||
.w-75 {
|
||
width: 75%;
|
||
}
|
||
|
||
.w-100 {
|
||
width: 100%;
|
||
}
|
||
|
||
.w-auto {
|
||
width: auto;
|
||
}
|
||
|
||
.h-25 {
|
||
height: 25%;
|
||
}
|
||
|
||
.h-50 {
|
||
height: 50%;
|
||
}
|
||
|
||
.h-75 {
|
||
height: 75%;
|
||
}
|
||
|
||
.h-100 {
|
||
height: 100%;
|
||
}
|
||
|
||
.h-auto {
|
||
height: auto;
|
||
}
|
||
|
||
.vh-100 {
|
||
height: 100vh;
|
||
}
|
||
|
||
.position-relative {
|
||
position: relative;
|
||
}
|
||
|
||
.position-absolute {
|
||
position: absolute;
|
||
}
|
||
|
||
.position-fixed {
|
||
position: fixed;
|
||
}
|
||
|
||
.position-sticky {
|
||
position: sticky;
|
||
}
|
||
|
||
.bg-primary {
|
||
background: #4B9BFF;
|
||
}
|
||
|
||
.bg-secondary {
|
||
background: #2E7FF7;
|
||
}
|
||
|
||
.bg-white {
|
||
background: #FFFFFF;
|
||
}
|
||
|
||
.bg-gray {
|
||
background: #F8FAFC;
|
||
}
|
||
|
||
.bg-light {
|
||
background: #EFF6FF;
|
||
}
|
||
|
||
.bg-gradient-primary {
|
||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||
}
|
||
|
||
.bg-gradient-accent {
|
||
background: linear-gradient(135deg, #00D4FF 0%, #4B9BFF 100%);
|
||
}
|
||
|
||
.bg-gradient-warm {
|
||
background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
|
||
}
|
||
|
||
.border {
|
||
border: 1px solid #E2E8F0;
|
||
}
|
||
|
||
.border-0 {
|
||
border: none !important;
|
||
}
|
||
|
||
.border-top {
|
||
border-top: 1px solid #E2E8F0;
|
||
}
|
||
|
||
.border-bottom {
|
||
border-bottom: 1px solid #E2E8F0;
|
||
}
|
||
|
||
.border-left {
|
||
border-left: 1px solid #E2E8F0;
|
||
}
|
||
|
||
.border-right {
|
||
border-right: 1px solid #E2E8F0;
|
||
}
|
||
|
||
.border-primary {
|
||
border-color: #4B9BFF;
|
||
}
|
||
|
||
.rounded-0 {
|
||
border-radius: 0;
|
||
}
|
||
|
||
.rounded-sm {
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.rounded {
|
||
border-radius: 8px;
|
||
}
|
||
|
||
.rounded-lg {
|
||
border-radius: 12px;
|
||
}
|
||
|
||
.rounded-xl {
|
||
border-radius: 16px;
|
||
}
|
||
|
||
.rounded-full {
|
||
border-radius: 50px;
|
||
}
|
||
|
||
.rounded-circle {
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.shadow-none {
|
||
box-shadow: none !important;
|
||
}
|
||
|
||
.shadow-sm {
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.shadow {
|
||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||
}
|
||
|
||
.shadow-lg {
|
||
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
|
||
}
|
||
|
||
.shadow-xl {
|
||
box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2);
|
||
}
|
||
|
||
.overflow-hidden {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.overflow-auto {
|
||
overflow: auto;
|
||
}
|
||
|
||
.overflow-x-hidden {
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
.overflow-y-hidden {
|
||
overflow-y: hidden;
|
||
}
|
||
|
||
.overflow-x-auto {
|
||
overflow-x: auto;
|
||
}
|
||
|
||
.overflow-y-auto {
|
||
overflow-y: auto;
|
||
}
|
||
|
||
.z-0 {
|
||
z-index: 0;
|
||
}
|
||
|
||
.z-10 {
|
||
z-index: 10;
|
||
}
|
||
|
||
.z-20 {
|
||
z-index: 20;
|
||
}
|
||
|
||
.z-30 {
|
||
z-index: 30;
|
||
}
|
||
|
||
.z-40 {
|
||
z-index: 40;
|
||
}
|
||
|
||
.z-50 {
|
||
z-index: 50;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.sm-hide {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (max-width: 1024px) {
|
||
.md-hide {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (min-width: 769px) {
|
||
.mobile-only {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.desktop-only {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
.cursor-pointer {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.cursor-default {
|
||
cursor: default;
|
||
}
|
||
|
||
.cursor-not-allowed {
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.opacity-0 {
|
||
opacity: 0;
|
||
}
|
||
|
||
.opacity-25 {
|
||
opacity: 0.25;
|
||
}
|
||
|
||
.opacity-50 {
|
||
opacity: 0.5;
|
||
}
|
||
|
||
.opacity-75 {
|
||
opacity: 0.75;
|
||
}
|
||
|
||
.opacity-100 {
|
||
opacity: 1;
|
||
}
|
||
|
||
.transition {
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.transition-fast {
|
||
transition: all 0.15s ease;
|
||
}
|
||
|
||
.transition-slow {
|
||
transition: all 0.5s ease;
|
||
}
|
||
|
||
.transition-none {
|
||
transition: none;
|
||
}
|
||
|
||
/*# sourceMappingURL=main.css.map */
|