/* =========================================
   1. ×âÁÞËµÃ÷½¹µãÇøÓò (rental_block_1)
   ========================================= */
.rental_block_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 40px; 
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff; 
}

/* ÓëÊ×Ò³¼á³ÖÒ»ÖÂ£¬£¬£¬£¬£¬£¬ÄÚÈÝÇøÏÞÖÆ¿í¶È 80% */
.rental_block_1 > * {
    width: 80%;
    max-width: 1000px; /* Õë¶Ô´¿ÎÄ±¾ÔÄ¶Á£¬£¬£¬£¬£¬£¬ÉÔÎ¢ÊÕ½ô¿í¶ÈÌåÑé¸üºÃ */
}

.rental_block_1 > p.common_text:nth-of-type(1) {
    margin-bottom: 80px;
}

/* "NO HIGH..." ÁÐ±íÎÊÌâµÄ×¨ÊôÃÀ»¯£ºÔöÌíÍÑÀëÏßÉè¼Æ */
.rental_block_1 .common_sub_title {
    font-size: 24px;
    color: var(--theme-color-blue, #002c5f);
    margin-top: 40px;
    margin-bottom: 15px;
    padding-top: 40px;
    border-top: 1px dashed #dcdcdc; /* ÔöÌíÐéÏßÖ§½âÏß£¬£¬£¬£¬£¬£¬ÔöÇ¿·Ö¿é¸Ð */
    width: 80%;
}

/* Õë¶ÔµÚÒ»¸ö sub_title (NO HIGH CAPITAL EXPENDITURES) È¥µôÉÏ·½ÐéÏß */
.rental_block_1 .common_sub_title:nth-of-type(1) {
    border-top: none;
    padding-top: 0;
    margin-top: 10px;
}

/* ×îºóÒ»¾ä»°£¨Please contact your local dealer£©µ¥¶ÀÃÀ»¯Ç¿»¯ */
.rental_block_1 > p.common_text:last-of-type {
    margin-top: 50px;
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-color-blue, #002c5f);
    text-align: center;
}

/* =========================================
   2. µ×²¿¹¦Ð§°´Å¥Çø (rental_block_3)
   ========================================= */
.rental_block_3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Á½¸ö°´Å¥Ö®¼äµÄ¼ä¾à */
    padding: 20px 0 100px; /* µ×²¿Áô°×¶àÒ»Ð© */
    width: 100%;
    background-color: #ffffff;
}

/* ³¹µ×ÖØ¹¹Á´½Ó£¬£¬£¬£¬£¬£¬½«ÆäÄð³ÉÏÖ´ú¸ß¼¶µÄ½»»¥¿¨Æ¬ */
.rental_block_3 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); /* ÈáºÍÒõÓ° */
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease; /* ¿ªÆôËùÓÐ¶¯Ð§¹ý¶É */
    width: 320px;
    box-sizing: border-box;
}

/* Êó±êÐü¸¡Ê±µÄ¿¨Æ¬¶¯Ð§ */
.rental_block_3 a:hover {
    transform: translateY(-8px); /* Ðü¸¡Î¢ÉÏ¸¡ */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); /* ÒõÓ°¼ÓÉî */
    border-color: var(--theme-color-orange, #f37021); /* ±ß¿ò±äÖ÷Ìâ³ÈÉ« */
}

.rental_block_3 figure {
    margin: 0 0 20px 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental_block_3 figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease; /* Í¼±ê·Å´ó¶¯Ð§»ù´¡ */
}

/* Êó±êÐü¸¡Ê±£¬£¬£¬£¬£¬£¬ÄÚ²¿Í¼±êÎ¢·Å´ó */
.rental_block_3 a:hover figure img {
    transform: scale(1.15);
}

.rental_block_3 p.title {
    font-size: 20px;
    font-weight: 800;
    color: var(--theme-color-blue, #002c5f);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Êó±êÐü¸¡Ê±£¬£¬£¬£¬£¬£¬ÎÄ×Ö±äÉ« */
.rental_block_3 a:hover p.title {
    color: var(--theme-color-orange, #f37021);
}

/* =========================================
   3. ÏìÓ¦Ê½½á¹¹µ÷½â
   ========================================= */
@media screen and (max-width: 991px) {
    /* ÎÄ±¾ÇøÒÆ¶¯¶Ë´¦ÖÃ³Í·£ */
    .rental_block_1 { padding: 50px 15px 20px; }
    
    .rental_block_1 > * {
        width: 100%; /* ÒÆ¶¯¶Ë»Ö¸´Âú¿í£¨ÊÜ¸¸¼¶ padding ±£»£»£»£»¤£© */
    }
    
    .rental_block_1 > p.common_text:nth-of-type(1) {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .rental_block_1 .common_sub_title {
        font-size: 20px;
        margin-top: 25px;
        padding-top: 25px;
    }

    .rental_block_1 > p.common_text:last-of-type {
        font-size: 18px;
        margin-top: 30px;
    }

    /* °´Å¥ÇøÆ½°å´¦ÖÃ³Í·£ */
    .rental_block_3 {
        gap: 30px;
        padding: 20px 15px 60px;
        flex-wrap: wrap; /* ÔÊÐíÕÛÐÐ */
    }

    .rental_block_3 a {
        width: calc(50% - 15px); /* Æ½°åÄ£Ê½²¢ÅÅÁ½¸ö£¬£¬£¬£¬£¬£¬¿í¶È×ÔË³Ó¦ */
        padding: 30px 20px;
        max-width: 300px;
    }
    
    .rental_block_3 figure {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .rental_block_3 p.title { font-size: 16px; }
}

@media screen and (max-width: 575px) {
    /* °´Å¥ÇøÐ¡ÊÖ»úÆÁÄ»ÊúÅÅ´¦ÖÃ³Í·£ */
    .rental_block_3 {
        flex-direction: column;
        gap: 20px;
    }
    
    .rental_block_3 a {
        width: 100%; 
        max-width: 320px; 
        padding: 25px 20px;
    }
}
<!--ºÄÊ±1777585930.1669Ãë-->