.index .floor_6_main .floor_6_1 .floor_6_2 .f_z p {
 overflow:hidden;
 margin-bottom:15px;
 display: block;
 margin-top: 58px;
 text-indent: 2em;
}

  .banner-content {
            position: absolute;
            height: 100%;
            left: 0;
            color: white;
            z-index: 9999999;
            background-color: rgba(0, 0, 0, 0.35);
            padding: 30px;
            border-radius: 8px;
            animation: fadeInUp 1s ease;
            width: 100%;
            text-align: center;
            top: 0;
            padding-top: 200px;
        }
        
        .banner-content h2 {
            font-size: 36px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .banner-content p {
            font-size: 18px;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .banner-content .btn {
            display: inline-block;
            padding: 0px 30px;
            background-color: #015db2;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
            position: relative;
            padding-top: 0;
            width: auto;
            height: 50px;
            cursor: pointer;
            text-indent: inherit;
            line-height: 50px;
        }
        
        .banner-content .btn:hover {
            background-color: #c0392b;
        }

    @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }