| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family:
- "PingFang SC",
- -apple-system,
- BlinkMacSystemFont,
- "Segoe UI",
- Roboto,
- "Helvetica Neue",
- Arial,
- sans-serif;
- background-color: #121212;
- color: #ffffff;
- min-height: 100vh;
- overflow-x: hidden;
- }
- .container {
- width: 100%;
- min-height: 100vh;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .header {
- padding: 16px;
- }
- .header img {
- height: 30px;
- }
- .header .placeholder {
- width: 42px;
- }
- .header-title {
- font-size: 17px;
- font-weight: 600;
- color: #ffffff;
- }
- .banner-section {
- position: relative;
- width: 100%;
- }
- .invite-download{
- position: relative;
- }
- .invite-download .banner-bg img {
- width: 98px;
- margin: 60px auto 24px;
- }
- .invite-download .download-card img {
- width: 100%;
- }
- .banner-bg {
- width: 100%;
- height: 100%;
- }
- .banner-bg img {
- display: block;
- margin-left: auto;
- width: 290px;
- }
- .banner-content {
- position: relative;
- z-index: 1;
- padding: 0 16px;
- }
- .logo-wrapper {
- width: 98px;
- height: 92px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 24px;
- }
- .logo-wrapper img {
- width: 290px;
- }
- .banner-title {
- font-size: 20px;
- font-weight: 600;
- text-align: center;
- line-height: 32px;
- color: #ffffff;
- margin-bottom: 32px;
- }
- .invite-highlight {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 8px;
- margin: 16px 0 24px;
- }
- .invite-highlight-text {
- font-size: 14px;
- font-weight: 500;
- color: #fd6f23;
- text-align: center;
- }
- .invite-highlight-line {
- width: 38px;
- display: flex;
- }
- .invite-highlight-line img {
- width: 100%;
- }
- .btn-box{
- display: flex;
- gap: 12px;
- justify-content: space-between;
- }
- .form-section {
- padding: 0 16px;
- margin-bottom: 18px;
- }
- .form-group {
- margin-bottom: 16px;
- }
- .form-group.invite-code-group {
- margin-bottom: 24px;
- }
- .input-wrapper {
- position: relative;
- background-color: #191919;
- border-radius: 8px;
- height: 52px;
- display: flex;
- align-items: center;
- padding: 0 16px;
- transition: border-color 0.3s ease;
- }
- .input-wrapper:focus-within {
- border: 1px solid #fd6f23;
- }
- .input-wrapper input {
- flex: 1;
- height: 100%;
- background: transparent;
- border: none;
- outline: none;
- color: #ffffff;
- font-size: 14px;
- font-weight: 400;
- }
- .input-wrapper input::placeholder {
- color: #888888;
- }
- .input-label {
- position: absolute;
- left: 16px;
- top: 50%;
- transform: translateY(-50%);
- color: #888888;
- font-size: 14px;
- pointer-events: none;
- transition: all 0.3s ease;
- }
- .input-wrapper input:focus + .input-label,
- .input-wrapper input:not(:placeholder-shown) + .input-label {
- top: 8px;
- font-size: 10px;
- color: #fd6f23;
- }
- .invite-code-box {
- background-color: rgba(25, 25, 25, 0.5);
- border-radius: 8px;
- padding: 8px 16px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .invite-code-label {
- font-size: 14px;
- color: #888888;
- margin-bottom: 8px;
- }
- .invite-code-value {
- font-size: 14px;
- color: rgba(255, 255, 255, 0.5);
- font-weight: 400;
- }
- .invite-code-copy {
- width: 24px;
- height: 24px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- }
- .invite-code-copy svg {
- width: 16px;
- height: 16px;
- fill: none;
- stroke: #888888;
- stroke-width: 1.5;
- }
- .invite-code-copy:hover svg {
- stroke: #fd6f23;
- }
- .btn-primary {
- width: 100%;
- height: 44px;
- background-color: #ffffff;
- border: none;
- border-radius: 8px;
- color: #000000;
- font-size: 14px;
- font-weight: 500;
- cursor: pointer;
- transition: all 0.3s ease;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 8px;
- }
- .btn-primary.primary {
- background-color: #fd6f23;
- color: #ffffff;
- }
- .btn-primary:hover {
- background-color: #f0f0f0;
- }
- .btn-primary:active {
- transform: scale(0.98);
- }
- .btn-primary:disabled {
- background-color: #333333;
- color: #666666;
- cursor: not-allowed;
- }
- .agreement-text {
- font-size: 12px;
- color: #888888;
- margin-top: 16px;
- line-height: 18px;
- }
- .agreement-text a {
- color: #fd6f23;
- text-decoration: none;
- }
- .agreement-text a:hover {
- text-decoration: underline;
- }
- .features-section {
- padding: 32px 16px;
- background-color: #121212;
- }
- .features-title {
- text-align: center;
- font-size: 16px;
- font-weight: 600;
- color: #ffffff;
- margin-bottom: 20px;
- }
- .features-grid {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 12px;
- }
- .feature-card {
- background-color: #191919;
- border: 1px solid #333333;
- border-radius: 8px;
- padding: 16px;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 8px;
- transition: all 0.3s ease;
- }
- .feature-card:hover {
- border-color: #fd6f23;
- background-color: rgba(253, 111, 35, 0.05);
- }
- .feature-icon {
- width: 24px;
- height: 24px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .feature-icon svg {
- width: 100%;
- height: 100%;
- fill: none;
- stroke: #ffffff;
- stroke-width: 1.5;
- }
- .feature-name {
- font-size: 12px;
- font-weight: 500;
- color: #ffffff;
- }
- .stats-section {
- padding: 32px 16px;
- background-color: #121212;
- }
- .stats-section > img {
- width: 100%;
- }
- .stats-grid {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 16px;
- }
- .stat-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 8px;
- }
- .stat-value {
- font-size: 28px;
- font-weight: 600;
- color: #fd6f23;
- }
- .stat-label {
- font-size: 14px;
- color: #888888;
- text-align: center;
- }
- .download-section {
- padding: 32px 16px;
- background-color: #121212;
- }
- .download-card {
- border-radius: 16px;
- padding: 24px 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 24px;
- }
- .download-title {
- font-size: 20px;
- font-weight: 600;
- color: #ffffff;
- text-align: center;
- line-height: 32px;
- }
- .download-screenshots {
- display: flex;
- gap: 8px;
- overflow: hidden;
- width: 100%;
- justify-content: center;
- }
- .screenshot-item {
- width: 140px;
- height: 300px;
- border-radius: 18px;
- overflow: hidden;
- border: 1px solid #333333;
- flex-shrink: 0;
- }
- .screenshot-item img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .download-content{
- position: fixed;
- bottom: 0;
- left: 0;
- padding: 20px 16px 30px;
- width: 100%;
- background-color: #121212;
- box-shadow: 0 -50px 50px #121212;
- }
- .download-btn {
- width: 100%;
- height: 44px;
- background-color: #ffffff;
- border: none;
- border-radius: 8px;
- color: #000000;
- font-size: 14px;
- font-weight: 500;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 8px;
- transition: all 0.3s ease;
- }
- .download-btn:hover {
- background-color: #f0f0f0;
- }
- .download-btn-icon {
- width: 20px;
- height: 20px;
- }
- .download-btn-icon svg {
- width: 100%;
- height: 100%;
- }
- .footer-section {
- padding: 24px 16px;
- text-align: center;
- background-color: #121212;
- border-top: 1px solid #191919;
- }
- .footer-copy {
- font-size: 12px;
- color: #666666;
- }
- .verification-section {
- padding: 0 16px;
- margin-top: 80px;
- }
- .verification-timer {
- position: absolute;
- right: 16px;
- top: 50%;
- transform: translateY(-50%);
- font-size: 14px;
- color: rgba(253, 111, 35, 0.5);
- }
- .timer-active {
- color: #fd6f23;
- }
- .resend-code {
- color: #fd6f23;
- cursor: pointer;
- }
- .resend-code:hover {
- text-decoration: underline;
- }
- .success-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.8);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1000;
- animation: fadeIn 0.3s ease;
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- .success-content {
- background-color: #191919;
- border-radius: 12px;
- padding: 32px;
- text-align: center;
- animation: scaleIn 0.3s ease;
- }
- @keyframes scaleIn {
- from {
- transform: scale(0.9);
- opacity: 0;
- }
- to {
- transform: scale(1);
- opacity: 1;
- }
- }
- .success-icon {
- width: 64px;
- height: 64px;
- margin: 0 auto 20px;
- background-color: #fd6f23;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .success-icon svg {
- width: 32px;
- height: 32px;
- fill: #ffffff;
- }
- .success-title {
- font-size: 18px;
- font-weight: 600;
- color: #ffffff;
- margin-bottom: 8px;
- }
- .success-desc {
- font-size: 14px;
- color: #888888;
- }
- @media screen and (min-width: 428px) {
- .container {
- max-width: 428px;
- margin: 0 auto;
- box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
- }
- }
- @media screen and (max-width: 320px) {
- .features-grid {
- grid-template-columns: 1fr;
- }
- .stats-grid {
- grid-template-columns: repeat(2, 1fr);
- }
- }
- .loading-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(18, 18, 18, 0.9);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1000;
- }
- .loading-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 16px;
- }
- .loading-spinner {
- width: 40px;
- height: 40px;
- border: 3px solid #333333;
- border-top-color: #fd6f23;
- border-radius: 50%;
- animation: spin 1s linear infinite;
- }
- @keyframes spin {
- to {
- transform: rotate(360deg);
- }
- }
- .loading-text {
- font-size: 14px;
- color: #888888;
- }
- .error-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(18, 18, 18, 0.9);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1000;
- }
- .error-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 16px;
- padding: 32px;
- }
- .error-icon {
- width: 64px;
- height: 64px;
- background-color: #ff4444;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 32px;
- font-weight: bold;
- color: #ffffff;
- }
- .error-text {
- font-size: 14px;
- color: #888888;
- text-align: center;
- }
- .error-retry {
- padding: 12px 32px;
- background-color: #ffffff;
- border: none;
- border-radius: 8px;
- color: #000000;
- font-size: 14px;
- font-weight: 500;
- cursor: pointer;
- }
- .error-retry:hover {
- background-color: #f0f0f0;
- }
- .error-message {
- display: none;
- font-size: 12px;
- color: #ff4444;
- margin-top: 8px;
- padding-left: 16px;
- }
- .password-rule {
- font-size: 12px;
- color: #666666;
- margin-top: 8px;
- padding-left: 8px;
- }
|