


        .product_list-container {
            margin: 0 auto;
       
        }
        .product_list-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .product_list-item {
            background: white;
            border: 1px solid #ededed;
            border-radius: 5px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            padding: 0px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .product_list-item:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transform: translateY(-10px);
        }
        
        .product_list-img-container {
            width: 100%;
            padding-top: 100%; /* 1:1 Aspect Ratio */
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            margin-bottom: 25px;
        }
        
        .product_list-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }		
        
        .product_list-item:hover .product_list-img {
            transform: scale(1.05);
            filter: brightness(0.95);
        }
        
		    .product_list-img0-container {
            width: 100%;
            padding-top: 135%; /* 1:1 Aspect Ratio */
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            margin-bottom: 25px;
        }
        
        .product_list-img0 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }		
        
        .product_list-item:hover .product_list-img0 {
            transform: scale(1.05);
            filter: brightness(0.95);
        }

        .product_list-title {
            color: #000000;
            font-size: 15px;
            margin-bottom: 15px;
			padding:0px 10px 5px 10px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .product_list-item:hover .product_list-title {
            color: #cc0000;
        }
        
        .product_list-line {
            width: 60px;
            height: 2px;
            background: #cc0000;
            margin: 0 auto 20px;
            border-radius: 2px;
        }
        
        .product_list-button {
            display: inline-block;
            background: #cc0000;
            color: white;
            padding: 10px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 300;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
        }
        
        .product_list-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s;
        }
        
        .product_list-button:hover {
            background: #333333;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(44, 62, 80, 0.4);
        }
        
        .product_list-button:hover:before {
            left: 100%;
        }
        
        .product_list-button i {
            margin-left: 8px;
            font-size: 0.8rem;
        }
        
        /* 移动端样式 */
        @media (max-width: 992px) {
            .product_list-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .product_list-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .product_list-item {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }
        
        .product_list-item:nth-child(2) { animation-delay: 0.1s; }
        .product_list-item:nth-child(3) { animation-delay: 0.2s; }
        .product_list-item:nth-child(4) { animation-delay: 0.3s; }
        .product_list-item:nth-child(5) { animation-delay: 0.4s; }
        .product_list-item:nth-child(6) { animation-delay: 0.5s; }
	   
	    .main-container {
            margin: 0 auto;
            padding: 0px;
        }
        
	   /* 左侧菜单样式 */   /* 左侧菜单样式 */   /* 左侧菜单样式 */   /* 左侧菜单样式 */   /* 左侧菜单样式 */	
		
		        .left_menu_container {
            width: 100%;

            background: white;
   
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            display: flex;
            min-height: 500px;
        }
        
        .left_menu_sidebar {
       
            background: #ffffff;
            color: #333333;
            display: flex;
            flex-direction: column;
        }
        

        
        .left_menu_items {
            flex-grow: 1;
            padding: 20px 0;
        }
        
        .left_menu_item {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            color: #333333;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .left_menu_item:hover,
        .left_menu_item.left_menu_active {
            background: rgba(0, 0, 0, 0.02);
        }
        
        .left_menu_icon {
            width: 10px;
            height: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .left_menu_text {
            flex-grow: 1;
             font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .left_menu_arrow {
            transition: all 0.3s ease;
        }
        
        .left_menu_item:hover .left_menu_icon,
        .left_menu_item:hover .left_menu_text,
        .left_menu_item:hover .left_menu_arrow,
        .left_menu_active .left_menu_icon,
        .left_menu_active .left_menu_text,
        .left_menu_active .left_menu_arrow {
            color: #ff7b00;
        }
        
        .left_menu_content {
            flex-grow: 1;
            padding: 30px;
            background: #f8f9fa;
        }
        
        .left_menu_content h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .left_menu_content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .left_menu_toggle {
            display: none;
            background: #ff7b00;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            align-items: center;
            justify-content: center;
            margin: 15px auto;
            width: calc(100% - 40px);
            transition: all 0.3s ease;
        }
        
        .left_menu_toggle:hover {
            background: #ff6a00;
        }
        
        .left_menu_toggle i {
            margin-left: 8px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .left_menu_container {
                flex-direction: column;
            }
            
            .left_menu_sidebar {
                width: 100%;
            }
            
            .left_menu_items {
                display: none;
            }
            
            .left_menu_items.left_menu_expanded {
                display: block;
            }
            
            .left_menu_toggle {
                display: flex;
            }
            
            .left_menu_content {
                min-height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .left_menu_header h2 {
                font-size: 1.5rem;
            }
            
            .left_menu_text {
                font-size: 1rem;
            }
            
            .left_menu_content {
                padding: 20px;
            }
            
            .left_menu_content h2 {
                font-size: 1.5rem;
            }
        }
		
		
		
        /* 移动端菜单切换按钮 */
        .main-menu-toggle {
            display: none;
            background: #2c3e50;
            color: white;
            padding: 12px 15px;
            border-radius: 4px;
            margin-bottom: 15px;
            cursor: pointer;
            font-weight: 500;
        }
        
        .main-menu-toggle i {
            margin-right: 8px;
        }
        
        .main-content-wrapper {
            display: flex;
            gap: 30px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        /* 左侧菜单样式 */
        .main-sidebar {
            flex: 0 0 22%;
            background: #fff;
			margin-top:15px;
			margin-bottom:15px;
            padding: 5px 8px;
            border-right: 1px solid #eaeaea;
        }
        
        .main-menu {
            list-style: none;
        }
        
        .main-menu-item {
            border-bottom: 1px solid #eaeaea;
        }
        
        .main-menu-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 25px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .main-menu-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .main-menu-icon {
            font-size: 18px;
            width: 24px;
            text-align: center;
        }
        
        .main-menu-text {
            font-weight: 500;
            font-size: 14px;
        }
        
        .main-menu-arrow {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .main-menu-link:hover {
            background: #fff5e6;
        }
        
        .main-menu-link:hover .main-menu-icon,
        .main-menu-link:hover .main-menu-text,
        .main-menu-link:hover .main-menu-arrow {
            color: #ff7b00;
        }
        
        .main-menu-link:hover .main-menu-arrow {
            transform: translateX(3px);
        }
        
        /* 右侧内容区域样式 */
        .main-content {
            flex: 0 0 78%;
            padding: 20px 50px 20px 0px;
        }
        
        .main-content h1 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 28px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff7b00;
        }
        
        .main-content p {
            margin-bottom: 0px;
            font-size: 14px;
			line-height:28px;
            color: #555;
        }
        
        .main-content-box {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ff7b00;
            margin-top: 25px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .main-content-wrapper {
                flex-direction: column;
            }
            
            .main-sidebar {
                flex: 0 0 100%;
                border-right: none;
                border-bottom: 1px solid #eaeaea;
                padding: 0;
            }
            
            .main-content {
                flex: 0 0 100%;
            }
            
            .main-menu {
                display: none;
            }
            
            .main-menu-toggle {
                display: flex;
                align-items: center;
            }
            
            .main-menu.active {
                display: block;
            }
        }
        
        @media (max-width: 576px) {
            .main-container {
                padding: 15px;
            }
            
            .main-content {
                padding: 20px 15px;
            }
            
            .main-content h1 {
                font-size: 24px;
            }
            
            .main-menu-link {
                padding: 14px 20px;
            }
        }
		
		
		        .feedback-form {
            background-color: white;
            padding: 25px;
            border-radius: 5px;
            box-shadow-: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 90%;
    
        }
        .notice {
            color: red;
            font-size: 14px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #333;
        }
        .required::after {
            content: " *";
            color: red;
        }
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 14px;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .button-group {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        button {
            padding: 10px 20px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.2s;
        }
        .submit-btn {
            background-color: #ccc;
            color: #333;
        }
        .reset-btn {
            background-color: #ccc;
            color: #333;
        }
        button:hover {
            background-color: #bbb;
        }
		
		
		


        
        .ijoblist_content {
            padding: 10px;
        }
        
        .ijoblist_table {
            width: 100%; border: 1px solid #eeeeee;
            margin-bottom: 10px;
            border-collapse: collapse;
        }
        
        .ijoblist_table:last-child {
            margin-bottom: 0;
        }
        
        .ijoblist_table_title {
                     
            color: #ff6600;
            padding: 11px;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            border-radius: 8px 8px 0 0;
        }
        
        .ijoblist_row {
            display: flex;
            border-bottom: 1px solid #eeeeee;
        }
        
        .ijoblist_row:last-child {
            border-bottom: none;
        }
        
        .ijoblist_cell {
            flex: 1;
            padding: 12px;
            display: flex;
            align-items: center;
            min-height: 20px;
        }
        
        .ijoblist_cell:nth-child(odd) {
           
            font-weight: 600;
            color: #2c3e50;
            flex: 0 0 25%;
            justify-content: flex-end;
        }
        
        .ijoblist_cell:nth-child(even) {
            flex: 0 0 75%;
            background: white;
        }
        
        .ijoblist_cell_span3 {
            flex: 0 0 75% !important;
        }
        
        .ijoblist_highlight {
            color: #e74c3c;
            font-weight: 500;
        }
        
        .ijoblist_contact {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .ijoblist_icon {
            width: 40px;
            height: 40px;
            background: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .ijoblist_footer {
            background: #2c3e50;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .ijoblist_cell:nth-child(odd) {
                flex: 0 0 30%;
            }
            
            .ijoblist_cell:nth-child(even) {
                flex: 0 0 70%;
            }
            
            .ijoblist_cell_span3 {
                flex: 0 0 70% !important;
            }
            
            .ijoblist_header h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .ijoblist_row {
                flex-direction: column;
            }
            
            .ijoblist_cell:nth-child(odd),
            .ijoblist_cell:nth-child(even),
            .ijoblist_cell_span3 {
                flex: 0 0 100% !important;
                justify-content: flex-start;
            }
            
            .ijoblist_cell:nth-child(odd) {
                background: #e8f4fc;
                border-bottom: 1px dashed #b3d7f7;
            }
            
            .ijoblist_header h1 {
                font-size: 1.7rem;
            }
        }
		
		
		.piclist_container {
    margin: 0 auto;
    padding: 20px 0
}

.piclist_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.piclist_item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow-: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column
}

.piclist_item:hover {
    transform: translateY(-1px);
    box-shadow-: 0 15px 40px rgba(0, 0, 0, 0.4)
}

.piclist_image_container {
    position: relative;
    overflow: hidden;
    padding-top: 140%;
    cursor: zoom-in
}

.piclist_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease
}

.piclist_image_container:hover .piclist_image {
    transform: scale(1.01);
    filter: brightness(0.8)
}

.piclist_overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    z-index: 1;
    transition: all 0.3s ease
}

.piclist_caption {
    padding: 15px 0;
    background-: #f5f5f5;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.piclist_caption a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease
}

.piclist_item:hover .piclist_caption a {
    color: #ff6600
}

.piclist_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease
}

.piclist_modal_active {
    display: flex;
    opacity: 1
}

.piclist_modal_content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s ease
}

.piclist_modal_image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    border-radius: 5px
}

.piclist_modal_close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    animation: fadeIn 0.5s ease
}

.piclist_modal_close:hover {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
    background: #333333
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 0.8;
        transform: translateY(0)
    }
}

