4d30803b60
Add static site, shared layout, and Node dev server with standard .gitignore. Co-authored-by: Cursor <cursoragent@cursor.com>
5745 lines
103 KiB
SCSS
5745 lines
103 KiB
SCSS
.fade-in {
|
|
opacity: 0;
|
|
transform: translateY(0.75rem);
|
|
transition: opacity .7s ease, transform .7s ease;
|
|
}
|
|
|
|
.fade-in.show {
|
|
opacity: 1;
|
|
transform: none;
|
|
|
|
}
|
|
|
|
/* header banner css */
|
|
.hero-title {
|
|
display: grid;
|
|
grid-template-areas:
|
|
"img line1"
|
|
"img line2";
|
|
grid-template-columns: auto 1fr;
|
|
grid-template-rows: auto auto;
|
|
/* column-gap: 15px;
|
|
row-gap: 5px; */
|
|
align-items: center;
|
|
margin-top: 10rem;
|
|
}
|
|
|
|
.hero-img {
|
|
grid-area: img;
|
|
width: 4.375rem;
|
|
height: 4.375rem;
|
|
}
|
|
|
|
.line1 {
|
|
grid-area: line1;
|
|
align-self: end;
|
|
/* Align with image bottom */
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.line2 {
|
|
grid-area: line2;
|
|
align-self: start;
|
|
/* Start from second row */
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.funded-trading-hero .col-lg-6 {
|
|
max-width: 59.6875rem;
|
|
width: 56.6875rem;
|
|
flex: auto;
|
|
}
|
|
|
|
.funded-trading-hero .trustpilot {
|
|
margin-top: 2.125rem;
|
|
height: 2.125rem;
|
|
line-height: 2.125rem;
|
|
}
|
|
|
|
|
|
.hero-content-wrapper {
|
|
gap: 3rem;
|
|
/* Control spacing between image and content */
|
|
}
|
|
|
|
.center-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
flex-wrap: wrap;
|
|
/* Allow wrapping if too many buttons */
|
|
}
|
|
|
|
/* Basic floating effect */
|
|
.floating-img {
|
|
transition: all 0.5s ease;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
/* Float upward */
|
|
/* Slight X-axis rotation */
|
|
/* Slight Y-axis rotation */
|
|
/* Slight zoom */
|
|
.floating-img:hover {
|
|
transform:
|
|
translateY(-25px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
|
}
|
|
|
|
/* Add micro animation to enhance space feeling */
|
|
.floating-img::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
/* background: radial-gradient(circle at center, transparent 30%, rgba(100, 200, 255, 0.1) 70%, transparent 100%); */
|
|
opacity: 0;
|
|
transition: opacity 0.5s ease;
|
|
border-radius: inherit;
|
|
z-index: 1;
|
|
}
|
|
|
|
.floating-img:hover::after {
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
/* Beautify review section */
|
|
.hero-review {
|
|
font-size: 1rem;
|
|
color: #666;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.review-stars {
|
|
color: #FFD700;
|
|
/* Golden star */
|
|
}
|
|
|
|
.bg-cover {
|
|
position: relative
|
|
}
|
|
|
|
.review-platform {
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
|
|
.bg-size--cover {
|
|
background-size: cover;
|
|
background-repeat: no-repeat
|
|
}
|
|
|
|
.funded-trading-hero .d-flex .img-fluid {
|
|
width: 10.25rem;
|
|
height: 10.25rem;
|
|
/* object-fit: cover; */
|
|
}
|
|
|
|
.funded-trading-hero .text-center {
|
|
max-width: 34.1875rem;
|
|
}
|
|
|
|
.funded-trading-hero .text-center .banner-desc {
|
|
font-size: 1.5rem;
|
|
line-height: 2rem;
|
|
}
|
|
|
|
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 992px) {
|
|
.hero-content-wrapper {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-image-left,
|
|
.hero-image-right {
|
|
margin: 0 0 2rem 0 !important;
|
|
order: -1;
|
|
}
|
|
|
|
.hero-image-left {
|
|
margin-bottom: 2rem !important;
|
|
}
|
|
|
|
.hero-image-right {
|
|
margin-top: 2rem !important;
|
|
}
|
|
|
|
.hero-image-left img,
|
|
.hero-image-right img {
|
|
width: 8rem !important;
|
|
height: 8rem !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.hero-image-left img,
|
|
.hero-image-right img {
|
|
width: 6rem !important;
|
|
height: 6rem !important;
|
|
}
|
|
|
|
.hero-description div {
|
|
font-size: 1.25rem !important;
|
|
line-height: 1.75rem !important;
|
|
}
|
|
|
|
.funded-trading-hero .col-lg-6 {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
/* header */
|
|
.nav-item .nav-link .iconfont {
|
|
font-size: .875rem;
|
|
margin-left: 6px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.why-img {
|
|
grid-area: img;
|
|
width: 4.375rem;
|
|
height: 4.375rem;
|
|
transform: translateY(-17px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
|
}
|
|
|
|
/* section-3 common start*/
|
|
|
|
|
|
#section-3 {
|
|
position: relative;
|
|
min-height: 800px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.section3-bg {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
inset: -1px 0 -1px 0;
|
|
object-fit: fill;
|
|
}
|
|
|
|
|
|
#section-4::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 135px;
|
|
background: linear-gradient(
|
|
to bottom,
|
|
rgba(255,255,255,0) 0%,
|
|
#000 100%
|
|
);
|
|
pointer-events: none;
|
|
}
|
|
|
|
#section-4 {
|
|
// background-image: url(../images/backgrounds/lc_bg_2.png);
|
|
// background-size: contain;
|
|
// background-position: center;
|
|
// background-repeat: no-repeat;
|
|
// background-size: 100% 100%;
|
|
|
|
.section4-bg {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: fill;
|
|
z-index: -1;
|
|
}
|
|
|
|
.card-style-1{
|
|
border-radius: 20px;
|
|
}
|
|
.card-style-1:hover {
|
|
background-color: var(--aifo-orange) !important;
|
|
-webkit-box-shadow: inset 0 2px 4px rgba(249, 135, 21, 0.4), 0 3px 6px rgba(249, 135, 21, 0.5);
|
|
box-shadow: inset 0 2px 4px rgba(249, 135, 21, 0.4), 0 3px 6px rgba(249, 135, 21, 0.5);
|
|
}
|
|
|
|
}
|
|
|
|
.custom-rounded {
|
|
border-radius: 20px !important;
|
|
}
|
|
|
|
.card-style-2 .icon-box {
|
|
display: inline-block;
|
|
width: 3.375rem;
|
|
height: 3.375rem;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
cursor: pointer;
|
|
transition: background-image 0.3s ease;
|
|
}
|
|
|
|
|
|
|
|
.card-style-2 .card {
|
|
background-color: #231F20;
|
|
padding: 2.5rem 1.75rem;
|
|
}
|
|
|
|
.card-style-2 .card:hover {
|
|
background-color: var(--aifo-orange) !important;
|
|
box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 8px 15px 0 rgba(249, 135, 21, 0.7);
|
|
}
|
|
|
|
|
|
.card-style-2 .icon-box.w-1 {
|
|
background-image: url('../images/backgrounds/w-1.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-1 {
|
|
background-image: url('../images/backgrounds/w-1-hover.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-2 {
|
|
background-image: url('../images/backgrounds/w-2.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-2 {
|
|
background-image: url('../images/backgrounds/w-22.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-3 {
|
|
background-image: url('../images/backgrounds/w-3.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-3 {
|
|
background-image: url('../images/backgrounds/w-33.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-4 {
|
|
background-image: url('../images/backgrounds/w-4.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-4 {
|
|
background-image: url('../images/backgrounds/w-44.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-5 {
|
|
background-image: url('../images/backgrounds/w-5.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-5 {
|
|
background-image: url('../images/backgrounds/w-55.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-6 {
|
|
background-image: url('../images/backgrounds/w-6.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-6 {
|
|
background-image: url('../images/backgrounds/w-66.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-7 {
|
|
background-image: url('../images/backgrounds/w-7.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-7 {
|
|
background-image: url('../images/backgrounds/w-77.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-8 {
|
|
background-image: url('../images/backgrounds/w-8.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-8 {
|
|
background-image: url('../images/backgrounds/w-88.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-9 {
|
|
background-image: url('../images/backgrounds/w-9.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-9 {
|
|
background-image: url('../images/backgrounds/w-9-hover.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-10 {
|
|
background-image: url('../images/backgrounds/w-10.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-10 {
|
|
background-image: url('../images/backgrounds/w-10-hover.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-11 {
|
|
background-image: url('../images/backgrounds/w-11.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-11 {
|
|
background-image: url('../images/backgrounds/w-11-hover.svg');
|
|
}
|
|
|
|
.card-style-2 .icon-box.w-12 {
|
|
background-image: url('../images/backgrounds/w-12.svg');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.w-12 {
|
|
background-image: url('../images/backgrounds/w-12-hover.svg');
|
|
}
|
|
|
|
.icon-box-1 {
|
|
display: inline-block;
|
|
width: 2.375rem;
|
|
height: 2.375rem;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
cursor: pointer;
|
|
transition: background-image 0.3s ease;
|
|
}
|
|
|
|
.icon-box-1.s-c-1 {
|
|
background-image: url('../images/backgrounds/w-1.svg');
|
|
}
|
|
|
|
.icon-box-1.lc-4-1 {
|
|
background-image: url('../images/backgrounds/icon/section-4-icon-1.png');
|
|
}
|
|
.icon-box-1.lc-4-2 {
|
|
background-image: url('../images/backgrounds/icon/section-4-icon-2.png');
|
|
}
|
|
.icon-box-1.lc-4-3 {
|
|
background-image: url('../images/backgrounds/icon/section-4-icon-3.png');
|
|
}
|
|
.icon-media-box{
|
|
width:27px;
|
|
height:27px;
|
|
display: inline-block;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
cursor: pointer;
|
|
transition: background-image 0.3s ease;
|
|
}
|
|
.icon-media-box.facebook{
|
|
background-image: url('../images/backgrounds/icon/media/media_1.svg');
|
|
}
|
|
.icon-media-box.facebook:hover{
|
|
background-image: url('../images/backgrounds/icon/media/media_1_hover.svg');
|
|
}
|
|
.icon-media-box.x{
|
|
background-image: url('../images/backgrounds/icon/media/media_2.svg');
|
|
}
|
|
.icon-media-box.x:hover{
|
|
background-image: url('../images/backgrounds/icon/media/media_2_hover.svg');
|
|
}
|
|
.icon-media-box.instagram{
|
|
background-image: url('../images/backgrounds/icon/media/media_3.svg');
|
|
}
|
|
.icon-media-box.instagram:hover{
|
|
background-image: url('../images/backgrounds/icon/media/media_3_hover.svg');
|
|
}
|
|
.icon-media-box.youtu{
|
|
background-image: url('../images/backgrounds/icon/media/media_4.svg');
|
|
}
|
|
.icon-media-box.youtu:hover{
|
|
background-image: url('../images/backgrounds/icon/media/media_4_hover.svg');
|
|
}
|
|
.icon-media-box.linkedin{
|
|
background-image: url('../images/backgrounds/icon/media/media_5.svg');
|
|
}
|
|
.icon-media-box.linkedin:hover{
|
|
background-image: url('../images/backgrounds/icon/media/media_5_hover.svg');
|
|
}
|
|
.icon-media-box.discord{
|
|
background-image: url('../images/backgrounds/icon/media/media_6.svg');
|
|
}
|
|
.icon-media-box.discord:hover{
|
|
background-image: url('../images/backgrounds/icon/media/media_6_hover.svg');
|
|
}
|
|
.icon-media-box.telegram{
|
|
background-image: url('../images/backgrounds/icon/media/media_7.svg');
|
|
}
|
|
.icon-media-box.telegram:hover{
|
|
background-image: url('../images/backgrounds/icon/media/media_7_hover.svg');
|
|
}
|
|
|
|
.icon-right.right-arrow {
|
|
display: inline-block;
|
|
width: 1.125rem;
|
|
height: 2.125rem;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
cursor: pointer;
|
|
transition: background-image 0.3s ease;
|
|
background-image: url('../images/backgrounds/right-arrow.png');
|
|
}
|
|
|
|
#section-4 .card:hover {
|
|
background-color: var(--aifo-orange);
|
|
box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 8px 15px 0 rgba(249, 135, 21, 0.7);
|
|
}
|
|
|
|
#section-4 .card:hover .icon-box-1.s-c-1 {
|
|
background-color: var(--aifo-orange);
|
|
background-image: url('../images/backgrounds/w-11.svg');
|
|
}
|
|
|
|
#section-4 .card-container .card-icon {
|
|
margin-bottom: 3.125rem;
|
|
}
|
|
|
|
#section-4 .align-items-stretch {
|
|
margin-top: 6rem;
|
|
}
|
|
|
|
.card-style-1 {
|
|
background-size: cover;
|
|
background-image: url('../images/backgrounds/card-style-1.png');
|
|
padding: 37px 38px;
|
|
width: 20rem;
|
|
height: 26.25rem;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.card-style-1:hover {
|
|
background-image: url('../images/backgrounds/card-style-1-hover.png');
|
|
}
|
|
|
|
.card-arrow {
|
|
width: 4.25rem;
|
|
}
|
|
|
|
/* Promotional panel */
|
|
.promotion {
|
|
height: 10.125rem;
|
|
background-image: url('../images/backgrounds/promotion.png');
|
|
background-size: contain;
|
|
background-size: 100% 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
padding: 0 3.75rem;
|
|
}
|
|
|
|
.promotion .btn-sm {
|
|
font-size: 0.875rem;
|
|
font-weight: 300;
|
|
line-height: 1.2;
|
|
/* padding: .55rem 1.8rem; */
|
|
width: 10.1875rem;
|
|
}
|
|
|
|
:root {
|
|
--avatar-size: 5rem;
|
|
/* 80px */
|
|
--avatar-top-margin: 5.75rem;
|
|
/* 92px */
|
|
--avatar-bottom-margin: 1.5625rem;
|
|
/* 25px */
|
|
}
|
|
|
|
.sub_title {
|
|
position: relative;
|
|
}
|
|
|
|
.avatar-container {
|
|
margin-top: 5.75rem;
|
|
margin-bottom: 1.5625rem;
|
|
}
|
|
|
|
.avatar-img {
|
|
width: 5rem !important;
|
|
height: 5rem !important;
|
|
object-fit: cover;
|
|
border: 0.1875rem solid white;
|
|
/* 3px white border */
|
|
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
|
|
/* 4px 12px shadow */
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.avatar-img:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
#section-8 .sub_title .text-primary {
|
|
padding-left: 0.125rem;
|
|
}
|
|
|
|
#section-8 .cart-list-contain {
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
.icon-box.w-1.v-1 {
|
|
width: 1.16rem;
|
|
height: 1.16rem;
|
|
}
|
|
|
|
/* section-6 common start*/
|
|
#section-6 .card-style-2 .card {
|
|
background: url('../images/backgrounds/card_bg_1.svg') center / 100% 100% no-repeat;
|
|
}
|
|
|
|
#section-6 .card-style-2 .card:hover {
|
|
background-image: none;
|
|
}
|
|
|
|
#section-6 h1{
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
/* section-6 common end */
|
|
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
:root {
|
|
--avatar-size: 3.75rem;
|
|
/* 60px on mobile */
|
|
--avatar-top-margin: 3rem;
|
|
/* 48px on mobile */
|
|
}
|
|
|
|
.avatar-container {
|
|
gap: 1rem !important;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* #section-5 .show-tr:hover{
|
|
|
|
} */
|
|
|
|
/* Desktop: 3 columns */
|
|
@media (min-width: 992px) {
|
|
#section-3 .col-md-4:nth-child(n+4) {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
#section-4 .container .sub_title {
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
#section-5 {
|
|
|
|
background-image: url('../images/backgrounds/Backgroun40.png');
|
|
background-size: contain;
|
|
background-size: 100% 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
|
|
.main-wrapper {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.content-container {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.tab-navigation {
|
|
display: flex;
|
|
gap: 2.8125rem;
|
|
background: #000;
|
|
margin-bottom: 5rem;
|
|
padding: 0;
|
|
padding: 15px 12px;
|
|
border-radius: 50px;
|
|
/* height: 4.625rem; */
|
|
max-width: 48.25rem;
|
|
}
|
|
|
|
.tab-button {
|
|
color: var(--aifo-white);
|
|
border: none;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
border-radius: 50px;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
background: transparent;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
width: 145px;
|
|
}
|
|
|
|
.tab-button:hover {
|
|
/* background: #f98715; */
|
|
/* color: #ffffff; */
|
|
background: #F9F9F9;
|
|
/* transform: translateY(-2px); */
|
|
/* box-shadow: 0 4px 12px rgba(249, 135, 21, 0.3); */
|
|
color: #000;
|
|
}
|
|
|
|
.tab-button.active {
|
|
background: #F9F9F9;
|
|
color: #000;
|
|
}
|
|
|
|
.detail-cell {
|
|
padding: 15px 20px !important;
|
|
font-size: 14px;
|
|
color: #6c757d;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.row-header {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 15px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.row-header:hover {
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.table-container {
|
|
background: #1a1a1a;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
thead {
|
|
background: #1a1a1a;
|
|
color: #ffffff;
|
|
}
|
|
|
|
th {
|
|
padding: 20px 16px;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
color: #ffffff;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
border-right: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
th:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
tbody tr {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
tbody tr:hover {
|
|
background-color: #252525;
|
|
}
|
|
|
|
td {
|
|
padding: 16px;
|
|
font-size: 14px;
|
|
color: #ffffff;
|
|
border-right: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.row-header {
|
|
font-weight: 600;
|
|
color: #ffffff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.expand-arrow {
|
|
width: 20px;
|
|
height: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: transform 0.3s ease;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.expand-arrow.expanded {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.detail-row {
|
|
text-align: left;
|
|
}
|
|
|
|
.show-tr {
|
|
height: 6.6rem;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/* section-6 pc start*/
|
|
#section-6 .card-style-2 .card {
|
|
background: url('../images/backgrounds/card_bg_1.png') center / 100% 100% no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
#section-6 .card-style-2 .card:hover {
|
|
background-image: none;
|
|
}
|
|
|
|
#section-6 {
|
|
h1 {
|
|
text-align: left;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/* section-6 pc end */
|
|
|
|
/* First row challenge section */
|
|
#section-5 {
|
|
tr:first-child {
|
|
height: 120px;
|
|
min-height: 120px;
|
|
background-color: #000;
|
|
width: 20rem;
|
|
padding-left: 1.875rem;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
button:focus {
|
|
outline: unset;
|
|
}
|
|
|
|
tbody tr:nth-child(4n+2) {
|
|
background-color: #000;
|
|
}
|
|
|
|
tbody tr:nth-child(4n+4) {
|
|
background-color: #201409;
|
|
}
|
|
|
|
tbody tr.detail-row {
|
|
background-color: #201409;
|
|
}
|
|
|
|
.show-tr {
|
|
height: 66px;
|
|
}
|
|
|
|
.detail-row {
|
|
/* height: 66px; */
|
|
}
|
|
|
|
td {
|
|
padding: 0;
|
|
font-size: 18px;
|
|
}
|
|
|
|
td span {
|
|
font-size: 20px;
|
|
}
|
|
|
|
td .row-icon {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.show-tr .row-header,
|
|
.detail-row .row-header {
|
|
margin-left: 26px;
|
|
}
|
|
|
|
.others-desc {
|
|
border-top: 1px solid rgba(249, 249, 249, 0.08);
|
|
background-color: #080808;
|
|
|
|
padding: 35px 40px;
|
|
|
|
h3.add-ones {
|
|
font-size: 20px;
|
|
text-align: left;
|
|
color: #989795;
|
|
}
|
|
|
|
.add-ons-item {
|
|
|
|
span:first-child {
|
|
background-color: #1a1a1a;
|
|
font-size: 18px;
|
|
padding: 6px 10px;
|
|
border-radius: 8px;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
span:nth-child(2) {
|
|
font-size: 14px;
|
|
color: rgba(249, 249, 249, 0.75);
|
|
}
|
|
|
|
}
|
|
|
|
.col-md-12 {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1200px) {
|
|
.container {
|
|
max-width: 1200px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#section-5 .detail-row.visible {
|
|
display: table-row;
|
|
}
|
|
|
|
#section-5 .detail-cell {
|
|
padding: 20px 16px;
|
|
color: #b0b0b0;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
#section-5 .challenge-button {
|
|
background: #f98715;
|
|
color: var(--aifo-white);
|
|
border: none;
|
|
padding: 0 18px;
|
|
border-radius: 6px;
|
|
font-size: 13px;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
font-weight: 300;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
box-shadow: 0 2px 8px rgba(249, 135, 21, 0.3);
|
|
}
|
|
|
|
|
|
|
|
#section-5 .challenge-button:hover {
|
|
background: #ff9a2e;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
|
}
|
|
|
|
#section-5 .challenge-button:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
#section-5 .row-icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
/* background: #f98715; */
|
|
border-radius: 4px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
#section-7 .btn {
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
#secction-7 .p-content-1 {
|
|
width: 26rem;
|
|
}
|
|
|
|
|
|
|
|
/* section-8 pc start*/
|
|
#section-8 {
|
|
// background-image: url(../images/backgrounds/lc_bg_14.png);
|
|
// background-size: contain;
|
|
// background-position: center;
|
|
// background-repeat: no-repeat;
|
|
// background-position-y: -50px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.section8-bg {
|
|
position: absolute;
|
|
top: -50px; /* 对应 background-position-y: -50px */
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain; /* 等价 background-size: contain */
|
|
z-index: -1;
|
|
}
|
|
|
|
/* section-8 pc end*/
|
|
|
|
|
|
@media (max-width: 1200px) {
|
|
#section-5 .table-container {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
table {
|
|
min-width: 1000px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#section-5 .main-wrapper {
|
|
padding: 20px 12px;
|
|
}
|
|
|
|
#section-5 .tab-button {
|
|
padding: 14px 12px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 12px 10px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
#section-2 {
|
|
padding-top: 11.5rem !important;
|
|
}
|
|
|
|
/* Custom spacing classes - based on rem units */
|
|
#section-8 .me-4 {
|
|
margin-right: 1rem !important;
|
|
}
|
|
|
|
/* 16px image to icon spacing */
|
|
#section-8 .ms-6 {
|
|
margin-left: 0.375rem !important;
|
|
}
|
|
|
|
/* 6px icon to text spacing */
|
|
#section-8 .ms-2 {
|
|
margin-left: 0.5rem !important;
|
|
}
|
|
|
|
/* 8px customer to time spacing */
|
|
#section-8 .mt-12 {
|
|
margin-top: 0.75rem !important;
|
|
}
|
|
|
|
/* 12px h4 top spacing */
|
|
#section-8 .mt-20 {
|
|
margin-top: 1.25rem !important;
|
|
}
|
|
|
|
/* 20px read more top spacing */
|
|
|
|
/* Card overall styles */
|
|
#section-8 .col-md-4 .custom-rounded {
|
|
border-radius: 1.375rem !important;
|
|
/* 22px border radius */
|
|
padding-left: 2rem !important;
|
|
/* 32px left padding */
|
|
padding-right: 2rem !important;
|
|
/* 32px right padding */
|
|
padding-top: 1.5rem !important;
|
|
/* Suggested top padding */
|
|
padding-bottom: 1.5rem !important;
|
|
/* Suggested bottom padding */
|
|
border: 1px solid #989795;
|
|
}
|
|
|
|
/* Validation info row styles */
|
|
#section-8 .verification-row {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
/* #section-8 .star-icon {
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
object-fit: contain;
|
|
} */
|
|
|
|
.card-style-2 .icon-box.v-1 {
|
|
display: inline-block;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
background-image: url('../images/backgrounds/vlid_1.png');
|
|
}
|
|
|
|
.card-style-2 .card:hover .icon-box.v-1 {
|
|
background-image: url('../images/backgrounds/vlid_2.png');
|
|
}
|
|
|
|
.card-style-2 .card:hover p {
|
|
color: var(--aifo-white) !important;
|
|
}
|
|
|
|
.card-style-2 .card:hover .text-light-gray {
|
|
color: var(--aifo-white) !important;
|
|
}
|
|
|
|
.card-style-2 .card:hover .text-orange {
|
|
color: var(--aifo-white) !important;
|
|
}
|
|
|
|
.btn-contain {
|
|
margin-top: 5rem;
|
|
margin-bottom: 5rem;
|
|
}
|
|
|
|
.foot-logo {
|
|
width: 7.9375rem;
|
|
height: 2rem;
|
|
}
|
|
|
|
/* Add icon content (if specific icon class exists) */
|
|
/* #section-8 .icon-box::before {
|
|
content: "✓";
|
|
color: white;
|
|
font-size: 0.75rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
} */
|
|
|
|
#section-8 .verified-text {
|
|
font-size: 0.875rem;
|
|
/* 14px */
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
/* Customer info styles */
|
|
#section-8 .customer-info {
|
|
font-size: 1rem;
|
|
/* 16px */
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
/* 8px */
|
|
}
|
|
|
|
.text-light-gray {
|
|
color: #adb5bd !important;
|
|
/* Light gray */
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* Title styles */
|
|
#section-8 h4.text-primary {
|
|
font-size: 1.25rem;
|
|
/* 20px */
|
|
font-weight: 700;
|
|
margin-bottom: 0.75rem;
|
|
/* 12px */
|
|
}
|
|
|
|
/* Paragraph styles */
|
|
#section-8 p {
|
|
font-size: 0.9375rem;
|
|
/* 15px */
|
|
line-height: 1.6;
|
|
color: #495057;
|
|
margin-bottom: 0.75rem;
|
|
/* 12px */
|
|
}
|
|
|
|
/* Read more link */
|
|
#section-8 .read-more-link {
|
|
display: inline-block;
|
|
font-size: 0.75rem !important;
|
|
/* 12px */
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
#section-8 .read-more-link:hover {
|
|
text-decoration: underline;
|
|
transform: translateX(0.25rem);
|
|
}
|
|
#section-8 .card-style-2 .card:hover {
|
|
border: 1px solid #ffc265;
|
|
}
|
|
|
|
|
|
/* Carousel Start */
|
|
|
|
/* ===== Carousel Wrap ===== */
|
|
.carousel-container {
|
|
position: relative;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
padding: 1.875rem 0;
|
|
}
|
|
|
|
.carousel-track {
|
|
display: flex;
|
|
gap: 20px;
|
|
will-change: transform;
|
|
}
|
|
|
|
/* ===== Single Card ===== */
|
|
.carousel-card {
|
|
position: relative;
|
|
height: 420px;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
background: #000;
|
|
transition: box-shadow .25s ease;
|
|
}
|
|
|
|
.carousel-card:hover {
|
|
box-shadow: inset 0 5px 10px rgba(249, 135, 21, 0.6),
|
|
0 8px 15px rgba(249, 135, 21, 0.7);
|
|
}
|
|
|
|
/* background image */
|
|
.card-bg {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
filter: grayscale(100%);
|
|
}
|
|
|
|
/* overlay gradient */
|
|
.card-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
/* background: linear-gradient(
|
|
to bottom,
|
|
rgba(0,0,0,0) 0%,
|
|
rgba(0,0,0,0.5) 100%
|
|
); */
|
|
transition: opacity .25s ease;
|
|
}
|
|
|
|
.carousel-card:hover .card-overlay {
|
|
mix-blend-mode: multiply;
|
|
background: #FF9C3A;
|
|
}
|
|
|
|
/* bottom text region */
|
|
.card-bottom {
|
|
position: absolute;
|
|
bottom: 24px;
|
|
left: 24px;
|
|
right: 24px;
|
|
color: #fff;
|
|
display: none;
|
|
}
|
|
|
|
.carousel-card:hover .card-bottom {
|
|
display: block;
|
|
}
|
|
|
|
.card-bottom .title {
|
|
font-size: 22px;
|
|
font-weight: 800;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.card-bottom .desc {
|
|
font-size: 14px;
|
|
font-weight: 300;
|
|
opacity: .9;
|
|
max-width: 200px;
|
|
}
|
|
|
|
/* flag icon */
|
|
.flag-icon {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 50%;
|
|
border: 3px solid #fff;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* ===== Progressive Blur at left/right edges ===== */
|
|
.carousel-container:before,
|
|
.carousel-container:after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
width: 20rem;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: 5;
|
|
}
|
|
|
|
.carousel-container:before {
|
|
left: 0;
|
|
/* background: linear-gradient(to right, rgba(17,17,17,1), rgba(17,17,17,0)); */
|
|
/* Simplified syntax - hard transition */
|
|
background: linear-gradient(to left, transparent 0%, #000 50%);
|
|
}
|
|
|
|
.carousel-container:after {
|
|
right: 0;
|
|
/* background: linear-gradient(to left, rgba(17,17,17,1), rgba(17,17,17,0)); */
|
|
background: linear-gradient(to right, transparent 0%, #000 50%);
|
|
}
|
|
|
|
/* ================= Indicators ================= */
|
|
.carousel-indicators {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 25px;
|
|
gap: 14px;
|
|
}
|
|
|
|
.indicator {
|
|
width: 48px;
|
|
height: 6px;
|
|
border-radius: 3px;
|
|
background: #333;
|
|
transition: background .25s ease;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.indicator:hover {
|
|
background: #F98715;
|
|
}
|
|
|
|
.indicator.active {
|
|
background: #F98715;
|
|
}
|
|
|
|
/* section-10 common start */
|
|
#section-10 {
|
|
// min-height: 1030px;
|
|
position: relative;
|
|
|
|
.bg-orange-light {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: -1;
|
|
background-image: url(../images/backgrounds/lc-bg-10-grid.webp);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
// .bg-orange-light::before{
|
|
// content: '';
|
|
// position: absolute;
|
|
// top: 0;
|
|
// left: 0;
|
|
// right: 0;
|
|
// width: 100%;
|
|
// height: 100%;
|
|
// pointer-events: none;
|
|
// z-index: -1;
|
|
// background-image: url(../images/backgrounds/lc_bg_10.webp);
|
|
// background-size: contain;
|
|
// background-position: center;
|
|
// background-repeat: no-repeat;
|
|
// background-size: 100% 100%;
|
|
// }
|
|
|
|
.bg_light {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bg_light::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
width: 800px;
|
|
height: 800px;
|
|
|
|
background-image: url(../images/backgrounds/lc_bg_12.png);
|
|
background-repeat: no-repeat;
|
|
background-size: contain; /* 不拉伸 */
|
|
background-position: center;
|
|
|
|
transform: translate(-50%, -50%);
|
|
pointer-events: none; /* 不影响点击 */
|
|
z-index: 0;
|
|
}
|
|
|
|
.bg_light .container {
|
|
// padding-top: 17.5rem;
|
|
// padding-bottom: 17.5rem;
|
|
padding-top: 10.5rem;
|
|
padding-bottom: 10.5rem;
|
|
}
|
|
|
|
.h1 {
|
|
position: relative;
|
|
}
|
|
|
|
.zfj-img {
|
|
position: absolute;
|
|
left: 7%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 7.8125rem;
|
|
height: 7.8125rem;
|
|
}
|
|
|
|
.tx-img {
|
|
position: absolute;
|
|
right: 7%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 16.68rem;
|
|
/* 125px */
|
|
height: 16.68rem;
|
|
/* 125px */
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
/* section-10 */
|
|
#section-10 {
|
|
min-height: 520px;
|
|
|
|
.tx-img {
|
|
position: absolute;
|
|
right: -5%;
|
|
top: -2%;
|
|
transform: translateY(-50%);
|
|
width: 8rem;
|
|
height: 7.5rem;
|
|
}
|
|
|
|
.zfj-img {
|
|
position: absolute;
|
|
left: 0%;
|
|
top: -57%;
|
|
transform: translateY(-50%);
|
|
width: 4.8125rem;
|
|
height: 4.8125rem;
|
|
}
|
|
|
|
.hero-buttons,
|
|
#section-11 .hero-buttons {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.bg_light .container {
|
|
padding-top: 3.5rem;
|
|
padding-bottom: 3.5rem;
|
|
}
|
|
}
|
|
|
|
/* section-10 end*/
|
|
}
|
|
|
|
/* footer */
|
|
.subscription-form .input-group input {
|
|
border: none;
|
|
}
|
|
|
|
.subscribe-input {
|
|
border: none !important;
|
|
}
|
|
|
|
.subscribe-btn {
|
|
background-color: var(--aifo-orange);
|
|
border: none;
|
|
color: white;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
height: 2.8125rem;
|
|
width: 10.1875rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* Button hover effect */
|
|
.subscribe-btn:hover {
|
|
background-color: var(--aifo-orange-hover) !important;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.3);
|
|
}
|
|
|
|
.subscribe-btn:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.subscribe-btn:focus {
|
|
outline: 2px solid rgba(249, 135, 21, 0.5);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Outer frame */
|
|
.subscribe-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
background: rgba(15, 15, 15, 0.8);
|
|
border-radius: 12px;
|
|
padding: 4px;
|
|
border: 1px solid rgba(15, 15, 15, 0.8);
|
|
max-width: 550px;
|
|
/* Control max width (can be changed) */
|
|
width: 100%;
|
|
/* Enable responsive */
|
|
margin: auto;
|
|
/* Center */
|
|
}
|
|
|
|
/* Input field */
|
|
.subscribe-input {
|
|
flex: 1;
|
|
background: transparent;
|
|
border: none;
|
|
padding: 14px 16px;
|
|
color: white;
|
|
font-size: 16px;
|
|
min-width: 0;
|
|
/* Prevent flex input field from breaking layout */
|
|
background: transparent;
|
|
border: none !important;
|
|
color: white;
|
|
}
|
|
|
|
.subscribe-input::placeholder {
|
|
color: #b8a898;
|
|
}
|
|
|
|
.subscribe-input:focus {
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
border-color: transparent !important;
|
|
}
|
|
|
|
/* Button */
|
|
.subscribe-btn {
|
|
background: #ff9500;
|
|
border: none;
|
|
padding: 0 26px;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
color: white;
|
|
white-space: nowrap;
|
|
/* Prevent text wrapping */
|
|
flex-shrink: 0;
|
|
/* Ensure button won't be squeezed or deformed */
|
|
cursor: pointer;
|
|
transition: 0.25s;
|
|
}
|
|
|
|
.subscribe-btn:hover {
|
|
background: #ffad33;
|
|
}
|
|
|
|
.subscribe-btn:focus,
|
|
.subscribe-btn:active,
|
|
.subscribe-btn:focus:active {
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
border-color: transparent !important;
|
|
}
|
|
|
|
.mb-show {
|
|
display: none;
|
|
}
|
|
|
|
.mb-hidden {
|
|
display: block;
|
|
}
|
|
|
|
.glass-panel {
|
|
background: rgba(0, 0, 0, 0.25);
|
|
backdrop-filter: blur(12px);
|
|
-webkit-backdrop-filter: blur(12px);
|
|
}
|
|
|
|
/* home page */
|
|
#block-1 {
|
|
height: 90.9375rem;
|
|
background-image: url('../images/backgrounds/20251203-153844.png');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
|
|
.hero-buttons {
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
#section-2 {
|
|
padding-top: 0r !important;
|
|
position: absolute;
|
|
bottom: 100px;
|
|
width: 100%;
|
|
padding: top;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#section-5 table tbody tr:first {
|
|
background: #000;
|
|
}
|
|
|
|
/* ------------ Responsive section -------------- */
|
|
|
|
/* Reduce button space below 480px */
|
|
@media (max-width: 480px) {
|
|
.subscribe-btn {
|
|
padding: 10px 20px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.subscribe-input {
|
|
font-size: 15px;
|
|
padding: 12px 14px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.footer .subscript-block {
|
|
flex: 0 0 100%;
|
|
max-width: 50%;
|
|
}
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 992px) {
|
|
.subscribe-btn {
|
|
width: 170px;
|
|
}
|
|
|
|
.input-group {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.input-group-append {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* Small screen optimization */
|
|
@media (max-width: 576px) {
|
|
.trustpilot-section .d-flex {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 0.5rem !important;
|
|
}
|
|
|
|
.subscribe-wrapper {
|
|
padding: 4px;
|
|
border: 1px solid #757575;
|
|
border-radius: 0.5rem;
|
|
}
|
|
}
|
|
|
|
/* footer end */
|
|
|
|
@media (min-width: 1200px) {
|
|
#section-9 .container {
|
|
max-width: 1300px
|
|
}
|
|
}
|
|
|
|
/* ================= Responsive Width ================= */
|
|
@media (min-width: 1400px) {
|
|
.carousel-card {
|
|
width: 320px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1399px) and (min-width: 1200px) {
|
|
.carousel-card {
|
|
width: 300px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1199px) and (min-width: 992px) {
|
|
.carousel-card {
|
|
width: 280px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) and (min-width: 768px) {
|
|
.carousel-card {
|
|
width: 260px;
|
|
}
|
|
}
|
|
|
|
/* Landscape mode */
|
|
@media (orientation: landscape) and (min-width: 768px) and (max-width: 1366px) {
|
|
/* iPad landscape styles */
|
|
}
|
|
|
|
/* Portrait mode */
|
|
@media (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
|
|
/* iPad portrait styles */
|
|
|
|
.change_btn_style_navbar {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.change_btn_style_navbar a:first-child {
|
|
width: 160px;
|
|
}
|
|
|
|
.login_btn_navbar a:first-child {
|
|
width: 160px;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
}
|
|
|
|
/* #section-8 .card-style-2 .card {
|
|
background-color: #0E0E0E;
|
|
} */
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.carousel-card {
|
|
width: 85vw;
|
|
}
|
|
|
|
#nav {
|
|
/* line-height: 72px; */
|
|
height: 72px;
|
|
}
|
|
|
|
#nav button.navbar-toggler {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.top-code-bar {
|
|
display: none;
|
|
}
|
|
|
|
/* menu */
|
|
.navbar-brand {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.offcanvas-collapse {
|
|
/* overflow-y: revert-layer; */
|
|
overflow-x: hidden;
|
|
/* flex-shrink: 0; */
|
|
height: 150vh;
|
|
}
|
|
|
|
.glass-panel {
|
|
backdrop-filter: unset;
|
|
-webkit-backdrop-filter: unset;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
overflow-x: hidden;
|
|
/* Hide horizontal scrollbar */
|
|
width: 100%;
|
|
/* Ensure width doesn't exceed */
|
|
max-width: 100vw;
|
|
/* Max width equals viewport */
|
|
position: relative;
|
|
/* Prevent positioning issues */
|
|
}
|
|
|
|
.fixed-header.navbar {
|
|
// position: relative;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: .5rem 1rem;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
z-index: 1060;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.offcanvas-collapse .navbar-nav .nav-item.change_btn_style_navbar {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.offcanvas-collapse .navbar-nav .nav-item.change_btn_style_navbar a:first-child {
|
|
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.offcanvas-collapse .navbar-nav .nav-item.login_btn_navbar a:first-child {
|
|
|
|
display: block;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* menu end */
|
|
|
|
/* Banner start */
|
|
.main {
|
|
margin-top: 72px;
|
|
}
|
|
|
|
#block-1 {
|
|
height: 62.9375rem;
|
|
}
|
|
|
|
|
|
.line1 {
|
|
position: relative;
|
|
}
|
|
|
|
.hero-img {
|
|
grid-area: img;
|
|
width: 2.375rem;
|
|
height: 2.375rem;
|
|
position: absolute;
|
|
top: 20px;
|
|
left: -52px;
|
|
}
|
|
|
|
.funded-trading-hero .hero-title {
|
|
text-align: center;
|
|
margin-left: 15%;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.hero-title {
|
|
display: inline-block;
|
|
/* h1 becomes inline-block */
|
|
/* Or display: inline; */
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.banner-contain {
|
|
position: relative;
|
|
}
|
|
|
|
.funded-trading-hero .d-flex .img-fluid-l {
|
|
width: 4.25rem;
|
|
height: 4.25rem;
|
|
position: absolute;
|
|
top: -68px;
|
|
left: 15px;
|
|
}
|
|
|
|
.funded-trading-hero .d-flex .img-fluid-r {
|
|
width: 3.25rem;
|
|
height: 3.25rem;
|
|
position: absolute;
|
|
top: -130px;
|
|
right: 15px;
|
|
}
|
|
|
|
.funded-trading-hero .text-center .banner-desc {
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.center-buttons {
|
|
margin-top: 125px;
|
|
position: relative;
|
|
}
|
|
|
|
.btn-start-challenge,
|
|
.btn-free-trial {
|
|
width: 225px;
|
|
position: unset;
|
|
left: unset;
|
|
transform: unset;
|
|
/* position: absolute; */
|
|
/* left: 50%; */
|
|
/* transform: translateX(-50%); */
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-buttons a:nth-child(2) {
|
|
top: 45px;
|
|
}
|
|
|
|
#section-11 .hero-buttons a:nth-child(2) {
|
|
top: 66px;
|
|
}
|
|
|
|
/* Banner end */
|
|
|
|
/* section-2 start*/
|
|
#section-2 {
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
position: static !important;
|
|
margin-top: 4rem;
|
|
padding-top:0 !important;
|
|
}
|
|
|
|
#section-2 .display-6 {
|
|
font-size: 30px !important;
|
|
line-height: 30px;
|
|
}
|
|
|
|
#section-2 p {
|
|
font-size: 15px;
|
|
}
|
|
|
|
/* section-2 end */
|
|
|
|
|
|
|
|
/* home page */
|
|
#homepage {
|
|
#block-1 {
|
|
height: unset;
|
|
|
|
.hero-buttons {
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
#section-3 .slice-lg {
|
|
padding-top: 1.5rem;
|
|
padding-bottom: 3.5rem;
|
|
}
|
|
}
|
|
|
|
#section-10 {
|
|
|
|
.btn-start-challenge,
|
|
.btn-free-trial {
|
|
width: 225px;
|
|
position: unset;
|
|
left: unset;
|
|
transform: unset;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
h1,
|
|
.h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.lead {
|
|
font-size: 0.875rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.lead br {
|
|
display: none;
|
|
}
|
|
|
|
.mb-md,
|
|
.my-md {
|
|
margin-bottom: 2.125rem !important;
|
|
}
|
|
|
|
|
|
.slice-lg {
|
|
padding-top: 3.5rem;
|
|
padding-bottom: 3.5rem;
|
|
}
|
|
|
|
/* section-11 start */
|
|
#section-11 .heading img {
|
|
display: none;
|
|
}
|
|
|
|
.social-nav {
|
|
justify-content: space-between !important;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.mobile-no-flex {
|
|
display: block !important;
|
|
}
|
|
|
|
/* section-4 */
|
|
.why-img {
|
|
width: 37px;
|
|
height: 37px;
|
|
transform: translateY(-7px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
|
}
|
|
|
|
#section-4 .h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
#section-4 .sub_title {
|
|
display: none;
|
|
}
|
|
|
|
.card-container.card-style-1 {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* section-6 */
|
|
#section-6 h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
#section-6 .section-desc {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
#section-6 .header_img_block {
|
|
display: none;
|
|
}
|
|
|
|
#section-6 .card-style-2 .card {
|
|
background: url(../images/backgrounds/card_bg_1.png) center / 100% 100% no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
|
|
|
|
/* section-7 */
|
|
#section-7 {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
|
|
.heading-1 {
|
|
width: 237px;
|
|
margin: 0 auto;
|
|
margin-top: 20px;
|
|
}
|
|
.p-content-1 {
|
|
width: 237px;
|
|
margin: 0 auto;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
.promotion {
|
|
height: 490px;
|
|
background-image: url(../images/backgrounds/bg-7.png);
|
|
background-size: contain;
|
|
background-size: 100% 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.heading-1 {
|
|
font-size: 35px;
|
|
line-height: 50px;
|
|
|
|
}
|
|
|
|
.p-content-1 {
|
|
font-size: 20px;
|
|
line-height: 25px;
|
|
}
|
|
|
|
#section-7 .heading-2 {
|
|
text-align: center;
|
|
width: 237px !important;
|
|
margin:0 auto;
|
|
}
|
|
#section-7 .heading-2 .mb-show {
|
|
margin-left: 8px;
|
|
// display: math;
|
|
display: inline;
|
|
font-weight: 300;
|
|
text-align: center;
|
|
font-size:20px;
|
|
}
|
|
|
|
#section-7 .content-right {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
|
|
/* section-8 start*/
|
|
#section-8 {
|
|
background-image: url(../images/backgrounds/mb_bg_1.png);
|
|
background-size: contain;
|
|
background-size: 100% 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.section8-bg {
|
|
display:none;
|
|
}
|
|
|
|
#section-8 .heading {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#section-8 .trustpilot {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.mobile-center-left {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: left !important;
|
|
float: none !important;
|
|
display: block !important;
|
|
width: 334px;
|
|
}
|
|
|
|
#section-8 .sub_title {
|
|
display: none;
|
|
}
|
|
|
|
#section-8 .cart-list-contain {
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
margin-top: 38px;
|
|
}
|
|
|
|
#section-8 h4.text-primary {
|
|
font-size: 14px;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
#section-8 .cart-list-contain .col-md-4 {
|
|
margin-bottom: 16px;
|
|
padding: 0;
|
|
}
|
|
|
|
#section-8 .customer-info {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
/* margin-bottom: 0.5rem; */
|
|
margin-bottom: 10px;
|
|
margin-top: 0 !important;
|
|
}
|
|
|
|
#section-8 h4.text-primary {
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
margin-top: 0 !important;
|
|
}
|
|
|
|
.btn-contain {
|
|
margin-top: 2.5rem;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
/* section-8 end */
|
|
|
|
/* footer start */
|
|
.footer .nav {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.footer .nav.social .nav-item {
|
|
width: 27px;
|
|
height: 27px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.footer .nav .nav-item .nav-link {
|
|
padding: 0;
|
|
}
|
|
|
|
.footer .container .d-flex {
|
|
padding-bottom: 1.5rem;
|
|
}
|
|
|
|
.footer .pt-5,
|
|
.footer .py-5 {
|
|
padding-top: 1.5rem !important;
|
|
}
|
|
|
|
.footer .heading {
|
|
font-size: 0.755rem;
|
|
}
|
|
|
|
.footer .contect p {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.footer .footer_nav {
|
|
display: none;
|
|
}
|
|
|
|
.subscription-form input.form-control {
|
|
width: 100%;
|
|
height: 2.8125rem;
|
|
}
|
|
|
|
.footer .input-group>.form-control:not(:last-child),
|
|
.footer .input-group>.custom-select:not(:last-child) {
|
|
border-top-right-radius: .375rem;
|
|
border-bottom-right-radius: .375rem;
|
|
}
|
|
|
|
.footer .subscribe-btn {
|
|
border-radius: 0.5rem;
|
|
/* height: 36px;
|
|
line-height: 36px; */
|
|
font-size: 15px;
|
|
height: auto;
|
|
padding: 10px 26px;
|
|
}
|
|
|
|
.mb-6 {
|
|
margin-bottom: 1.25rem !important;
|
|
}
|
|
|
|
.mb-hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.mb-show {
|
|
display: block;
|
|
}
|
|
|
|
/* .footer-doc .mb-show li{
|
|
margin-right:10px;
|
|
} */
|
|
.footer .mb-3,
|
|
.footer .my-3 {
|
|
margin-bottom: 21px !important;
|
|
}
|
|
|
|
.footer .footer-doc.mb-show .nav {
|
|
margin-top: 21px;
|
|
}
|
|
|
|
.footer .disclaimer-section.mb-show {
|
|
margin-top: 7px;
|
|
}
|
|
|
|
.footer .paymout .nav-item img {
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.footer .paymout .nav {
|
|
justify-content: start !important;
|
|
}
|
|
|
|
|
|
/* footer end */
|
|
|
|
.offcanvas-collapse {}
|
|
|
|
.offcanvas-collapse.open {
|
|
/* transform: translateX(0);
|
|
opacity: 1;
|
|
visibility: visible; */
|
|
}
|
|
|
|
}
|
|
|
|
/* Carousel end */
|
|
|
|
/* Carousel 20251210 */
|
|
.carousel-container {
|
|
display: none !important;
|
|
}
|
|
|
|
.carousel-container:before {
|
|
left: 0;
|
|
/* background: linear-gradient(to right, rgba(17, 17, 17, 1), rgba(17, 17, 17, 0)); */
|
|
background: transparent;
|
|
}
|
|
|
|
.carousel-viewport::after {
|
|
right: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.carousel-card::after {
|
|
display: none;
|
|
}
|
|
|
|
#section-9 .row {
|
|
position: relative;
|
|
}
|
|
|
|
/* 20251210 end*/
|
|
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
#section-8 .col-md-4 .custom-rounded {
|
|
padding-left: 1.5rem !important;
|
|
/* 24px */
|
|
padding-right: 1.5rem !important;
|
|
/* 24px */
|
|
border-radius: 1rem !important;
|
|
/* 16px */
|
|
}
|
|
|
|
#section-8 .me-4 {
|
|
margin-right: 0.75rem !important;
|
|
}
|
|
|
|
/* 12px */
|
|
#section-8 .ms-6 {
|
|
margin-left: 0.25rem !important;
|
|
}
|
|
|
|
/* 4px */
|
|
|
|
.card-bottom {
|
|
display: none !important;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Large laptop (1200px - 1399px) */
|
|
@media (min-width: 1200px) and (max-width: 1550px) {
|
|
#section-2 {
|
|
padding-top: 20rem !important;
|
|
}
|
|
}
|
|
|
|
/* Laptop styles (992px - 1199.98px) */
|
|
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
#section-2 {
|
|
padding-top: 20rem !important;
|
|
}
|
|
|
|
}
|
|
|
|
/* Payout Process Section */
|
|
#payout-section.payout-section {
|
|
position: relative;
|
|
/* background-image:
|
|
linear-gradient(to right, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
radial-gradient(circle at 0% 50%, rgba(249, 135, 21, 0.18), transparent 45%),
|
|
radial-gradient(circle at 100% 50%, rgba(249, 135, 21, 0.18), transparent 45%);
|
|
background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
|
|
background-color: #070707; */
|
|
|
|
background-image: url(../images/backgrounds/bg_step.png);
|
|
position: relative;
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
padding-top: 150px !important;
|
|
padding-bottom: 150px !important;
|
|
/* bg_step.png */
|
|
|
|
|
|
.timeline-line {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 83px;
|
|
bottom: 83px;
|
|
width: 10px;
|
|
background-color: #231F20;
|
|
-webkit-transform: translateX(-50%);
|
|
transform: translateX(-50%);
|
|
}
|
|
.title-icon-box{
|
|
width: 60px;
|
|
height: 60px;
|
|
-webkit-transform: translateY(-16px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
|
transform: translateY(-16px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
|
margin: 0 0.8rem;
|
|
|
|
img{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.timeline-line-mobile {
|
|
position: absolute;
|
|
left: 36px;
|
|
top: 40px;
|
|
bottom: 40px;
|
|
width: 2px;
|
|
background-color: rgba(249, 249, 249, 0.20);
|
|
}
|
|
|
|
.timeline-item {
|
|
position: relative;
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
.timeline-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.step-card {
|
|
background-color: var(--bg-card);
|
|
border: 1px solid rgba(249, 249, 249, 0.08);
|
|
border-radius: 16px;
|
|
padding: 24px;
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
|
transition: all 0.3s ease;
|
|
max-width: 360px;
|
|
}
|
|
|
|
.step-card:hover {
|
|
transform: translateY(-3px);
|
|
border-color: rgba(249, 249, 249, 0.12);
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
|
}
|
|
|
|
.step-label {
|
|
color: var(--aifo-orange);
|
|
margin-bottom: 8px;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.node-dot {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background-color: var(--aifo-orange);
|
|
// animation: pulse 2s infinite;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.title-contaion{
|
|
margin-bottom: 130px;
|
|
}
|
|
.btn-contain{
|
|
margin-top: 130px;
|
|
}
|
|
|
|
.mb-0{
|
|
font-size: 14px;
|
|
color: var(--white);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.node-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 50%;
|
|
background-color: #3a2413;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.node-icon.to_right {
|
|
right: -20px;
|
|
top: -15px;
|
|
}
|
|
|
|
.node-icon.to_left {
|
|
left: -20px;
|
|
top: -14px;
|
|
}
|
|
|
|
|
|
.node-icon img {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.col-lg-5 {
|
|
width: 91%;
|
|
margin-left: 66px;
|
|
}
|
|
|
|
.node-dot {
|
|
position: absolute;
|
|
left: -24px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#payout-section.payout-section {
|
|
padding-top: 80px !important;
|
|
padding-bottom: 80px !important;
|
|
|
|
.title-contaion{
|
|
margin-bottom: 70px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#payout {
|
|
|
|
/* Sliding block */
|
|
|
|
.slider-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 40px;
|
|
/* margin: 40px 0 20px 0; */
|
|
}
|
|
|
|
/* bg_get_card.png */
|
|
|
|
.slider-track {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: #F9F9F9;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.account_size_section {
|
|
.account_seize_item:first-child {
|
|
|
|
|
|
.slider-container {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
.account_seize_item:nth-child(2) {
|
|
margin-top: 36px;
|
|
|
|
.slider-container {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 20px;
|
|
text-align: left;
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
.account_seize_item:nth-child(3) {
|
|
margin-top: 60px;
|
|
|
|
.section-title {
|
|
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
font-size: 18px;
|
|
color: var(--aifo-light-gray1);
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.slider-track-fill {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
height: 2px;
|
|
background: #F98715;
|
|
transform: translateY(-50%);
|
|
transition: width 0.1s;
|
|
}
|
|
|
|
.slider-thumb {
|
|
position: absolute;
|
|
top: 50%;
|
|
padding: 12px 24px;
|
|
background: #F98715;
|
|
border-radius: 8px;
|
|
transform: translate(-50%, -50%);
|
|
cursor: grab;
|
|
transition: transform 0.1s;
|
|
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.slider-thumb:active {
|
|
cursor: grabbing;
|
|
transform: translate(-50%, -50%) scale(1.05);
|
|
}
|
|
|
|
.slider-labels {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
/* margin-bottom: 10px;
|
|
padding: 0 10px; */
|
|
}
|
|
|
|
.slider-label {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
/* .section-title {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #F9F9F9;
|
|
text-align: left;
|
|
margin-bottom: 15px;
|
|
} */
|
|
|
|
.result-button {
|
|
width: 100%;
|
|
padding: 12px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
background: #F98715;
|
|
border: none;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
box-shadow: 0 6px 20px rgba(249, 135, 21, 0.4);
|
|
}
|
|
|
|
.result-button:hover {
|
|
background: #e07812;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(249, 135, 21, 0.5);
|
|
}
|
|
|
|
.result-button:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
@view-transition {
|
|
navigation: auto;
|
|
}
|
|
|
|
/* Sliding block end */
|
|
|
|
}
|
|
|
|
#get-funded {
|
|
|
|
background-image: url(../images/backgrounds/bg_get_fun.png);
|
|
position: relative;
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
|
|
.account_size {
|
|
// width: 640px;
|
|
// height: 640px;
|
|
}
|
|
.btn-contain {
|
|
margin-top: 5rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.section-desc {
|
|
width: 57%;
|
|
}
|
|
|
|
.account_size_section {
|
|
|
|
background-image: url(../images/backgrounds/bg_get_card.png);
|
|
position: relative;
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
/* background: linear-gradient(to bottom, #000000, #F98715); */
|
|
|
|
padding: 76px 60px;
|
|
border-radius: 16px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 20px;
|
|
text-align: left;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.slider-label {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.slider-thumb {
|
|
left: 0%;
|
|
height: 35px;
|
|
line-height: 35px;
|
|
padding: 0 14px;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.account_size {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.account_size_section {
|
|
padding: 35px 24px;
|
|
}
|
|
|
|
.section-desc {
|
|
width: 100%;
|
|
}
|
|
|
|
.btn-contain {
|
|
text-align: center;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Process Section */
|
|
#payout.payout-section {
|
|
position: relative;
|
|
background-image:
|
|
linear-gradient(to right, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
radial-gradient(circle at 0% 50%, rgba(249, 135, 21, 0.18), transparent 45%),
|
|
radial-gradient(circle at 100% 50%, rgba(249, 135, 21, 0.18), transparent 45%);
|
|
background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
|
|
background-color: #070707;
|
|
|
|
|
|
.timeline-line {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 83px;
|
|
bottom: 83px;
|
|
width: 10px;
|
|
background-color: #231F20;
|
|
-webkit-transform: translateX(-50%);
|
|
transform: translateX(-46%);
|
|
}
|
|
|
|
.timeline-line-mobile {
|
|
position: absolute;
|
|
left: 36px;
|
|
top: 40px;
|
|
bottom: 40px;
|
|
width: 2px;
|
|
background-color: rgba(249, 249, 249, 0.20);
|
|
}
|
|
|
|
.timeline-item {
|
|
position: relative;
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
.timeline-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.step-card {
|
|
background-color: var(--bg-card);
|
|
border: 1px solid rgba(249, 249, 249, 0.08);
|
|
border-radius: 16px;
|
|
padding: 24px;
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
|
transition: all 0.3s ease;
|
|
max-width: 360px;
|
|
}
|
|
|
|
.step-card:hover {
|
|
transform: translateY(-3px);
|
|
border-color: rgba(249, 249, 249, 0.12);
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
|
}
|
|
|
|
.step-label {
|
|
color: var(--aifo-orange);
|
|
margin-bottom: 8px;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.node-dot {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background-color: var(--aifo-orange);
|
|
// animation: pulse 2s infinite;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: left !important;
|
|
}
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.node-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 50%;
|
|
background-color: #3a2413;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.node-icon.to_right {
|
|
right: -20px;
|
|
top: -15px;
|
|
}
|
|
|
|
.node-icon.to_left {
|
|
left: -20px;
|
|
}
|
|
|
|
|
|
.node-icon img {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.col-lg-5 {
|
|
width: 91%;
|
|
margin-left: 66px;
|
|
}
|
|
|
|
.node-dot {
|
|
position: absolute;
|
|
left: -24px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
|
|
|
|
/* Sliding block */
|
|
.slider-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 60px;
|
|
margin: 40px 0 20px 0;
|
|
}
|
|
|
|
.slider-track {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: #F9F9F9;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.slider-track-fill {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
height: 2px;
|
|
background: #F98715;
|
|
transform: translateY(-50%);
|
|
transition: width 0.1s;
|
|
}
|
|
|
|
.slider-thumb {
|
|
position: absolute;
|
|
top: 50%;
|
|
padding: 12px 24px;
|
|
background: #F98715;
|
|
border-radius: 8px;
|
|
transform: translate(-50%, -50%);
|
|
cursor: grab;
|
|
transition: transform 0.1s;
|
|
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.slider-thumb:active {
|
|
cursor: grabbing;
|
|
transform: translate(-50%, -50%) scale(1.05);
|
|
}
|
|
|
|
.slider-labels {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 10px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.slider-label {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #F9F9F9;
|
|
text-align: left;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.result-button {
|
|
width: 100%;
|
|
padding: 12px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
background: #F98715;
|
|
border: none;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
box-shadow: 0 6px 20px rgba(249, 135, 21, 0.4);
|
|
}
|
|
|
|
.result-button:hover {
|
|
background: #e07812;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(249, 135, 21, 0.5);
|
|
}
|
|
|
|
.result-button:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
@view-transition {
|
|
navigation: auto;
|
|
}
|
|
|
|
/* Sliding block end */
|
|
|
|
}
|
|
|
|
|
|
/* FAQ Section */
|
|
|
|
|
|
|
|
.faq-section {
|
|
position: relative;
|
|
z-index: 1;
|
|
// position: relative;
|
|
// background-image: url(../images/backgrounds/bg_faq_section.webp);
|
|
// position: relative;
|
|
// background-size: contain;
|
|
// background-position: center;
|
|
// background-repeat: no-repeat;
|
|
// background-size: 100% 100%;
|
|
|
|
.bg-orange-light {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: -1;
|
|
background-image: url(../images/backgrounds/lc-bg-10-grid.webp);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.faq-item {
|
|
background: linear-gradient(90deg, #0d0d0d 0%, #121212 100%);
|
|
border: 1px solid rgba(249, 249, 249, 0.08);
|
|
border-radius: 14px;
|
|
overflow: hidden;
|
|
margin-bottom: 16px;
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.faq-item:hover {
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.faq-header {
|
|
width: 100%;
|
|
background: transparent;
|
|
border: none;
|
|
padding: 18px 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.faq-header:hover {
|
|
background-color: rgba(249, 249, 249, 0.02);
|
|
}
|
|
|
|
.faq-question {
|
|
font-weight: 600;
|
|
font-size: 22px;
|
|
color: rgba(249, 249, 249, 0.9);
|
|
text-align: left;
|
|
flex: 1;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.faq-icon-box {
|
|
width: 28px;
|
|
height: 28px;
|
|
background-color: var(--aifo-orange);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
transition: transform 0.25s ease;
|
|
}
|
|
|
|
.faq-icon {
|
|
color: white;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
line-height: 1;
|
|
}
|
|
|
|
.icon.icon-arrow {
|
|
width: auto;
|
|
height: auto;
|
|
color: var(--aifo-white);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.faq-item.active .faq-icon-box {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.faq-item.active .faq-icon-box.rotate90 {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.faq-body {
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
transition: max-height 0.25s ease, opacity 0.25s ease;
|
|
opacity: 0;
|
|
}
|
|
|
|
.faq-item.active .faq-body {
|
|
max-height: 500px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.faq-answer {
|
|
padding: 0 24px 24px 24px;
|
|
border-top: 1px solid rgba(249, 249, 249, 0.06);
|
|
/* margin-top: 12px; */
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.custom-pagination {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.faq-answer p {
|
|
color: var(--white);
|
|
font-size: 20px;
|
|
line-height: 1.6;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.see-more-link {
|
|
color: var(--orange-primary);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.see-more-link:hover {
|
|
color: var(--orange-hover);
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.faq-section::before{
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 800px;
|
|
background-image: url(../images/backgrounds/bg_faq_section.webp);
|
|
background-size: 100% 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
z-index: -1;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.faq-section {
|
|
button:focus {
|
|
outline: unset;
|
|
}
|
|
|
|
.faq-answer {
|
|
border-top: unset;
|
|
|
|
}
|
|
|
|
.faq-answer p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* FAQ Section End*/
|
|
|
|
|
|
/* Payment Methods Section */
|
|
.payment-methods-section {
|
|
background-color: #000;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pm-marquee {
|
|
overflow: hidden;
|
|
height: 100px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.pm-track {
|
|
display: flex;
|
|
width: max-content;
|
|
animation: scroll 20s linear infinite;
|
|
}
|
|
|
|
.pm-marquee:hover .pm-track {
|
|
animation-play-state: paused;
|
|
}
|
|
|
|
.pm-group {
|
|
display: flex;
|
|
gap: 24px;
|
|
padding-right: 24px;
|
|
}
|
|
|
|
.pm-item {
|
|
background: #ffffff;
|
|
border-radius: 14px;
|
|
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
|
|
|
|
height: 96px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
padding: 8px 20px;
|
|
}
|
|
.pm-item img{
|
|
height:100%;
|
|
// width: 95%;
|
|
}
|
|
.pm-item:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.pm-fade {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 120px;
|
|
z-index: 10;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.pm-fade-left {
|
|
left: 0;
|
|
background: linear-gradient(to right, #070707, transparent);
|
|
}
|
|
|
|
.pm-fade-right {
|
|
right: 0;
|
|
background: linear-gradient(to left, #070707, transparent);
|
|
}
|
|
|
|
@keyframes scroll {
|
|
from {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
to {
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|
|
|
|
|
|
/* Payment Methods Section end */
|
|
|
|
/* affiliate Section start */
|
|
.affiliate-section {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 60px 0;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 60px;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.title-start {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.title-earning {
|
|
color: #ff7a1a;
|
|
}
|
|
|
|
.tier-card {
|
|
width: 100%;
|
|
height: 380px;
|
|
border-radius: 20px;
|
|
padding: 32px 28px;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.tier-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
/* V1 Card - Gray theme */
|
|
.card-v1 {
|
|
/* background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%); */
|
|
background-image: url(../images/backgrounds/affilate-start-1.png);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.card-v1:hover {
|
|
box-shadow: inset 0 5px 10px 0 rgba(231, 230, 229, 0.6), 0 5px 10px 0 rgba(235, 227, 219, 0.6);
|
|
}
|
|
|
|
.card-v1::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border-radius: 20px;
|
|
padding: 1px;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
|
|
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* V2 Card - Red theme */
|
|
.card-v2 {
|
|
background-image: url(../images/backgrounds/affilate-start-2.png);
|
|
position: relative;
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.card-v2:hover {
|
|
box-shadow: inset 0 5px 10px 0 rgba(128, 50, 39, 0.6), 0 5px 10px 0 rgba(128, 50, 39, 0.6);
|
|
}
|
|
|
|
.card-v2::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 30%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 200px;
|
|
height: 200px;
|
|
background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.card-v2>* {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* V3 Card - Orange theme */
|
|
.card-v3 {
|
|
background-image: url(../images/backgrounds/affilate-start-3.png);
|
|
position: relative;
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.card-v3:hover {
|
|
box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 5px 10px 0 rgba(249, 135, 21, 0.6);
|
|
}
|
|
|
|
.card-v3::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 30%;
|
|
right: -20%;
|
|
width: 250px;
|
|
height: 250px;
|
|
background: radial-gradient(circle, rgba(255, 122, 26, 0.4) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.card-v3>* {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.tier-badge {
|
|
display: inline-block;
|
|
/* padding: 6px 14px; */
|
|
border-radius: 8px;
|
|
/* font-size: 14px; */
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
width: fit-content;
|
|
width: 58px;
|
|
height: 58px;
|
|
}
|
|
|
|
.badge-v1 {
|
|
background-image: url(../images/backgrounds/icon/a_v1.png);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.badge-v2 {
|
|
background-image: url(../images/backgrounds/icon/a_v2.png);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.badge-v3 {
|
|
background-image: url(../images/backgrounds/icon/a_v3.png);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.role-pill {
|
|
display: inline-block;
|
|
padding: 8px 16px;
|
|
border-radius: 999px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin-bottom: 32px;
|
|
width: fit-content;
|
|
}
|
|
|
|
.role-v1 {
|
|
/* background: #2a2a2a;
|
|
color: #d1d5db; */
|
|
background: #838383;
|
|
color: var(--aifo-white);
|
|
}
|
|
|
|
.role-v2 {
|
|
background: #FF644C;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.role-v3 {
|
|
background: #ff7a1a;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.tier-range {
|
|
font-size: 2.625rem;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
margin-bottom: 24px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.commission-label {
|
|
font-size: 14px;
|
|
color: var(--aifo-light-gray1);
|
|
margin-bottom: 8px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.commission-value {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.percentage-v1 {
|
|
color: #ffffff;
|
|
font-size: 50px;
|
|
}
|
|
|
|
.percentage-v2 {
|
|
color: #60a5fa;
|
|
font-size: 50px;
|
|
}
|
|
|
|
.percentage-v3 {
|
|
color: #fb923c;
|
|
font-size: 50px;
|
|
}
|
|
|
|
.commission-text {
|
|
color: #e5e7eb;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
height:55px;
|
|
line-height:55px;
|
|
padding: 0 48px;
|
|
background: var(--aifo-orange);
|
|
color: #ffffff;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
border-radius: 10px;
|
|
text-decoration: none;
|
|
box-shadow: 0 8px 24px rgba(255, 122, 26, 0.4);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: scale(1.03);
|
|
box-shadow: 0 12px 32px rgba(255, 122, 26, 0.5);
|
|
filter: brightness(1.1);
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.cta-button:focus {
|
|
outline: none;
|
|
box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.3);
|
|
}
|
|
|
|
/* Responsive adjustments for tablets */
|
|
@media (max-width: 991px) {
|
|
.section-title {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.tier-card {
|
|
height: auto;
|
|
min-height: 360px;
|
|
}
|
|
}
|
|
|
|
/* Responsive adjustments for mobile */
|
|
@media (max-width: 767px) {
|
|
.affiliate-section {
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 2.25rem;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.tier-card {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.tier-range {
|
|
font-size: 2.25rem;
|
|
}
|
|
|
|
.cta-button {
|
|
width: 261px;
|
|
padding: 16px 32px;
|
|
}
|
|
}
|
|
|
|
/* Small mobile devices */
|
|
@media (max-width: 575px) {
|
|
.section-title {
|
|
font-size: 1.875rem;
|
|
}
|
|
|
|
.tier-range {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
/* Journey Section */
|
|
.journey-section {
|
|
background-color: #080401;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.journey-grid-bg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-image:
|
|
linear-gradient(to right, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
radial-gradient(circle at 50% 20%, rgba(249, 135, 21, 0.08), transparent 60%);
|
|
background-size: 44px 44px, 44px 44px, 100% 100%;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.journey-card {
|
|
background-color: #231F20;
|
|
border: 1px solid rgba(249, 249, 249, 0.08);
|
|
border-radius: 16px;
|
|
padding: 24px;
|
|
min-height: 180px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.journey-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
|
border-color: rgba(249, 249, 249, 0.14);
|
|
}
|
|
|
|
.journey-icon-box {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: #44301E;
|
|
border-radius: 11px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: box-shadow 0.3s ease;
|
|
}
|
|
|
|
.journey-card:hover .journey-icon-box {
|
|
box-shadow: 0 0 0 1px rgba(249, 135, 21, 0.2), 0 8px 22px rgba(249, 135, 21, 0.12);
|
|
}
|
|
|
|
|
|
/* Top Earners Section */
|
|
|
|
|
|
.top-earners {
|
|
/* background: radial-gradient(circle at 85% 50%, rgba(249, 135, 21, 0.55), rgba(249, 135, 21, 0) 55%), #070707;
|
|
position: relative; */
|
|
|
|
|
|
.earner-card {
|
|
background-color: var(--bg-card);
|
|
border: 1px solid rgba(249, 249, 249, 0.08);
|
|
border-radius: 13px;
|
|
/* padding: 24px; */
|
|
padding: 30px 40px;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.earner-card:hover {
|
|
transform: translateY(-3px);
|
|
border-color: rgba(249, 249, 249, 0.12);
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
|
}
|
|
|
|
.avatar-circle {
|
|
width: 8.75rem;
|
|
height: 8.75rem;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: bold;
|
|
font-size: 24px;
|
|
color: white;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
}
|
|
|
|
.national_flag {
|
|
width: 33px;
|
|
height: 33px;
|
|
margin-left: 12px;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
span{
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
|
|
.name-pill {
|
|
padding: 6px 12px;
|
|
/* border-radius: 20px; */
|
|
color: rgba(249, 249, 249, 0.75);
|
|
font-size: 0.75rem;
|
|
background-color: #31200f;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.flex-grow-1 {
|
|
margin-left: 40px;
|
|
}
|
|
|
|
.font-weight-bold {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.payouts_total {
|
|
font-size: 1.45rem;
|
|
color: rgba(249, 249, 249, 0.7);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.avatar-circle {
|
|
width: 5rem;
|
|
height: 5rem;
|
|
}
|
|
|
|
.earner-card {
|
|
padding: 24px;
|
|
}
|
|
|
|
.font-weight-bold {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.global-offers-section {
|
|
position: relative;
|
|
background-image:
|
|
linear-gradient(to right, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(249, 249, 249, 0.04) 1px, transparent 1px),
|
|
radial-gradient(circle at 50% 50%, rgba(7, 7, 7, 1) 0%, rgba(0, 0, 0, 0.85) 100%);
|
|
background-size: 44px 44px, 44px 44px, 100% 100%;
|
|
background-color: #070707;
|
|
}
|
|
|
|
|
|
|
|
|
|
/* award-card */
|
|
|
|
.award-card {
|
|
/* background-color: ; */
|
|
border: 1px solid rgba(249, 249, 249, 0.08);
|
|
border-radius: 16px;
|
|
padding: 28px;
|
|
min-height: 190px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
|
|
transition: all 0.3s ease;
|
|
|
|
background: url(../images/backgrounds/award-bg.png) center / 100% 100% no-repeat;
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
|
|
.award-desc {
|
|
font-size: 13px;
|
|
color: rgba(249, 249, 249, 0.65);
|
|
line-height: 1.5;
|
|
width: 154px;
|
|
}
|
|
|
|
.carousel-item {
|
|
position: relative;
|
|
display: none;
|
|
float: left;
|
|
width: 100%;
|
|
margin-right: -100%;
|
|
-webkit-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
transition: -webkit-transform .6s ease-in-out;
|
|
transition: transform .6s ease-in-out;
|
|
transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
|
|
}
|
|
|
|
.award-card:hover {
|
|
transform: translateY(-4px);
|
|
border-color: rgba(249, 249, 249, 0.14);
|
|
box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
|
|
}
|
|
|
|
.award-icon-box {
|
|
width: 48px;
|
|
height: 48px;
|
|
background-color: #000;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 12px;
|
|
z-index: 10;
|
|
position: relative;
|
|
}
|
|
|
|
}
|
|
|
|
/* Global Offers Section */
|
|
.feedback-section {
|
|
|
|
.header-info {
|
|
position: relative;
|
|
|
|
.growth-controls {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 39px;
|
|
}
|
|
}
|
|
|
|
.carousel.slide {
|
|
margin: 80px 0;
|
|
}
|
|
|
|
.mb-0{
|
|
// font-size: 14px;
|
|
color: var(--white);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.review-card {
|
|
/* background-color: var(--bg-card); */
|
|
border-radius: 15px;
|
|
padding: 24px;
|
|
transition: all 0.3s ease;
|
|
height: 100%;
|
|
background: url(../images/backgrounds/card_bg_1.png) center / 100% 100% no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.review-card:hover {
|
|
transform: translateY(-3px);
|
|
/* border-color: rgba(249, 249, 249, 0.12); */
|
|
/* background-image: none;
|
|
box-shadow: 0 18px 40px rgba(0,0,0,0.55); */
|
|
/* background-color: var(--aifo-orange) !important;
|
|
box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 8px 15px 0 rgba(249, 135, 21, 0.7); */
|
|
}
|
|
|
|
.review-avatar {
|
|
width: 70px;
|
|
height: 70px;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
|
|
.name-pill {
|
|
padding: 6px 12px;
|
|
color: rgba(249, 249, 249, 0.75);
|
|
font-size: 0.75rem;
|
|
background-color: #31200f;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.national_flag {
|
|
width: 33px;
|
|
height: 33px;
|
|
margin-left: 12px;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
line-height: unset;
|
|
}
|
|
|
|
span {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
line-height: unset;
|
|
}
|
|
}
|
|
|
|
.content-desc {
|
|
font-size: 14px;
|
|
color: var(--white);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.feedback-section {
|
|
position: relative;
|
|
overflow: hidden;
|
|
background-color: #000; /* 底色 */
|
|
padding: 200px 0 !important;
|
|
}
|
|
|
|
/* 背景图层 */
|
|
.feedback-section::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
|
|
background-image: url("../images/backgrounds/bg_feedBack.webp");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: 63% auto;
|
|
|
|
opacity: 1;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.feedback-section {
|
|
padding: 60px 0 !important;
|
|
}
|
|
|
|
.feedback-section .header-info .growth-controls {
|
|
top: 60px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/* Feedback Section end */
|
|
|
|
|
|
.carousel-control-custom {
|
|
width: 48px;
|
|
height: 48px;
|
|
background-color: var(--orange-primary);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.carousel-control-custom:hover:not(:disabled) {
|
|
background-color: var(--orange-hover);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.carousel-control-custom:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.star-rating {
|
|
color: var(--orange-primary);
|
|
font-size: 16px;
|
|
}
|
|
|
|
|
|
/* key-states-section start */
|
|
.key-states-section {
|
|
position: relative;
|
|
width: 100%;
|
|
padding: 60px 0 70px;
|
|
overflow: hidden;
|
|
padding-top: 170px;
|
|
|
|
/* Four corner dark shadows */
|
|
.vignette {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Content container */
|
|
.content-wrapper {
|
|
position: relative;
|
|
z-index: 1;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Title row */
|
|
.header-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 85px;
|
|
gap: 40px;
|
|
}
|
|
|
|
.title-left h2 {
|
|
font-size: 4.6875rem;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
margin: 0;
|
|
}
|
|
|
|
.title-left .key-word {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.title-left .states-word {
|
|
color: #F98715;
|
|
}
|
|
|
|
.description-right {
|
|
max-width: 516PX;
|
|
text-align: right;
|
|
}
|
|
|
|
.description-right p {
|
|
font-size: 24PX;
|
|
line-height: 1.5;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin: 0;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.description-right .highlight {
|
|
color: #F98715;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Data card */
|
|
.stats-card {
|
|
position: relative;
|
|
height: 100%;
|
|
background: url(../images/backgrounds/bg_key_states.png) center / 100% 100% no-repeat;
|
|
background-size: 100% 100%;
|
|
/* border: 1px solid rgba(255, 255, 255, 0.13); */
|
|
/* border-radius: 14px; */
|
|
padding: 85px 24px;
|
|
/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55); */
|
|
overflow: hidden;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.stats-card:hover {
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
|
|
}
|
|
|
|
/* Orange glow at bottom inside card */
|
|
.stats-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 400px;
|
|
height: 120px;
|
|
background: radial-gradient(ellipse at center, rgba(249, 135, 21, 0.25) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
filter: blur(40px);
|
|
animation: glow-pulse 5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes glow-pulse {
|
|
|
|
0%,
|
|
100% {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.stats-row {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Data item */
|
|
.stat-item {
|
|
flex: 1;
|
|
text-align: center;
|
|
padding: 0 18px;
|
|
position: relative;
|
|
}
|
|
|
|
.stat-item:first-child {
|
|
flex: none;
|
|
width: 354px;
|
|
}
|
|
|
|
.stat-item:not(:last-child)::after {
|
|
content: '';
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 60px;
|
|
background: rgba(255, 255, 255, 0.13);
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 34px;
|
|
font-weight: 800;
|
|
color: #FFFFFF;
|
|
line-height: 1.2;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.stat-item:first-child .stat-value {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.stat-value-large {
|
|
font-size: 34px;
|
|
display: block;
|
|
}
|
|
|
|
.stat-value-unit {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
display: block;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.stat-sub {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
/* 响应式 - 平板 */
|
|
@media (max-width: 991px) {
|
|
.header-row {
|
|
gap: 30px;
|
|
}
|
|
|
|
.title-left h2 {
|
|
font-size: 36px;
|
|
}
|
|
|
|
.description-right {
|
|
max-width: 320px;
|
|
}
|
|
|
|
.description-right p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.stat-item {
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.stat-item:first-child .stat-value {
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
|
|
/* 响应式 - 手机 */
|
|
@media (max-width: 768px) {
|
|
|
|
.stats-card {
|
|
background: url(../images/backgrounds/bg_key_states_mb.png) center / 100% 100% no-repeat;
|
|
}
|
|
|
|
.header-row {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 20px;
|
|
margin-bottom: 28px;
|
|
height: 100%;
|
|
display: block;
|
|
|
|
.title-left {
|
|
margin-bottom: 25px;
|
|
text-align: center;
|
|
|
|
}
|
|
}
|
|
|
|
.description-right p {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
}
|
|
|
|
.title-left h2 {
|
|
font-size: 32px;
|
|
}
|
|
|
|
.description-right {
|
|
max-width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.stats-card {
|
|
padding: 81px 16px;
|
|
}
|
|
|
|
.stats-row {
|
|
flex-wrap: wrap;
|
|
gap: 24px;
|
|
}
|
|
|
|
.stat-item {
|
|
flex: 0 0 calc(50% - 12px);
|
|
flex: auto;
|
|
padding: 0;
|
|
width: 100%;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.stat-item:not(:last-child)::after {
|
|
content: ' ';
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: -26px;
|
|
top: unset;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
height: 1px;
|
|
width: 60px;
|
|
background: rgba(255, 255, 255, 0.13);
|
|
}
|
|
|
|
.stat-value {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.stat-item:first-child {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.title-left h2 {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.description-right p {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.stat-item:first-child .stat-value {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.stat-value-large {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.stat-value-unit {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.stat-sub {
|
|
font-size: 11px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.key-states-section {
|
|
|
|
padding-top: 120px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* key-states-section end */
|
|
|
|
/* 待完善 start */
|
|
|
|
.challenge-modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 9999;
|
|
backdrop-filter: blur(2px);
|
|
}
|
|
|
|
.challenge-modal {
|
|
background: #1a1a1a;
|
|
padding: 30px 40px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
|
|
text-align: center;
|
|
max-width: 400px;
|
|
transform: translateY(-20px);
|
|
animation: modalSlideIn 0.3s ease-out forwards;
|
|
}
|
|
|
|
.challenge-modal h3 {
|
|
margin: 0 0 15px 0;
|
|
color: #ffffff;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.challenge-modal p {
|
|
margin: 0 0 20px 0;
|
|
color: #b0b0b0;
|
|
}
|
|
|
|
.modal-ok-btn {
|
|
background: #f98715;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 30px;
|
|
border-radius: 6px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.modal-ok-btn:hover {
|
|
background: #e67e22;
|
|
}
|
|
|
|
.expand-arrow .arraw-icon-table {
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
|
|
.challenge-button {
|
|
background: linear-gradient(135deg, #f98715, #e67e22);
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 6px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.challenge-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
|
|
background: linear-gradient(135deg, #e67e22, #d35400);
|
|
}
|
|
|
|
@keyframes modalSlideIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-20px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.row-icon {
|
|
margin-right: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.chall-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.arraw-icon-table {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
/* 待完善 end */
|
|
|
|
/* article-content-section */
|
|
.article-content-section {
|
|
|
|
/* 左侧菜单卡片 */
|
|
.menu-card {
|
|
background: #0e0e0e;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border-dark);
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
|
|
padding: 35px 15px;
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
.menu-card-title {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: var(--aifo-white);
|
|
margin: 0 0 12px 0;
|
|
padding-bottom: 12px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.10);
|
|
}
|
|
|
|
.menu-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.menu-item {
|
|
align-items: center;
|
|
// height: 40px;
|
|
padding: 0 8px;
|
|
font-size: 16px;
|
|
color: var(--aifo-white);
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
border-radius: 6px;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 8px 0;
|
|
|
|
.toc-link {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
color: var(--aifo-white);
|
|
|
|
|
|
|
|
.h-title {
|
|
flex: 1;
|
|
min-width: 0;
|
|
// white-space: nowrap;
|
|
// overflow: hidden;
|
|
// text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.icon.icon-arrow {
|
|
width: auto;
|
|
height: auto;
|
|
color: var(--aifo-orange);
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.menu-item:hover {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.menu-item.active {
|
|
color: var(--aifo-orange);
|
|
font-weight: 600;
|
|
background: rgba(249, 135, 21, 0.08);
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-item.active .menu-item-chevron {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* 右侧内容 */
|
|
.article-content {
|
|
max-width: 800px;
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.breadcrumb-nav {
|
|
font-size: 20px;
|
|
color: var(--aifo-white);
|
|
margin-bottom: 65px;
|
|
|
|
.icon {
|
|
font-size: 12px;
|
|
color: var(--aifo-orange);
|
|
margin: 0 8px;
|
|
}
|
|
}
|
|
|
|
.breadcrumb-link {
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.breadcrumb-link:hover {
|
|
color: var(--aifo-orange);
|
|
}
|
|
|
|
.article-title {
|
|
font-size: 32px;
|
|
font-weight: 800;
|
|
color: var(--aifo-white);
|
|
margin: 0 0 20px 0;
|
|
}
|
|
|
|
.article-meta {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
font-size: 14px;
|
|
color: var(--aifo-white);
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.article-body {
|
|
font-size: 15px;
|
|
line-height: 1.7;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.article-body p {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.cta-button-wrapper {
|
|
text-align: center;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
background: var(--aifo-orange);
|
|
color: white;
|
|
height: 55px;
|
|
line-height: 55px;
|
|
padding: 0 48px;
|
|
border-radius: 10px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background: #E77E10;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 24px rgba(249, 135, 21, 0.35);
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* 相关文章区 */
|
|
.related-section {
|
|
padding: 56px 0 72px;
|
|
}
|
|
|
|
.related-title {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: var(--aifo-white);
|
|
text-align: center;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.related-list {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.related-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background: var(--card-dark);
|
|
border: 1px solid var(--border-dark);
|
|
color: rgba(255, 255, 255, 0.80);
|
|
padding: 16px 18px;
|
|
border-radius: 12px;
|
|
margin-bottom: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.related-item:hover {
|
|
background: #1a1a1a;
|
|
border-color: rgba(255, 255, 255, 0.18);
|
|
transform: translateX(4px);
|
|
text-decoration: none;
|
|
color: rgba(255, 255, 255, 0.90);
|
|
}
|
|
|
|
.related-item-text {
|
|
font-size: 15px;
|
|
flex: 1;
|
|
}
|
|
|
|
.related-item-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
background: var(--aifo-orange);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-left: 12px;
|
|
transition: all 0.3s ease;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.related-item-chevron {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
.related-item:hover .related-item-icon {
|
|
transform: scale(1.1);
|
|
box-shadow: 0 0 12px rgba(249, 135, 21, 0.4);
|
|
}
|
|
|
|
/* CTA卡片区 */
|
|
.cta-section {
|
|
padding: 56px 0 72px;
|
|
}
|
|
|
|
.cta-card {
|
|
max-width: 1020px;
|
|
margin: 0 auto;
|
|
background: linear-gradient(135deg, #0A0A0B 0%, #141414 50%, rgba(249, 135, 21, 0.18) 100%);
|
|
border-radius: 18px;
|
|
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
|
|
padding: 40px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
min-height: 240px;
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.cta-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -30%;
|
|
right: -10%;
|
|
width: 500px;
|
|
height: 500px;
|
|
background: radial-gradient(circle, rgba(249, 135, 21, 0.35) 0%, transparent 60%);
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cta-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
flex: 1;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.cta-text-group {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.cta-title {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
color: white;
|
|
margin: 0 0 12px 0;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.cta-title-highlight {
|
|
background: linear-gradient(135deg, #F98715 0%, #FF8C00 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.cta-subtitle {
|
|
font-size: 15px;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin: 0;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cta-primary-btn {
|
|
background: var(--aifo-orange);
|
|
color: white;
|
|
border: none;
|
|
padding: 14px 32px;
|
|
border-radius: 10px;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cta-primary-btn:hover {
|
|
background: #E77E10;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 24px rgba(249, 135, 21, 0.45);
|
|
}
|
|
|
|
.cta-secondary-btn {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
color: white;
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
padding: 14px 28px;
|
|
border-radius: 10px;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.cta-secondary-btn:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(255, 255, 255, 0.5);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.cta-secondary-btn svg {
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.cta-secondary-btn:hover svg {
|
|
transform: translateX(3px);
|
|
}
|
|
|
|
.cta-decoration {
|
|
position: absolute;
|
|
right: 40px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
z-index: 1;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.row > .col-lg-3,
|
|
.row > .col-md-4 {
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.article_content {
|
|
height: auto;
|
|
min-height: 100px;
|
|
max-height: 1000px;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
grid-template-columns: repeat(2, 356px);
|
|
grid-gap: 22px;
|
|
padding-right: 40px;
|
|
}
|
|
|
|
.article_content::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
.article_content::-webkit-scrollbar-thumb {
|
|
background: #F98715;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
h1,
|
|
.h1 {
|
|
font-size: 2.6875rem;
|
|
}
|
|
|
|
|
|
/* 修复 sticky 的 CSS */
|
|
.sticky-element {
|
|
position: sticky;
|
|
top: 0;
|
|
background: red !important; /* 确保元素可见 */
|
|
z-index: 9999 !important;
|
|
}
|
|
|
|
/* 确保父元素没有限制 */
|
|
.row.align-items-start {
|
|
/* 移除 flex 相关属性或调整 */
|
|
display: block; /* 或者保持 flex 但调整 */
|
|
}
|
|
|
|
/* 或者给父元素添加高度限制 */
|
|
.col-lg-3.col-md-4 {
|
|
height: fit-content;
|
|
}
|
|
|
|
/* 处理 flex 布局下的 sticky */
|
|
.row.d-flex .sticky-element {
|
|
align-self: flex-start; /* 重要! */
|
|
}
|
|
|
|
|
|
// .article_content::-webkit-scrollbar {
|
|
// width: 8px;
|
|
// }
|
|
|
|
// .article_content::-webkit-scrollbar-thumb {
|
|
// background: #F98715;
|
|
// border-radius: 5px;
|
|
// }
|
|
|
|
|
|
.aifo-logo {
|
|
filter: drop-shadow(0 0 25px rgba(249, 135, 21, 0.6));
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.col-lg-9 {
|
|
max-width: 700px;
|
|
}
|
|
|
|
|
|
.col-lg-3 {
|
|
flex: unset;
|
|
max-width: unset;
|
|
width: 310px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.cta-decoration {
|
|
right: 20px;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.aifo-logo {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.article-title {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.menu-item {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.breadcrumb-nav {
|
|
font-size: 18px;
|
|
color: var(--aifo-white);
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.article-meta {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.menu-card {
|
|
padding: 12px;
|
|
}
|
|
|
|
.main-content {
|
|
padding: 32px 0 48px;
|
|
}
|
|
|
|
.related-section {
|
|
padding: 40px 0 56px;
|
|
}
|
|
|
|
.cta-section {
|
|
padding: 40px 0 56px;
|
|
}
|
|
|
|
.cta-card {
|
|
padding: 24px 20px;
|
|
min-height: 200px;
|
|
}
|
|
|
|
.cta-title {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.cta-subtitle {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.cta-buttons {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.cta-primary-btn,
|
|
.cta-secondary-btn {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.cta-decoration {
|
|
right: 10px;
|
|
top: 20px;
|
|
transform: none;
|
|
}
|
|
|
|
.aifo-logo {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
.article-body p {
|
|
text-align: justify;
|
|
text-justify: inter-word;
|
|
}
|
|
}
|
|
}
|
|
|
|
// section-challenge start
|
|
|
|
// .section-challenge {
|
|
// // position: relative;
|
|
// // overflow: hidden;
|
|
// // background-image: url(../images/backgrounds/Backgroun40.png);
|
|
// // background-repeat: no-repeat;
|
|
// // background-position: center;
|
|
// // background-size: 100% 100%;
|
|
// }
|
|
|
|
|
|
.section-challenge > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.section-challenge {
|
|
.main-wrapper {
|
|
position: relative;
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.content-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 60px 20px 80px;
|
|
}
|
|
|
|
|
|
|
|
.challenge-hero {
|
|
text-align: center;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.hero-title-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero-title-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-title-choose {
|
|
font-size: 4.6875rem;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.hero-title-your-challenge {
|
|
font-size: 4.6875rem;
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.hero-title-your {
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.hero-title-challenge {
|
|
color: #F98715;
|
|
}
|
|
|
|
.hero-trophy-badge {
|
|
width: 4.375rem;
|
|
height: 4.375rem;
|
|
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
|
|
img{
|
|
width: 100%;
|
|
}
|
|
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.5rem;
|
|
color: rgba(249, 249, 249, 0.7);
|
|
line-height: 1.6;
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-subtitle-highlight {
|
|
color: #F98715;
|
|
}
|
|
|
|
/* 2) Program Tabs */
|
|
.challenge-tabs {
|
|
max-width: 780px;
|
|
margin: 0 auto 32px;
|
|
background: #0B0B0B;
|
|
border-radius: 999px;
|
|
display: flex;
|
|
gap: 5px;
|
|
padding: 15px 12px;
|
|
}
|
|
|
|
.is-hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.challenge-tab {
|
|
flex: 1;
|
|
height: 52px;
|
|
border: none;
|
|
background: transparent;
|
|
color: rgba(249, 249, 249, 0.8);
|
|
border-radius: 999px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.challenge-tab:hover {
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.challenge-tab.active {
|
|
background: #F9F9F9;
|
|
color: #000000;
|
|
}
|
|
|
|
/* .btn:focus-visible {
|
|
outline: none;
|
|
box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
|
|
} */
|
|
|
|
button.challenge-tab:focus,button.instant-tab:focus,button.start-challenge-btn:focus,button.mobile-size-btn:focus {
|
|
outline: none;
|
|
}
|
|
|
|
/* 3) Instant Sub Tabs */
|
|
.instant-subtabs {
|
|
max-width: 460px;
|
|
width:460px;
|
|
margin: 0 auto 32px;
|
|
background: #0B0B0B;
|
|
border-radius: 999px;
|
|
padding: 5px 8px;
|
|
display: none;
|
|
gap: 6px;
|
|
}
|
|
|
|
.instant-subtabs.show {
|
|
display: flex;
|
|
}
|
|
|
|
.instant-tab {
|
|
flex: 1;
|
|
height: 44px;
|
|
border: none;
|
|
background: transparent;
|
|
color: rgba(249, 249, 249, 0.8);
|
|
border-radius: 999px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.instant-tab:hover {
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.instant-tab.active {
|
|
background: #F9F9F9;
|
|
color: #000000;
|
|
}
|
|
|
|
/* 4) 桌面版表格卡片 */
|
|
.challenge-table-card {
|
|
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
|
|
border-radius: 24px;
|
|
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
|
|
overflow: hidden;
|
|
padding: 18px 22px;
|
|
}
|
|
|
|
.challenge-table {
|
|
width: 100%;
|
|
border-collapse: separate;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
|
|
.challenge-table thead th {
|
|
padding: 20px 8px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
border-bottom: 1px solid rgba(249, 249, 249, 0.1);
|
|
}
|
|
|
|
.challenge-table thead th:first-child {
|
|
text-align: left;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.account-size-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.account-size-amount {
|
|
font-size: 35px;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.start-challenge-btn {
|
|
background: #f98715;
|
|
color: var(--aifo-white);
|
|
border: none;
|
|
border-radius: 8px;
|
|
padding: 0 18px;
|
|
font-size: 15px;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
font-weight: 700;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.start-challenge-btn:hover {
|
|
background: #e07810;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
|
}
|
|
|
|
/* 参数行 */
|
|
.challenge-table tbody tr {
|
|
border-bottom: 1px solid rgba(249, 249, 249, 0.05);
|
|
}
|
|
|
|
.challenge-table tbody tr:nth-child(even) {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
.challenge-table tbody td {
|
|
padding: 18px 12px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
border-right: 1px solid rgba(249, 249, 249, 0.06);
|
|
font-size: 20px;
|
|
color: rgba(249, 249, 249, 0.9);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.challenge-table tbody tr.challenge-row-expand td {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.challenge-table tbody td:first-child {
|
|
text-align: left;
|
|
border-right: 1px solid rgba(249, 249, 249, 0.1);
|
|
cursor: pointer;
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
.challenge-table tbody td:first-child:hover {
|
|
background: rgba(249, 135, 21, 0.05);
|
|
}
|
|
|
|
.challenge-table tbody td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.param-name-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.param-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
flex-shrink: 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.param-name {
|
|
flex: 1;
|
|
font-size: 20px;
|
|
color: #F9F9F9;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.expand-btn {
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: transform 0.2s ease;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.expand-btn.expanded {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
/* 展开说明行 */
|
|
.challenge-row-expand {
|
|
display: none;
|
|
}
|
|
|
|
.challenge-row-expand.show {
|
|
display: table-row;
|
|
}
|
|
|
|
.challenge-row-expand td {
|
|
padding: 16px 24px 20px 56px;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
font-size: 13px;
|
|
color: rgba(249, 249, 249, 0.6);
|
|
line-height: 1.6;
|
|
border-bottom: 1px solid rgba(249, 249, 249, 0.05);
|
|
}
|
|
|
|
/* Add-ons 区域 */
|
|
.challenge-addons {
|
|
margin-top: 24px;
|
|
padding-top: 24px;
|
|
border-top: 1px solid rgba(249, 249, 249, 0.1);
|
|
}
|
|
|
|
.addons-title {
|
|
text-align: center;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: var(--white);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.addons-content {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border-radius: 18px;
|
|
padding: 18px 22px;
|
|
}
|
|
|
|
.addon-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.addon-row:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.addon-percentage {
|
|
background: rgba(249, 135, 21, 0.15);
|
|
color: #F98715;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
min-width: 60px;
|
|
padding: 4px 12px;
|
|
border-radius: 999px;
|
|
text-align: center;
|
|
}
|
|
|
|
.addon-description {
|
|
color: rgba(249, 249, 249, 0.7);
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 991px) {
|
|
.content-container {
|
|
padding: 40px 16px 60px;
|
|
}
|
|
|
|
/* 标题缩小 */
|
|
.hero-title-choose,
|
|
.hero-title-your-challenge {
|
|
font-size: 32px;
|
|
}
|
|
|
|
.hero-trophy-badge {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* Tabs 缩小 */
|
|
.challenge-tabs {
|
|
max-width: 100%;
|
|
padding: 6px 8px;
|
|
}
|
|
|
|
.challenge-tab {
|
|
height: 40px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.instant-subtabs {
|
|
max-width: 100%;
|
|
padding: 5px 8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.instant-tab {
|
|
height: 34px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* 隐藏桌面表格 */
|
|
.challenge-table-card {
|
|
display: none;
|
|
}
|
|
|
|
/* 显示移动端卡片 */
|
|
.mobile-layout {
|
|
display: block !important;
|
|
}
|
|
}
|
|
|
|
/* 移动端专用组件 */
|
|
.mobile-layout {
|
|
display: none;
|
|
}
|
|
|
|
.mobile-account-sizes {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
overflow-x: auto;
|
|
padding: 4px 0 20px;
|
|
-webkit-overflow-scrolling: touch;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.mobile-account-sizes::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.mobile-size-btn {
|
|
min-width: 50px;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
border: 1px solid rgba(249, 249, 249, 0.4);
|
|
background: transparent;
|
|
color: #F9F9F9;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mobile-size-btn.active {
|
|
background: #F9F9F9;
|
|
color: #000000;
|
|
border-color: #F9F9F9;
|
|
}
|
|
|
|
.mobile-challenge-card {
|
|
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
|
|
border-radius: 24px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mobile-card-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: start;
|
|
padding: 24px 20px;
|
|
border-bottom: 1px solid rgba(249, 249, 249, 0.1);
|
|
}
|
|
|
|
.mobile-account-label {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.mobile-amount-cta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.mobile-amount {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: #F9F9F9;
|
|
}
|
|
|
|
.mobile-start-btn {
|
|
background: #F98715;
|
|
color: var(--aifo-white);
|
|
border: none;
|
|
border-radius: 10px;
|
|
padding: 8px 20px;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.mobile-start-btn:hover {
|
|
background: #e07810;
|
|
}
|
|
|
|
.mobile-params-list {
|
|
padding: 0;
|
|
}
|
|
|
|
.mobile-param-row {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid rgba(249, 249, 249, 0.05);
|
|
cursor: pointer;
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
.mobile-param-row:hover {
|
|
background: rgba(249, 135, 21, 0.05);
|
|
}
|
|
|
|
.mobile-param-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex: 1;
|
|
}
|
|
|
|
.mobile-param-value {
|
|
font-size: 20px;
|
|
color: rgba(249, 249, 249, 0.9);
|
|
font-weight: 600;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.mobile-param-description {
|
|
display: none;
|
|
padding: 12px 20px 16px 52px;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
font-size: 12px;
|
|
color: rgba(249, 249, 249, 0.6);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.mobile-param-description.show {
|
|
display: block;
|
|
}
|
|
|
|
.mobile-addons {
|
|
padding: 20px;
|
|
}
|
|
|
|
.mobile-addons-title {
|
|
text-align: center;
|
|
font-size: 16px;
|
|
color: var(--white);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.mobile-addons-card {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border-radius: 18px;
|
|
padding: 14px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.mobile-layout {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.param-name {
|
|
font-size: 16px;
|
|
}
|
|
.mobile-param-value {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.addon-description {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
// section-challenge end
|
|
|
|
|
|
|
|
/* Image enlargement start*/
|
|
.article_content img {
|
|
cursor: zoom-in;
|
|
transition: transform .2s ease;
|
|
}
|
|
|
|
.article_content img:hover {
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
/* Lightbox */
|
|
.img-lightbox {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0,0,0,.85);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 99999;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity .3s ease;
|
|
}
|
|
|
|
.img-lightbox.active {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.img-lightbox img {
|
|
max-width: 90vw;
|
|
max-height: 90vh;
|
|
transform: scale(1);
|
|
transition: transform .15s ease;
|
|
cursor: zoom-in;
|
|
will-change: transform;
|
|
}
|
|
|
|
/* Image enlargement end */
|
|
|
|
|
|
@media(max-width: 768px) {
|
|
#section-3 {
|
|
h5 .h-inline-icon{
|
|
display: inline;
|
|
margin-right:0.625rem;
|
|
|
|
.icon-box{
|
|
width: 2.375rem;
|
|
height: 2.375rem;
|
|
}
|
|
}
|
|
|
|
h5.mb-text-start{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
p{
|
|
margin-bottom:0;
|
|
}
|
|
|
|
}
|
|
|
|
.card-style-2 .card {
|
|
padding: 1.5rem 0.75rem;
|
|
}
|
|
|
|
#section-4{
|
|
h3 {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
position: relative;
|
|
padding-left: 3.3rem;
|
|
}
|
|
|
|
h3 .h-inline-icon{
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.icon-box-1{
|
|
width: 2.375rem;
|
|
height: 2.375rem;
|
|
}
|
|
|
|
p{
|
|
margin-bottom:0;
|
|
}
|
|
|
|
.card-style-1 {
|
|
height: auto;
|
|
}
|
|
|
|
}
|
|
|
|
#section-4 .align-items-stretch
|
|
{
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width: 390px) {
|
|
#section-3 h5.mb-text-start {
|
|
position: relative;
|
|
text-align: left;
|
|
}
|
|
}
|
|
.footer .text-muted{
|
|
text-align: justify;
|
|
}
|
|
|
|
@media(max-width: 768px){
|
|
.container {
|
|
padding-right: 1.9376rem;
|
|
padding-left: 1.9376rem;
|
|
}
|
|
.footer .text-muted{
|
|
padding: 0 15px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 2500px) {
|
|
.section-challenge .content-container {
|
|
max-width: 70vw;
|
|
min-width: 1600px;
|
|
}
|
|
|
|
.container-narrow {
|
|
min-width: 1600px !important;
|
|
max-width: 70vw !important;
|
|
}
|
|
}
|