.hsl-muted {
    background-color: hsl(var(--muted) / .1);
}

.banner-text .contact-wrapper {
    gap: 10px;
}

.banner-text .contact-wrapper .contact-item {
    font-size: 16px;
}

.advantages-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage {
    background-color: var(--muted);
    border-radius: 8px;
    padding: 30px;
    /* 布局三列 */
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.advantage:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: hsl(var(--primary) / .1);
    color: var(--bright-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.advantage-icon-fill svg{
    fill: var(--bright-blue);
}

.advantage:hover .advantage-icon {
    background-color: hsl(var(--primary) / .2);
}

.advantage h3 {

    font-weight: bold;
    color: var(--bright-blue);
    margin-bottom: 10px;
    text-align: center;
}

.advantage h3 span {
    font-size: 48px;
}

.advantage .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
}

.advantage p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.grid-scene:not(:last-child) {
    margin-bottom: 60px;
}

.grid-scene .section-title {
    display: flex;
    align-items: center;
    font-size: 28px;
}

.grid-scene .section-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: hsl(var(--primary) / .1);
    color: var(--bright-blue);
    border-radius: 50%;
    font-size: 20px;
    font-weight: normal;
    margin-right: 10px;
}

.grid-secction-column-2 {
    display: grid;
    grid-template-columns: 60% calc(40% - 50px);
    gap: 50px;
}

.price-display-card {
    padding: 30px;
    border-radius: 8px;
}

.price-display-card:first-of-type {
    background-color: var(--primary-white);
    border: 1px solid hsl(var(--border));
}

.price-display-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}


.price-display-card-header .title {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    gap: 10px;
}

.price-display-card-header .title svg {
    color: var(--bright-blue);
}

.price-display-card-header .desc {
    font-size: 14px;
    color: var(--secondary-grey);
    padding-top: 5px;
}

.price-display-card-body .price-display-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 10px;
}

.price-display-card-body .price-display-card-item:not(:last-child) {
    margin-bottom: 20px;
}

.price-display-card-body .price-display-card-item:hover {
    background-color: hsl(var(--muted));
}

.price-display-card-body .price-display-card-item .price {
    font-size: 20px;
    font-weight: bold;
    color: var(--bright-blue);
}

.price-display-card-body .price-display-card-item .discount {
    background-color: hsl(var(--primary) / .1);
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 20px;
}

.price-display-card-body .price-display-card-item .discount-percent {
    font-size: 14px;
    color: var(--primary-white);
    background-color: var(--bright-blue);
}


.caculate-selector {
    border-radius: 8px;
    padding: 30px;
}

.caculate-selector:hover,
.caculate-selector-current {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.caculate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.caculate-header .title {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    gap: 10px;
}

.caculate-header .title svg {
    color: var(--bright-blue);
}

.caculate-header .tag {
    font-size: 14px;
    font-weight: bold;
    background-color: hsl(var(--muted));
    padding: 3px 10px;
    border-radius: 20px;
}

.caculate-remark {
    font-size: 14px;
    color: var(--secondary-grey);
    padding-top: 5px;
    margin-bottom: 20px;
}

.caculate-item {
    background-color: hsl(var(--muted));
    color: var(--secondary-grey);
    padding: 20px;
}

.caculate-item:first-of-type {
    background-color: var(--primary-white);
}

.caculate-item:not(:last-child) {
    margin-bottom: 20px;
}

.caculate-item-current {
    background-color: hsl(var(--primary) / .05);
    border: 1px solid hsl(var(--border-reset) / .2);
    border-radius: 8px;
}

.caculate-item-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.caculate-item-price {
    display: flex;
    align-items: flex-end;
}

.caculate-item-price span.price {
    font-size: 32px;
    font-weight: bold;
    color: var(--bright-blue);
}

.caculate-item-discount {
    font-size: 12px;
    padding-top: 10px;
}

.caculate-item-remark {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--bright-blue);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid hsl(var(--border-reset) / .2);
}

.caculate-tips {
    display: flex;
    align-items: flex-start;
    background-color: hsl(var(--muted));
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.caculate-tips svg {
    color: var(--bright-blue);
    margin-right: 10px;
}

.caculate-tips .caculate-tips-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.join-us {
    display: flex;
    justify-content: center;
}

.join-us li{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.join-us li:not(:last-child){
    margin-right: 80px;
}

.join-us li svg{
    color: var(--bright-blue);
    margin-bottom: 10px ;
}

.join-us li .title{
    font-size: 18px ;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px ;
}

.join-us li .desc{
    color: var(--secondary-grey);
}

@media (max-width: 1100px) {
    .grid-secction-column-2{
        grid-template-columns: 50% calc(50% - 50px);
    }
}

@media (max-width: 768px) {
    .banner-text .contact-wrapper .contact-item{
        font-size: 14px ;
    }
    
    .grid-scene .section-title{
        font-size: 24px ;
    }
    
    .grid-scene:not(:last-child){
        margin-bottom: 30px ;
    }
    
    .grid-scene:nth-child(even) .scene:nth-child(1){
        order: 2;
    }
    
    .advantage{
        padding: 15px ;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    
    .advantages-cards{
        grid-template-columns: 100% ;
        gap: 20px ;
    }
    
    .grid-secction-column-2{
        grid-template-columns: 100% ;
        gap: 30px ;
    }
    
    .caculate-tips svg{
        margin-top: 0 ;
    }
    
    .join-us li .title{
        font-size: 16px ;
    }
    
    .join-us li:not(:last-child){
        margin-right: 30px ;
    }
    
    .join-us li .desc{
        text-align: center;
    }
    
    .section-footer{
        margin-top: 0px;
    }
    
    
}