@media (max-width:1024px) {
    .piclist_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px
    }
}

@media (max-width:768px) {
    .piclist_grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .piclist_grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto
    }
}

		
		.honorlist_container {
    margin: 0 auto;
    padding: 20px 0
}

.honorlist_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

.honorlist_item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow-: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column
}

.honorlist_item:hover {
    transform: translateY(-1px);
    box-shadow-: 0 15px 40px rgba(0, 0, 0, 0.4)
}

.honorlist_image_container {
    position: relative;
    overflow: hidden;
    padding-top: 70%;
    cursor: zoom-in
}

.honorlist_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease
}

.honorlist_image_container:hover .honorlist_image {
    transform: scale(1.01);
    filter: brightness(0.8)
}

.honorlist_overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    z-index: 1;
    transition: all 0.3s ease
}

.honorlist_caption {
    padding: 15px 0;
    background-: #f5f5f5;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.honorlist_caption a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease
}

.honorlist_item:hover .honorlist_caption a {
    color: #ff6600
}

.honorlist_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease
}

.honorlist_modal_active {
    display: flex;
    opacity: 1
}

.honorlist_modal_content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s ease
}

.honorlist_modal_image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    border-radius: 5px
}

.honorlist_modal_close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    animation: fadeIn 0.5s ease
}

