1299 lines
62 KiB
HTML
Executable File
1299 lines
62 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="vi">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Cloud Removal Training - Deep Learning</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
background-attachment: fixed;
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
border-radius: 24px;
|
|
box-shadow: 0 25px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 40px 30px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
right: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
|
|
animation: headerGlow 8s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes headerGlow {
|
|
0%, 100% { transform: translate(0, 0); }
|
|
50% { transform: translate(-20%, -20%); }
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 2.8em;
|
|
margin-bottom: 12px;
|
|
font-weight: 700;
|
|
position: relative;
|
|
z-index: 1;
|
|
text-shadow: 0 2px 20px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.header p {
|
|
font-size: 1.15em;
|
|
opacity: 0.95;
|
|
position: relative;
|
|
z-index: 1;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.nav {
|
|
background: rgba(255,255,255,0.8);
|
|
backdrop-filter: blur(10px);
|
|
padding: 18px 30px;
|
|
border-bottom: 1px solid rgba(0,0,0,0.08);
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.03);
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.nav a {
|
|
padding: 12px 24px;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 12px;
|
|
font-weight: 600;
|
|
transition: all 0.3s;
|
|
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
|
|
}
|
|
|
|
.nav a:nth-child(1) { background: linear-gradient(135deg, #667eea, #764ba2); }
|
|
.nav a:nth-child(2) { background: linear-gradient(135deg, #f093fb, #f5576c); }
|
|
.nav a:nth-child(3) { background: linear-gradient(135deg, #4facfe, #00f2fe); }
|
|
.nav a:nth-child(4) { background: linear-gradient(135deg, #43e97b, #38f9d7); }
|
|
|
|
.nav a:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.content {
|
|
padding: 30px;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 30px;
|
|
padding: 28px;
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
|
|
border-radius: 16px;
|
|
border: 1px solid rgba(0,0,0,0.06);
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.section:hover {
|
|
box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.section-title {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
font-size: 1.6em;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.card {
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
|
|
border-radius: 12px;
|
|
padding: 24px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
color: #374151;
|
|
font-size: 0.95 |