        /* ---------------------------------------------------------------------- section_footer */
        .section_footer{
            height:367px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top:60px;
            padding-bottom:80px;
            color:#FFFFFF;
            background-color: #B2312A ;
            position: relative;
            
        }
        
        .footer_textbg{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
        }
        .textbg{
            width:100%;
            height:100%;
            color: rgba(255, 255, 255, 0.15);
            font-size: 230px;
            font-weight: 900;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
        
        .sf_div{
            position: absolute;
            z-index: 100;
            
            
            display: flex;
            flex-direction: row;
/*            align-items: center; */
            justify-content: space-evenly;
            font-size:16px;
        }
        @media (max-width: 1279px) {
            .sf_div{
                position: relative;
            }
            .textbg{

                font-size:230px;
                font-weight:bold;
                
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                
                line-height: 0.9;
                margin:25px;
            }
        }
        

        @media (max-width: 650px) {
            .textbg{
                flex-direction: column;
                font-size:160px;
                font-weight:bold;
                justify-content: space-evenly;
                line-height: 0.9;
                margin:25px;
            }
            .textbg span{
                width:100%;
                text-align: left;
                
            }
            .sff_item_tpp{
                width:100%;
                text-align: center;
            }
            .sff_item_copyright
            {
                 width:100%;
                text-align: center;
            }
        }
        

        .sf_div_contact{
            margin:20px;
            display: flex;
            flex-direction: column;
        }
        .sfc_item{
            margin:5px;
        }
        .blank_item{
            margin-top:2px;
            margin-bottom:2px;
        }
        .sfc_item_title{
            font-weight: 600;
            
        }
        
        .sf_div_Navigation{
            margin:20px;
            display: flex;
            flex-direction: column;
        }
        .sfn_item{
            margin:5px;
        }
        .sfn_item_title{
            font-weight: 600;
        }
        
        
        .sf_div_follow{
            margin:20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;  /* 添加这一行 */
            justify-content: space-between;
        }
        .sff_item{
            margin:5px;
        }
        .sff_item_title{
            font-weight: 600;
        }

        
        /* Contact区域图标样式 */
        .sfc_item_with_icon {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .sfc_icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .sfc_link {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .sfc_link:hover {
            color: #cccccc;
            text-decoration: underline;
        }
        /* Navigation链接样式 */
        .sfn_link {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .sfn_link:hover {
            color: #cccccc;
            text-decoration: underline;
        }
        /* Follow区域社交媒体图标样式 */
        .sff_item_logo {
            display: flex;
            gap: 25px;
            justify-content: flex-start;
        }
        .sff_social_link {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .sff_item_copyright{
            font-size:16px;
            font-weight: 600;
        }
        .sff_social_icon {
            width: 48px;
            height: 48px;
            transition: all 0.3s ease;
        }
        .sff_social_link:hover {
            transform: translateY(-2px);
        }
        .sff_social_link:hover .sff_social_icon {
            filter: brightness(1.2);
        }
        .sff_link {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .sff_link:hover {
            color: #cccccc;
            text-decoration: underline;
        }
        