391 lines
7.5 KiB
CSS
391 lines
7.5 KiB
CSS
:root {
|
|
--product-section-heading-gap: 48px;
|
|
--product-section-heading-inner-gap: 14px;
|
|
}
|
|
|
|
.cargo-platform-content {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cargo-info-left {
|
|
width: 540px;
|
|
flex: 0 0 540px;
|
|
padding-right: 30px;
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
}
|
|
|
|
.cargo-info-left--compact {
|
|
flex-basis: 540px;
|
|
}
|
|
|
|
.cargo-info-left h2,
|
|
.cargo-info-left p {
|
|
text-align: left;
|
|
}
|
|
|
|
.cargo-info-right {
|
|
flex: 1;
|
|
min-width: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.product-hero-container {
|
|
padding-top: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.page-title.page-title-cargo-platform .container.product-hero-container,
|
|
.page-title.page-title-cargo-platform1 .container.product-hero-container,
|
|
.page-title.page-title-cargo-platform2 .container.product-hero-container {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.product-hero-title {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.product-hero-description {
|
|
font-size: 16px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.page-title-cargo-platform .product-hero-title,
|
|
.page-title-cargo-platform .product-hero-description,
|
|
.page-title-cargo-platform2 .product-hero-title,
|
|
.page-title-cargo-platform2 .product-hero-description {
|
|
color: #021c3e;
|
|
}
|
|
|
|
.page-title-cargo-platform1 .product-hero-title {
|
|
color: #021c3e;
|
|
}
|
|
|
|
.page-title-cargo-platform1 .product-hero-description {
|
|
color: #012e67;
|
|
}
|
|
|
|
.main2 {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.product-architecture-section--gradient {
|
|
background: linear-gradient(135deg, #d2e5fa 0%, #f0f7ff 30%, #f5f9ff 70%, #d2e7fd 100%);
|
|
}
|
|
|
|
.product-architecture-section--soft {
|
|
background-color: #eaf5fd;
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.product-architecture-container {
|
|
padding: 20px;
|
|
}
|
|
|
|
.product-architecture-title {
|
|
margin: 40px 0 var(--product-section-heading-inner-gap);
|
|
}
|
|
|
|
.product-architecture-title--compact {
|
|
margin-bottom: var(--product-section-heading-inner-gap);
|
|
}
|
|
|
|
.product-architecture-section--gradient .text-center > p,
|
|
.product-architecture-section--soft .text-center > p {
|
|
margin: 0 0 var(--product-section-heading-gap);
|
|
}
|
|
|
|
.product-advantages-header {
|
|
padding-top: 60px;
|
|
margin-bottom: var(--product-section-heading-gap);
|
|
text-align: center;
|
|
}
|
|
|
|
.product-advantages-header--compact {
|
|
padding-top: 50px;
|
|
}
|
|
|
|
.product-advantages-title {
|
|
margin-bottom: var(--product-section-heading-inner-gap);
|
|
}
|
|
|
|
.product-advantages-title--spacious {
|
|
margin-bottom: var(--product-section-heading-inner-gap);
|
|
}
|
|
|
|
.product-advantages-header p {
|
|
margin: 0;
|
|
}
|
|
|
|
.feature-highlight-section {
|
|
background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
|
|
padding-top: 90px;
|
|
padding-bottom: 90px;
|
|
}
|
|
|
|
.feature-highlight-heading {
|
|
text-align: center;
|
|
margin-bottom: var(--product-section-heading-gap);
|
|
}
|
|
|
|
.feature-highlight-heading h1 {
|
|
margin: 0 0 var(--product-section-heading-inner-gap);
|
|
color: #10233f;
|
|
}
|
|
|
|
.feature-highlight-heading p {
|
|
margin: 0;
|
|
}
|
|
|
|
.feature-highlight-tabs {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
border-bottom: 1px solid #dfe8f3;
|
|
width: 100%;
|
|
}
|
|
|
|
.feature-highlight-tabs li {
|
|
flex: 0 0 auto;
|
|
min-width: auto;
|
|
}
|
|
|
|
.feature-highlight-tab {
|
|
position: relative;
|
|
width: 100%;
|
|
padding: 16px 10px 18px;
|
|
border: 0;
|
|
background: transparent;
|
|
color: #4f5f76;
|
|
font-size: clamp(16px, 0.95vw, 18px);
|
|
font-weight: 600;
|
|
line-height: 1.5;
|
|
cursor: pointer;
|
|
transition: color 0.25s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.feature-highlight-tab:hover,
|
|
.feature-highlight-tab:focus {
|
|
color: #1c6de0;
|
|
outline: none;
|
|
}
|
|
|
|
.feature-highlight-tab.active {
|
|
color: #006aff;
|
|
text-decoration-line: underline;
|
|
text-decoration-color: #1b68db;
|
|
text-decoration-thickness: 4px;
|
|
text-underline-offset: 18px;
|
|
text-decoration-skip-ink: none;
|
|
}
|
|
|
|
.feature-highlight-tab.active:after {
|
|
content: none;
|
|
}
|
|
|
|
.feature-highlight-panel {
|
|
display: none;
|
|
padding-top: 54px;
|
|
}
|
|
|
|
.feature-highlight-panel.active {
|
|
display: block;
|
|
}
|
|
|
|
.feature-highlight-detail {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 56px;
|
|
}
|
|
|
|
.feature-highlight-copy {
|
|
flex: 1 1 52%;
|
|
max-width: 520px;
|
|
text-align: left;
|
|
}
|
|
|
|
.feature-highlight-copy h2 {
|
|
margin: 0 0 18px;
|
|
color: #101820;
|
|
font-size: 30px;
|
|
font-weight: 700;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.feature-highlight-copy p {
|
|
margin: 0;
|
|
color: #4f5f76;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
line-height: 1.9;
|
|
}
|
|
|
|
.feature-highlight-points {
|
|
margin: 28px 0 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.feature-highlight-points li {
|
|
position: relative;
|
|
margin-bottom: 18px;
|
|
padding-left: 22px;
|
|
color: #24374f;
|
|
font-size: 16px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.feature-highlight-points li:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 13px;
|
|
left: 0;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #1c6de0;
|
|
box-shadow: 0 0 0 6px rgba(28, 109, 224, 0.12);
|
|
}
|
|
|
|
.feature-highlight-visual {
|
|
flex: 1 1 48%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.feature-highlight-visual-card {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
max-width: 620px;
|
|
min-height: 300px;
|
|
padding: 8px 10px;
|
|
border: 1px solid rgba(40, 122, 221, 0.08);
|
|
border-radius: 20px;
|
|
background: linear-gradient(180deg, rgba(247, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
|
|
box-shadow: 0 10px 24px rgba(22, 72, 140, 0.04);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.feature-highlight-visual-card img {
|
|
display: block;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
max-height: none;
|
|
object-fit: contain;
|
|
filter: drop-shadow(0 8px 14px rgba(30, 88, 165, 0.08));
|
|
}
|
|
|
|
@media (max-width: 1199px) {
|
|
.feature-highlight-tab {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.feature-highlight-copy h2 {
|
|
font-size: 40px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.feature-highlight-detail {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 34px;
|
|
}
|
|
|
|
.feature-highlight-copy,
|
|
.feature-highlight-visual {
|
|
max-width: none;
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
.feature-highlight-copy h2 {
|
|
font-size: 36px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.cargo-platform-content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.cargo-info-left {
|
|
width: 100%;
|
|
flex: 1;
|
|
padding-right: 0;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.cargo-info-right {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.feature-highlight-section {
|
|
padding-top: 70px;
|
|
padding-bottom: 70px;
|
|
}
|
|
|
|
.feature-highlight-heading p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.feature-highlight-tabs li {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.feature-highlight-tabs {
|
|
justify-content: flex-start;
|
|
gap: 8px;
|
|
}
|
|
|
|
.feature-highlight-tab {
|
|
padding: 14px 8px 16px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.feature-highlight-tab.active {
|
|
text-underline-offset: 16px;
|
|
}
|
|
|
|
.feature-highlight-tabs {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.feature-highlight-panel {
|
|
padding-top: 32px;
|
|
}
|
|
|
|
.feature-highlight-copy h2 {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.feature-highlight-copy p,
|
|
.feature-highlight-points li {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.feature-highlight-visual-card {
|
|
min-height: 210px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.feature-highlight-visual-card img {
|
|
width: 100%;
|
|
}
|
|
}
|