5747 lines
132 KiB
CSS
5747 lines
132 KiB
CSS
@charset "UTF-8";
|
||
.fade-in {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(0.75rem);
|
||
transform: translateY(0.75rem);
|
||
-webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
|
||
transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
|
||
transition: opacity 0.7s ease, transform 0.7s ease;
|
||
transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
|
||
}
|
||
|
||
.fade-in.show {
|
||
opacity: 1;
|
||
-webkit-transform: none;
|
||
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; */
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
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;
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: auto;
|
||
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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
gap: 15px;
|
||
-ms-flex-wrap: wrap;
|
||
flex-wrap: wrap;
|
||
/* Allow wrapping if too many buttons */
|
||
}
|
||
|
||
/* Basic floating effect */
|
||
.floating-img {
|
||
-webkit-transition: all 0.5s ease;
|
||
transition: all 0.5s ease;
|
||
-webkit-transform-style: preserve-3d;
|
||
transform-style: preserve-3d;
|
||
}
|
||
|
||
/* Float upward */
|
||
/* Slight X-axis rotation */
|
||
/* Slight Y-axis rotation */
|
||
/* Slight zoom */
|
||
.floating-img:hover {
|
||
-webkit-transform: translateY(-25px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
||
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;
|
||
-webkit-transition: opacity 0.5s ease;
|
||
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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
gap: 0.5rem;
|
||
-ms-flex-wrap: wrap;
|
||
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 {
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
text-align: center;
|
||
}
|
||
.hero-image-left,
|
||
.hero-image-right {
|
||
margin: 0 0 2rem 0 !important;
|
||
-webkit-box-ordinal-group: 0;
|
||
-ms-flex-order: -1;
|
||
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: 0.875rem;
|
||
margin-left: 6px;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.why-img {
|
||
grid-area: img;
|
||
width: 4.375rem;
|
||
height: 4.375rem;
|
||
-webkit-transform: translateY(-17px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
||
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;
|
||
-o-object-fit: fill;
|
||
object-fit: fill;
|
||
}
|
||
|
||
#section-4::after {
|
||
content: "";
|
||
position: absolute;
|
||
left: 0;
|
||
bottom: 0;
|
||
width: 100%;
|
||
height: 135px;
|
||
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#000));
|
||
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #000 100%);
|
||
pointer-events: none;
|
||
}
|
||
|
||
#section-4 .section4-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
-o-object-fit: fill;
|
||
object-fit: fill;
|
||
z-index: -1;
|
||
}
|
||
#section-4 .card-style-1 {
|
||
border-radius: 20px;
|
||
}
|
||
#section-4 .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;
|
||
-webkit-transition: background-image 0.3s ease;
|
||
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;
|
||
-webkit-box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 8px 15px 0 rgba(249, 135, 21, 0.7);
|
||
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;
|
||
-webkit-transition: background-image 0.3s ease;
|
||
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;
|
||
-webkit-transition: background-image 0.3s ease;
|
||
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;
|
||
-webkit-transition: background-image 0.3s ease;
|
||
transition: background-image 0.3s ease;
|
||
background-image: url("../images/backgrounds/right-arrow.png");
|
||
}
|
||
|
||
#section-4 .card:hover {
|
||
background-color: var(--aifo-orange);
|
||
-webkit-box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 8px 15px 0 rgba(249, 135, 21, 0.7);
|
||
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;
|
||
-o-object-fit: cover;
|
||
object-fit: cover;
|
||
border: 0.1875rem solid white;
|
||
/* 3px white border */
|
||
-webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
|
||
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
|
||
/* 4px 12px shadow */
|
||
-webkit-transition: -webkit-transform 0.3s ease;
|
||
transition: -webkit-transform 0.3s ease;
|
||
transition: transform 0.3s ease;
|
||
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
|
||
}
|
||
|
||
.avatar-img:hover {
|
||
-webkit-transform: scale(1.05);
|
||
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: 0.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;
|
||
}
|
||
#section-5 .main-wrapper {
|
||
width: 100%;
|
||
min-height: 100%;
|
||
padding: 40px 0;
|
||
}
|
||
#section-5 .content-container {
|
||
max-width: 1400px;
|
||
margin: 0 auto;
|
||
}
|
||
#section-5 .tab-navigation {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
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;
|
||
}
|
||
#section-5 .tab-button {
|
||
color: var(--aifo-white);
|
||
border: none;
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
border-radius: 50px;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
position: relative;
|
||
background: transparent;
|
||
height: 50px;
|
||
line-height: 50px;
|
||
width: 145px;
|
||
}
|
||
#section-5 .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;
|
||
}
|
||
#section-5 .tab-button.active {
|
||
background: #F9F9F9;
|
||
color: #000;
|
||
}
|
||
#section-5 .detail-cell {
|
||
padding: 15px 20px !important;
|
||
font-size: 14px;
|
||
color: #6c757d;
|
||
line-height: 1.5;
|
||
}
|
||
#section-5 .row-header {
|
||
cursor: pointer;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
padding: 15px;
|
||
-webkit-transition: background-color 0.3s;
|
||
transition: background-color 0.3s;
|
||
}
|
||
#section-5 .row-header:hover {
|
||
background-color: rgba(0, 0, 0, 0.05);
|
||
}
|
||
#section-5 .table-container {
|
||
background: #1a1a1a;
|
||
border-radius: 12px;
|
||
overflow: hidden;
|
||
-webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
||
}
|
||
#section-5 thead {
|
||
background: #1a1a1a;
|
||
color: #ffffff;
|
||
}
|
||
#section-5 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);
|
||
}
|
||
#section-5 th:last-child {
|
||
border-right: none;
|
||
}
|
||
#section-5 tbody tr {
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||
-webkit-transition: background-color 0.2s ease;
|
||
transition: background-color 0.2s ease;
|
||
}
|
||
#section-5 tbody tr:hover {
|
||
background-color: #252525;
|
||
}
|
||
#section-5 td {
|
||
padding: 16px;
|
||
font-size: 14px;
|
||
color: #ffffff;
|
||
border-right: 1px solid rgba(255, 255, 255, 0.1);
|
||
}
|
||
#section-5 td:last-child {
|
||
border-right: none;
|
||
}
|
||
#section-5 table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
}
|
||
#section-5 .row-header {
|
||
font-weight: 600;
|
||
color: #ffffff;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
cursor: pointer;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
-ms-user-select: none;
|
||
user-select: none;
|
||
}
|
||
#section-5 .expand-arrow {
|
||
width: 20px;
|
||
height: 20px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-webkit-transition: -webkit-transform 0.3s ease;
|
||
transition: -webkit-transform 0.3s ease;
|
||
transition: transform 0.3s ease;
|
||
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
|
||
color: #ffffff;
|
||
}
|
||
#section-5 .expand-arrow.expanded {
|
||
-webkit-transform: rotate(180deg);
|
||
transform: rotate(180deg);
|
||
}
|
||
#section-5 .detail-row {
|
||
text-align: left;
|
||
}
|
||
#section-5 .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;
|
||
}
|
||
#section-5 button:focus {
|
||
outline: unset;
|
||
}
|
||
#section-5 tbody tr:nth-child(4n+2) {
|
||
background-color: #000;
|
||
}
|
||
#section-5 tbody tr:nth-child(4n+4) {
|
||
background-color: #201409;
|
||
}
|
||
#section-5 tbody tr.detail-row {
|
||
background-color: #201409;
|
||
}
|
||
#section-5 .show-tr {
|
||
height: 66px;
|
||
}
|
||
#section-5 .detail-row {
|
||
/* height: 66px; */
|
||
}
|
||
#section-5 td {
|
||
padding: 0;
|
||
font-size: 18px;
|
||
}
|
||
#section-5 td span {
|
||
font-size: 20px;
|
||
}
|
||
#section-5 td .row-icon {
|
||
margin-right: 16px;
|
||
}
|
||
#section-5 .show-tr .row-header,
|
||
#section-5 .detail-row .row-header {
|
||
margin-left: 26px;
|
||
}
|
||
#section-5 .others-desc {
|
||
border-top: 1px solid rgba(249, 249, 249, 0.08);
|
||
background-color: #080808;
|
||
padding: 35px 40px;
|
||
}
|
||
#section-5 .others-desc h3.add-ones {
|
||
font-size: 20px;
|
||
text-align: left;
|
||
color: #989795;
|
||
}
|
||
#section-5 .others-desc .add-ons-item span:first-child {
|
||
background-color: #1a1a1a;
|
||
font-size: 18px;
|
||
padding: 6px 10px;
|
||
border-radius: 8px;
|
||
margin-right: 30px;
|
||
}
|
||
#section-5 .others-desc .add-ons-item span:nth-child(2) {
|
||
font-size: 14px;
|
||
color: rgba(249, 249, 249, 0.75);
|
||
}
|
||
#section-5 .others-desc .col-md-12 {
|
||
margin-bottom: 16px;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1200px) {
|
||
#section-5 .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;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.5px;
|
||
-webkit-box-shadow: 0 2px 8px rgba(249, 135, 21, 0.3);
|
||
box-shadow: 0 2px 8px rgba(249, 135, 21, 0.3);
|
||
}
|
||
|
||
#section-5 .challenge-button:hover {
|
||
background: #ff9a2e;
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
-webkit-box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
}
|
||
|
||
#section-5 .challenge-button:active {
|
||
-webkit-transform: translateY(0);
|
||
transform: translateY(0);
|
||
}
|
||
|
||
#section-5 .row-icon {
|
||
width: 18px;
|
||
height: 18px;
|
||
/* background: #f98715; */
|
||
border-radius: 4px;
|
||
display: -webkit-inline-box;
|
||
display: -ms-inline-flexbox;
|
||
display: inline-flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
margin-right: 10px;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
#section-7 .btn {
|
||
margin-top: 0.75rem;
|
||
}
|
||
|
||
#secction-7 .p-content-1 {
|
||
width: 26rem;
|
||
}
|
||
|
||
/* section-8 pc start*/
|
||
#section-8 {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.section8-bg {
|
||
position: absolute;
|
||
top: -50px; /* 对应 background-position-y: -50px */
|
||
left: 50%;
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-50%);
|
||
width: 100%;
|
||
height: 100%;
|
||
-o-object-fit: contain;
|
||
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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
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;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
#section-8 .read-more-link:hover {
|
||
text-decoration: underline;
|
||
-webkit-transform: translateX(0.25rem);
|
||
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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
gap: 20px;
|
||
will-change: transform;
|
||
}
|
||
|
||
/* ===== Single Card ===== */
|
||
.carousel-card {
|
||
position: relative;
|
||
height: 420px;
|
||
border-radius: 24px;
|
||
overflow: hidden;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
background: #000;
|
||
-webkit-transition: -webkit-box-shadow 0.25s ease;
|
||
transition: -webkit-box-shadow 0.25s ease;
|
||
transition: box-shadow 0.25s ease;
|
||
transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
|
||
}
|
||
|
||
.carousel-card:hover {
|
||
-webkit-box-shadow: inset 0 5px 10px rgba(249, 135, 21, 0.6), 0 8px 15px rgba(249, 135, 21, 0.7);
|
||
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%;
|
||
-o-object-fit: cover;
|
||
object-fit: cover;
|
||
-webkit-filter: grayscale(100%);
|
||
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%
|
||
); */
|
||
-webkit-transition: opacity 0.25s ease;
|
||
transition: opacity 0.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: 0.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;
|
||
-o-object-fit: cover;
|
||
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: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(50%, #000));
|
||
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: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, #000));
|
||
background: linear-gradient(to right, transparent 0%, #000 50%);
|
||
}
|
||
|
||
/* ================= Indicators ================= */
|
||
.carousel-indicators {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
margin-top: 25px;
|
||
gap: 14px;
|
||
}
|
||
|
||
.indicator {
|
||
width: 48px;
|
||
height: 6px;
|
||
border-radius: 3px;
|
||
background: #333;
|
||
-webkit-transition: background 0.25s ease;
|
||
transition: background 0.25s ease;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.indicator:hover {
|
||
background: #F98715;
|
||
}
|
||
|
||
.indicator.active {
|
||
background: #F98715;
|
||
}
|
||
|
||
/* section-10 common start */
|
||
#section-10 {
|
||
position: relative;
|
||
}
|
||
#section-10 .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%;
|
||
}
|
||
#section-10 .bg_light {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
#section-10 .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;
|
||
-webkit-transform: translate(-50%, -50%);
|
||
transform: translate(-50%, -50%);
|
||
pointer-events: none; /* 不影响点击 */
|
||
z-index: 0;
|
||
}
|
||
#section-10 .bg_light .container {
|
||
padding-top: 10.5rem;
|
||
padding-bottom: 10.5rem;
|
||
}
|
||
#section-10 .h1 {
|
||
position: relative;
|
||
}
|
||
#section-10 .zfj-img {
|
||
position: absolute;
|
||
left: 7%;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
width: 7.8125rem;
|
||
height: 7.8125rem;
|
||
}
|
||
#section-10 .tx-img {
|
||
position: absolute;
|
||
right: 7%;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
width: 16.68rem;
|
||
/* 125px */
|
||
height: 16.68rem;
|
||
/* 125px */
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
/* section-10 */
|
||
#section-10 {
|
||
min-height: 520px;
|
||
}
|
||
#section-10 .tx-img {
|
||
position: absolute;
|
||
right: -5%;
|
||
top: -2%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
width: 8rem;
|
||
height: 7.5rem;
|
||
}
|
||
#section-10 .zfj-img {
|
||
position: absolute;
|
||
left: 0%;
|
||
top: -57%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
width: 4.8125rem;
|
||
height: 4.8125rem;
|
||
}
|
||
#section-10 .hero-buttons,
|
||
#section-10 #section-11 .hero-buttons {
|
||
margin-top: 0;
|
||
}
|
||
#section-10 .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;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
/* Button hover effect */
|
||
.subscribe-btn:hover {
|
||
background-color: var(--aifo-orange-hover) !important;
|
||
-webkit-transform: translateY(-1px);
|
||
transform: translateY(-1px);
|
||
-webkit-box-shadow: 0 4px 12px rgba(249, 135, 21, 0.3);
|
||
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.3);
|
||
}
|
||
|
||
.subscribe-btn:active {
|
||
-webkit-transform: translateY(0);
|
||
transform: translateY(0);
|
||
}
|
||
|
||
.subscribe-btn:focus {
|
||
outline: 2px solid rgba(249, 135, 21, 0.5);
|
||
outline-offset: 2px;
|
||
}
|
||
|
||
/* Outer frame */
|
||
.subscribe-wrapper {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
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 {
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
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::-webkit-input-placeholder {
|
||
color: #b8a898;
|
||
}
|
||
|
||
.subscribe-input::-moz-placeholder {
|
||
color: #b8a898;
|
||
}
|
||
|
||
.subscribe-input:-ms-input-placeholder {
|
||
color: #b8a898;
|
||
}
|
||
|
||
.subscribe-input::-ms-input-placeholder {
|
||
color: #b8a898;
|
||
}
|
||
|
||
.subscribe-input::placeholder {
|
||
color: #b8a898;
|
||
}
|
||
|
||
.subscribe-input:focus {
|
||
outline: none !important;
|
||
-webkit-box-shadow: 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 */
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
/* Ensure button won't be squeezed or deformed */
|
||
cursor: pointer;
|
||
-webkit-transition: 0.25s;
|
||
transition: 0.25s;
|
||
}
|
||
|
||
.subscribe-btn:hover {
|
||
background: #ffad33;
|
||
}
|
||
|
||
.subscribe-btn:focus,
|
||
.subscribe-btn:active,
|
||
.subscribe-btn:focus:active {
|
||
outline: none !important;
|
||
-webkit-box-shadow: 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: 39.9375rem;
|
||
background-image: none;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.main {
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
/* Hero background img — height derived from dots position + arc offset in source image
|
||
*
|
||
* Formula (object-fit: cover; object-position: center bottom; width-limited):
|
||
* hero-bg-height = dots-bottom-y + arc-gap + viewportWidth × (arcOffsetPx / imageWidth)
|
||
*
|
||
* arcOffsetPx: arc peak distance from bottom of source PNG (measure once in Figma)
|
||
* dots-bottom-y: distance from hero top to bottom of .home-hero-carousel__dots
|
||
*/
|
||
#homepage {
|
||
--hero-img-width: 2880;
|
||
--hero-img-height: 1982;
|
||
--hero-img-arc-offset: 920;
|
||
--hero-nav-gap: 76px;
|
||
--hero-coach-dots-gap: 35px;
|
||
--hero-dots-height: 10px;
|
||
/* left column: badge top → AI Coach bottom */
|
||
--hero-slide1-content-height: 486px;
|
||
/* viewport height (fits right visual + left column) */
|
||
--hero-slide1-viewport-height: 580px;
|
||
--hero-inner-padding-bottom: 40px;
|
||
/* Mobile: arc ~30px below dots (height-limited cover) */
|
||
--hero-arc-gap: 30px;
|
||
--hero-dots-y: calc(48px + 720px + 56px - 32px + 10px);
|
||
}
|
||
|
||
#homepage .hero-bg {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
/* Narrow screens: scale driven by height → solve H from dots + arc-gap */
|
||
height: calc(
|
||
(var(--hero-dots-y) + var(--hero-arc-gap)) * var(--hero-img-height)
|
||
/ (var(--hero-img-height) - var(--hero-img-arc-offset))
|
||
);
|
||
object-fit: cover;
|
||
object-position: center bottom;
|
||
z-index: -1;
|
||
background-color: #050302;
|
||
display: block;
|
||
pointer-events: none;
|
||
}
|
||
|
||
@media (min-width: 768px) and (max-width: 991.98px) {
|
||
#homepage {
|
||
--hero-dots-y: calc(80px + 720px + 64px - 40px + 10px);
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) {
|
||
#homepage {
|
||
--hero-arc-gap: 8px;
|
||
--hero-bg-height-adjust: -15px;
|
||
--hero-dots-y: calc(
|
||
var(--hero-nav-gap) + var(--hero-slide1-content-height)
|
||
+ var(--hero-coach-dots-gap) + var(--hero-dots-height)
|
||
+ var(--hero-inner-padding-bottom)
|
||
);
|
||
}
|
||
|
||
#homepage .hero-bg {
|
||
/* Wide screens: scale driven by width */
|
||
height: calc(
|
||
var(--hero-dots-y) + var(--hero-arc-gap)
|
||
+ 100vw * var(--hero-img-arc-offset) / var(--hero-img-width)
|
||
+ var(--hero-bg-height-adjust)
|
||
);
|
||
}
|
||
}
|
||
|
||
/* Fallback for pages without #homepage wrapper */
|
||
.hero-bg {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 39.9375rem;
|
||
object-fit: cover;
|
||
object-position: center bottom;
|
||
z-index: -1;
|
||
background-color: #050302;
|
||
display: block;
|
||
pointer-events: none;
|
||
}
|
||
|
||
#block-1 .hero-buttons {
|
||
margin-top: 5rem;
|
||
}
|
||
#block-1 #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 {
|
||
-webkit-box-flex: 0;
|
||
-ms-flex: 0 0 100%;
|
||
flex: 0 0 100%;
|
||
max-width: 50%;
|
||
}
|
||
}
|
||
/* Responsive adjustments */
|
||
@media (max-width: 992px) {
|
||
.subscribe-btn {
|
||
width: 170px;
|
||
}
|
||
.input-group {
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
}
|
||
.input-group-append {
|
||
width: 100%;
|
||
}
|
||
}
|
||
/* Small screen optimization */
|
||
@media (max-width: 576px) {
|
||
.trustpilot-section .d-flex {
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: start;
|
||
-ms-flex-align: start;
|
||
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%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
}
|
||
.top-code-bar {
|
||
display: none;
|
||
}
|
||
/* menu */
|
||
.navbar-brand {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 50%;
|
||
-webkit-transform: translate(-50%, -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 {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-ms-flex-wrap: wrap;
|
||
flex-wrap: wrap;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
padding: 0.5rem 1rem;
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||
z-index: 1060;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: start;
|
||
-ms-flex-align: start;
|
||
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;
|
||
-webkit-transform: 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;
|
||
}
|
||
#homepage #block-1 .hero-buttons {
|
||
margin-top: 5rem;
|
||
}
|
||
#homepage #block-1 #section-3 .slice-lg {
|
||
padding-top: 1.5rem;
|
||
padding-bottom: 3.5rem;
|
||
}
|
||
#homepage #section-10 .btn-start-challenge,
|
||
#homepage #section-10 .btn-free-trial {
|
||
width: 225px;
|
||
position: unset;
|
||
left: unset;
|
||
-webkit-transform: 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 {
|
||
-webkit-box-pack: justify !important;
|
||
-ms-flex-pack: justify !important;
|
||
justify-content: space-between !important;
|
||
padding: 0 10px;
|
||
}
|
||
.mobile-no-flex {
|
||
display: block !important;
|
||
}
|
||
/* section-4 */
|
||
.why-img {
|
||
width: 37px;
|
||
height: 37px;
|
||
-webkit-transform: translateY(-7px) rotateX(5deg) rotateY(5deg) scale(1.05);
|
||
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;
|
||
}
|
||
#section-7 .heading-1 {
|
||
width: 237px;
|
||
margin: 0 auto;
|
||
margin-top: 20px;
|
||
}
|
||
#section-7 .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: 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: 0.375rem;
|
||
border-bottom-right-radius: 0.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 {
|
||
-webkit-box-pack: start !important;
|
||
-ms-flex-pack: start !important;
|
||
justify-content: start !important;
|
||
}
|
||
/* footer end */
|
||
.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 */
|
||
}
|
||
#payout-section.payout-section .timeline-line {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 83px;
|
||
bottom: 83px;
|
||
width: 10px;
|
||
background-color: #231F20;
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-50%);
|
||
}
|
||
#payout-section.payout-section .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;
|
||
}
|
||
#payout-section.payout-section .title-icon-box img {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
#payout-section.payout-section .timeline-line-mobile {
|
||
position: absolute;
|
||
left: 36px;
|
||
top: 40px;
|
||
bottom: 40px;
|
||
width: 2px;
|
||
background-color: rgba(249, 249, 249, 0.2);
|
||
}
|
||
#payout-section.payout-section .timeline-item {
|
||
position: relative;
|
||
margin-bottom: 56px;
|
||
}
|
||
#payout-section.payout-section .timeline-item:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
#payout-section.payout-section .step-card {
|
||
background-color: var(--bg-card);
|
||
border: 1px solid rgba(249, 249, 249, 0.08);
|
||
border-radius: 16px;
|
||
padding: 24px;
|
||
-webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
max-width: 360px;
|
||
}
|
||
#payout-section.payout-section .step-card:hover {
|
||
-webkit-transform: translateY(-3px);
|
||
transform: translateY(-3px);
|
||
border-color: rgba(249, 249, 249, 0.12);
|
||
-webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
||
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
||
}
|
||
#payout-section.payout-section .step-label {
|
||
color: var(--aifo-orange);
|
||
margin-bottom: 8px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
font-size: 30px;
|
||
}
|
||
#payout-section.payout-section .node-dot {
|
||
width: 20px;
|
||
height: 20px;
|
||
border-radius: 50%;
|
||
background-color: var(--aifo-orange);
|
||
}
|
||
#payout-section.payout-section .text-right {
|
||
text-align: left !important;
|
||
}
|
||
#payout-section.payout-section .title-contaion {
|
||
margin-bottom: 130px;
|
||
}
|
||
#payout-section.payout-section .btn-contain {
|
||
margin-top: 130px;
|
||
}
|
||
#payout-section.payout-section .mb-0 {
|
||
font-size: 14px;
|
||
color: var(--white);
|
||
line-height: 1.5;
|
||
}
|
||
@-webkit-keyframes pulse {
|
||
0%, 100% {
|
||
opacity: 1;
|
||
}
|
||
50% {
|
||
opacity: 0.5;
|
||
}
|
||
}
|
||
@keyframes pulse {
|
||
0%, 100% {
|
||
opacity: 1;
|
||
}
|
||
50% {
|
||
opacity: 0.5;
|
||
}
|
||
}
|
||
#payout-section.payout-section .node-icon {
|
||
width: 48px;
|
||
height: 48px;
|
||
border-radius: 50%;
|
||
background-color: #3a2413;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
|
||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
|
||
position: absolute;
|
||
}
|
||
#payout-section.payout-section .node-icon.to_right {
|
||
right: -20px;
|
||
top: -15px;
|
||
}
|
||
#payout-section.payout-section .node-icon.to_left {
|
||
left: -20px;
|
||
top: -14px;
|
||
}
|
||
#payout-section.payout-section .node-icon img {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
@media (max-width: 768px) {
|
||
#payout-section.payout-section .col-lg-5 {
|
||
width: 91%;
|
||
margin-left: 66px;
|
||
}
|
||
#payout-section.payout-section .node-dot {
|
||
position: absolute;
|
||
left: -24px;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
}
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
#payout-section.payout-section {
|
||
padding-top: 80px !important;
|
||
padding-bottom: 80px !important;
|
||
}
|
||
#payout-section.payout-section .title-contaion {
|
||
margin-bottom: 70px;
|
||
}
|
||
}
|
||
#payout {
|
||
/* Sliding block */
|
||
}
|
||
#payout .slider-container {
|
||
position: relative;
|
||
width: 100%;
|
||
height: 40px;
|
||
/* margin: 40px 0 20px 0; */
|
||
}
|
||
#payout {
|
||
/* bg_get_card.png */
|
||
}
|
||
#payout .slider-track {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 0;
|
||
right: 0;
|
||
height: 2px;
|
||
background: #F9F9F9;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
}
|
||
#payout .account_size_section .account_seize_item:first-child .slider-container {
|
||
margin-top: 20px;
|
||
}
|
||
#payout .account_size_section .account_seize_item:nth-child(2) {
|
||
margin-top: 36px;
|
||
}
|
||
#payout .account_size_section .account_seize_item:nth-child(2) .slider-container {
|
||
margin-top: 0px;
|
||
}
|
||
#payout .account_size_section .account_seize_item:nth-child(2) .section-title {
|
||
font-size: 20px;
|
||
text-align: left;
|
||
margin-bottom: 20px;
|
||
}
|
||
#payout .account_size_section .account_seize_item:nth-child(3) {
|
||
margin-top: 60px;
|
||
}
|
||
#payout .account_size_section .account_seize_item:nth-child(3) .section-title {
|
||
margin-bottom: 30px;
|
||
}
|
||
#payout .account_size_section .account_seize_item:nth-child(3) p {
|
||
text-align: center;
|
||
margin-top: 20px;
|
||
font-size: 18px;
|
||
color: var(--aifo-light-gray1);
|
||
font-weight: 500;
|
||
}
|
||
#payout .slider-track-fill {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 0;
|
||
height: 2px;
|
||
background: #F98715;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
-webkit-transition: width 0.1s;
|
||
transition: width 0.1s;
|
||
}
|
||
#payout .slider-thumb {
|
||
position: absolute;
|
||
top: 50%;
|
||
padding: 12px 24px;
|
||
background: #F98715;
|
||
border-radius: 8px;
|
||
-webkit-transform: translate(-50%, -50%);
|
||
transform: translate(-50%, -50%);
|
||
cursor: -webkit-grab;
|
||
cursor: grab;
|
||
-webkit-transition: -webkit-transform 0.1s;
|
||
transition: -webkit-transform 0.1s;
|
||
transition: transform 0.1s;
|
||
transition: transform 0.1s, -webkit-transform 0.1s;
|
||
-webkit-box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
white-space: nowrap;
|
||
}
|
||
#payout .slider-thumb:active {
|
||
cursor: -webkit-grabbing;
|
||
cursor: grabbing;
|
||
-webkit-transform: translate(-50%, -50%) scale(1.05);
|
||
transform: translate(-50%, -50%) scale(1.05);
|
||
}
|
||
#payout .slider-labels {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
/* margin-bottom: 10px;
|
||
padding: 0 10px; */
|
||
}
|
||
#payout .slider-label {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #F9F9F9;
|
||
}
|
||
#payout {
|
||
/* .section-title {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #F9F9F9;
|
||
text-align: left;
|
||
margin-bottom: 15px;
|
||
} */
|
||
}
|
||
#payout .result-button {
|
||
width: 100%;
|
||
padding: 12px;
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
background: #F98715;
|
||
border: none;
|
||
border-radius: 12px;
|
||
cursor: pointer;
|
||
-webkit-transition: all 0.3s;
|
||
transition: all 0.3s;
|
||
-webkit-box-shadow: 0 6px 20px rgba(249, 135, 21, 0.4);
|
||
box-shadow: 0 6px 20px rgba(249, 135, 21, 0.4);
|
||
}
|
||
#payout .result-button:hover {
|
||
background: #e07812;
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
-webkit-box-shadow: 0 8px 25px rgba(249, 135, 21, 0.5);
|
||
box-shadow: 0 8px 25px rgba(249, 135, 21, 0.5);
|
||
}
|
||
#payout .result-button:active {
|
||
-webkit-transform: translateY(0);
|
||
transform: translateY(0);
|
||
}
|
||
@view-transition {
|
||
#payout {
|
||
navigation: auto;
|
||
}
|
||
}
|
||
#payout {
|
||
/* 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%;
|
||
}
|
||
#get-funded .btn-contain {
|
||
margin-top: 5rem;
|
||
margin-bottom: 0;
|
||
}
|
||
#get-funded .section-desc {
|
||
width: 57%;
|
||
}
|
||
#get-funded .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;
|
||
-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
||
}
|
||
#get-funded .section-title {
|
||
font-size: 20px;
|
||
text-align: left;
|
||
margin-bottom: 35px;
|
||
}
|
||
#get-funded .slider-label {
|
||
font-size: 15px;
|
||
}
|
||
#get-funded .slider-thumb {
|
||
left: 0%;
|
||
height: 35px;
|
||
line-height: 35px;
|
||
padding: 0 14px;
|
||
}
|
||
@media (max-width: 768px) {
|
||
#get-funded .account_size {
|
||
width: 100%;
|
||
height: auto;
|
||
}
|
||
#get-funded .account_size_section {
|
||
padding: 35px 24px;
|
||
}
|
||
#get-funded .section-desc {
|
||
width: 100%;
|
||
}
|
||
#get-funded .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;
|
||
}
|
||
#payout.payout-section .timeline-line {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 83px;
|
||
bottom: 83px;
|
||
width: 10px;
|
||
background-color: #231F20;
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-46%);
|
||
}
|
||
#payout.payout-section .timeline-line-mobile {
|
||
position: absolute;
|
||
left: 36px;
|
||
top: 40px;
|
||
bottom: 40px;
|
||
width: 2px;
|
||
background-color: rgba(249, 249, 249, 0.2);
|
||
}
|
||
#payout.payout-section .timeline-item {
|
||
position: relative;
|
||
margin-bottom: 56px;
|
||
}
|
||
#payout.payout-section .timeline-item:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
#payout.payout-section .step-card {
|
||
background-color: var(--bg-card);
|
||
border: 1px solid rgba(249, 249, 249, 0.08);
|
||
border-radius: 16px;
|
||
padding: 24px;
|
||
-webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
max-width: 360px;
|
||
}
|
||
#payout.payout-section .step-card:hover {
|
||
-webkit-transform: translateY(-3px);
|
||
transform: translateY(-3px);
|
||
border-color: rgba(249, 249, 249, 0.12);
|
||
-webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
||
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
||
}
|
||
#payout.payout-section .step-label {
|
||
color: var(--aifo-orange);
|
||
margin-bottom: 8px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
font-size: 30px;
|
||
}
|
||
#payout.payout-section .node-dot {
|
||
width: 20px;
|
||
height: 20px;
|
||
border-radius: 50%;
|
||
background-color: var(--aifo-orange);
|
||
}
|
||
#payout.payout-section .text-right {
|
||
text-align: left !important;
|
||
}
|
||
@keyframes pulse {
|
||
0%, 100% {
|
||
opacity: 1;
|
||
}
|
||
50% {
|
||
opacity: 0.5;
|
||
}
|
||
}
|
||
#payout.payout-section .node-icon {
|
||
width: 48px;
|
||
height: 48px;
|
||
border-radius: 50%;
|
||
background-color: #3a2413;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
|
||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
|
||
position: absolute;
|
||
}
|
||
#payout.payout-section .node-icon.to_right {
|
||
right: -20px;
|
||
top: -15px;
|
||
}
|
||
#payout.payout-section .node-icon.to_left {
|
||
left: -20px;
|
||
}
|
||
#payout.payout-section .node-icon img {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
@media (max-width: 768px) {
|
||
#payout.payout-section .col-lg-5 {
|
||
width: 91%;
|
||
margin-left: 66px;
|
||
}
|
||
#payout.payout-section .node-dot {
|
||
position: absolute;
|
||
left: -24px;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
}
|
||
}
|
||
#payout.payout-section {
|
||
/* Sliding block */
|
||
}
|
||
#payout.payout-section .slider-container {
|
||
position: relative;
|
||
width: 100%;
|
||
height: 60px;
|
||
margin: 40px 0 20px 0;
|
||
}
|
||
#payout.payout-section .slider-track {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 0;
|
||
right: 0;
|
||
height: 2px;
|
||
background: #F9F9F9;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
}
|
||
#payout.payout-section .slider-track-fill {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 0;
|
||
height: 2px;
|
||
background: #F98715;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
-webkit-transition: width 0.1s;
|
||
transition: width 0.1s;
|
||
}
|
||
#payout.payout-section .slider-thumb {
|
||
position: absolute;
|
||
top: 50%;
|
||
padding: 12px 24px;
|
||
background: #F98715;
|
||
border-radius: 8px;
|
||
-webkit-transform: translate(-50%, -50%);
|
||
transform: translate(-50%, -50%);
|
||
cursor: -webkit-grab;
|
||
cursor: grab;
|
||
-webkit-transition: -webkit-transform 0.1s;
|
||
transition: -webkit-transform 0.1s;
|
||
transition: transform 0.1s;
|
||
transition: transform 0.1s, -webkit-transform 0.1s;
|
||
-webkit-box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
white-space: nowrap;
|
||
}
|
||
#payout.payout-section .slider-thumb:active {
|
||
cursor: -webkit-grabbing;
|
||
cursor: grabbing;
|
||
-webkit-transform: translate(-50%, -50%) scale(1.05);
|
||
transform: translate(-50%, -50%) scale(1.05);
|
||
}
|
||
#payout.payout-section .slider-labels {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
margin-bottom: 10px;
|
||
padding: 0 10px;
|
||
}
|
||
#payout.payout-section .slider-label {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #F9F9F9;
|
||
}
|
||
#payout.payout-section .section-title {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #F9F9F9;
|
||
text-align: left;
|
||
margin-bottom: 15px;
|
||
}
|
||
#payout.payout-section .result-button {
|
||
width: 100%;
|
||
padding: 12px;
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
background: #F98715;
|
||
border: none;
|
||
border-radius: 12px;
|
||
cursor: pointer;
|
||
-webkit-transition: all 0.3s;
|
||
transition: all 0.3s;
|
||
-webkit-box-shadow: 0 6px 20px rgba(249, 135, 21, 0.4);
|
||
box-shadow: 0 6px 20px rgba(249, 135, 21, 0.4);
|
||
}
|
||
#payout.payout-section .result-button:hover {
|
||
background: #e07812;
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
-webkit-box-shadow: 0 8px 25px rgba(249, 135, 21, 0.5);
|
||
box-shadow: 0 8px 25px rgba(249, 135, 21, 0.5);
|
||
}
|
||
#payout.payout-section .result-button:active {
|
||
-webkit-transform: translateY(0);
|
||
transform: translateY(0);
|
||
}
|
||
@view-transition {
|
||
#payout.payout-section {
|
||
navigation: auto;
|
||
}
|
||
}
|
||
#payout.payout-section {
|
||
/* Sliding block end */
|
||
}
|
||
|
||
/* FAQ Section */
|
||
.faq-section {
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.faq-section .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-section .faq-item {
|
||
background: -webkit-gradient(linear, left top, right top, from(#0d0d0d), to(#121212));
|
||
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;
|
||
-webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.faq-section .faq-item:hover {
|
||
-webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
|
||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
|
||
}
|
||
.faq-section .faq-header {
|
||
width: 100%;
|
||
background: transparent;
|
||
border: none;
|
||
padding: 18px 24px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
cursor: pointer;
|
||
-webkit-transition: background-color 0.3s ease;
|
||
transition: background-color 0.3s ease;
|
||
}
|
||
.faq-section .faq-header:hover {
|
||
background-color: rgba(249, 249, 249, 0.02);
|
||
}
|
||
.faq-section .faq-question {
|
||
font-weight: 600;
|
||
font-size: 22px;
|
||
color: rgba(249, 249, 249, 0.9);
|
||
text-align: left;
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
flex: 1;
|
||
padding-right: 16px;
|
||
}
|
||
.faq-section .faq-icon-box {
|
||
width: 28px;
|
||
height: 28px;
|
||
background-color: var(--aifo-orange);
|
||
border-radius: 8px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
-webkit-transition: -webkit-transform 0.25s ease;
|
||
transition: -webkit-transform 0.25s ease;
|
||
transition: transform 0.25s ease;
|
||
transition: transform 0.25s ease, -webkit-transform 0.25s ease;
|
||
}
|
||
.faq-section .faq-icon {
|
||
color: white;
|
||
font-size: 20px;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
}
|
||
.faq-section .icon.icon-arrow {
|
||
width: auto;
|
||
height: auto;
|
||
color: var(--aifo-white);
|
||
font-size: 12px;
|
||
}
|
||
.faq-section .faq-item.active .faq-icon-box {
|
||
-webkit-transform: rotate(45deg);
|
||
transform: rotate(45deg);
|
||
}
|
||
.faq-section .faq-item.active .faq-icon-box.rotate90 {
|
||
-webkit-transform: rotate(90deg);
|
||
transform: rotate(90deg);
|
||
}
|
||
.faq-section .faq-body {
|
||
max-height: 0;
|
||
overflow: hidden;
|
||
-webkit-transition: max-height 0.25s ease, opacity 0.25s ease;
|
||
transition: max-height 0.25s ease, opacity 0.25s ease;
|
||
opacity: 0;
|
||
}
|
||
.faq-section .faq-item.active .faq-body {
|
||
max-height: 500px;
|
||
opacity: 1;
|
||
}
|
||
.faq-section .faq-answer {
|
||
padding: 0 24px 24px 24px;
|
||
border-top: 1px solid rgba(249, 249, 249, 0.06);
|
||
/* margin-top: 12px; */
|
||
padding-top: 12px;
|
||
}
|
||
.faq-section .custom-pagination {
|
||
margin-top: 50px;
|
||
}
|
||
.faq-section .faq-answer p {
|
||
color: var(--white);
|
||
font-size: 20px;
|
||
line-height: 1.6;
|
||
margin-bottom: 12px;
|
||
}
|
||
.faq-section .see-more-link {
|
||
color: var(--orange-primary);
|
||
text-decoration: none;
|
||
font-weight: 600;
|
||
-webkit-transition: color 0.3s ease;
|
||
transition: color 0.3s ease;
|
||
}
|
||
.faq-section .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-section .faq-answer {
|
||
border-top: unset;
|
||
}
|
||
.faq-section .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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
position: relative;
|
||
}
|
||
|
||
.pm-track {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
width: -webkit-max-content;
|
||
width: -moz-max-content;
|
||
width: max-content;
|
||
-webkit-animation: scroll 20s linear infinite;
|
||
animation: scroll 20s linear infinite;
|
||
}
|
||
|
||
.pm-marquee:hover .pm-track {
|
||
-webkit-animation-play-state: paused;
|
||
animation-play-state: paused;
|
||
}
|
||
|
||
.pm-group {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
gap: 24px;
|
||
padding-right: 24px;
|
||
}
|
||
|
||
.pm-item {
|
||
background: #ffffff;
|
||
border-radius: 14px;
|
||
-webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
|
||
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
|
||
height: 96px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
-webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
|
||
transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
|
||
padding: 8px 20px;
|
||
}
|
||
|
||
.pm-item img {
|
||
height: 100%;
|
||
}
|
||
|
||
.pm-item:hover {
|
||
-webkit-transform: translateY(-3px);
|
||
transform: translateY(-3px);
|
||
-webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
|
||
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: -webkit-gradient(linear, left top, right top, from(#070707), to(transparent));
|
||
background: linear-gradient(to right, #070707, transparent);
|
||
}
|
||
|
||
.pm-fade-right {
|
||
right: 0;
|
||
background: -webkit-gradient(linear, right top, left top, from(#070707), to(transparent));
|
||
background: linear-gradient(to left, #070707, transparent);
|
||
}
|
||
|
||
@-webkit-keyframes scroll {
|
||
from {
|
||
-webkit-transform: translateX(0);
|
||
transform: translateX(0);
|
||
}
|
||
to {
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-50%);
|
||
}
|
||
}
|
||
|
||
@keyframes scroll {
|
||
from {
|
||
-webkit-transform: translateX(0);
|
||
transform: translateX(0);
|
||
}
|
||
to {
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-50%);
|
||
}
|
||
}
|
||
/* Payment Methods Section end */
|
||
/* affiliate Section start */
|
||
.affiliate-section {
|
||
width: 100%;
|
||
min-height: 100%;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: 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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||
-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
||
-webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
|
||
transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
|
||
margin-bottom: 30px;
|
||
}
|
||
|
||
.tier-card:hover {
|
||
-webkit-transform: translateY(-8px);
|
||
transform: translateY(-8px);
|
||
-webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
|
||
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 {
|
||
-webkit-box-shadow: inset 0 5px 10px 0 rgba(231, 230, 229, 0.6), 0 5px 10px 0 rgba(235, 227, 219, 0.6);
|
||
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: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
|
||
-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 {
|
||
-webkit-box-shadow: inset 0 5px 10px 0 rgba(128, 50, 39, 0.6), 0 5px 10px 0 rgba(128, 50, 39, 0.6);
|
||
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%;
|
||
-webkit-transform: translateX(-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 {
|
||
-webkit-box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 5px 10px 0 rgba(249, 135, 21, 0.6);
|
||
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: -webkit-fit-content;
|
||
width: -moz-fit-content;
|
||
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: -webkit-fit-content;
|
||
width: -moz-fit-content;
|
||
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;
|
||
-webkit-box-shadow: 0 8px 24px rgba(255, 122, 26, 0.4);
|
||
box-shadow: 0 8px 24px rgba(255, 122, 26, 0.4);
|
||
-webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-filter 0.2s ease;
|
||
transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-filter 0.2s ease;
|
||
transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
|
||
transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-filter 0.2s ease;
|
||
border: none;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.cta-button:hover {
|
||
-webkit-transform: scale(1.03);
|
||
transform: scale(1.03);
|
||
-webkit-box-shadow: 0 12px 32px rgba(255, 122, 26, 0.5);
|
||
box-shadow: 0 12px 32px rgba(255, 122, 26, 0.5);
|
||
-webkit-filter: brightness(1.1);
|
||
filter: brightness(1.1);
|
||
color: #ffffff;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.cta-button:focus {
|
||
outline: none;
|
||
-webkit-box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.3);
|
||
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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
|
||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.journey-card:hover {
|
||
-webkit-transform: translateY(-4px);
|
||
transform: translateY(-4px);
|
||
-webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
||
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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-webkit-transition: -webkit-box-shadow 0.3s ease;
|
||
transition: -webkit-box-shadow 0.3s ease;
|
||
transition: box-shadow 0.3s ease;
|
||
transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
|
||
}
|
||
|
||
.journey-card:hover .journey-icon-box {
|
||
-webkit-box-shadow: 0 0 0 1px rgba(249, 135, 21, 0.2), 0 8px 22px rgba(249, 135, 21, 0.12);
|
||
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; */
|
||
}
|
||
.top-earners .earner-card {
|
||
background-color: var(--bg-card);
|
||
border: 1px solid rgba(249, 249, 249, 0.08);
|
||
border-radius: 13px;
|
||
/* padding: 24px; */
|
||
padding: 30px 40px;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
-webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
|
||
}
|
||
.top-earners .earner-card:hover {
|
||
-webkit-transform: translateY(-3px);
|
||
transform: translateY(-3px);
|
||
border-color: rgba(249, 249, 249, 0.12);
|
||
-webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
||
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
|
||
}
|
||
.top-earners .avatar-circle {
|
||
width: 8.75rem;
|
||
height: 8.75rem;
|
||
border-radius: 50%;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
font-weight: bold;
|
||
font-size: 24px;
|
||
color: white;
|
||
}
|
||
.top-earners .avatar-circle img {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: 50%;
|
||
}
|
||
.top-earners .national_flag {
|
||
width: 33px;
|
||
height: 33px;
|
||
margin-left: 12px;
|
||
}
|
||
.top-earners .national_flag img {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.top-earners .national_flag span {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: 50%;
|
||
}
|
||
.top-earners .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;
|
||
}
|
||
.top-earners .flex-grow-1 {
|
||
margin-left: 40px;
|
||
}
|
||
.top-earners .font-weight-bold {
|
||
font-size: 2.5rem;
|
||
}
|
||
.top-earners .payouts_total {
|
||
font-size: 1.45rem;
|
||
color: rgba(249, 249, 249, 0.7);
|
||
}
|
||
@media (max-width: 768px) {
|
||
.top-earners .avatar-circle {
|
||
width: 5rem;
|
||
height: 5rem;
|
||
}
|
||
.top-earners .earner-card {
|
||
padding: 24px;
|
||
}
|
||
.top-earners .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%, rgb(7, 7, 7) 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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
text-align: center;
|
||
position: relative;
|
||
overflow: hidden;
|
||
-webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
|
||
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
|
||
-webkit-transition: all 0.3s ease;
|
||
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-card .award-desc {
|
||
font-size: 13px;
|
||
color: rgba(249, 249, 249, 0.65);
|
||
line-height: 1.5;
|
||
width: 154px;
|
||
}
|
||
.award-card .carousel-item {
|
||
position: relative;
|
||
display: none;
|
||
float: left;
|
||
width: 100%;
|
||
margin-right: -100%;
|
||
-webkit-backface-visibility: hidden;
|
||
backface-visibility: hidden;
|
||
transition: -webkit-transform 0.6s ease-in-out;
|
||
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
||
transition: transform 0.6s ease-in-out;
|
||
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
|
||
}
|
||
.award-card .award-card:hover {
|
||
-webkit-transform: translateY(-4px);
|
||
transform: translateY(-4px);
|
||
border-color: rgba(249, 249, 249, 0.14);
|
||
-webkit-box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
|
||
box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
|
||
}
|
||
.award-card .award-icon-box {
|
||
width: 48px;
|
||
height: 48px;
|
||
background-color: #000;
|
||
border-radius: 12px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
margin-bottom: 12px;
|
||
z-index: 10;
|
||
position: relative;
|
||
}
|
||
|
||
/* Global Offers Section */
|
||
.feedback-section .header-info {
|
||
position: relative;
|
||
}
|
||
.feedback-section .header-info .growth-controls {
|
||
position: absolute;
|
||
right: 15px;
|
||
top: 39px;
|
||
}
|
||
.feedback-section .carousel.slide {
|
||
margin: 80px 0;
|
||
}
|
||
.feedback-section .mb-0 {
|
||
color: var(--white);
|
||
line-height: 1.6;
|
||
}
|
||
.feedback-section .review-card {
|
||
/* background-color: var(--bg-card); */
|
||
border-radius: 15px;
|
||
padding: 24px;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
height: 100%;
|
||
background: url(../images/backgrounds/card_bg_1.png) center/100% 100% no-repeat;
|
||
background-size: 100% 100%;
|
||
}
|
||
.feedback-section .review-card:hover {
|
||
-webkit-transform: translateY(-3px);
|
||
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); */
|
||
}
|
||
.feedback-section .review-avatar {
|
||
width: 70px;
|
||
height: 70px;
|
||
border-radius: 50%;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
}
|
||
.feedback-section .review-avatar img {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: 50%;
|
||
}
|
||
.feedback-section .name-pill {
|
||
padding: 6px 12px;
|
||
color: rgba(249, 249, 249, 0.75);
|
||
font-size: 0.75rem;
|
||
background-color: #31200f;
|
||
border-radius: 10px;
|
||
}
|
||
.feedback-section .national_flag {
|
||
width: 33px;
|
||
height: 33px;
|
||
margin-left: 12px;
|
||
}
|
||
.feedback-section .national_flag img {
|
||
width: 100%;
|
||
height: 100%;
|
||
line-height: unset;
|
||
}
|
||
.feedback-section .national_flag span {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: 50%;
|
||
line-height: unset;
|
||
}
|
||
.feedback-section .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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
border: none;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.carousel-control-custom:hover:not(:disabled) {
|
||
background-color: var(--orange-hover);
|
||
-webkit-transform: translateY(-2px);
|
||
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 */
|
||
}
|
||
.key-states-section .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;
|
||
}
|
||
.key-states-section {
|
||
/* Content container */
|
||
}
|
||
.key-states-section .content-wrapper {
|
||
position: relative;
|
||
z-index: 1;
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
padding: 0 20px;
|
||
}
|
||
.key-states-section {
|
||
/* Title row */
|
||
}
|
||
.key-states-section .header-row {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
margin-bottom: 85px;
|
||
gap: 40px;
|
||
}
|
||
.key-states-section .title-left h2 {
|
||
font-size: 4.6875rem;
|
||
font-weight: 600;
|
||
line-height: 1.2;
|
||
margin: 0;
|
||
}
|
||
.key-states-section .title-left .key-word {
|
||
color: #FFFFFF;
|
||
}
|
||
.key-states-section .title-left .states-word {
|
||
color: #F98715;
|
||
}
|
||
.key-states-section .description-right {
|
||
max-width: 516PX;
|
||
text-align: right;
|
||
}
|
||
.key-states-section .description-right p {
|
||
font-size: 24PX;
|
||
line-height: 1.5;
|
||
color: rgba(255, 255, 255, 0.8);
|
||
margin: 0;
|
||
padding-top: 16px;
|
||
}
|
||
.key-states-section .description-right .highlight {
|
||
color: #F98715;
|
||
font-weight: 500;
|
||
}
|
||
.key-states-section {
|
||
/* Data card */
|
||
}
|
||
.key-states-section .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;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.key-states-section .stats-card:hover {
|
||
border-color: rgba(255, 255, 255, 0.2);
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
-webkit-box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
|
||
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
|
||
}
|
||
.key-states-section {
|
||
/* Orange glow at bottom inside card */
|
||
}
|
||
.key-states-section .stats-card::before {
|
||
content: "";
|
||
position: absolute;
|
||
bottom: 0;
|
||
left: 50%;
|
||
-webkit-transform: translateX(-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;
|
||
-webkit-filter: blur(40px);
|
||
filter: blur(40px);
|
||
-webkit-animation: glow-pulse 5s ease-in-out infinite;
|
||
animation: glow-pulse 5s ease-in-out infinite;
|
||
}
|
||
@-webkit-keyframes glow-pulse {
|
||
0%, 100% {
|
||
opacity: 0.3;
|
||
}
|
||
50% {
|
||
opacity: 0.5;
|
||
}
|
||
}
|
||
@keyframes glow-pulse {
|
||
0%, 100% {
|
||
opacity: 0.3;
|
||
}
|
||
50% {
|
||
opacity: 0.5;
|
||
}
|
||
}
|
||
.key-states-section .stats-row {
|
||
position: relative;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-ms-flex-pack: distribute;
|
||
justify-content: space-around;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
z-index: 1;
|
||
}
|
||
.key-states-section {
|
||
/* Data item */
|
||
}
|
||
.key-states-section .stat-item {
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
flex: 1;
|
||
text-align: center;
|
||
padding: 0 18px;
|
||
position: relative;
|
||
}
|
||
.key-states-section .stat-item:first-child {
|
||
-webkit-box-flex: 0;
|
||
-ms-flex: none;
|
||
flex: none;
|
||
width: 354px;
|
||
}
|
||
.key-states-section .stat-item:not(:last-child)::after {
|
||
content: "";
|
||
position: absolute;
|
||
right: 0;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
width: 1px;
|
||
height: 60px;
|
||
background: rgba(255, 255, 255, 0.13);
|
||
}
|
||
.key-states-section .stat-value {
|
||
font-size: 34px;
|
||
font-weight: 800;
|
||
color: #FFFFFF;
|
||
line-height: 1.2;
|
||
margin-bottom: 8px;
|
||
}
|
||
.key-states-section .stat-item:first-child .stat-value {
|
||
font-size: 30px;
|
||
}
|
||
.key-states-section .stat-value-large {
|
||
font-size: 34px;
|
||
display: block;
|
||
}
|
||
.key-states-section .stat-value-unit {
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
display: block;
|
||
margin-top: 2px;
|
||
}
|
||
.key-states-section .stat-sub {
|
||
font-size: 12px;
|
||
font-weight: 400;
|
||
color: rgba(255, 255, 255, 0.6);
|
||
line-height: 1.4;
|
||
}
|
||
.key-states-section {
|
||
/* 响应式 - 平板 */
|
||
}
|
||
@media (max-width: 991px) {
|
||
.key-states-section .header-row {
|
||
gap: 30px;
|
||
}
|
||
.key-states-section .title-left h2 {
|
||
font-size: 36px;
|
||
}
|
||
.key-states-section .description-right {
|
||
max-width: 320px;
|
||
}
|
||
.key-states-section .description-right p {
|
||
font-size: 14px;
|
||
}
|
||
.key-states-section .stat-item {
|
||
padding: 0 15px;
|
||
}
|
||
.key-states-section .stat-value {
|
||
font-size: 22px;
|
||
}
|
||
.key-states-section .stat-item:first-child .stat-value {
|
||
font-size: 26px;
|
||
}
|
||
}
|
||
.key-states-section {
|
||
/* 响应式 - 手机 */
|
||
}
|
||
@media (max-width: 768px) {
|
||
.key-states-section .stats-card {
|
||
background: url(../images/backgrounds/bg_key_states_mb.png) center/100% 100% no-repeat;
|
||
}
|
||
.key-states-section .header-row {
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: start;
|
||
-ms-flex-align: start;
|
||
align-items: flex-start;
|
||
gap: 20px;
|
||
margin-bottom: 28px;
|
||
height: 100%;
|
||
display: block;
|
||
}
|
||
.key-states-section .header-row .title-left {
|
||
margin-bottom: 25px;
|
||
text-align: center;
|
||
}
|
||
.key-states-section .description-right p {
|
||
font-size: 14px;
|
||
text-align: center;
|
||
}
|
||
.key-states-section .title-left h2 {
|
||
font-size: 32px;
|
||
}
|
||
.key-states-section .description-right {
|
||
max-width: 100%;
|
||
text-align: left;
|
||
}
|
||
.key-states-section .stats-card {
|
||
padding: 81px 16px;
|
||
}
|
||
.key-states-section .stats-row {
|
||
-ms-flex-wrap: wrap;
|
||
flex-wrap: wrap;
|
||
gap: 24px;
|
||
}
|
||
.key-states-section .stat-item {
|
||
-webkit-box-flex: 0;
|
||
-ms-flex: 0 0 calc(50% - 12px);
|
||
flex: 0 0 calc(50% - 12px);
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: auto;
|
||
flex: auto;
|
||
padding: 0;
|
||
width: 100%;
|
||
margin-bottom: 30px;
|
||
}
|
||
.key-states-section .stat-item:not(:last-child)::after {
|
||
content: " ";
|
||
position: absolute;
|
||
right: 0;
|
||
bottom: -26px;
|
||
top: unset;
|
||
left: 50%;
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-50%);
|
||
height: 1px;
|
||
width: 60px;
|
||
background: rgba(255, 255, 255, 0.13);
|
||
}
|
||
.key-states-section .stat-value {
|
||
margin-bottom: 20px;
|
||
}
|
||
.key-states-section .stat-item:first-child {
|
||
width: 100%;
|
||
}
|
||
}
|
||
@media (max-width: 480px) {
|
||
.key-states-section .title-left h2 {
|
||
font-size: 28px;
|
||
}
|
||
.key-states-section .description-right p {
|
||
font-size: 13px;
|
||
}
|
||
.key-states-section .stat-value {
|
||
font-size: 20px;
|
||
}
|
||
.key-states-section .stat-item:first-child .stat-value {
|
||
font-size: 24px;
|
||
}
|
||
.key-states-section .stat-value-large {
|
||
font-size: 24px;
|
||
}
|
||
.key-states-section .stat-value-unit {
|
||
font-size: 14px;
|
||
}
|
||
.key-states-section .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: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
z-index: 9999;
|
||
backdrop-filter: blur(2px);
|
||
}
|
||
|
||
.challenge-modal {
|
||
background: #1a1a1a;
|
||
padding: 30px 40px;
|
||
border-radius: 12px;
|
||
-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
|
||
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
|
||
text-align: center;
|
||
max-width: 400px;
|
||
-webkit-transform: translateY(-20px);
|
||
transform: translateY(-20px);
|
||
-webkit-animation: modalSlideIn 0.3s ease-out forwards;
|
||
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;
|
||
-webkit-transition: background-color 0.3s;
|
||
transition: background-color 0.3s;
|
||
}
|
||
|
||
.modal-ok-btn:hover {
|
||
background: #e67e22;
|
||
}
|
||
|
||
.expand-arrow .arraw-icon-table {
|
||
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||
transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-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;
|
||
-webkit-transition: all 0.3s;
|
||
transition: all 0.3s;
|
||
-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||
}
|
||
|
||
.challenge-button:hover {
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
|
||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
|
||
background: linear-gradient(135deg, #e67e22, #d35400);
|
||
}
|
||
|
||
@-webkit-keyframes modalSlideIn {
|
||
from {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-20px);
|
||
transform: translateY(-20px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes modalSlideIn {
|
||
from {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-20px);
|
||
transform: translateY(-20px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
.row-icon {
|
||
margin-right: 10px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
}
|
||
|
||
.chall-icon {
|
||
width: 20px;
|
||
height: 20px;
|
||
}
|
||
|
||
.arraw-icon-table {
|
||
width: 16px;
|
||
height: 16px;
|
||
}
|
||
|
||
/* 待完善 end */
|
||
/* article-content-section */
|
||
.article-content-section {
|
||
/* 左侧菜单卡片 */
|
||
}
|
||
.article-content-section .menu-card {
|
||
background: #0e0e0e;
|
||
border-radius: 12px;
|
||
border: 1px solid var(--border-dark);
|
||
-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
|
||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
|
||
padding: 35px 15px;
|
||
margin-bottom: 24px;
|
||
}
|
||
.article-content-section .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.1);
|
||
}
|
||
.article-content-section .menu-list {
|
||
list-style: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
.article-content-section .menu-item {
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
padding: 0 8px;
|
||
font-size: 16px;
|
||
color: var(--aifo-white);
|
||
cursor: pointer;
|
||
-webkit-transition: all 0.2s ease;
|
||
transition: all 0.2s ease;
|
||
border-radius: 6px;
|
||
position: relative;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
align-items: center;
|
||
margin: 8px 0;
|
||
}
|
||
.article-content-section .menu-item .toc-link {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
width: 100%;
|
||
color: var(--aifo-white);
|
||
}
|
||
.article-content-section .menu-item .toc-link .h-title {
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
flex: 1;
|
||
min-width: 0;
|
||
}
|
||
.article-content-section .menu-item .icon.icon-arrow {
|
||
width: auto;
|
||
height: auto;
|
||
color: var(--aifo-orange);
|
||
font-size: 12px;
|
||
}
|
||
.article-content-section .menu-item:hover {
|
||
background: rgba(255, 255, 255, 0.04);
|
||
}
|
||
.article-content-section .menu-item.active {
|
||
color: var(--aifo-orange);
|
||
font-weight: 600;
|
||
background: rgba(249, 135, 21, 0.08);
|
||
}
|
||
.article-content-section .menu-item.active .menu-item-chevron {
|
||
opacity: 1;
|
||
}
|
||
.article-content-section {
|
||
/* 右侧内容 */
|
||
}
|
||
.article-content-section .article-content {
|
||
max-width: 800px;
|
||
}
|
||
.article-content-section .article-content img {
|
||
width: 100%;
|
||
}
|
||
.article-content-section .breadcrumb-nav {
|
||
font-size: 20px;
|
||
color: var(--aifo-white);
|
||
margin-bottom: 65px;
|
||
}
|
||
.article-content-section .breadcrumb-nav .icon {
|
||
font-size: 12px;
|
||
color: var(--aifo-orange);
|
||
margin: 0 8px;
|
||
}
|
||
.article-content-section .breadcrumb-link {
|
||
color: var(--text-muted);
|
||
text-decoration: none;
|
||
-webkit-transition: color 0.2s ease;
|
||
transition: color 0.2s ease;
|
||
}
|
||
.article-content-section .breadcrumb-link:hover {
|
||
color: var(--aifo-orange);
|
||
}
|
||
.article-content-section .article-title {
|
||
font-size: 32px;
|
||
font-weight: 800;
|
||
color: var(--aifo-white);
|
||
margin: 0 0 20px 0;
|
||
}
|
||
.article-content-section .article-meta {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-ms-flex-wrap: wrap;
|
||
flex-wrap: wrap;
|
||
gap: 12px;
|
||
font-size: 14px;
|
||
color: var(--aifo-white);
|
||
margin-bottom: 60px;
|
||
}
|
||
.article-content-section .article-body {
|
||
font-size: 15px;
|
||
line-height: 1.7;
|
||
color: var(--text-secondary);
|
||
}
|
||
.article-content-section .article-body p {
|
||
margin-bottom: 14px;
|
||
}
|
||
.article-content-section .cta-button-wrapper {
|
||
text-align: center;
|
||
margin-top: 100px;
|
||
}
|
||
.article-content-section .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;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.article-content-section .cta-button:hover {
|
||
background: #E77E10;
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
-webkit-box-shadow: 0 8px 24px rgba(249, 135, 21, 0.35);
|
||
box-shadow: 0 8px 24px rgba(249, 135, 21, 0.35);
|
||
color: white;
|
||
text-decoration: none;
|
||
}
|
||
.article-content-section {
|
||
/* 相关文章区 */
|
||
}
|
||
.article-content-section .related-section {
|
||
padding: 56px 0 72px;
|
||
}
|
||
.article-content-section .related-title {
|
||
font-size: 24px;
|
||
font-weight: 700;
|
||
color: var(--aifo-white);
|
||
text-align: center;
|
||
margin-bottom: 24px;
|
||
}
|
||
.article-content-section .related-list {
|
||
max-width: 800px;
|
||
margin: 0 auto;
|
||
list-style: none;
|
||
padding: 0;
|
||
}
|
||
.article-content-section .related-item {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
background: var(--card-dark);
|
||
border: 1px solid var(--border-dark);
|
||
color: rgba(255, 255, 255, 0.8);
|
||
padding: 16px 18px;
|
||
border-radius: 12px;
|
||
margin-bottom: 12px;
|
||
cursor: pointer;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
text-decoration: none;
|
||
}
|
||
.article-content-section .related-item:hover {
|
||
background: #1a1a1a;
|
||
border-color: rgba(255, 255, 255, 0.18);
|
||
-webkit-transform: translateX(4px);
|
||
transform: translateX(4px);
|
||
text-decoration: none;
|
||
color: rgba(255, 255, 255, 0.9);
|
||
}
|
||
.article-content-section .related-item-text {
|
||
font-size: 15px;
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
flex: 1;
|
||
}
|
||
.article-content-section .related-item-icon {
|
||
width: 20px;
|
||
height: 20px;
|
||
background: var(--aifo-orange);
|
||
border-radius: 4px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
margin-left: 12px;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
}
|
||
.article-content-section .related-item-chevron {
|
||
width: 12px;
|
||
height: 12px;
|
||
}
|
||
.article-content-section .related-item:hover .related-item-icon {
|
||
-webkit-transform: scale(1.1);
|
||
transform: scale(1.1);
|
||
-webkit-box-shadow: 0 0 12px rgba(249, 135, 21, 0.4);
|
||
box-shadow: 0 0 12px rgba(249, 135, 21, 0.4);
|
||
}
|
||
.article-content-section {
|
||
/* CTA卡片区 */
|
||
}
|
||
.article-content-section .cta-section {
|
||
padding: 56px 0 72px;
|
||
}
|
||
.article-content-section .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;
|
||
-webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
|
||
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
|
||
padding: 40px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
min-height: 240px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||
}
|
||
.article-content-section .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;
|
||
}
|
||
.article-content-section .cta-content {
|
||
position: relative;
|
||
z-index: 2;
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
flex: 1;
|
||
max-width: 600px;
|
||
}
|
||
.article-content-section .cta-text-group {
|
||
margin-bottom: 24px;
|
||
}
|
||
.article-content-section .cta-title {
|
||
font-size: 32px;
|
||
font-weight: 700;
|
||
color: white;
|
||
margin: 0 0 12px 0;
|
||
line-height: 1.2;
|
||
}
|
||
.article-content-section .cta-title-highlight {
|
||
background: linear-gradient(135deg, #F98715 0%, #FF8C00 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
.article-content-section .cta-subtitle {
|
||
font-size: 15px;
|
||
color: rgba(255, 255, 255, 0.8);
|
||
margin: 0;
|
||
}
|
||
.article-content-section .cta-buttons {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
gap: 12px;
|
||
-ms-flex-wrap: wrap;
|
||
flex-wrap: wrap;
|
||
}
|
||
.article-content-section .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;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
}
|
||
.article-content-section .cta-primary-btn:hover {
|
||
background: #E77E10;
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
-webkit-box-shadow: 0 8px 24px rgba(249, 135, 21, 0.45);
|
||
box-shadow: 0 8px 24px rgba(249, 135, 21, 0.45);
|
||
}
|
||
.article-content-section .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;
|
||
-webkit-transition: all 0.3s ease;
|
||
transition: all 0.3s ease;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
.article-content-section .cta-secondary-btn:hover {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border-color: rgba(255, 255, 255, 0.5);
|
||
-webkit-transform: translateY(-2px);
|
||
transform: translateY(-2px);
|
||
}
|
||
.article-content-section .cta-secondary-btn svg {
|
||
-webkit-transition: -webkit-transform 0.3s ease;
|
||
transition: -webkit-transform 0.3s ease;
|
||
transition: transform 0.3s ease;
|
||
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
|
||
}
|
||
.article-content-section .cta-secondary-btn:hover svg {
|
||
-webkit-transform: translateX(3px);
|
||
transform: translateX(3px);
|
||
}
|
||
.article-content-section .cta-decoration {
|
||
position: absolute;
|
||
right: 40px;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
z-index: 1;
|
||
opacity: 0.7;
|
||
}
|
||
.article-content-section .row > .col-lg-3,
|
||
.article-content-section .row > .col-md-4 {
|
||
overflow: visible !important;
|
||
}
|
||
.article-content-section .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-section .article_content::-webkit-scrollbar {
|
||
width: 8px;
|
||
}
|
||
.article-content-section .article_content::-webkit-scrollbar-thumb {
|
||
background: #F98715;
|
||
border-radius: 5px;
|
||
}
|
||
.article-content-section h1,
|
||
.article-content-section .h1 {
|
||
font-size: 2.6875rem;
|
||
}
|
||
.article-content-section {
|
||
/* 修复 sticky 的 CSS */
|
||
}
|
||
.article-content-section .sticky-element {
|
||
position: sticky;
|
||
top: 0;
|
||
background: red !important; /* 确保元素可见 */
|
||
z-index: 9999 !important;
|
||
}
|
||
.article-content-section {
|
||
/* 确保父元素没有限制 */
|
||
}
|
||
.article-content-section .row.align-items-start {
|
||
/* 移除 flex 相关属性或调整 */
|
||
display: block; /* 或者保持 flex 但调整 */
|
||
}
|
||
.article-content-section {
|
||
/* 或者给父元素添加高度限制 */
|
||
}
|
||
.article-content-section .col-lg-3.col-md-4 {
|
||
height: -webkit-fit-content;
|
||
height: -moz-fit-content;
|
||
height: fit-content;
|
||
}
|
||
.article-content-section {
|
||
/* 处理 flex 布局下的 sticky */
|
||
}
|
||
.article-content-section .row.d-flex .sticky-element {
|
||
-ms-flex-item-align: start;
|
||
align-self: flex-start; /* 重要! */
|
||
}
|
||
.article-content-section .aifo-logo {
|
||
-webkit-filter: drop-shadow(0 0 25px rgba(249, 135, 21, 0.6));
|
||
filter: drop-shadow(0 0 25px rgba(249, 135, 21, 0.6));
|
||
}
|
||
@media (min-width: 992px) {
|
||
.article-content-section .col-lg-9 {
|
||
max-width: 700px;
|
||
}
|
||
.article-content-section .col-lg-3 {
|
||
-webkit-box-flex: unset;
|
||
-ms-flex: unset;
|
||
flex: unset;
|
||
max-width: unset;
|
||
width: 310px;
|
||
}
|
||
}
|
||
@media (max-width: 991px) {
|
||
.article-content-section .cta-decoration {
|
||
right: 20px;
|
||
opacity: 0.4;
|
||
}
|
||
.article-content-section .aifo-logo {
|
||
width: 100px;
|
||
height: 100px;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.article-content-section .article-title {
|
||
font-size: 26px;
|
||
}
|
||
.article-content-section .menu-item {
|
||
font-size: 18px;
|
||
}
|
||
.article-content-section .breadcrumb-nav {
|
||
font-size: 18px;
|
||
color: var(--aifo-white);
|
||
margin-bottom: 30px;
|
||
}
|
||
.article-content-section .article-meta {
|
||
margin-bottom: 30px;
|
||
}
|
||
.article-content-section .menu-card {
|
||
padding: 12px;
|
||
}
|
||
.article-content-section .main-content {
|
||
padding: 32px 0 48px;
|
||
}
|
||
.article-content-section .related-section {
|
||
padding: 40px 0 56px;
|
||
}
|
||
.article-content-section .cta-section {
|
||
padding: 40px 0 56px;
|
||
}
|
||
.article-content-section .cta-card {
|
||
padding: 24px 20px;
|
||
min-height: 200px;
|
||
}
|
||
.article-content-section .cta-title {
|
||
font-size: 24px;
|
||
}
|
||
.article-content-section .cta-subtitle {
|
||
font-size: 14px;
|
||
}
|
||
.article-content-section .cta-buttons {
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
}
|
||
.article-content-section .cta-primary-btn,
|
||
.article-content-section .cta-secondary-btn {
|
||
width: 100%;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
}
|
||
.article-content-section .cta-decoration {
|
||
right: 10px;
|
||
top: 20px;
|
||
-webkit-transform: none;
|
||
transform: none;
|
||
}
|
||
.article-content-section .aifo-logo {
|
||
width: 80px;
|
||
height: 80px;
|
||
}
|
||
.article-content-section .article-body p {
|
||
text-align: justify;
|
||
text-justify: inter-word;
|
||
}
|
||
}
|
||
|
||
.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;
|
||
}
|
||
.section-challenge .content-container {
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
padding: 60px 20px 80px;
|
||
}
|
||
.section-challenge .challenge-hero {
|
||
text-align: center;
|
||
margin-bottom: 48px;
|
||
}
|
||
.section-challenge .hero-title-wrapper {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
gap: 20px;
|
||
margin-bottom: 20px;
|
||
}
|
||
.section-challenge .hero-title-text {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
}
|
||
.section-challenge .hero-title-choose {
|
||
font-size: 4.6875rem;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
line-height: 1.1;
|
||
}
|
||
.section-challenge .hero-title-your-challenge {
|
||
font-size: 4.6875rem;
|
||
font-weight: 700;
|
||
line-height: 1.1;
|
||
}
|
||
.section-challenge .hero-title-your {
|
||
color: #F9F9F9;
|
||
}
|
||
.section-challenge .hero-title-challenge {
|
||
color: #F98715;
|
||
}
|
||
.section-challenge .hero-trophy-badge {
|
||
width: 4.375rem;
|
||
height: 4.375rem;
|
||
border-radius: 8px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
}
|
||
.section-challenge .hero-trophy-badge img {
|
||
width: 100%;
|
||
}
|
||
.section-challenge .hero-subtitle {
|
||
font-size: 1.5rem;
|
||
color: rgba(249, 249, 249, 0.7);
|
||
line-height: 1.6;
|
||
max-width: 700px;
|
||
margin: 0 auto;
|
||
}
|
||
.section-challenge .hero-subtitle-highlight {
|
||
color: #F98715;
|
||
}
|
||
.section-challenge {
|
||
/* 2) Program Tabs */
|
||
}
|
||
.section-challenge .challenge-tabs {
|
||
max-width: 780px;
|
||
margin: 0 auto 32px;
|
||
background: #0B0B0B;
|
||
border-radius: 999px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
gap: 5px;
|
||
padding: 15px 12px;
|
||
}
|
||
.section-challenge .is-hidden {
|
||
display: none !important;
|
||
}
|
||
.section-challenge .challenge-tab {
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
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;
|
||
-webkit-transition: all 0.2s ease;
|
||
transition: all 0.2s ease;
|
||
}
|
||
.section-challenge .challenge-tab:hover {
|
||
color: #F9F9F9;
|
||
}
|
||
.section-challenge .challenge-tab.active {
|
||
background: #F9F9F9;
|
||
color: #000000;
|
||
}
|
||
.section-challenge {
|
||
/* .btn:focus-visible {
|
||
outline: none;
|
||
box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
|
||
} */
|
||
}
|
||
.section-challenge button.challenge-tab:focus, .section-challenge button.instant-tab:focus, .section-challenge button.start-challenge-btn:focus, .section-challenge button.mobile-size-btn:focus {
|
||
outline: none;
|
||
}
|
||
.section-challenge {
|
||
/* 3) Instant Sub Tabs */
|
||
}
|
||
.section-challenge .instant-subtabs {
|
||
max-width: 460px;
|
||
width: 460px;
|
||
margin: 0 auto 32px;
|
||
background: #0B0B0B;
|
||
border-radius: 999px;
|
||
padding: 5px 8px;
|
||
display: none;
|
||
gap: 6px;
|
||
}
|
||
.section-challenge .instant-subtabs.show {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
}
|
||
.section-challenge .instant-tab {
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
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;
|
||
-webkit-transition: all 0.2s ease;
|
||
transition: all 0.2s ease;
|
||
}
|
||
.section-challenge .instant-tab:hover {
|
||
color: #F9F9F9;
|
||
}
|
||
.section-challenge .instant-tab.active {
|
||
background: #F9F9F9;
|
||
color: #000000;
|
||
}
|
||
.section-challenge {
|
||
/* 4) 桌面版表格卡片 */
|
||
}
|
||
.section-challenge .challenge-table-card {
|
||
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
|
||
border-radius: 24px;
|
||
-webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
|
||
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
|
||
overflow: hidden;
|
||
padding: 18px 22px;
|
||
}
|
||
.section-challenge .challenge-table {
|
||
width: 100%;
|
||
border-collapse: separate;
|
||
border-spacing: 0;
|
||
}
|
||
.section-challenge .challenge-table thead th {
|
||
padding: 20px 8px;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
border-bottom: 1px solid rgba(249, 249, 249, 0.1);
|
||
}
|
||
.section-challenge .challenge-table thead th:first-child {
|
||
text-align: left;
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: #F9F9F9;
|
||
}
|
||
.section-challenge .account-size-header {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
gap: 10px;
|
||
}
|
||
.section-challenge .account-size-amount {
|
||
font-size: 35px;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
}
|
||
.section-challenge .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;
|
||
-webkit-transition: all 0.2s ease;
|
||
transition: all 0.2s ease;
|
||
white-space: nowrap;
|
||
}
|
||
.section-challenge .start-challenge-btn:hover {
|
||
background: #e07810;
|
||
-webkit-transform: translateY(-1px);
|
||
transform: translateY(-1px);
|
||
-webkit-box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
box-shadow: 0 4px 12px rgba(249, 135, 21, 0.4);
|
||
}
|
||
.section-challenge {
|
||
/* 参数行 */
|
||
}
|
||
.section-challenge .challenge-table tbody tr {
|
||
border-bottom: 1px solid rgba(249, 249, 249, 0.05);
|
||
}
|
||
.section-challenge .challenge-table tbody tr:nth-child(even) {
|
||
background: rgba(255, 255, 255, 0.02);
|
||
}
|
||
.section-challenge .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;
|
||
}
|
||
.section-challenge .challenge-table tbody tr.challenge-row-expand td {
|
||
font-size: 16px;
|
||
}
|
||
.section-challenge .challenge-table tbody td:first-child {
|
||
text-align: left;
|
||
border-right: 1px solid rgba(249, 249, 249, 0.1);
|
||
cursor: pointer;
|
||
-webkit-transition: background 0.2s ease;
|
||
transition: background 0.2s ease;
|
||
}
|
||
.section-challenge .challenge-table tbody td:first-child:hover {
|
||
background: rgba(249, 135, 21, 0.05);
|
||
}
|
||
.section-challenge .challenge-table tbody td:last-child {
|
||
border-right: none;
|
||
}
|
||
.section-challenge .param-name-cell {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
gap: 12px;
|
||
}
|
||
.section-challenge .param-icon {
|
||
width: 20px;
|
||
height: 20px;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
font-size: 13px;
|
||
}
|
||
.section-challenge .param-name {
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
flex: 1;
|
||
font-size: 20px;
|
||
color: #F9F9F9;
|
||
font-weight: 500;
|
||
}
|
||
.section-challenge .expand-btn {
|
||
width: 22px;
|
||
height: 22px;
|
||
border-radius: 4px;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-webkit-transition: -webkit-transform 0.2s ease;
|
||
transition: -webkit-transform 0.2s ease;
|
||
transition: transform 0.2s ease;
|
||
transition: transform 0.2s ease, -webkit-transform 0.2s ease;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
}
|
||
.section-challenge .expand-btn.expanded {
|
||
-webkit-transform: rotate(180deg);
|
||
transform: rotate(180deg);
|
||
}
|
||
.section-challenge {
|
||
/* 展开说明行 */
|
||
}
|
||
.section-challenge .challenge-row-expand {
|
||
display: none;
|
||
}
|
||
.section-challenge .challenge-row-expand.show {
|
||
display: table-row;
|
||
}
|
||
.section-challenge .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);
|
||
}
|
||
.section-challenge {
|
||
/* Add-ons 区域 */
|
||
}
|
||
.section-challenge .challenge-addons {
|
||
margin-top: 24px;
|
||
padding-top: 24px;
|
||
border-top: 1px solid rgba(249, 249, 249, 0.1);
|
||
}
|
||
.section-challenge .addons-title {
|
||
text-align: center;
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
color: var(--white);
|
||
margin-bottom: 16px;
|
||
}
|
||
.section-challenge .addons-content {
|
||
background: rgba(255, 255, 255, 0.03);
|
||
border-radius: 18px;
|
||
padding: 18px 22px;
|
||
}
|
||
.section-challenge .addon-row {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
gap: 16px;
|
||
margin-bottom: 12px;
|
||
}
|
||
.section-challenge .addon-row:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
.section-challenge .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;
|
||
}
|
||
.section-challenge .addon-description {
|
||
color: rgba(249, 249, 249, 0.7);
|
||
font-size: 20px;
|
||
line-height: 1.5;
|
||
}
|
||
@media (max-width: 991px) {
|
||
.section-challenge .content-container {
|
||
padding: 40px 16px 60px;
|
||
}
|
||
.section-challenge {
|
||
/* 标题缩小 */
|
||
}
|
||
.section-challenge .hero-title-choose,
|
||
.section-challenge .hero-title-your-challenge {
|
||
font-size: 32px;
|
||
}
|
||
.section-challenge .hero-trophy-badge {
|
||
width: 32px;
|
||
height: 32px;
|
||
}
|
||
.section-challenge .hero-subtitle {
|
||
font-size: 13px;
|
||
}
|
||
.section-challenge {
|
||
/* Tabs 缩小 */
|
||
}
|
||
.section-challenge .challenge-tabs {
|
||
max-width: 100%;
|
||
padding: 6px 8px;
|
||
}
|
||
.section-challenge .challenge-tab {
|
||
height: 40px;
|
||
font-size: 13px;
|
||
}
|
||
.section-challenge .instant-subtabs {
|
||
max-width: 100%;
|
||
padding: 5px 8px;
|
||
margin-bottom: 16px;
|
||
}
|
||
.section-challenge .instant-tab {
|
||
height: 34px;
|
||
font-size: 12px;
|
||
}
|
||
.section-challenge {
|
||
/* 隐藏桌面表格 */
|
||
}
|
||
.section-challenge .challenge-table-card {
|
||
display: none;
|
||
}
|
||
.section-challenge {
|
||
/* 显示移动端卡片 */
|
||
}
|
||
.section-challenge .mobile-layout {
|
||
display: block !important;
|
||
}
|
||
}
|
||
.section-challenge {
|
||
/* 移动端专用组件 */
|
||
}
|
||
.section-challenge .mobile-layout {
|
||
display: none;
|
||
}
|
||
.section-challenge .mobile-account-sizes {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
gap: 10px;
|
||
overflow-x: auto;
|
||
padding: 4px 0 20px;
|
||
-webkit-overflow-scrolling: touch;
|
||
margin-bottom: 20px;
|
||
}
|
||
.section-challenge .mobile-account-sizes::-webkit-scrollbar {
|
||
display: none;
|
||
}
|
||
.section-challenge .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;
|
||
-webkit-transition: all 0.2s ease;
|
||
transition: all 0.2s ease;
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
-ms-flex-negative: 0;
|
||
flex-shrink: 0;
|
||
}
|
||
.section-challenge .mobile-size-btn.active {
|
||
background: #F9F9F9;
|
||
color: #000000;
|
||
border-color: #F9F9F9;
|
||
}
|
||
.section-challenge .mobile-challenge-card {
|
||
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
|
||
border-radius: 24px;
|
||
-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
|
||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
|
||
overflow: hidden;
|
||
}
|
||
.section-challenge .mobile-card-header {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-pack: justify;
|
||
-ms-flex-pack: justify;
|
||
justify-content: space-between;
|
||
-webkit-box-align: start;
|
||
-ms-flex-align: start;
|
||
align-items: start;
|
||
padding: 24px 20px;
|
||
border-bottom: 1px solid rgba(249, 249, 249, 0.1);
|
||
}
|
||
.section-challenge .mobile-account-label {
|
||
font-size: 20px;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
}
|
||
.section-challenge .mobile-amount-cta {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-direction: normal;
|
||
-ms-flex-direction: column;
|
||
flex-direction: column;
|
||
-webkit-box-align: end;
|
||
-ms-flex-align: end;
|
||
align-items: flex-end;
|
||
gap: 8px;
|
||
}
|
||
.section-challenge .mobile-amount {
|
||
font-size: 24px;
|
||
font-weight: 700;
|
||
color: #F9F9F9;
|
||
}
|
||
.section-challenge .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;
|
||
-webkit-transition: all 0.2s ease;
|
||
transition: all 0.2s ease;
|
||
}
|
||
.section-challenge .mobile-start-btn:hover {
|
||
background: #e07810;
|
||
}
|
||
.section-challenge .mobile-params-list {
|
||
padding: 0;
|
||
}
|
||
.section-challenge .mobile-param-row {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
padding: 16px 20px;
|
||
border-bottom: 1px solid rgba(249, 249, 249, 0.05);
|
||
cursor: pointer;
|
||
-webkit-transition: background 0.2s ease;
|
||
transition: background 0.2s ease;
|
||
}
|
||
.section-challenge .mobile-param-row:hover {
|
||
background: rgba(249, 135, 21, 0.05);
|
||
}
|
||
.section-challenge .mobile-param-left {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
gap: 12px;
|
||
-webkit-box-flex: 1;
|
||
-ms-flex: 1;
|
||
flex: 1;
|
||
}
|
||
.section-challenge .mobile-param-value {
|
||
font-size: 20px;
|
||
color: rgba(249, 249, 249, 0.9);
|
||
font-weight: 600;
|
||
margin-left: auto;
|
||
}
|
||
.section-challenge .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;
|
||
}
|
||
.section-challenge .mobile-param-description.show {
|
||
display: block;
|
||
}
|
||
.section-challenge .mobile-addons {
|
||
padding: 20px;
|
||
}
|
||
.section-challenge .mobile-addons-title {
|
||
text-align: center;
|
||
font-size: 16px;
|
||
color: var(--white);
|
||
margin-bottom: 12px;
|
||
}
|
||
.section-challenge .mobile-addons-card {
|
||
background: rgba(255, 255, 255, 0.03);
|
||
border-radius: 18px;
|
||
padding: 14px;
|
||
}
|
||
@media (min-width: 992px) {
|
||
.section-challenge .mobile-layout {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (max-width: 768px) {
|
||
.section-challenge .param-name {
|
||
font-size: 16px;
|
||
}
|
||
.section-challenge .mobile-param-value {
|
||
font-size: 16px;
|
||
}
|
||
.section-challenge .addon-description {
|
||
font-size: 16px;
|
||
}
|
||
}
|
||
|
||
/* Image enlargement start*/
|
||
.article_content img {
|
||
cursor: -webkit-zoom-in;
|
||
cursor: zoom-in;
|
||
-webkit-transition: -webkit-transform 0.2s ease;
|
||
transition: -webkit-transform 0.2s ease;
|
||
transition: transform 0.2s ease;
|
||
transition: transform 0.2s ease, -webkit-transform 0.2s ease;
|
||
}
|
||
|
||
.article_content img:hover {
|
||
-webkit-transform: scale(1.02);
|
||
transform: scale(1.02);
|
||
}
|
||
|
||
/* Lightbox */
|
||
.img-lightbox {
|
||
position: fixed;
|
||
inset: 0;
|
||
background: rgba(0, 0, 0, 0.85);
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
z-index: 99999;
|
||
opacity: 0;
|
||
pointer-events: none;
|
||
-webkit-transition: opacity 0.3s ease;
|
||
transition: opacity 0.3s ease;
|
||
}
|
||
|
||
.img-lightbox.active {
|
||
opacity: 1;
|
||
pointer-events: auto;
|
||
}
|
||
|
||
.img-lightbox img {
|
||
max-width: 90vw;
|
||
max-height: 90vh;
|
||
-webkit-transform: scale(1);
|
||
transform: scale(1);
|
||
-webkit-transition: -webkit-transform 0.15s ease;
|
||
transition: -webkit-transform 0.15s ease;
|
||
transition: transform 0.15s ease;
|
||
transition: transform 0.15s ease, -webkit-transform 0.15s ease;
|
||
cursor: -webkit-zoom-in;
|
||
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;
|
||
}
|
||
#section-3 h5 .h-inline-icon .icon-box {
|
||
width: 2.375rem;
|
||
height: 2.375rem;
|
||
}
|
||
#section-3 h5.mb-text-start {
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
}
|
||
#section-3 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;
|
||
}
|
||
#section-4 h3 .h-inline-icon {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
display: -webkit-box;
|
||
display: -ms-flexbox;
|
||
display: flex;
|
||
-webkit-box-align: center;
|
||
-ms-flex-align: center;
|
||
align-items: center;
|
||
-webkit-box-pack: center;
|
||
-ms-flex-pack: center;
|
||
justify-content: center;
|
||
}
|
||
#section-4 .icon-box-1 {
|
||
width: 2.375rem;
|
||
height: 2.375rem;
|
||
}
|
||
#section-4 p {
|
||
margin-bottom: 0;
|
||
}
|
||
#section-4 .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 p.text-muted{
|
||
text-align: justify;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.container {
|
||
padding-right: 1.9376rem;
|
||
padding-left: 1.9376rem;
|
||
}
|
||
.footer p.text-muted{
|
||
padding: 0 15px;
|
||
}
|
||
}
|
||
|
||
@media(max-width:768px){
|
||
.banner-desc br,#block-1{height:62.9375rem;position:relative;min-height:42vh;min-height:42svh}
|
||
#homepage #block-1{
|
||
height:auto;
|
||
min-height:0;
|
||
}
|
||
.funded-trading-hero .d-flex .img-fluid-r{right:-13px}
|
||
.hero-img{top:7px}
|
||
.funded-trading-hero .d-flex .img-fluid-l{left:-3px}
|
||
.funded-trading-hero .hero-title{font-size:35px}
|
||
#section-6 h2{text-align:center}
|
||
#section-3 h5 .h-inline-icon{margin-right:.25rem}
|
||
.banner-desc br, .hero-bg { display: block; }
|
||
}
|
||
|
||
|
||
@media (min-width: 2500px) {
|
||
.section-challenge .content-container {
|
||
max-width: 70vw;
|
||
min-width: 1600px;
|
||
}
|
||
.container-narrow {
|
||
min-width: 1600px !important;
|
||
max-width: 70vw !important;
|
||
}
|
||
} |