.honorlist_modal_close:hover {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
    background: #333333
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 0.8;
        transform: translateY(0)
    }
}

@media (max-width:1024px) {
    .honorlist_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px
    }
}

@media (max-width:768px) {
    .honorlist_grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .honorlist_grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto
    }
}

		 /* 内页新闻详情  */

        /* 容器样式 */
        .news_view-container {
            margin: 0 auto;
            padding: 0px 0px 40px 0px;
        }

        /* 标题样式 */
        .news_view-title {
            text-align: center;
            font-size: 24px;
			font-weight:600;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* 元信息样式 */
        .news_view-meta {
			font-size: 14px;
			width: 300px;
			margin: 0 auto;
            display: flex;
            justify-content: space-between;
            color: #666;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        /* 分隔线 */
        .news_view-divider {
            border: 0;
            border-top: 1px solid #eee;
            margin: 20px 0;
        }

        /* 内容样式 */
        .news_view-content {
            line-height: 1.8;
            color: #444;
            font-size: 16px;
            margin-bottom: 30px;
        }

        /* 导航区域 */
        .news_view-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        /* 上一篇/下一篇链接 */
        .news_view-prevnext {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news_view-prevnext a {
            color: #333;
			font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .news_view-prevnext a:hover {
            color: #333;
        }

        /* 返回按钮 */
        .news_view-back-btn {
            background: transparent;
            border: 1px solid #ccc;
            color: #333;
			font-size: 16px;
            padding: 10px 25px;
			height:50px;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 4px;
        }

        .news_view-back-btn:hover {
            background: #ff6600;
            color: #fff;
            transform: translateY(-2px);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .news_view-title {
                font-size: 20px;
            }
            
            .news_view-meta {
                font-size: 14px;
                gap: 10px;
                justify-content: center;
            }
            
            .news_view-nav {
                flex-direction: column;
                gap: 20px;
            }
            
            .news_view-back-btn {
                width: 100%;
                order: -1;
                margin: 0 auto;
                max-width: 150px;
            }
        }
		