/*
Author       : Theme-Family
Template Name: Akids - Kingdergarden School Website Template
Version      : 1.1
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (body, link color, SECTION TITLE, PRELOADER, BTN, SECTION PADDING, SCROLL etc)
    02. START BOOTSTRAP NAVIGATION OVERRIDES
    03. START HOME DESIGN
		--START HOME DEFALT
		-- CLIPE HOME DESIGN
		-- PARTICLES HOME DESIGN
		-- GRADIENT HOME DESIGN
		-- WABES HOME DESIGN
		-- RIPPLE WATER HOME DESIGN
		-- BUBBLE HOME DESIGN
		-- START SLIDER DESIGN
    04. START FEATURE DESIGN
    05. START ABOUT DESIGN
	06.	START KIDS DESIGN
	07.	START PROGRAM  DESIGN (START ACCRODING  DESIGN)
	08.	START GALLERY DESIGN
	09.	START CLASS  DESIGN
	10.	START TESTIMONIAL DESIGN
	11.	START COUNTER DESIGN
	12.	START TEAM DESIGN
	13.	START SPECIAL DESIGN
	14. START BLOG DESIGN
		--START BLOG DETAILS DESIGN
	15. START CONTACT DESIGN 
	16.	START FOOTER DESIGN(START MAP DESIGN)
	
  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
html{
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: var(--thm-font);
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	color:  var(--thm-p);
}
:root {
	--thm-font: 'Open Sans', sans-serif;
	--thm-font2: 'Bubblegum Sans', sans-serif;
	--thm-base: #feda00;
	--thm-line: linear-gradient(to bottom,#FF416C,#FF4B2B);
	--thm-color: #FF4B2B;
	--thm-black: #5a1e90;
	--thm-white: #ffffff;
	--thm-ase: #afb2bf;
	--thm-gray: #8e8e8e;
	--thm-f6: #F1F8FF;
	--thm-fb: #f6f6f6;
	--thm-f3: #f3f3f3;
	--thm-p: #6b6f92;
}
.bg-color1{
	background:var(--thm-f6);
}
.bg-color2{
	background:var(--thm-fb);
}.bg-color3{
	background:var(--thm-f3);
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--thm-black);
	clear: both;
	font-family: var(--thm-font2);
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 0px;
}

h1, .h1 {
  font-size: 36px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 20px; }

h5, .h5 {
  font-size: 18px; }

h6, .h6 {
  font-size: 16px; }
  
p:last-child {
	margin-bottom: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
}
p {
	padding: 0;
	margin: 0;
	font-size: 16px;
	color: var(--thm-p);
	line-height: 40px;
	font-family: var(--thm-font);
	/*font-weight: 400;*/
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
a {
text-decoration: none;
transition: all 0.2s ease 0s;
}
a:focus, .btn:focus {
	text-decoration: none;
	outline: none;
}
a:hover{
	color: inherit;
}
a {
	color: inherit;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover, a:active {
	text-decoration: none;
	outline: 0;
}
*, ::before, ::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
span {
	letter-spacing: 0;
}
a, button, input {
	outline: medium none;
	color: inherit;
}
dl, ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
button:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}
fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}
::-webkit-input-placeholder {
	color: inherit;
}
::-moz-input-placeholder {
	color: inherit;
}
::-ms-input-placeholder {
	color: inherit;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	z-index: 9;
	overflow: hidden;
}
.form-group {
	margin-bottom: 20px;
}
button, input, textarea {
    color: var(--thm-black);
}
button, input, textarea:focus {
    outline:none;
}
.atf-color-ase{
	color:var(--thm-ase)! important;
}
/*
* ----------------------------------------------------------------------------------------
* PRELOADER
* ----------------------------------------------------------------------------------------
*/

.atf-preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.atf-status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 4px solid rgba(0, 0, 0, 0.08);
    border-right: 4px solid rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--thm-color);
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*END PRELOADER DESIGN*/

/*START SECTION PADDING DESIGN*/

.atf-section-padding {
	padding: 20px 0;
}

/*START SECTION TITLE DESIGN*/

.atf-section-title {
	margin-bottom: 50px;
}
.atf-section-title h5 {
	color: var(--thm-white);
	line-height: 25px;
	margin: 0px 0 5px;
	text-transform: capitalize;
	font-family: var(--thm-font);
	letter-spacing: 1px;
	font-size: 18px;
	background: var(--thm-color);
	display: inline-block;
	padding: 2px 10px;
	border-radius: 5px;
}
.atf-section-title h2 {
	font-weight: 800;
	font-size: 25px;
	line-height: 1.3;
	color: #006699;
	text-transform: capitalize;
	font-family: var(--thm-font2);
	margin-top: 20px;
}
.atf-section-title p {
	font-size: 14px;
	font-family: var(--thm-font);
	color: var(--thm-p);
	font-weight: 400;
	line-height: 28px;
	margin-top: 8px;
}
.atf-section-title .atf-sec_icon  {
	position: relative;
	display:inline-block;
}
.atf-section-title .atf-sec_icon:before{
	position:absolute;
	content: '';
	width: 50px;
	height: 2px;
	background: var(--thm-color);
	top: 16px;
	left: -56px;
}
.atf-section-title .atf-sec_icon:after{	
	position:absolute;
	content: '';
	width: 50px;
	height: 2px;
	background: var(--thm-color);
	top: 16px;
	right: -56px;
}
.atf-section-title .atf-sec_icon .atf-sec_radiu i {
	margin-top: 10px;
	color: var(--thm-color);
}

@media only screen and (max-width:480px) { 
	.atf-section-title  h2  {font-size:25px;}
}
/*END SECTION TITLE DESIGN*/

/*START SCROLL TO TOP*/

.atf-scroll-top {
	position: fixed;
	right: 105%;
	bottom: 70px;
	z-index: 99;
	cursor: pointer;
	transition: 1.5s ease;
	border: none;
	background: transparent; }

.atf-scrollup-icon {
	font-size: 25px;
	width: 50px;
	height: 50px;
	background: var(--thm-color);
	line-height: 50px;
	color: var(--thm-white);
	border-radius: 50%;
	box-shadow: 0px 0 15px rgba(242, 233, 233, 0.6);
}
.atf-scrollup-icon:hover {
	background: var(--thm-black);
	transition: 0.3s;
}
.atf-scroll-top.open {
	right: 30px; }
	
/*END SCROLL TO TOP*/

/* START BTN STYLE */

.atf-themes-btn {
	color:	var(--thm-white);
	background-color: var(--thm-color);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: capitalize;
	padding: 0;
	border-radius: 0px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease 0s;
	border: none;
	opacity:1;
	display:inline-block;
}
.atf-themes-btn:hover{ color: var(--thm-white); }
.atf-themes-btn:before,
.atf-themes-btn:after,
.atf-themes-btn span:before,
.atf-themes-btn span:after{
    content: '';
    background: var(--thm-black);
    width: 25%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}
.atf-themes-btn:before{
    transform: scaleY(0.2);
    transition-delay: 0.3s;
}
.atf-themes-btn:after{
    transform: scaleY(0.45);
    left: 25%;
    transition-delay: 0.2s;
}
.atf-themes-btn span:before{
    transform: scaleY(0.65);
    left: 50%;
    z-index: -1;
    transition-delay: 0.1s;
}
.atf-themes-btn span:after{
    transform: scaleY(0.8);
    left: 75%;
    z-index: -1;
}
.atf-themes-btn span{
    padding: 10px 20px;
    display: block;
    position: relative;
    z-index: 1;
}
.atf-themes-btn:hover:before,
.atf-themes-btn:hover:after,
.atf-themes-btn:hover span:before,
.atf-themes-btn:hover span:after{
    opacity: 1;
    transform: scaleY(1);
}
.atf-themes-btn.orange:before,
.atf-themes-btn.orange:after,
.atf-themes-btn.orange span:before,
.atf-themes-btn.orange span:after{
    background: linear-gradient(to bottom, #f7b42c, #fc575e);
}
.atf-themes-btn.blue:before,
.atf-themes-btn.blue:after,
.atf-themes-btn.blue span:before,
.atf-themes-btn.blue span:after{
    background: linear-gradient(to bottom, #7f53ac, #647dee);
}
.atf-themes-btn.green:before,
.atf-themes-btn.green:after,
.atf-themes-btn.green span:before,
.atf-themes-btn.green span:after{
    background: linear-gradient(to bottom, #3bb78f, #0bab64);
}
@media only screen and (max-width: 767px){
    .atf-themes-btn{ margin-bottom: 20px; }
}
/* END BTN STYLE */	

/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/	
/*
* ----------------------------------------------------------------------------------------
* 02.START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.atf-top-header {
	background-color: var(--thm-color);
	overflow: hidden;
}
.atf-top-header .atf-top-header-in {
	height: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	transition: all 0.4s ease;
}
.atf-top-header  .atf-top-social {
	font-size: 16px;
	height: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	transition: all 0.4s ease;
	color: var(--thm-white);
	text-align: center;
}
.atf-top-social a i:hover{
	color:var(--thm-white);
}
.atf-top-social a i {
	margin-left: 15px;
	color: rgba(255, 255, 255, 0.8);
}
.atf-sticky-active .atf-top-header-in  {
	height: 0; 
}
.atf-sticky-active .atf-top-social  {
	height: 0; 
}
.atf-top-header-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap; 
}
.atf-top-header-list li {
	margin-right: 30px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px; 
}
.atf-top-header-list li:last-child {
    margin-right: 0; 
}
.atf-top-header-list li i {
    margin-right: 10px; 
}
.atf-top-header-list li a:hover {
    color: var(--thm-white);
}
.atf-site-header.atf-style1 {
	transition: all 0.4s ease; 
}
.atf-site-branding.atf-white-logo img {
	max-width: 700px;
	height: auto;
	margin-top: 20px;
	margin-left: 0;
}
.atf-site-header.atf-style1 .atf-main-header-in {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 70px; 
}
.atf-site-header.atf-style1.atf-sticky-active {
	background: var(--thm-color);
	color: var(--thm-white) !important;
	box-shadow: 0 0 15px rgba(244, 231, 231, 0.48);
}
.atf-nav .atf-nav-list > li > a {
	color: var(--thm-white);
	background: var(--thm-color);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 5px;
    width: 120px;
    text-align: center;
}

@media screen and (max-width: 991px) {
  .atf-main-header .container {
    width: 100%; }

  .atf-top-header {
    display: none; }

  .atf-site-header.atf-style1 {
    background-color: var(--thm-black); } 
}
.atf-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
	font-size:14px;
}
.atf-main-header {
  position: relative; }

@media screen and (min-width: 992px) {
	.atf-nav .atf-nav-list {
		display: flex !important;
		flex-wrap: wrap; 
	}
		
	.atf-nav .atf-nav-list > li {
		margin-right: 25px; 
		font-weight700;
		font-size: 18px;
	}
	.atf-nav .atf-nav-list > li:last-child {
		margin-right: 0; 
	}
	.atf-nav .atf-nav-list > li > a {
		padding: 15px 0;
		display: inline-block;
	}
	.atf-nav .atf-nav-list > li > ul {
		left: 0;
		top: calc(100% + 15px); 
	}
	.atf-nav .atf-nav-list > li > ul:before {
		content: '';
		position: absolute;
		height: 10px;
		width: 10px;
		border: 1px solid #eaeaea;
		transform: rotate(45deg);
		background-color: #fff;
		border-right: none;
		border-bottom: none;
		top: -6px;
		left: 16px; 
	}
	.atf-nav .atf-nav-list > li:hover > ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
		transition: all 0.4s ease; 
	}
	.atf-nav .atf-nav-list li {
		position: relative; 
	}
	.atf-nav .atf-nav-list li a.active {
		color: var(--thm-base); 
	}
	.atf-nav .atf-nav-list ul {
		width: 200px;
		background-color: #fff;
		position: absolute;
		border: 1px solid #eaeaea;
		border-radius: 4px;
		padding: 10px 0;
		z-index: 100;
		opacity: 0;
		visibility: hidden;
		display: block !important;
		transition: all 0.1s ease; 
	}
	.atf-nav .atf-nav-list ul li:hover ul {
		top: 0px; 
	}
	.atf-nav .atf-nav-list ul li:hover > ul {
		opacity: 1;
		visibility: visible;
		transition: all 0.4s ease; 
	}
	.atf-nav .atf-nav-list ul a {
		font-size: calc(100% - 1px);
		display: block;
		line-height: 1.6em;
		padding: 9px 20px;
		color:var(--thm-black);
		background: #99cc99;
		margin-bottom: 1px;
	}
	.atf-nav .atf-nav-list ul a:hover {
		background-color: var(--thm-color);
		color: var(--thm-white);
	}
	.atf-nav .atf-nav-list ul ul {
		top: 15px;
		left: 100%; 
	}
	.atf-menu-toggle,
	.atf-menu-dropdown-toggle {
		display: none; 
	} 
}
@media screen and (max-width: 991px) {
	.atf-menu-dropdown-toggle {
		position: absolute;
		height: 30px;
		width: 30px;
		right: 20px;
		top: 5px; 
	}
	.atf-menu-dropdown-toggle:before, .atf-menu-dropdown-toggle:after {
		content: '';
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		height: 2px;
		width: 10px;
		background-color: var(--thm-white);
		transition: all 0.3s ease; 
	}
	.atf-menu-dropdown-toggle:before {
		transform: translate(-50%, -50%) rotate(90deg); 
	}
	.atf-menu-dropdown-toggle.active:before {
		transform: translate(-50%, -50%) rotate(0deg); 
	}
	.atf-nav .atf-nav-list {
		position: absolute;
		left: 0;
		background-color: var(--thm-black);
		padding: 10px 0;
		display: none;
		top: 100%;
		border-top: 1px solid #eaeaea;
		border-bottom: 0px solid #eaeaea;
		overflow: auto;
		max-height: calc(100vh - 80px);
		width:100%;
	}
	.atf-nav .atf-nav-list ul {
		padding-left: 15px;
		display: none; 
	}
	.atf-nav .atf-nav-list a {
		display: block;
		padding: 8px 20px; 
		color: var(--thm-white);
	}
	.atf-nav .menu-item-has-children {
		position: relative; }

 /*Mobile Menu Button*/
 
.atf-menu-toggle {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 27px;
	margin: 15px 0px 15px 0px;
	cursor: pointer; 
}
.atf-menu-toggle span,
.atf-menu-toggle span:before,
.atf-menu-toggle span:after {
	width: 100%;
	height: 2px;
	background-color: var(--thm-white);
	display: block; 
}
.atf-menu-toggle span {
	margin: 0 auto;
	position: relative;
	top: 12px;
	transition-duration: 0s;
	transition-delay: 0.2s; 
}
.atf-menu-toggle span:before {
	content: '';
	position: absolute;
	margin-top: -8px;
	transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s; 
}
.atf-menu-toggle span:after {
	content: '';
	position: absolute;
	margin-top: 8px;
	transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}
.atf-toggle-active span {
	background-color: rgba(0, 0, 0, 0);
	transition-delay: 0.2s; 
}
.atf-toggle-active span:before {
	margin-top: 0;
	transform: rotate(45deg);
	transition-delay: 0s, 0.2s; 
}
.atf-toggle-active span:after {
	margin-top: 0;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.2s; }
}
.atf-sticky-header {
	position: fixed;
	z-index: 200;
	width: 100%;
	top: 0;
	left: 0; 
}

/*
* ----------------------------------------------------------------------------------------
* 02. END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-single-home{
	height: 750px;
}
.atf-home-overlay{
	/*background: rgba(0,0,0,0.4);*/
	height: 100%;
	width: 100%;
}
.atf-single-text{
	padding-top:450px;
}
.atf-single-text h3 {
	color: var(--thm-white);
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.atf-single-text h1{	
	color: var(--thm-white);
	font-size: 40px;
	margin-bottom: 40px;
}
.atf-single-text h1 span{
	font-size: 20px;
	font-weight: 300;
	text-transform: capitalize;
	letter-spacing: 0;
}
.slider-active .owl-nav .owl-next {
	border-radius: 50% 0% 0 50% !important;
}
.slider-active .owl-nav .owl-next,
.slider-active .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: var(--thm-white);
	opacity: 1;
	font-size: 20px;
	transition: all 0.4s ease-in-out;
	width: 70px;
	height: 60px;
	line-height: 50px;
	background: rgba(237, 237, 237, 0.1);
	border-radius: 0 50% 50% 0;
	text-align: center;
}
.slider-active .owl-nav .owl-prev {
	left: -5px;
}
.slider-active .owl-nav .owl-next{
	right: -5px;	
}
.slider-active .owl-nav .owl-next:hover,
.slider-active .owl-nav .owl-prev:hover {
    border-color: var(--thm-color);
    background: var(--thm-color);
    color: var(--thm-white);
}
	
 /*-- Animations Start --*/
.owl-item.active .animation__style01 .atf-single-home h3 {
  -webkit-animation: fadeInDown 1.7s ease-in-out;
  animation: fadeInDown 1.7s ease-in-out;
}
.owl-item.active .animation__style01 .atf-title {
  -webkit-animation: fadeInDown 1.2s ease-in-out;
  animation: fadeInDown 1.2s ease-in-out;
}
.owl-item.active .animation__style01 .atf-content{
  -webkit-animation: fadeInUp 1.2s ease-in-out;
  animation: fadeInUp 1.2s ease-in-out;
}
.owl-item.active .animation__style01 .atf-hero-btn {
  -webkit-animation: fadeInUp 1.8s ease-in-out;
  animation: fadeInUp 1.8s ease-in-out;
}
  
@media only screen and (max-width:480px) { 
	.atf-single-text h1{font-size:40px;}
}
.atf-single-text p{
	color:var(--thm-white);
	font-size: 50px;
	margin-bottom: 40px;	
}
@media only screen and (max-width:480px) { 
	.atf-single-text p {
	  color: var(--thm-white);
	  margin: auto;
	  width: 100%;
	  margin-bottom: 25px;
	}
}

@media only screen and (max-width:820px) { 
	.slider-active .owl-nav .owl-next,
	.slider-active .owl-nav .owl-prev {
		display: none!important;
	}
}

/* START HOME 2 */
#home{
	position:relative;
	z-index: 1;
}
.atf-home2-area {
    background-color: var(--thm-f6);
    height: 750px;
    overflow: hidden;
	z-index:1;
}
.atf-home2-area::before {
	content: '';
	position: absolute;
	right: 0px;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0.7;
	z-index: -1;
}
.atf-align-items-details {
	display: flex;
	align-items: center;
	min-height: 100%;
}
.atf-home2-area .atf-content-details h5 {
	color: var(--thm-color);
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	text-transform: capitalize;
}
.atf-single-details{
	z-index:1;
}
.atf-home2-area .atf-single-details h2 {
	color: var(--thm-white);
	text-transform: capitalize;
	font-weight: 400;
	font-family: var(--thm-font2);
	font-size: 45px;
	letter-spacing: 0.7px;
	line-height: 55px;
}
.atf-home2-area .atf-single-details p {
	margin: 10px 0 23px;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 400;
	color: var(--thm-white);
	margin: 25px 0 40px;
	z-index: -1;
}
.atf-round-area{
	position: relative;
	background: var(--thm-color);
}
.atf-home2-area .atf_home_img {
	position: relative;
}
.atf-home2-area .right-col {
	position: relative;
}
.atf-home2-area .right-col .atf-img-inner {
	position: relative;
	display: block;
}
.atf-home2-area .right-col .home-image-box {
	position: relative;
	display: block;
	border-radius: 7px;
	overflow: hidden;
}
.atf-home2-area .right-col .home-image-box::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60%;
	z-index: 1;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
.atf-home2-area .right-col .home-image-box img {
	display: block;
	width: 100%;
	border-radius: 7px;
}
.atf-home2-area .right-col .home-image-box img:hover{
	display: block;
	width: 100%;
	border-radius: 7px;
}
@media only screen and (max-width : 992px) {
	.atf-home2-area .atf-single-details h2{
		font-size:40px;
	}
}
@media only screen and (max-width : 991px) {
	.atf-home2-area .atf-single-details h2{
		font-size:30px;
		line-height:43px;
	}
	.atf-home2-area .right-col .home-image-box{
		margin-top:30px;
	}
	.atf-width-area{
		height: 1000px;
	}
	.atf-choose-inner {
		margin-top:40px;
	}
}
@media only screen and (max-width: 767px) {
	.atf-width-area{
		height: 850px;
	}
	.navbar-nav .menu-nav a::after,
	.navbar-nav .menu-nav a::before {
		display: none;
	}
	.atf-home2-area .atf-content-details h3{
		font-size:20px;
	}
	.atf-home2-area .atf_home_img{
		margin-top:30px;
	}
	.atf-home2-area .atf-single-details h2{
		font-size:25px;
		line-height:35px;
	}
	.atf-skill-box{
		margin-top:35px;
	}
	
}

@media only screen and (max-width: 576px) {
	.atf-home2-area .atf-themes-btn{
		margin-bottom:15px;
	}
}
@media screen and (max-width: 320px) and (min-width: 0px){
	.atf-home2-area .atf-themes-btn{
		margin-bottom:15px;
	}
	.atf-home2-area .atf-content-details h3{
		font-size:17px;
	}
}
/*
* ----------------------------------------------------------------------------------------
* WABES HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
#home {
	position: relative;
	z-index: 1;
}
.atf-waves-home{
	background-position: 50% 0;
	background-repeat: no-repeat;
	position: relative;
	object-fit: cover;
	object-position: center;
	vertical-align: middle;
}
.atf-waves-home::before {
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.atf-wabes-img img {
	border-radius:50% ! important;
}
.atf-web-area {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.atf-web-area svg {
  height: 180px;
}

/*
* ----------------------------------------------------------------------------------------
* BUBBLE HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
#round {
    position: absolute;
    top: 0;
    bottom: 0;
/* 	z-index:-1; */
}
canvas.sketch{
    height: 750px !important;
}
/*
* ----------------------------------------------------------------------------------------
* CLIPE HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-clip-home {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 83%, 20% 100%, 0 83%);
	clip-path: polygon(0 0, 100% 0, 100% 83%, 20% 100%, 0 83%);
}
/*
* ----------------------------------------------------------------------------------------
* PARTICLES HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-particles-area {
  position: absolute;
  z-index: 1;
}
/*
* ----------------------------------------------------------------------------------------
* GRADIENT HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-home-gradient{
	position: relative;
	background:none !important;
}
.atf-home-gradient::before {
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.1);
}
.atf-home-gradient::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(106deg, #5a1e90, #FF4B2B);
	background: -webkit-linear-gradient(106deg, #5a1e90, #FF4B2B);
	border-radius: 0% 0% 50% 50%/0% 0% 100% 100%;
	transform: scaleX(2.1);
}
/*
* ----------------------------------------------------------------------------------------
* PARTICLES HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-particles-area {
  position: relative;
  z-index: 1;
}
/*
* ----------------------------------------------------------------------------------------
* RIPPLE WATER HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-ripple-home {
	background-image: url(../img/slider/8.jpg);
	position: relative;
	background-position: center;
	background-size:cover;
}

/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04.START FEATURE DESIGN
* ----------------------------------------------------------------------------------------
*/
#feature{
	position:relative;
}
.atf-single-feature {
	position:relative;
}
.atf-feature-content {
	border:1px solid var(--thm-eee);
	padding: 40px 25px;
	transition:0.3s ease-in-out;
	-webkit-transition:0.3s ease-in-out;
	-webkit-box-shadow:0 0 15px rgba(0,0,0,0.1);
	box-shadow:0 0 15px rgba(0,0,0,0.1);
}
.atf-feature-number {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    font-weight: 500;
    top: 5%;
    left: 40%;
    transform: translate(-50%, -50px);
	z-index:-1;
}
.atf-feature-content:hover .atf-feature-number {
	transition:0.3s ease-in-out;
	-webkit-transition:0.3s ease-in-out;
	opacity:0.3;
}
.atf-feature-content .atf-feature-title {
	padding: 15px 0 10px 0;
	color: var(--thm-black);
}
.atf-feature-content .atf-feature-title > a{
    font-size: 16px;
    text-transform: capitalize;
    color:var(--thme-black);
    transition:all 0.3s ease-in-out 0s;
}
.atf-feature-content .atf-feature-title > a:hover {
	text-decoration: none;
	color: var(--thm-color) !important;
}
.atf-single-feature {
	border: none;
	border-radius: 0px;
}
.atf-feature-icon {
	transition: .5s ease;
}
.atf-feature-icon img {
	color: var(--thm-color);
	border-radius: 3%;
	border: 1px dashed;
	padding: 5px;
	width: 100%;
	height:200px;
}
/*
* ----------------------------------------------------------------------------------------
* 04. END FEATURE DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 05. START ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-about-list h3{
	margin:7px 0;
}

/*
* ----------------------------------------------------------------------------------------
* 05. END ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 06.START KIDS DESIGN
* ----------------------------------------------------------------------------------------
*/
#best-service{
	position:relative;
}
.atf-best-single-service {
	position:relative;
}
.atf-best-service-number {
	position: absolute;
	font-size: 150px;
	opacity: 0;
	font-weight: 500;
	bottom: 0;
	right: 0;
	transform: translate(-50%);
	left: 50%;
}
.atf-best-service-text h3 {
	color: var(--thm-color);
	letter-spacing: 1px;
	margin-bottom: 8px;
}
.atf-best-service-content:hover .atf-best-service-number {
	transition:0.3s ease-in-out;
	-webkit-transition:0.3s ease-in-out;
	opacity:0.1;
}
.atf-best-service-content{
	position:relative;
}
.atf-best-service-content:hover {
	box-shadow: initial;
	transform: initial;
}
.atf-best-service-content:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 6px;
	background: var(--thm-color);
}
.atf-best-service-content:after {
	content: "";
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: right center;
	transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scaleX(0);
}
.atf-best-service-content:hover:after {
	opacity: 1;
	transform-origin: left center;
	transform: scaleX(1);
}
.atf-best-service-content:after {
	height: 6px;
	background: var(--thm-base);
}
.atf-best-single-service {
	border: none;
	border-radius: 0px;
	padding: 30px 15px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	background-color: var(--thm-white);
	z-index: 1;
	margin-bottom: 5px;
}
.atf-best-service-icon img {
	width: 100px;
	height: auto;
	border: 1px dashed;
	border-radius: 50%;
	padding: 5px;
	/* background: var(--thm-base); */
}
.atf-best-service-icon {
	transition: .5s ease;
}
.atf-best-service-icon i {
	color: var(--thm-color);
	font-size: 59px;
	text-align: center;
	color: var(--thm-color);
}
.atf-best-main-service{
	margin:1px 0;
}
/*
* ----------------------------------------------------------------------------------------
* 06. END KIDS DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 07.START PROGRAM  DESIGN
* ----------------------------------------------------------------------------------------
*/
#program{background: var(--thm-color);}
#program .atf-section-title h5 {
	background: var(--thm-white);
	color: var(--thm-black) !important;
}
.atf-program-img {
	position: relative;
	display: block;
	border-radius: 7px;
	overflow: hidden;
}
.atf-program-img  .atf-program-inner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	opacity: 0.1;
}
.atf-program-img .atf-program-img  img {
	display: block;
	width: 100%;
	border-radius: 7px;
}
.atf-program-img .waves-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.atf-program-img .iq-video {
	background: var(--thm-base);
	display: inline-block;
	width: 70px;
	height: 70px;
	text-align: center;
	font-size: 20px;
	color: var(--thm-white);
	border-radius: 100%;
	line-height: 53px;
	z-index: 1020;
	position: relative;
	border: 8px solid var(--thm-color);
}
.atf-program-img .iq-video i {
	margin-left: 3px;
}
.atf-program-img .iq-waves {
	position: absolute;
	left: -30px;
	top: -30px;
	z-index: 2;
}
.atf-program-img .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-program-img .iq-waves .waves {
	position: absolute;
	width: 130px;
	height: 130px;
	background: rgba(234 237 249 / 50%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	border-radius: 50%;
	background-clip: padding-box;
	-webkit-animation: waves 3s ease-in-out infinite;
	animation: waves 3s ease-in-out infinite;
}
.atf-program-img .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-program-img .iq-waves .wave-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.atf-program-img .iq-waves .wave-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
@-webkit-keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
@keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}

/*
* ----------------------------------------------------------------------------------------
* START ACCRODING  DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-faq-accordion .card .card-header {
    padding: 0;
    border: none;
    text-align: left;
}
.atf-faq-accordion .card {
    border: none;
    display: block;
    text-align: left;
    margin-bottom: 15px;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    border-radius: 0 !important;
	box-shadow:0 0 15px rgba(0,0,0,0.3);
}
.atf-faq-accordion .card .card-body ul li:last-child {
    margin-bottom: 0
}

.atf-faq-accordion .card:last-child {
    margin-bottom: 0
}

.atf-faq-accordion .panel{
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 10px;
    position: relative;
}
.atf-faq-accordion .panel-heading{
    padding: 0;
    border: none;
    border-radius: 0;
    z-index: 1;
    position: relative;
}
.atf-faq-accordion .panel-heading:before,
.atf-faq-accordion .panel-heading:after{
    content: "";
    width: 50%;
    height: 20%;
    box-shadow: 0 15px 5px rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 15px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: -1;
}
.atf-faq-accordion .panel-heading:after{
    left: auto;
    right: 10px;
    transform: rotate(3deg);
}
.atf-faq-accordion .panel-title button {
	display: block;
	padding: 15px 70px 15px 70px;
	margin: 0;
	background: var(--thm-white);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--thm-color);
	border-radius: 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	position: relative;
	width: 100%;
	text-align: left;
}
.atf-faq-accordion .panel-title button:before,
.atf-faq-accordion .panel-title button.collapsed:before{
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 55px;
    height: 100%;
    text-align: center;
    line-height: 50px;
    border-left: 1px solid var(--thm-color);
    position: absolute;
    top: 0;
    right: 0;
}
.atf-faq-accordion .panel-title button.collapsed:before{ content: "\f107"; }
.atf-faq-accordion .panel-title button .icon{
    display: inline-block;
    width: 55px;
    height: 100%;
    border-right: 1px solid var(--thm-color);
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.atf-faq-accordion .panel-body{
    padding: 10px 20px;
    margin: 0 0 20px;
    border-bottom: 3px solid var(--thm-white);
    border-top: none;
    background: var(--thm-white);
    font-size: 15px;
    color: var(--thm-black);
    line-height: 27px;
}
/*
* ----------------------------------------------------------------------------------------
* END ACCRODING  DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 07. END PROGRAM  DESIGN
* ----------------------------------------------------------------------------------------
*/
/**************************************
 * 08. START GALLERY DESIGN
 *************************************/
#portfolio {
    position: relative;
	overflow: hidden;
}
.atf-portfolio-area .portfolio-filter {
	margin-bottom: 20px;
}
.atf-portfolio-area .portfolio-filter button {
	font-size: 13px;
	margin: 0 15px 20px 0;
	overflow: hidden;
	text-transform: uppercase;
	display: inline-block;
	padding: 8px 15px;
	transition: 0.4s;
	outline: none;
	-webkit-transition: 0.4s;
	-ms-transition: 0.4s;
	border-radius: 4px;
	font-weight: 500;
	letter-spacing: 0.4px;
	background: var(--thm-black);
	color: var(--thm-white);
	border:none;
}
.atf-portfolio-area .portfolio-filter button:hover,
.atf-portfolio-area .portfolio-filter button.active {
	color: var(--thm-white);
	background: var(--thm-color);
}
.display-table {
	display: table;
	height: 100%;
	width: 100%;
}
.display-table-cell{
	display: table-cell;
	vertical-align: middle;
}
.atf-portfolio-area .atf-single-portfolio {
	position: relative;
	overflow: hidden;
	margin:10px;
}
.atf-portfolio-area .atf-single-portfolio .atf-portfolio-content {
	position: absolute;
	width: 100%;
	bottom: 30%;
	left: 0;
	text-align: center;
	z-index: 10;
	padding: 25px;
	opacity: 0;
	-webkit-transition: 0.5s all ease-out;
	transition: 0.5s all ease-out;
	height: 100%;
}
.atf-portfolio-area .atf-single-portfolio .atf-portfolio-content::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: rgba(101, 20, 168, 0.9);
	z-index: -1;
	-webkit-transition: .25s opacity ease;
	transition: .25s opacity ease;
	opacity: 0.8;
	border-radius: 4px 5px;
}
.atf-portfolio-area .atf-single-portfolio .atf-portfolio-img img {
	width: 100%;
	border-radius:4px 5px;
}
.atf-portfolio-area .atf-single-portfolio .p-zoom {
	display: inline-block;
	font-size: 14px;
	color: var(--thm-white);
	transition: all 0.3s ease 0s;
	height: 46px;
	line-height: 44px;
	width: 46px;
	border: 1px solid var(--thm-white);
	border-radius: 50%;
	text-align: center;
}
.atf-portfolio-area .atf-single-portfolio .p-zoom:hover {
	background: var(--thm-white);
	color: var(--thm-black);
}
.atf-portfolio-area .atf-single-portfolio .p-title {
	font-size: 20px;
	line-height: normal;
	margin-top: 25px;
	color: var(--thm-white);
	margin-bottom: 0;
}
.atf-portfolio-area .atf-single-portfolio .p-title a {
	color: var(--thm-white);
}
.atf-portfolio-area .atf-single-portfolio .p-title a:hover {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}
.atf-portfolio-area .atf-single-portfolio:hover .atf-portfolio-content {
	opacity: 1;
	bottom: 0;
}
/**************************************
 * 08. END GALLERY DESIGN
 *************************************/
/*
* ----------------------------------------------------------------------------------------
* 09. START CLASS  DESIGN
* ----------------------------------------------------------------------------------------
*/
#class{background: var(--thm-f3);}
.atf-class-slide {
	border: 6px solid var(--thm-color);
}
.atf-class-slide .atf-class-img{
    overflow: hidden;
}
.atf-class-slide .atf-class-img img{
    width: 100%;
    height: auto;
    opacity: 0.8;
    transform: scale(1,1);
    transition:all 0.3s ease-in-out 0s;
}
.atf-class-slide:hover .atf-class-img img{
    transform: scale(1.2,1.2);
    opacity:1;
}
.atf-class-slide .atf-class-content {
	padding: 20px 20px 20px 30px;
	position: relative;
	background: var(--thm-white);
}
.atf-class-slide .atf-class-date{
    min-width:28px;
    min-height:28px;
    line-height: 28px;
    text-align: center;
    background: var(--thm-color);
    position: absolute;
    top: -30px;
    left: 30px;
}
.atf-class-slide .month {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: var(--thm-color);
	padding: 0 10px;
	background: var(--thm-base);
	text-transform: uppercase;
}
.atf-class-slide .date{
    color: var(--thm-white);
    font-size: 14px;
}
.atf-class-slide .atf-class-title {
	margin: 25px 0 10px;
}
.atf-class-slide .atf-class-title a{
    color:var(--thm-black);
    font-size:22px;
    text-transform:capitalize;
    transition: all 0.50s ease 0s;
}
.atf-class-slide .atf-class-title a:hover{
    color:var(--thm-color);
    text-decoration: none;
}
.atf-class-slide .atf-class-description{
    font-size: 15px;
    line-height: 30px;
}
.atf-class-slide .atf-class-bar {
	padding: 10px 0;
	list-style: none;
	text-align: center;
	background: var(--thm-color);
}
.atf-class-slide .atf-class-bar li {
	display: inline-block;
	margin: 2px 7px 0 0;
	color: var(--thm-black);
	text-align: left;
	background: var(--thm-base);
	padding: 10px 20px;
	border-radius: 5px;
}
.atf-class-slide .atf-class-bar li a {
	text-transform: capitalize;
	font-size: 14px;
	color: var(--thm-color);
	transition: 0.2s ease;
	font-weight: 600;
}
.atf-class-slide .atf-class-bar li a:hover{
    text-decoration: none;
    color:var(--thm-white);
}
.atf-class-slide .atf-class-bar li i{
    color:var(--thm-white);
    margin-right: 5px;
}
/*
* ----------------------------------------------------------------------------------------
* 09. END CLASS  DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 10.START TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-testimonial{
    background-color: #f3f3f3;
    border-radius: 5px;
    padding: 30px;
    margin: 0 15px;
}
.atf-testimonial .atf-testimonial-pic{
    width: 90px;
    height: 90px;
    margin: 0 30px 15px 0;
    float: left;
}
.atf-testimonial .atf-testimonial-pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.atf-testimonial .atf-testimonial-title{
    color: var(--thm-black);
    font-size: 20px;
    margin-top: 5px;
    font-weight: 400;
    text-transform: capitalize;
}
.atf-testimonial .atf-testimonial-title small {
	color: var(--thm-color);
	font-size: 13px;
	font-weight: 500;
	margin-top: 10px;
}
.atf-testimonial .atf-testimonial-review p {
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 0;
	display: block;
	overflow: hidden;
}
@media screen and (max-width: 990px){
    .testimonial-parallax h2{
        margin-bottom: 40px;
    }
    .testimonial{
        margin: 0;
    }
}
/* owl theme */
.atf-main-testimonials.owl-theme .owl-nav.disabled + .owl-dots {
    margin-left: 50px;
    line-height: .7;
}
.atf-main-testimonials .owl-controls{
	 margin-left: -25px;
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 0 8px;
	border-radius: 5px;
	background: transparent;
	border: 1px solid var(--thm-black);
	transition: 0.3s all ease-in-out;
	margin-top: 30px;
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot.active span,
.atf-main-testimonials.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--thm-color);
	width: 35px;
	transition: 0.3s all ease-in-out;
	border: 1px solid var(--thm-color);
}
/*
* ----------------------------------------------------------------------------------------
* 10.END TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* --------------------------------------
* 11. START COUNTER DESIGN
* --------------------------------------
*/
.atf-counter-area{
	background:var(--thm-f6);
}
.atf-counter{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
}
.atf-counter-value {
	padding: 0px 0px 5px;
	font-size: 25px;
	font-weight: 600;
	color: var(--thm-color);
}
.atf-counter-content h3 {
	font-weight: 500;
	font-size: 18px;
	color: var(--thm-black);
}
.atf-work-area .atf-section-title{
	margin-bottom:0;
}
.atf-work-area .atf-section-title p{
	margin-bottom:0;
	color: var(--thm-p);
}
.atf-work-area{
	padding-left:15px;
}
.atf-work-area h2 {
	text-transform:capitalize;
}
.atf-work-area p {
	width:100%;
}
.atf-work-content {
	margin-top:20px;
}
.atf-work-content li {
	line-height: 40px;
	color: var(--thm-p);
}
.atf-work-content li::before {
	content: "\f00c";
	color: var(--thm-color);
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	text-align: center;
	margin-right: 15px;
	border: 1px solid var(--thm-color);
	border-radius: 50%;
	padding: 5px;
}
.atf-counter-icon{
	float:left;
}
.atf-counter-icon i {
	font-size: 25px;
	color: var(--thm-white);
	background: var(--thm-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;

}
/*
* ----------------------------------------------------------------------------------------
* 11. END COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 12.START TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-single-team {
	text-align: center;
	box-shadow: 0 0 15px rgba(0,0,0, 0.1);
	padding: 25px;
	position:relative;
}
.atf-single-team .atf-team-pic {
	position: relative;
	margin-bottom: 20px;
}
.atf-single-team .atf-team-pic img{
    width: 100%;
    height: auto;
}
.atf-single-team .atf-team-pic-bottom{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition:all 0.3s ease 0s;
}
.atf-single-team .atf-team-pic-bottom:after{
    content: "\f002";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    position: relative;
    top:45%;
    left:0;
    opacity: 0;
    color:#fff;
    font-size: 35px;
    transition:all 0.3s ease 0s;
}
.atf-single-team .atf-team-title{
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 5px;
}
.atf-single-team .atf-team-title a{
    color:var(--thm-black);
    transition: all 0.3s ease 0s;
}
.atf-single-team .atf-team-title  a:hover{
    color:var(--thm-color)!important;
    text-decoration: none;
}
.atf-single-team .atf-team-post {
	margin-bottom: 15px;
	display: block;
	font-size: 15px;
}
.atf-single-team .atf-team_social{
    list-style: none;
    padding: 0;
}
.atf-single-team .atf-team_social > li{
    display: inline-block;
}
.atf-single-team .atf-team_social > li > a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	display: block;
	color: var(--thm-black);
	background: #efefef;
	transition: all 0.3s ease 0s;
	font-size: 15px;
}
.atf-single-team .atf-team_social > li > a:hover{
    background: var(--thm-color);
    color:var(--thm-white);
}
@media screen and (max-width: 991px){
    .atf-single-team{
        margin-bottom: 30px;
    }
}
/*
* ----------------------------------------------------------------------------------------
* 12. END TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 13. START SPECIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-special-offer .atf-home-overlay {
	background: rgba(9, 33, 159, 0.46);
	height: 100%;
	width: 100%;
}
.atf-special-content.atf-section-title h4 {
	background: var(--thm-base);
	display: inline-block;
	padding: 10px 15px;
	border-radius: 7px;
	opacity: 0.9;
	border: 2px solid var(--thm-white);
}
#countdown div{
	float: left;
	margin-left: 50px;
	margin-top: 20px;
	background:var(--thm-color);
	padding: 15px 30px;
	border-radius:7px;
	text-align: center;
	font-size: 13px;
	position: relative;
	color:var(--thm-white);
	font-weight: 400;
}
#countdown div strong{
	font-size: 30px;
	 color:var(--thm-white);
	letter-spacing: 2px;
}
.atf-single-special-img img {
	width: auto;
}
/*
* ----------------------------------------------------------------------------------------
* 13. END SPECIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 14.START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-post-slide{
    border: 1px solid #eee;
    padding: 22px;
    position: relative;
}
.atf-post-slide:before{
    content: "";
    border-top:1px solid transparent;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    transition:all 0.3s ease-in-out 0s;
}
.atf-post-slide:hover:before{
    border-top: 1px solid #3398db;
}
.atf-post-slide:hover{
    border-top: 1px solid #3398db;
}
.atf-post-slide .atf-post-img > img{
    width: 100%;
    height:auto;
}
.atf-post-slide .atf-post-title > a{
    font-size: 24px;
    text-transform: capitalize;
    color:var(--thme-black);
    transition:all 0.3s ease-in-out 0s;
}
.atf-post-slide .atf-post-title > a:hover {
	text-decoration: none;
	color: var(--thm-color) !important;
}
.atf-post-slide .atf-post-bar {
	padding: 0;
	list-style: none;
	overflow: hidden;
	margin: 10px 0;
	display: flex;
  justify-content: center;
}
.atf-post-slide .atf-post-bar > li{
    display: inline-block;
    border-right: 1px solid var(--thm-color);
    padding: 0 10px;
    float: left;
}
.atf-post-slide .atf-post-bar > li:first-child{
    padding: 0 10px 0 0;
}
.atf-post-slide .atf-post-bar > li:last-child{
    border: 0px none;
}
.atf-post-slide .atf-post-date,
.atf-post-slide .atf-author, 
.atf-post-slide .atf-comment {
	text-transform: capitalize;
	font-size: 12px;
	font-weight: 500;
}
.atf-post-slide .author > a,
.atf-post-slide .comment > a,
.atf-post-slide .comment > i{
    color:var(--thm-color);
    transition:all 0.3s ease-in-out 0s;
}
.atf-post-slide .atf-author > a:hover,
.atf-post-slide .atf-comment > a:hover{
    text-decoration: none;
    color:var(--thme-color);
}
.atf-post-slide .atf-post-date > i,
.atf-post-slide .atf-author > i,
.atf-post-slide .atf-comment > i{
    margin-right: 8px;
    font-size: 15px;
}
.atf-post-slide .atf-post-description{
    line-height: 1.8;
    margin-bottom: 20px;
}

@media only screen and (max-width: 360px) {
    .atf-post-bar > li:last-child{
        margin-top: 8px;
        padding: 0;
    }
}


/*--------------------------------------------------------------
START BLOG DETAILS DESIGN
----------------------------------------------------------------*/
.atf-blog-area .atf-blog-up {
	margin-top: 0px ! important
}
.atf-blog-area .atf-post-slide {
	margin: 15px 0;
}
.atf-post.atf-style1 .atf-post-title {
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	margin-top: 10px;
}
.atf-sidebar-widget .atf-post.atf-style1 .atf-post-thumb {
	width: 80px;
}
.atf-post.atf-style1 {
	display: flex;
}
.atf-post.atf-style1 .atf-post-thumb {
	flex: none;
	margin-right: 10px;
	width: 70px;
}
.atf-sidebar-widget .atf-post-widget-list > li:not(:last-child) {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 12px;
	margin-bottom: 12px;
}
.atf-widget{
	margin:0px 0;
}
.atf-post.atf-style1 .atf-post-title a:hover {
	color: var(--thm-color);
}
.atf-post-info{
	margin-top:-8px;
}
.blog_search {
	margin-bottom: 40px;
}
.blog_search input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #eee;
    border-radius: 0 !important;
    color: #161616;
    -webkit-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
	height: calc(2.5em + .75rem + 2px);
}
.blog_search .form-control:focus {
 border-color: var(--thm-color);
 box-shadow: none;
}
.atf-page-heading {
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 50px;
  background-size: cover;
  background-attachment: fixed; }
.atf-page-heading.atf-size-md {
    height: 450px; }
.atf-page-heading:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
     }
.atf-page-heading > div {
    position: relative;
    z-index: 1; }

.atf-page-heading-title {
  color: #FFFFFF;
  font-size: 35px;
  text-align: center;
  margin-bottom: 7px; 
  margin-top: 80px;
  font-weight: 600px;
  text-shadow: 5px 5px 5px blue;
  
  
  
  
  }

.atf-breadcamp {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0; }
.atf-breadcamp li {
    color: rgba(255, 255, 255, 0.7);
    list-style: none; }
.atf-breadcamp li:not(:last-child):after {
      content: '/';
      padding-right: 6px;
      margin-left: 6px; }
.atf-breadcamp a:hover {
    color: var(--thm-white); }

.atf-widget {
	border: 1px solid #eaeaea;
	border-radius: 4px;
	padding: 30px;
	background: #fffbf2;
	margin-bottom: 10px;
}
.atf-widget .atf-widget-title {
	font-size: 16px;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 25px;
	margin-top: -3px;
}
	
.atf-widget .atf-widget-title::before {
	content: '';
	background-color: var(--thm-color);
	position: absolute;
	left: 26px;
	bottom: 0px;
	height: 2px;
	width: 40px;
}
.atf-widget .atf-widget-title::after {
	content: '';
	background-color: var(--thm-color);
	position: absolute;
	left: 0;
	bottom: 0px;
	height: 4px;
	width: 15px;
}
.atf-widget-list {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-top: 3px;
	margin-bottom: -18px;
	margin-left: -6px;
}
.atf-widget-list li {
	border: 1px dotted #eaeaea;
	background: var(--thm-white);
	margin: 5px;
}
.atf-widget-list a {
	display: block;
	padding: 10px 0;
	padding-left: 12px;
}
.atf-widget-list a:hover {
    color: var(--thm-color); 
}
.atf-showcase img {
	width: 90px;
	height: 90px;
	margin: 5px 1px;
}
.atf-widget-list li::before {
	content: "\f105";
	color: var(--thm-color);
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 20px;
	float: left;
	margin-right: 8px;
	margin-top: 5px;
	margin-left: 15px;
}
.atf-widget-list span {
	float: right;
	padding-right: 15px;
	font-weight: 600;
}	
.atf-tagcloud {
  margin-bottom: -10px; }
  
.atf-tagcloud .atf-tag {
    display: inline-block;
    font-size: 14px;
    padding: 2px 10px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 10px; 
    
    
    width: 60%;
    height: 45px;
    text-align: center;
    line-height: 45px;
    
    
    }
.atf-tagcloud .atf-tag:hover {
	color: var(--thm-white);
	background-color: var(--thm-color);
	border-color: var(--thm-color); }

.atf-post-details.atf-style1 {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8em; }
.atf-post-details.atf-style1 .slick-slide {
    line-height: 0; }
.atf-post-details.atf-style1 .atf-post-thumb {
    margin-bottom: 25px; }
.atf-post-details.atf-style1 .atf-post-thumb img {
      width: 100%; }
.atf-post-details.atf-style1 .atf-post-title {
    font-size: 28px;
    margin-bottom: 9px; }
.atf-post-details.atf-style1 blockquote {
	background-color: var(--thm-color);
	margin: 0;
	padding: 30px 40px 27px;
	font-size: 22px;
	line-height: 1.3;
	border-left: 5px solid var(--thm-color);
	border-radius: 4px;
	font-weight: 500;
	margin: 20px 0;
	color: white;
	text-align: center;
	text-transform: lowercase;
}
.atf-post-details.atf-style1 blockquote small {
	display: block;
	line-height: inherit;
	margin-top: 4px;
	color: #b5b5b5;
	font-size: inherit;
	font-size: 16px; }
.atf-post-details.atf-style1 blockquote small span {
	color: var(--thm-black);
}
.atf-post-details.atf-style1 .atf-post-label {
    margin-bottom: 15px; }
.atf-post-details.atf-style1 .atf-post-text p { 
    margin-bottom: 15px; }
.atf-post-details.atf-style1 .atf-post-meta {
    display: flex;
    justify-content: space-between;
    padding: 23px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea; }
.atf-post-details.atf-style1 h2 {
    font-size: 28px;
    margin-bottom: 10px; }
.atf-post-details.atf-style1 p {
    margin-bottom: 15px; }
.atf-post-details.atf-style1 img {
    margin-bottom: 20px;
    border-radius: 4px;
    margin-top: 5px; }
.atf-post-details.atf-style1 .embed-responsive {
    margin-top: 20px;
    margin-bottom: 20px; }
.atf-post-details.atf-style1 .embed-responsive iframe {
    width:100%;
	height:459px;
}

.atf-post-label > span {
  display: inline-block;
  position: relative; }
.atf-post-label > span:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px; }
.atf-post-label > span:not(:last-child):before {
	content: '';
	position: absolute;
	height: 16px;
	width: 1px;
	background-color: #b5b5b5;
	right: 0;
	top: 3px; }
.atf-post-label a:hover {
  color: var(--thm-color); }

.atf-post-tage-list {
  display: flex;
  flex-wrap: wrap; }
.atf-post-tage-list li {
	margin-right: 5px;
	color: var(--thm-black);
	font-weight:600;
}
.atf-post-tage-list li:not(:last-child):after {
    content: ','; }
.atf-post-tage-list li a:hover {
    color: var(--thm-color); }

.atf-post-tages,
.atf-post-share {
	display: flex;
	align-items: center; }
.atf-post-tages .atf-post-tage-title,
.atf-post-tages .atf-post-share-title,
.atf-post-share .atf-post-tage-title,
.atf-post-share .atf-post-share-title {
    margin: 0;
    font-size: 16px;
    margin-right: 10px;
    line-height: 1.4em; }

.atf-post-share-btn-list {
	display: flex;
	flex-wrap: wrap; }
.atf-post-share-btn-list a:not(:last-child) {
	margin-right: 12px;
	color: var(--thm-black);
}
.atf-post-share-btn-list a:hover {
    color: var(--thm-color); }

.atf-post-btn-gropu {
  display: flex;
  justify-content: space-between; }
.atf-post-btn-gropu .atf-btn {
    min-width: 170px;
    justify-content: center; }

.atf-page-heading-in .atf-post-label {
	color: rgba(255, 255, 255, 0.75);
	display: flex;
	justify-content: center;
	margin-top: 6px;
	font-size: 16px;
}
.atf-page-heading-in .atf-post-label > span:not(:last-child):before {
	background-color: var(--thm-white); }
.atf-page-heading-in .atf-post-label > span:not(:last-child) {
	color: rgba(255, 255, 255, 0.75); }
.atf-page-heading-in .atf-post-label a:hover {
	color: var(--thm-base);
}

.atf-page-heading-subtitle {
	color: blue;
	font-size: 38px;
	font-weight: 600;
	margin-top: 7px; 
	text-shadow: 2px 2px 2px white;
	
	}

@media screen and (max-width: 991px) {
  .atf-page-heading-title {
    font-size: 38px; }

  .atf-page-heading-subtitle {
    font-size: 16px; }

  .atf-page-heading.atf-size-md {
    height: 350px;
    padding-top: 80px; }

  .atf-page-heading-title br {
    display: none; }

  .atf-page-heading {
    height: 500px;
    padding-top: 80px; } }
/*--------------------------------------------------------------
 Comment
----------------------------------------------------------------*/
.comments-title,
.comment-reply-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.comment-list-outer,
.comment-respond {
    padding: 40px 30px 10px 30px;
    -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.comment-body {
    position: relative;
    margin-left: 120px;
    margin-bottom: 30px;
    min-height: 90px;
}

.children .comment-body {
    min-height: 70px;
}
.comment-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.comments-area ol {
    list-style: none;
    padding-left: 0;
}

.comments-area .children {
	padding-left: 130px;
}

/* .comments-area .children .children {
    padding-left: 35px;
} */

.comment-author .avatar {
	height: 90px;
	width: 90px;
	position: absolute;
	top: 0;
	left: -120px;
	border-radius: 50%;
}

.comment-author {
    line-height: 20px;
    margin-bottom: 30px;
    margin-right: 30px;
}
.comment-author a:hover{
   color: var(--thm-color);
}

.comment-author .nm {
	font-weight: 600;
	color: var(--thm-black);
	font-size: 16px;
}

.comment-metadata {
    line-height: 20px;
}

.comment-metadata a {
	font-weight: 600;
	font-size: 14px;
	position: absolute;
	left: -1px;
	top: 24px;
}

.comment-content {
    line-height: 25px;
    font-size: 15px;
}

.comment-content p {
	line-height: inherit;
	color: inherit;
	font-size: 14px;
}

.comment-reply-link {
    font-size: 15px;
    color: var(--thm-black);
    position: relative;
}

.comment-reply-link:hover,
.comment-reply-link:focus {
    color: var(--thm-color);
}
.comment-reply-link i{
	margin-right: 6px;
}
.comment-reply-link:before {
    font-family: 'Font Awesome Free 5';
    margin-right: 4px;
}
.reply{
	margin-top:10px;
}
.children .comment-body {
    margin-left: 100px;
}
.comment-respond {
  display: block;
  width: 100%;
  margin-top: 56px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-top: 1px solid #eaeaea; }

.comment-form {
  display: flex;
  flex-wrap: wrap; }

.comment-form-author,
.comment-form-email {
  width: 50%; }

.comment-form-email {
  padding-left: 10px; }

.comment-form-comment {
  width: 100%; }

.comment-form-author {
  padding-right: 10px; }

.comment-form-url {
  padding-left: 0px;
  width: 100%; }

.form-submit {
  margin-bottom: 0; }

.comment-form p {
  margin: 0; }

.comment-form textarea,
.comment-form input {
  border: 1px solid #eaeaea;
  padding: 8px 10px;
  width: 100%;
  background-color: transparent;
  display: block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-radius: 4px; }
  .comment-form textarea:focus,
  .comment-form input:focus {
    outline: none;
    border-color: var(--thm-color); }

.post-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }

.post-navigation > div {
  display: inline-block; }

.nav-previous a:before {
  content: "\f100";
  font-family: 'FontAwesome';
  margin-right: 4px; }

.nav-next a:after {
  content: "\f101";
  font-family: 'FontAwesome';
  margin-left: 4px; }

.nav-all-post {
  min-width: 120px;
  text-align: center;
  margin: 0 25px; }
 /*
* ----------------------------------------------------------------------------------------
* PAGINATION DESIGN
* ----------------------------------------------------------------------------------------
*/ 
.atf-post-pagination {
	margin:30px 0;
	justify-content: center;
}
.page-item.active .page-link {
	background-color: var(--thm-color);
	border-color: var(--thm-color);
}
.pagination-outer{ text-align: center; }
.pagination{
    font-family: 'Josefin Sans', sans-serif;
    display: inline-flex;
}
.pagination li a.page-link{
    color: #fff;
    background: #2F2F2B;
    font-size: 22px;
    font-weight: 500;
    line-height: 37px;
    height: 35px;
    width: 35px;
    padding: 0;
    margin: 0 5px;
    border-radius: 0;
    border: none;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease 0s;
}
.pagination li a.page-link:hover,
.pagination li a.page-link:focus,
.pagination li.active a.page-link:hover,
.pagination li.active a.page-link{
    color: #fff;
    background: #2F2F2B;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
.pagination li a.page-link:before{
    content: '';
    background-color: #f75504;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -100%;
    z-index: -1;
    transition: all 0.5s ease 0s;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.pagination li a.page-link:hover:before,
.pagination li.active a.page-link:before{
    top: 0;
}
@media only screen and (max-width: 480px){
    .pagination{
        font-size: 0;
        display: block;
    }
    .pagination li{
        display: inline-block;
        margin: 0 0 10px;
    }
}
  
 /*--------------------------------------------------------------
END BLOG DETAILS DESIGN
----------------------------------------------------------------*/
/*
* ----------------------------------------------------------------------------------------
* 14.END BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 15.START CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-contact-info {
	padding: 15px;
	margin-right: 0px;
	box-shadow: 0px 4px 6px 4px rgba(75, 81, 91, 0.1);
	-webkit-box-shadow: 0px 4px 6px 4px rgba(75, 81, 91, 0.1);
}
.atf-contact-info .atf-section-title{margin-bottom:30px;}
.atf-main-contact{
	margin:20px 0;
}
.atf-contact-details{
	margin-bottom: 20px;
	display: flex;
	flex-wrap:wrap;
	overflow: hidden;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.atf-contact-details i {
	font-size: 20px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	color: var(--thm-white);
	text-align: center;
	margin: 0px 0 25px;
	border-radius: 10%;
	background: var(--thm-color);
	float: left;
	margin-right: 25px;
}
.atf-contact-details h4 {
	color: var(--thm-black);
	font-size: 20px;
	line-height: 16px;
}
.atf-contact-details p {
	color: var(--thm-p);
	display: block;
	overflow: hidden;
}
.atf-contact-btn .atf-themes-btn {
	color: var(--thm-white);
}
.contact h4 {
	font-size: 30px;
	margin-bottom: 30px;
	color: var(--thm-black);
	font-weight: 400;
}
.atf-contact-area .atf-section-title p{
	width:100%;
	color: var(--thm-p);
}
.contact .form-control {
	padding: 12px 15px;
	border-radius: 7px;
	margin-bottom: 5px;
}
.contact .form-control:focus {
	border-color: var(--thm-color);
	box-shadow: none;
	outline: 0 none;
}
.contact textarea {
	border-radius: 0px;
	box-shadow: none;
	padding: 10px;
	height: 100px;
}
.contact textarea:focus {
	box-shadow: none;
	outline: 0 none;
	border-color: var(--thm-color);
}
.success {
    background: #fff none repeat scroll 0 0;
    color: #42c0d9;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}
.actions .atf-themes-btn {
	width: 100%;
}
.actions .atf-themes-btn:hover {
	transform: translateY(-0px);
}

/*
* ----------------------------------------------------------------------------------------
* 15.END CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 16.START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
#footer{
	position:relative;
}
.atf-footer-area{
	position:relative;
	z-index:1;
}
.atf-footer-area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--thm-color);
	border-radius: 50% 50% 0% 0%/100% 100% 0% 0%;
	transform: scaleX(2.1);
	z-index: -1;
}
.atf-mailchamp-subscribe{
	position:relative;
}
.atf-mailchamp-subscribe .btn i {
	font-size: 18px;
	color: var(--thm-white);
}
.atf-mailchamp-subscribe .btn {
	position: absolute;
	right: 22px;
	background: transparent;
	box-shadow: none;
	top: 2px;
	background: var(--thm-black);
	border-radius: 30px;
}
.atf-mailchamp-border{
	border-bottom:1px dashed var(--thm-white);
}
.atf-mailchamp-headding h2{
	font-size: 33px;
	color: var(--thm-white);
}
.atf-mailchamp-subscribe form input:focus {
	box-shadow: none;
	outline: 0 none;
	border-color: var(--thm-color);
}
.atf-mailchamp-subscribe form input {
	background: var(--thm-white);
	color: var(--thm-black);
	border: 1px solid #eee;
	width: 100%;
	height: 43px;
	padding-left: 15px;
	font-size: 14px;
	border-radius: 25px;
}
.atf-mailchamp-subscribe  .form-group{
	margin-bottom:0;
}
.atf-mailchamp-subscribe .atf-themes-btn {
	position: absolute;
	right: 5px;
	padding: 12px 23px;
	top: -3px;
}
.atf-mailchamp-subscribe  .atf-themes-btn:hover {
	transform: translateY(-0px); 
}
.atf-mailchamp-subscribe .atf-subscription-label {
	color: var(--thm-white);
	margin-bottom: 15px;
}
.atf-footer-boottom {
	padding: 5px 0;
	background: rgba(0,0,0, 0.4);
}
.atf-footer-box p {
    color: var(--thm-white);
    margin-bottom: 20px;
}
.atf-footer-box strong{
	font-weight:700;
}
.atf-footer-social-icon a i:hover{
	background:var(--thm-base);
	color:var(--thm-black);
	transition:all 0.3s ease-in-out 0s;
	-webkit-transition:all 0.3s ease-in-out 0s;
}
.atf-footer-social-icon a i {
	font-size: 16px;
	margin-right: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	color: var(--thm-white);
	text-align: center;
	background: var(--thm-black);
}
.atf-footer-area .atf-footer-link {
	position: relative;
}
.atf-footer-area .atf-footer-link::after {
	content: '';
	position: absolute;
	left: 35px;
	top: 35px;
	background: var(--thm-white);
	width: 45px;
	height: 2px;
}
.atf-footer-area .atf-footer-link::before {
	content: '';
	position: absolute;
	left: 14px;
	top: 33px;
	background: var(--thm-white);
	width: 11px;
	height: 5px;
}
.atf-footer-link h5 {
	margin-bottom: 35px;
	font-size: 22px;
	color: var(--thm-white);
}
.atf-footer-link .atf-list-menu li a {
	color: var(--thm-f3);
	margin-bottom: 10px;
	display: block;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	font-size: 16px;
}
.atf-footer-link .atf-list-menu li a:hover {
	color: var(--thm-base);
	padding-left: 4px;
}
.atf-footer-link .atf-list-menu li a span {
    position: relative;
    display: block;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    font-weight: 500;
    font-family: var(--thm-font);
}
.atf-footer-link p{
	color: var(--thm-white);
}
.atf-footer-boottom  p{
	color: var(--thm-white);
}
.atf-footer-boottom a {
	color: var(--thm-ase);
	font-weight: 700;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.atf-footer-boottom a:hover {
	color: var(--thm-white);
}
.atf-payment-link img{
	margin-right:6px;
}
.form-message {
	margin-top:20px;
}
/*
* ----------------------------------------------------------------------------------------
* START MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
#atf-map-area iframe {
	width: 100%;
	height: 150px;
}
/*
* ----------------------------------------------------------------------------------------
* END MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 16.END FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/*----------------------------------------*/
/*  17. LOGIN CSS START
/*----------------------------------------*/
.p-relative{
	position:relative;
}
.p-absolute{
	position:absolute;
}
.atf-login__wrapper {
	padding: 50px 85px 55px;
	background: var(--thm-white);
	box-shadow: 0px 30px 60px rgba(3, 4, 28, 0.1);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .atf-login__wrapper {
    padding: 50px 40px 55px;
  }
}
@media (max-width: 575px) {
  .atf-login__wrapper {
    padding: 40px 25px 45px;
  }
}
.atf-login__title {
  font-size: 34px;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.atf-login__top p {
  font-size: 16px;
}
.atf-login__input {
  position: relative;
}
.atf-login__input-wrapper {
  margin-bottom: 14px;
}
.atf-login__input input {
  background: var(--thm-white);
  border: 1px solid #EAEAEF;
  padding-left: 55px;
  /* padding-right: 50px; */
  height: 60px;
  line-height: 60px;
  width:100%;
}
.atf-login__input input:focus {
  border-color: var(--thm-color);
}
.atf-login__input span {
  position: absolute;
  top: 50%;
  left: 27px;
  -webkit-transform: translateY(calc(-50% - 3px));
  -moz-transform: translateY(calc(-50% - 3px));
  -ms-transform: translateY(calc(-50% - 3px));
  -o-transform: translateY(calc(-50% - 3px));
  transform: translateY(calc(-50% - 3px));
}
.atf-login__input-item {
  position: relative;
}
.atf-login__input-item:not(:last-child) {
  margin-bottom: 20px;
}
.atf-login__input-item > span {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(calc(-50% - 3px));
  -moz-transform: translateY(calc(-50% - 3px));
  -ms-transform: translateY(calc(-50% - 3px));
  -o-transform: translateY(calc(-50% - 3px));
  transform: translateY(calc(-50% - 3px));
}
.atf-login__input-item > span:hover {
  cursor: pointer;
}
.atf-login__remember input[type=checkbox], .atf-login__remember input[type=radio] {
  display: none;
}
.atf-login__remember input[type=checkbox]:checked ~ label::after, .atf-login__remember input[type=radio]:checked ~ label::after {
  background-color: transparent;
  border-color: var(--thm-color);
}
.atf-login__remember input[type=checkbox]:checked ~ label::before, .atf-login__remember input[type=radio]:checked ~ label::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.atf-login__remember label {
  font-size: 14px;
  position: relative;
  padding-left: 30px;
}
.atf-login__remember label::after, .atf-login__remember label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--thm-white);
  border: 1px solid #EAEAEF;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.atf-login__remember label::before {
  width: 14px;
  height: 14px;
  background-color: var(--thm-color);
  left: 3px;
  top: 5px;
  right: 3px;
  bottom: 3px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.atf-login__remember label:hover {
  cursor: pointer;
}
.atf-login__forgot a {
  font-size: 14px;
  color: var(--thm-color);
  text-transform: capitalize;
}
.atf-login__forgot a:hover {
  color:var(--thm-color);
}
.atf-login__btn {
	padding-bottom: 25px;
	width: 100%;
	padding-top: 20px;
	text-align: center;
}
.atf-login__social-header {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--thm-black);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 25px;
}
.atf-login__social-header::after,
.atf-login__social-header::before {
  position: absolute;
  content: "";
  left: 100%;
  top: 10px;
  width: 30px;
  height: 1px;
  background-color: var(--thm-black);
}
.atf-login__social-header::before {
  left: auto;
  right: 100%;
}
.atf-login__social-item a {
	display: inline-block;
	padding: 11px 25px;
	font-weight: 500;
	font-size: 14px;
	background: var(--tp-common-white);
	border: 1px solid #EAEAEF;
	margin-bottom: 20px;
	margin-right: 10px;
}
@media (max-width: 575px) {
  .atf-login__social-item a {
    width: 100%;
    margin-right: 0;
  }
  .atf-login__title{
	  font-size:25px;
  }
}
.atf-login__social-item a:last-child {
  margin-right: 0;
}
.atf-login__social-item a .login-social-icon {
  margin-right: 3px;
}
.atf-login__social-item a .login-social-icon svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.atf-login__social-item a:hover {
  border-color: var(--tp-theme-1);
}
.atf-login__register-now {
  text-align: center;
}
.atf-login__register-now p {
  font-size: 14px;
  margin-bottom: 0;
}
.atf-login__register-now p a {
  color: var(--thm-black);
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
}
.atf-login__register-now p a:hover {
  color: var(--thm-color);
}







.container_a {
            max-width: 850px;
            margin: 0 auto;
            background: white;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        
        
        
        
        
        
        .article-list {
            list-style: none;
            padding: 0;
        }
        
        .article-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 30px;
            border-bottom: 1px solid #eaeaea;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .article-item:hover {
            background-color: #f8fbff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .article-left {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .article-icon {
            width: 50px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 1.4rem;
            color: white;
        }
        
        .article-title {
            font-size: 16px;
            
            color: #2c3e50;
        }
        
        .article-date {
            color: #7f8c8d;
            font-size: 1rem;
            white-space: nowrap;
            background: #f5f7fa;
            padding: 2px 15px;
            border-radius: 20px;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
       
        
        @media (max-width: 650px) {
            .article-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .article-date {
                margin-top: 12px;
                align-self: flex-end;
            }
            
            h1 {
                font-size: 1.9rem;
            }
            
            body {
                padding: 15px;
            }
        }



.article-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .article-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .article-section-title {
           color: var(--thm-white);
		    line-height: 25px;
		    margin: 0px 0 5px;
		    text-transform: capitalize;
		    font-family: var(--thm-font);
		    letter-spacing: 1px;
		    font-size: 20px;
		    font-weight: 500;
		    background: var(--thm-color);
		    display: inline-block;
		    padding: 2px 10px;
		    border-radius: 5px;
        }
        
        .view-all {
            color: #4299e1;
            text-decoration: none;
            font-size: 1.0rem;
            font-weight: 500;
            padding: 0.3rem 0.8rem;
            border: 1px solid #4299e1;
            border-radius: 6px;
            transition: all 0.2s ease;
            height: 35px;
        }
        
        .view-all:hover {
            background-color: #4299e1;
            color: white;
        }
        
        
        
         /* 右侧热门推荐 - 新增日期样式 */
        .trending-sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        
        .trending-title {
            font-size: 1.3rem;
            color: #2d3748;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .trending-list {
            list-style: none;
        }
        
        .trending-item {
            display: flex;
            align-items: center;
            justify-content: space-between; /* 新增：两端对齐 */
            margin-bottom: 0.3rem;
            padding-bottom: 0.3rem;
            border-bottom: 1px solid #f0f0f0;
            transition: transform 0.2s ease;
        }
        
        .trending-item:hover {
            transform: translateX(3px);
        }
        
        .trending-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .trending-content {
            display: flex;
            align-items: center;
            width: 90%;
        }
        
        .trending-rank {
            background-color: #4299e1;
            color: white;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            margin-right: 1rem;
            flex-shrink: 0;
            font-weight: 600;
        }
        
        .trending-rank.top-2 {
            background-color: #9f7aea;
        }
        
        .trending-rank.top-3 {
            background-color: #38b2ac;
        }
        
        .trending-link {
            color: #4a5568;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.2s ease;
           /* font-weight: 500;*/
            flex: 1; /* 新增：让标题占据中间空间 */
           
           width: 100%;overflow: hidden;text-overflow:ellipsis;white-space:nowrap;
        }
        
        .trending-link:hover {
            color: #4299e1;
        }
        
        /* 方块日期样式 - 核心新增 */
        .trending-date {
            background-color: #f0f8fb;
            border: 1px solid #e8f4f8;
            border-radius: 6px;
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-left: 0.8rem;
            flex-shrink: 0;
        }
        
        .trending-date-month {
            color: #4299e1;
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1;
        }
        
        .trending-date-day {
            color: #2d3748;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .trending-date-year {
            color: #718096;
            font-size: 0.8rem;
            line-height: 1;
        }


/* 图片区域 */
        .card-image {
            width: 100%;
            height: 60%; /* 调整图片高度占比，预留更多空间给文字和信息栏 */
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .image-text-card:hover .card-image {
            transform: scale(1.02); /* hover 图片轻微放大，提升交互感 */
        }
        /* 内容区域：标题+描述+信息栏 */
        .card-content {
            width: 100%;
            height: 40%;
            padding: 22px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        /* 标题样式 */
        .card-title {
            font-size: 20px;
            color: #2d3748;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        /* 描述文本 */
        .card-desc {
            font-size: 14px;
            color: #718096;
            line-height: 1.5;
            flex: 1; /* 让描述文本自适应填充空间 */
        }
        /* 信息栏：发布日期、作者、阅读量 */
        .card-meta {
            display: flex;
            align-items: center;
            gap: 16px; /* 图标信息之间的间距 */
            font-size: 13px;
            color: #a0aec0;
            margin-top: 12px;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px; /* 图标和文字的间距 */
        }
        .meta-icon {
            font-size: 14px;
            color: #4299e1; /* 图标统一颜色，提升辨识度 */
        }
        /* 适配小屏幕（可选优化） */
        @media (max-width: 500px) {
            .image-text-card {
                width: 95%;
                height: auto;
            }
            .card-image {
                height: 280px;
            }
            .card-content {
                height: auto;
                padding: 18px 16px;
            }
        }
        



.mbx {overflow:hidden;width:100%;max-width:100%;background:#f6f6f6;margin:0px auto;}
.mbx ul.mbxwh {width:1400px;margin:0px auto;}
.mbx ul li {float:left;font-size:14px;color:#666;width:auto;line-height:50px;}
.mbx ul li.home {background:url(/template/gsznrh/assets/img/bj2.jpg) no-repeat 0px center;padding-left:20px;}
.mbx ul li span {color:#b39652;padding-left:10px;}
.mbx ul li a {color:#666;background:url(/template/gsznrh/assets/img/bj1.jpg) no-repeat right center;padding:0px 22px 0px 10px;}
.mbx ul li a:hover {color:#b39652;}



.left {overflow:hidden;float:left;width:100%;padding:0px 12px 0px;}

.lefta {overflow:hidden;font-size:26px;color:#fff;font-weight:bold;background:url(/template/gsznrh/assets/img/bj6.jpg) #b39652 no-repeat 180px 32px;width:100%;height:70px;line-height:48px;padding:15px 0px 0px 40px;}
.lefta span {display:block;background:url(/template/gsznrh/assets/bj7.jpg) no-repeat 0px 0px;height:5px;}

.leftb {overflow:hidden;width:100%;background:#f2f2f0;margin:0px auto;padding:10px 20px 20px;}
.leftb ul li {overflow:hidden;float:left;font-size:16px;width:100%;border-bottom:1px solid #d0d0cd;}
.leftb ul li a {
	display:block;color:#333;line-height:60px;padding-left:20px;

	background: url(/template/gsznrh/assets/img/bj7.png)  no-repeat 180px 32px;


}
.leftb ul li a:hover {color:#b39652;background:url(/template/gsznrh/assets/bj5.jpg) no-repeat 160px center;text-decoration:none;}
.leftb ul li.on a {color:#b39652;background:url(/template/gsznrh/assets/bj5.jpg) no-repeat 160px center;}

.leftc {overflow:hidden;width:240px;height:155px;margin:20px auto 0px;}
.leftc img {-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;}
.leftc a:hover img{-moz-transform:scale(1.1);-webkit-transform:scale(1.1);-o-transform:scale(1.1);-ms-transform:scale(1.1);-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;}





.right {overflow:hidden;float:right;width:100%;padding:20px 0px 0px;}
.zright {overflow:hidden;float:right;width:100%;padding:20px 0px 0px;}

.righta {overflow:hidden;width:100%;margin:0px auto;}
.righta ul li {float:left;overflow:hidden;width:920px;height:142px;margin:25px 0px 0px;padding:0px 0px 25px;border-bottom:1px dotted #d6d6d6;}
.righta ul li h2 {overflow:hidden;float:left;width:214px;height:142px;margin-right:25px;}
.righta ul li h2 img {width:214px;height:142px;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;}
.righta ul li h2 a:hover img{-moz-transform:scale(1.1);-webkit-transform:scale(1.1);-o-transform:scale(1.1);-ms-transform:scale(1.1);-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;}
.righta ul li h3 {overflow:hidden;font-size:16px;height:32px;line-height:32px;}
.righta ul li p {overflow:hidden;font-size:14px;color:#999;line-height:24px;height:72px;margin:10px 0px 0px;}
.righta ul li p a {color:#d72f28;}
.righta ul li p a:hover {color:#d72f28;}
.righta ul li h4 {font-size:12px;color:#b09351;font-weight:normal;line-height:18px;margin:10px 0px 0px;}

.rightb {overflow:hidden;width:100%;margin:10px auto 0px; margin-bottom:20px;}
.rightb li {float:left;font-size:14px;background:url(/template/gsznrh/assets/img/bj3.jpg) no-repeat 4px center;width:100%;height:60px;line-height:60px;padding-left:20px;border-bottom:1px dotted #d6d6d6;   width: 100%;

}
.rightb li a {overflow:hidden;float:left;width:80%;height:60px;

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 16px;


}
.rightb li span {float:right;font-family:Arial, Helvetica, sans-serif;font-size:13px;color:#999;text-align:right;width:100px;}

.rightc {overflow:hidden;width:920px;margin:32px auto 0px;padding:0px 0px 15px;border-bottom:1px dotted #d6d6d6;}
.rightc h1 {font-size:20px;text-align:center;line-height:32px;padding:0px 0px 10px;}
.rightc p {font-size:14px;color:#999;text-align:center;font-weight:normal;line-height:24px;}

.rightd {overflow:hidden;font-size:16px;width:920px;line-height:30px;margin:25px auto 0px;}
.rightd p {margin:10px 0px 0px;}
.rightd img {margin:10px 0px 0px;}


.rightd2 {overflow:hidden;text-align:center;width:920px;line-height:30px;margin:25px auto 0px;}
.rightd2 h1 {font-size:24px;}
.rightd2 h2 {font-size:18px;}
.rightd2 h3 {font-size:21px;}


.righte {overflow:hidden;width:920px;background:url(/template/wwt_css/lm_css/bj8.jpg) repeat-x 0px center;margin:30px auto 0px;}
.righte h3 {float:left;font-size:18px;color:#b39652;background:url(/template/wwt_css/lm_css/bj9.jpg) #fff no-repeat 0px center;line-height:35px;padding:0px 10px 0px 20px;}

.rightf {overflow:hidden;width:940px;margin:0px auto;}
.rightf ul li {_display:inline;float:left;overflow:hidden;position:relative;width:215px;margin:20px 0px 0px 20px;}
.rightf ul li h3 {overflow:hidden;width:215px;height:144px;z-index:1;}
.rightf ul li h3 img {width:215px;height:144px;}
.rightf ul li h2 {overflow:hidden;position:relative;z-index:3;display:block;width:215px;height:144px;background:url(/template/wwt_css/lm_css/play.png) no-repeat 0px 0px;margin-top:-144px;}
.rightf ul li h2 a {float:left;text-indent:-999px;width:215px;height:144px;}
.rightf ul li p {overflow:hidden;font-size:14px;height:42px;line-height:21px;margin:8px 0px 0px;}

.rightg {overflow:hidden;width:936px;margin:0px auto;padding-left:4px;}
.rightg ul li {_display:inline;overflow:hidden;float:left;width:136px;margin:20px 0px 0px 20px;}
.rightg ul li h2 {overflow:hidden;width:136px;height:190px;}
.rightg ul li h2 img {width:136px;height:190px;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;}
.rightg ul li h2 a:hover img{-moz-transform:scale(1.1);-webkit-transform:scale(1.1);-o-transform:scale(1.1);-ms-transform:scale(1.1);-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;}
.rightg ul li h3 {overflow:hidden;font-size:14px;text-align:center;height:24px;line-height:24px;margin:5px 0px 0px;}
.rightg ul li p {overflow:hidden;font-size:12px;color:#666;text-align:center;height:21px;line-height:21px;}

.righth {overflow:hidden;width:920px;background:url(/template/wwt_css/lm_css/bj14.jpg) repeat-y center 0px;margin:25px auto 0px;padding:0px 0px 40px;}
.righth ul li {float:left;overflow:hidden;font-size:14px;background:url(/template/wwt_css/lm_css/bj15.jpg) no-repeat right 6px;width:440px;padding-right:19px;}
.righth ul li h3 {overflow:hidden;font-size:14px;text-align:right;}
.righth ul li h3 span {display:inline-block;color:#976b41;background:url(/template/wwt_css/lm_css/bj16.jpg) #eee no-repeat right 0px;line-height:33px;padding:0px 14px 0px 10px;}
.righth ul li p {overflow:hidden;font-size:14px;text-align:right;line-height:24px;margin:5px 0px 0px;}
.righth ul li.line {float:left;overflow:hidden;font-size:14px;background:none;width:920px;height:1px;padding-right:0px;}
.righth ul li.second {float:left;overflow:hidden;font-size:14px;background:url(/template/wwt_css/lm_css/bj15.jpg) no-repeat 451px 6px;width:440px;padding-left:480px;}
.righth ul li.second h3 {text-align:left;}
.righth ul li.second h3 span {background:url(/template/wwt_css/lm_css/bj17.jpg) #eee no-repeat 0px 0px;line-height:33px;padding:0px 10px 0px 14px;}
.righth ul li.second p {text-align:left;}



/*第一行头条增加样式*/

/* 主内容区 */
        .gstt-main {
            padding: 5px 0;
        }
        
        /* 新闻卡片 */
        .gstt-news-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 10px 32px;
            border: 1px solid #f0f0f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gstt-news-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        
        /* 新闻标题 */
        .gstt-news-title {
            font-size: clamp(28px, 2vw, 44px);
            font-weight: 700;
            color: #111111;
            line-height: 1.3;
            margin-bottom: 5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gstt-news-title a {
            color: #006699;
            text-decoration: none;
            display: inline-block;
             white-space: nowrap; /* 禁止换行 */
            overflow: hidden; /* 隐藏溢出内容 */
            text-overflow: ellipsis; /* 溢出部分用...表示 */
           width: 100%;
        }
        
        .gstt-news-title:hover {
            transform: translateX(8px);
        }
        
        .gstt-news-title a:hover {
            color: #e63946;
        }
        
        /* 新闻元信息（调整后） */
        .gstt-news-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            color: #999999;
            font-size: 14px;
        }
        
        .gstt-meta-left {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        @media (min-width: 768px) {
            .gstt-meta-left {
                margin-bottom: 0;
            }
        }
        
        .gstt-meta-item {
            display: flex;
            align-items: center;
        }
        
        .gstt-tag {
            display: inline-block;
            padding: 4px 12px;
            background-color: #e63946;
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            border-radius: 14px;
        }
        
        .gstt-time {
            display: flex;
            align-items: center;
        }
        
        .gstt-time i {
            margin-right: 6px;
        }
        
        .gstt-source {
            display: flex;
            align-items: center;
        }
        
        .gstt-source i {
            margin-right: 6px;
        }
        
        .gstt-stats {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .gstt-stat-item {
            display: flex;
            align-items: center;
        }
        
        .gstt-stat-item i {
            margin-right: 6px;
        }
        
        .gstt-meta-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .gstt-action-btn {
            color: #999999;
            background: none;
            border: none;
            padding: 0;
            margin: 0;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gstt-action-btn i {
            margin-right: 6px;
        }
        
        .gstt-action-btn:hover {
            color: #e63946;
        }
        
        /* 动画效果 */
        @keyframes gstt-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gstt-fade-in-animation {
            animation: gstt-fadeIn 0.8s ease-out forwards;
            opacity: 0;
        }
        
/*增加第一行头条样式结束*/

/*首页第二行增加样式-三列开始*/
/* 容器样式 - 固定宽度 */
    .gs-container {
      width: 100%;
      max-width: 1420px;
      margin: 0 auto;
      /*background-color: white;*/
      /*border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);*/
      overflow: hidden;
      padding: 10px 0px;
    }
    
    /* 布局容器 */
    .gs-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 1px;
    }
    
    @media (min-width: 768px) {
      .gs-layout {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        padding: 1px;
      }
    }
    
    /* 左侧列 (50%) */
    .gs-left-column {
      grid-column: 1 / -1;
      padding: 1px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    @media (min-width: 768px) {
      .gs-left-column {
        grid-column: 1 / 3;
      }
    }
    
    /* 文章列表 */
    .gs-article-list {
      background-color: white;
      border-radius: 1rem;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
      border: 1px solid #f1f5f9;
      padding: 24px;
      
      height: 100%;
    }
    
    .gs-article-list-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    
    .gs-article-list-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #006699;
      display: flex;
      align-items: center;
    }
    
    .gs-article-list-title i {
      color: #3b82f6;
      margin-right: 12px;
    }
    
    .gs-article-more {
      color: #3b82f6;
      font-size: 0.875rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
      text-decoration: none;
      
      
     
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border: 1px solid #4299e1;
    border-radius: 6px;
    transition: all 0.2s 
ease;
    height: 35px;
    }
    
    .gs-article-more:hover {
      color: rgba(59, 130, 246, 0.8);
    }
    
    .gs-article-more i {
      margin-left: 4px;
    }
    
    .gs-article-items {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    /* 文章项 */
    .gs-article-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 5px 12px;
      border-radius: 0.75rem;
      border: 1px solid #f1f5f9;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    
    .gs-article-item:hover {
      background-color: rgba(59, 130, 246, 0.03);
    }
    
    /* 日期方块 */
    .gs-date-block {
      width: 48px;
      height: 48px;
      border-radius: 0.75rem;
      background-color: #eff6ff;
      color: #3b82f6;
      font-weight: 500;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .gs-date-day {
      font-size: 0.875rem;
    }
    
    .gs-date-month {
      font-size: 0.75rem;
    }
    
    /* 文章标题 - 非加粗 */
    .gs-article-item-title {
      color: #1e293b;
      font-weight: 400 !important;
      line-height: 1.6;
      transition: color 0.3s ease;
      margin: 0;
      font-size: 18px;
      
      width: 100%;
     white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    
    .gs-article-item-title:hover {
      color: #3b82f6;
    }
    
    /* 中间列 (25%) */
    .gs-middle-column {
      grid-column: 1 / -1;
      padding: 1px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    @media (min-width: 768px) {
      .gs-middle-column {
        grid-column: 3 / 4;
      }
    }
    
    /* 卡片样式 */
    .gs-card {
      background-color: white;
      border-radius: 1rem;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
      border: 1px solid #f1f5f9;
      padding: 20px;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
    }
    
    .gs-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    }
    
    /* 图片容器 */
    .gs-image-container {
      width: 100%;
      height: 192px;
      border-radius: 0.5rem;
      overflow: hidden;
      margin-bottom: 16px;
    }
    
    .gs-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gs-image-container:hover img {
      transform: scale(1.05);
    }
    
    .gs-card-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #006699;
      margin-bottom: 8px;
      margin-top: 0;
    }
    
    .gs-card-desc {
      color: #1e293b;
    margin-bottom: 4px;
    margin-top: 0;
    font-size: 18px;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-top: 0;
      font-weight: 400;
    }
    
    .gs-card-time {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid #f1f5f9;
      color: #64748b;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
    }
    
    .gs-card-time i {
      margin-right: 8px;
    }
    
    /* 装饰元素 */
    .gs-decorator {
      height: 1px;
      background: linear-gradient(90deg, #3b82f6, #f97316);
      border-radius: 0.5px;
      width: 50%;
      margin: 0 auto;
    }
    
    /* 右侧列 (25%) */
    .gs-right-column {
      grid-column: 1 / -1;
      padding: 24px;
      border-radius: 1rem;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(249, 115, 22, 0.05));
    }
    
    @media (min-width: 768px) {
      .gs-right-column {
        grid-column: 4 / 5;
      }
    }
    
    /* 公告样式 */
    .gs-notice-header {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
    }
    
    .gs-notice-header i {
      color: #f97316;
      font-size: 1.5rem;
      margin-right: 12px;
    }
    
    .gs-notice-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #006699;
      margin: 0;
    }
    
    .gs-notice-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .gs-notice-item {
      background-color: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(4px);
      padding: 10px;
      border-radius: 0.75rem;
      border-left: 4px solid #e2e8f0;
      transition: all 0.3s ease;
    }
    
    .gs-notice-item:hover {
      padding-left: 20px;
      border-left-color: #3b82f6;
      background-color: white;
    }
    
    .gs-notice-item-title {
      font-weight: 500;
      color: #1e293b;
      margin-bottom: 4px;
      margin-top: 0;
      
      font-size: 18px;
    }
    
    .gs-notice-item-desc {
      color: #64748b;
      font-size: 0.875rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin: 0 0 8px 0;
    }
    
    .gs-notice-item-date {
      color: #64748b;
      font-size: 0.75rem;
      margin-top: 8px;
    }
    
    .gs-notice-more {
      display: inline-block;
      margin-top: 24px;
      color: #3b82f6;
      font-size: 0.875rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;
      text-decoration: none;
    }
    
    .gs-notice-more:hover {
      color: rgba(59, 130, 246, 0.8);
    }
    
    .gs-notice-more i {
      margin-left: 4px;
    }
    
    /* 页脚 */
    .gs-footer {
      margin-top: 32px;
      text-align: center;
      color: #64748b;
      font-size: 0.875rem;
    }
    

/* 统一前缀 gstb 样式 */
        .gstb-icon-group {
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 100%;
            max-width: 1420px;
            margin: 2px auto;
            padding: 0 2px;
            box-sizing: border-box;
        }

        .gstb-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 16%;
            text-align: center;
        }

        .gstb-icon-bg {
            width: 64px;
            height: 64px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin-bottom: 5px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .gstb-icon-bg:hover {
            transform: scale(1.05);
        }

        .gstb-icon-text {
            font-size: 14px;
            color: #333;
            line-height: 1.5;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .gstb-icon-bg {
                width: 60px;
                height: 60px;
            }
            .gstb-icon-text {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .gstb-icon-group {
                flex-wrap: wrap;
                gap: 15px;
            }
            .gstb-icon-item {
                width: 45%;
            }
        }
        

   @layer utilities {
            .gsdj-content-auto {
                content-visibility: auto;
            }
            .gsdj-text-shadow {
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            .gsdj-card-hover {
                transition: all 0.3s ease;
            }
            .gsdj-card-hover:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            }
            .gsdj-list-divider {
                border-bottom: 1px solid #f1f5f9;
            }
            .gsdj-nav-hover {
                position: relative;
            }
            .gsdj-nav-hover::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: -2px;
                left: 0;
                background-color: #3b82f6;
                transition: width 0.3s ease;
            }
            .gsdj-nav-hover:hover::after {
                width: 100%;
            }
            .gsdj-dropdown-hover:hover .gsdj-dropdown-menu {
                display: block;
            }
            .gsdj-article-icon {
                transition: all 0.3s ease;
            }
            .gsdj-group:hover .gsdj-article-icon {
                color: #3b82f6;
                transform: scale(1.2);
            }
        }
         /* 强制图文卡片左右各占50% */
        .gsdj-image-text-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .gsdj-image-text-grid {
                grid-template-columns: 1fr;
            }
            .gsdj-nav-container {
                flex-wrap: wrap;
            }
            .gsdj-dropdown-menu {
                position: static !important;
                width: 100% !important;
            }
        }

        /* 导航栏样式 */
        .gsdj-nav-line {
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
        }
        .gsdj-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background-color: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 0 0 8px 8px;
            z-index: 100;
            padding: 0.5rem 0;
        }
        .gsdj-dropdown-item {
            padding: 0.75rem 1.5rem;
            transition: background-color 0.2s ease;
        }
        .gsdj-dropdown-item:hover {
            background-color: #f1f5f9;
        }
        /* 导航图标样式统一 */
        .gsdj-nav-icon {
            width: 18px;
            text-align: center;
            margin-right: 8px;
        }





  /* 全局容器限制宽度 */
        .gsandat-container {
            width: 100%;
            max-width: 1420px;
            margin: 0 auto;
            box-sizing: border-box;
        }
        /* 导航容器样式 */
        .gsandat-nav {
            width: 100%;
            /*background-color: #fff;*/
            border-bottom: 1px solid #eee;
            box-sizing: border-box;
           /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 轻微阴影增强质感 */*/
        }
        /* 导航列表样式 */
        .gsandat-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* 左侧导航项（项目建设）专属样式 */
        .gsandat-nav-item-left {
            margin-right: auto;
        }
        .gsandat-nav-link-logo {
            display: inline-block;
            font-size: 18px; /* 标题略大突出 */
            color: #fff;
            text-decoration: none;
            padding: 20px 36px; /* 增大内边距，背景更饱满 */
            position: relative;
            font-weight: 600;
            background-color: #006699; /* 主色背景 */
            border-radius: 0 0 4px 4px; /* 底部圆角柔和过渡 */
            transition: background-color 0.3s ease;
        }
        /* 左侧链接下划线（白色适配背景） */
        .gsandat-nav-link-logo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #fff;
            transition: height 0.3s ease;
        }
        .gsandat-nav-link-logo:hover {
            background-color: #1d39c4; /*  hover加深背景 */
            color: #fff; /* 保持白色文字 */
        }
        .gsandat-nav-link-logo:hover::after {
            height: 4px; /*  hover下划线加粗 */
        }
        /* 右侧导航组 */
        .gsandat-nav-group {
            display: flex;
            gap: 28px; /* 增大间距，提升呼吸感 */
            padding-right: 20px;
        }
        /* 右侧导航链接样式 */
        .gsandat-nav-link {
            display: inline-block;
            font-size: 16px;
            color: #333;
            text-decoration: none;
            padding: 10px 0;
            position: relative;
            font-weight: 500;
            transition: color 0.3s ease;
            
            color: #000000;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s 
ease;
    text-decoration: none;
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border: 1px solid #999999;
    border-radius: 6px;
    transition: all 0.2s 
ease;
    height: 35px;
        }
        /* 右侧链接下划线 */
        .gsandat-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e5e7eb; /* 默认浅灰色下划线 */
            transition: all 0.3s ease;
        }
        .gsandat-nav-link:hover {
            color: #2f54eb; /*  hover文字变主色 */
        }
        .gsandat-nav-link:hover::after {
            background-color: #2f54eb; /*  hover下划线变主色 */
            height: 3px;
            transform: translateY(0);
        }
        /* 激活状态（可选，用于当前页） */
        .gsandat-nav-link.active {
            color: #2f54eb;
        }
        .gsandat-nav-link.active::after {
            background-color: #2f54eb;
        }
        


/* 容器样式 */
    .gsznrhb-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    
    /* 页面标题样式 - 取消加粗，正常显示 */
    .gsznrhb-page-title {
      font-size: 2rem;
      font-weight: normal; /* 取消加粗 */
      text-align: center;
      margin-bottom: 12px;
      line-height: 1.6; /* 调整标题行距 */
    }
    
    .gsznrhb-title-line {
      height: 2px;
      width: 80px;
      background-color: #3b82f6;
      margin: 0 auto 40px;
    }
    
    /* 文章列表样式 */
    .gsznrhb-article-list {
      list-style: none;
    }
    
    /* 文章项样式 */
    .gsznrhb-article-item {
      display: flex;
      flex-direction: column;
      margin-bottom: 30px; /* 增加文章项间距 */
      padding-bottom: 30px;
      border-bottom: 1px solid #e2e8f0;
      line-height: 1.7; /* 调整文章项行距 */
    }
    
    @media (min-width: 768px) {
      .gsznrhb-article-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }
    
    /* 文章标题样式 - 取消加粗，正常显示 */
    .gsznrhb-article-title {
      font-size: 1rem;
      font-weight: normal; /* 取消加粗 */
      margin-bottom: 1px; /* 调整标题与下划线间距 */
      transition: color 0.3s ease;
      text-align: left;
      overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		width: 100%;
      
    }
    
    .gsznrhb-article-title a {
      color: #1e293b;
      text-decoration: none;
      
      	
      
    }
    
    
    
    
    .gsznrhb-article-title a:hover {
      color: #3b82f6;
    }
    
    /* 文章标题下划线 */
    .gsznrhb-article-title-line {
      height: 1px;
      width: 50px;
      background-color: #3b82f6;
      transition: width 0.3s ease;
    }
    
    .gsznrhb-article-item:hover .gsznrhb-article-title-line {
      width: 20px;
    }
    
    /* 日期样式 */
    .gsznrhb-article-date {
      color: #64748b;
      font-size: 0.9rem;
      margin-top: 10px; /* 调整日期与下划线间距 */
      line-height: 1.5; /* 调整日期行距 */
    }
    
    @media (min-width: 768px) {
      .gsznrhb-article-date {
        margin-top: 0;
        margin-left: 20px;
      }
    }
    


 /* 容器样式 */
        .gszngrc-container {
            width: 1420px;
            margin: 0 auto;
            display: flex;
            flex-wrap: nowrap;
            gap: 20px; /* 列之间的间距 */
        }

        /* 列容器样式 */
        .gszngrc-column {
            width: 25%;
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .gszngrc-column:hover {
            transform: translateY(-5px);
        }

        /* 图片样式 - 新增相对定位用于栏目按钮 */
        .gszngrc-img-box {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .gszngrc-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gszngrc-column:hover .gszngrc-img {
            transform: scale(1.05);
        }

        /* 新增：图片栏目文字按钮 */
        .gszngrc-category-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(47, 84, 235, 0.9);
            color: #ffffff;
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 500;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .gszngrc-column:hover .gszngrc-category-btn {
            background-color: rgba(38, 69, 204, 0.9);
        }

        /* 文章列表样式 */
        .gszngrc-article-list {
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .gszngrc-article-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .gszngrc-article-item:last-child {
            border-bottom: none;
        }

        .gszngrc-article-title {
            font-size: 15px;
            color: #333333;
            text-decoration: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 80%;
            transition: color 0.3s ease;
        }

        .gszngrc-article-title:hover {
            color: #2f54eb;
        }

        .gszngrc-article-date {
            font-size: 12px;
            color: #999999;
            white-space: nowrap;
        }

        /* 新增：查看更多按钮 */
        .gszngrc-view-more {
            margin-top: 20px;
            padding: 8px 0;
            text-align: center;
            background-color: #f8f9fa;
            color: #2f54eb;
            font-size: 14px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .gszngrc-view-more:hover {
            background-color: #2f54eb;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(47, 84, 235, 0.2);
        }

        /* 响应式调整 */
        @media (max-width: 1440px) {
            .gszngrc-container {
                width: 95%;
            }
        }

        @media (max-width: 768px) {
            .gszngrc-container {
                flex-wrap: wrap;
            }

            .gszngrc-column {
                width: calc(50% - 10px);
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .gszngrc-column {
                width: 100%;
            }
        }
        

  /* 统一前缀gsznrhd样式定义 */
        .gsznrhd-container {
            width: 100%; /* 基础100%宽度 */
            max-width: 710px; /* 总宽度上限710px */
            margin: 0 auto; /* 水平居中 */
            padding: 20px 0px;
            box-sizing: border-box; /* 确保padding不影响总宽度 */
        }
        
        /* 标题栏：包含标题和查看更多按钮 */
        .gsznrhd-title-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            width: 100%;
        }
        
        .gsznrhd-list-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin: 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #0066cc; /* 标题下划线 */
        }
        
        /* 标题右侧查看更多按钮 */
        .gsznrhd-view-more {
            padding: 4px 12px;
            border: none;
            border-radius: 4px;
            background-color: #f5f5f5;
            color: #0066cc;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .gsznrhd-view-more:hover {
            background-color: #e8f4ff;
            color: #004a99;
        }
        
        .gsznrhd-two-column {
            display: flex;
            gap: 20px; /* 两列间距（不占用50%宽度） */
            margin-bottom: 30px;
            width: 100%;
        }
        
        .gsznrhd-column {
            flex: 0 0 50%; /* 固定占比50%，不伸缩 */
            width: 50%; /* 明确宽度50% */
            box-sizing: border-box; /* 确保padding不影响宽度计算 */
        }
        
        .gsznrhd-list {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }
        
        .gsznrhd-list-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            width: 100%;
        }
        
        .gsznrhd-list-text {
           
            text-decoration: none;
            transition: color 0.3s;
            /* 溢出处理核心样式 */
            white-space: nowrap; /* 禁止换行 */
            overflow: hidden; /* 隐藏溢出内容 */
            text-overflow: ellipsis; /* 溢出部分用...表示 */
            max-width: 85%; /* 适配50%列宽的文本占比 */
           
           
            font-size: 15px;
            color: #333333;
        }
        
        .gsznrhd-list-text:hover {
            color: #0066cc;
        }
        
        .gsznrhd-list-date {
            color: #999;
            font-size: 14px;
            white-space: nowrap; /* 日期不换行 */
            margin-left: 8px;
        }
        
        .gsznrhd-button-group {
            display: flex;
            gap: 15px;
            width: 100%;
            flex-wrap: wrap; /* 按钮过多时自动换行 */
        }
        
        .gsznrhd-button {
            padding: 8px 20px;
            border: none;
            border-radius: 4px;
            background-color: #0066cc;
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .gsznrhd-button:hover {
            background-color: #004a99;
        }
        
        .gsznrhd-button-secondary {
            background-color: #f5f5f5;
            color: #333;
        }
        
        .gsznrhd-button-secondary:hover {
            background-color: #e5e5e5;
        }

        /* 响应式调整：小屏幕优化（屏幕宽度≤710px时自动适配） */
        @media (max-width: 710px) {
            .gsznrhd-list-text {
                max-width: 70%; /* 小屏幕调整文本占比 */
            }
            .gsznrhd-container {
                padding: 15px;
            }
        }

        /* 超小屏幕适配（单列显示） */
        @media (max-width: 480px) {
            .gsznrhd-two-column {
                flex-direction: column; /* 转为单列布局 */
                gap: 25px;
            }
            .gsznrhd-column {
                flex: 0 0 100%; /* 单列时占满宽度 */
                width: 100%;
            }
            .gsznrhd-list-text {
                max-width: 75%; /* 单列时恢复文本占比 */
            }
            .gsznrhd-button {
                padding: 6px 12px;
                font-size: 14px;
            }
            .gsznrhd-button-group {
                gap: 10px;
            }
            /* 超小屏幕调整标题栏 */
            .gsznrhd-list-title {
                font-size: 18px;
            }
            .gsznrhd-view-more {
                padding: 3px 10px;
                font-size: 13px;
            }
        }
        


/* 页面容器 - 最大宽度1420px，自适应 */
        .gsznrhc-page-container {
            width: 100%;
            max-width: 1420px;
            padding: 0 20px;
        }

        /* 页面标题层级样式 */
        .gsznrhc-page-title {
            font-size: 24px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .gsznrhc-page-subtitle {
            font-size: 15px;
            color: #718096;
            margin-bottom: 30px;
            padding-left: 2px;
        }

        /* 板块容器 - 自适应四栏布局（核心：25%宽度+自动换行） */
        .gsznrhc-panel-container {
            display: flex;
            flex-wrap: wrap; /* 小屏幕自动换行 */
            width: 100%;
            gap: 20px; /* 栏目间距，不占用25%宽度 */
        }

        /* 通用板块样式 - 严格25%宽度，自适应换行 */
        .gsznrhc-panel-item {
            flex: 0 0 calc(25% - 15px); /* 固定25%宽度，减去分摊的间距（20px*3/4=15px） */
            min-width: 280px; /* 最小宽度阈值，小于此值时触发换行 */
            background-color: #ffffff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        /* 板块 hover 交互效果 */
        .gsznrhc-panel-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        /* 板块标题通用样式 */
        .gsznrhc-panel-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f0f2f5;
        }

        /* 标题小图标 */
        .gsznrhc-panel-title-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        /* 通用列表容器样式 - 移除滚动条相关样式 */
        .gsznrhc-panel-list {
            flex: 1;
            margin-bottom: 16px;
        }

        /* 通用按钮样式 */
        .gsznrhc-panel-btn {
            display: inline-block;
            width: 100%;
            padding: 8px 0;
            text-align: center;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            outline: none;
        }

        .gsznrhc-panel-btn-primary {
            background-color: #4299e1;
            color: white;
        }

        .gsznrhc-panel-btn-primary:hover {
            background-color: #3182ce;
            box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3);
        }

        .gsznrhc-panel-btn-outline {
            background-color: transparent;
            color: #4299e1;
            border: 1px solid #4299e1;
        }

        .gsznrhc-panel-btn-outline:hover {
            background-color: #f0f7ff;
        }

        /* 1. 图片展示板块 - 标题在图片上，按钮在下方空白处 */
        .gsznrhc-panel-img {
            gap: 16px;
        }

        .gsznrhc-panel-img-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            flex: 1;
            justify-content: center;
        }

        .gsznrhc-panel-img-item {
            width: 100%;
            height: 140px; /* 适当增加图片高度，提升视觉效果 */
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gsznrhc-panel-img-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gsznrhc-panel-img-item:hover img {
            transform: scale(1.05);
        }

        /* 图片标题（显示在图片上方） */
        .gsznrhc-panel-img-title {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 10px 12px;
            background: linear-gradient(rgba(0,0,0,0.6), transparent);
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        /* 图片底部信息（仅保留日期，简洁展示） */
        .gsznrhc-panel-img-meta {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 8px 12px;
            background: linear-gradient(transparent, rgba(0,0,0,0.6));
            color: #e2e8f0;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* 图片操作按钮组（移至图片下方空白处） */
        .gsznrhc-panel-img-actions {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }

        .gsznrhc-panel-img-action-btn {
            flex: 1;
            padding: 6px 0;
            text-align: center;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid #e2e8f0;
            background-color: #f8f9fa;
            color: #4a5568;
        }

        .gsznrhc-panel-img-action-btn:hover {
            background-color: #4299e1;
            color: white;
            border-color: #4299e1;
        }

        /* 2. 文章列表板块 - 无滚动条，固定展示4条 */
        .gsznrhc-panel-article-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .gsznrhc-panel-article-item {
            padding: 12px 0;
            border-bottom: 1px solid #f0f2f5;
            transition: all 0.2s ease;
        }

        .gsznrhc-panel-article-item:last-child {
            border-bottom: none;
        }

        .gsznrhc-panel-article-item:hover {
            padding-left: 8px;
            border-left: 3px solid #4299e1;
        }

        .gsznrhc-panel-article-title {
            font-size: 14px;
            color: #2d3748;
            margin-bottom: 6px;
            line-height: 1.5;
            cursor: pointer;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            
            overflow: hidden; /* 隐藏溢出的内容 */
						white-space: nowrap; /* 防止文本换行 */
						text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
						            
            
        }

        .gsznrhc-panel-article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #718096;
        }

        .gsznrhc-panel-article-author {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* 3. 通知公告板块 - 无滚动条，固定展示4条 */
        .gsznrhc-panel-notice-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .gsznrhc-panel-notice-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 4px 0;
        }

        .gsznrhc-panel-notice-tag {
            min-width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #e53e3e;
            margin-top: 8px;
        }

        .gsznrhc-panel-notice-tag.important {
            background-color: #ed8936;
            width: 8px;
            height: 8px;
        }

        .gsznrhc-panel-notice-content {
            flex: 1;
        }

        .gsznrhc-panel-notice-text {
            font-size: 13px;
            color: #4a5568;
            line-height: 1.6;
            cursor: pointer;
            transition: color 0.2s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .gsznrhc-panel-notice-text:hover {
            color: #4299e1;
        }

        .gsznrhc-panel-notice-time {
            font-size: 11px;
            color: #a0aec0;
            margin-top: 4px;
        }

        /* 4. 数据概览板块（图文版） */
        .gsznrhc-panel-stat {
            gap: 16px;
        }

        .gsznrhc-panel-stat-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;
            justify-content: center;
        }

        .gsznrhc-panel-stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            border-radius: 8px;
            background-color: #f7fafc;
            transition: background-color 0.2s ease;
        }

        .gsznrhc-panel-stat-item:hover {
            background-color: #edf2f7;
        }

        .gsznrhc-panel-stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: white;
        }

        .gsznrhc-panel-stat-icon.views {
            background-color: #4299e1;
        }

        .gsznrhc-panel-stat-icon.users {
            background-color: #9f7aea;
        }

        .gsznrhc-panel-stat-icon.read {
            background-color: #38b2ac;
        }

        .gsznrhc-panel-stat-icon.rate {
            background-color: #48bb78;
        }

        .gsznrhc-panel-stat-info {
            flex: 1;
        }

        .gsznrhc-panel-stat-label {
            font-size: 13px;
            color: #4a5568;
            margin-bottom: 2px;
        }

        .gsznrhc-panel-stat-value {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
        }

        .gsznrhc-panel-stat-value.growth {
            color: #48bb78;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 16px;
        }

        .gsznrhc-panel-stat-value.decline {
            color: #e53e3e;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 16px;
        }

        /* 响应式优化 - 确保25%宽度在小屏幕自动换行 */
        @media (max-width: 1200px) {
            /* 中屏幕：25%宽度会过窄，自动换行为两栏（每栏实际占比~50%） */
            .gsznrhc-panel-item {
                flex: 0 0 calc(50% - 10px); /* 两栏布局，分摊间距 */
            }
        }

        @media (max-width: 768px) {
            /* 小屏幕：自动换行为单栏（每栏100%宽度） */
            body {
                padding: 15px 0;
            }

            .gsznrhc-page-container {
                padding: 0 12px;
            }

            .gsznrhc-panel-container {
                gap: 12px;
            }

            .gsznrhc-panel-item {
                flex: 0 0 100%; /* 单栏布局，占满宽度 */
                padding: 20px;
            }

            .gsznrhc-page-title {
                font-size: 20px;
            }

            .gsznrhc-page-subtitle {
                font-size: 14px;
                margin-bottom: 20px;
            }

            /* 小屏幕图片高度调整 */
            .gsznrhc-panel-img-item {
                height: 160px;
            }
        }
        

 /* 主容器 - 最大宽度1420px，一行两列核心布局 */
        .gsznrhdd-container {
            max-width: 1420px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 20px; /* 两列之间的间距 */
           margin-top: 10px;
        }

        /* 左右列板块 - 各占50%，去除间距影响 */
        .gsznrhdd-column {
            flex: 1 1 calc(50% - 10px); /* 50%宽度减去gap的一半，保证总宽度100% */
            min-width: 320px; /* 移动端最小宽度，避免挤压 */
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            padding: 20px;
            /* 核心：列内垂直布局，标题左上、列表中间、按钮右下 */
            display: flex;
            flex-direction: column;
        }

        /* 板块标题样式（调整为左上角显示，与按钮视觉呼应） */
        .gsznrhdd-column-title {
            font-size: 18px;
            font-weight: 600;
            color: #006699;
            margin-bottom: 16px;
            /* 移除底部边框，改为轻量样式，保证左上对齐 */
            align-self: flex-start; /* 强制左对齐 */
            padding: 0;
            border: none;
        }

        /* 列表容器 */
        .gsznrhdd-list-wrapper {
            margin-bottom: 16px;
            /* 列表占满剩余空间，撑起列高度，保证按钮在底部 */
            flex: 1;
        }

        /* 列表项容器 */
        .gsznrhdd-list-item {
            padding: 12px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f0f2f5;
            cursor: pointer;
        }

        /* 列表项文字样式 */
        .gsznrhdd-list-text {
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        /* 列表项日期样式 */
        .gsznrhdd-list-date {
            color: #666;
            font-size: 14px;
        }

        /* 列表项悬停效果 */
        .gsznrhdd-list-item:hover {
            background-color: #f8f9fa;
            padding-left: 4px;
            transition: all 0.2s ease;
        }
        .gsznrhdd-list-item:hover .gsznrhdd-list-text {
            color: #409eff;
        }

        /* 最后一个列表项去除下边框 */
        .gsznrhdd-list-item:last-child {
            border-bottom: none;
        }

        /* 查看更多按钮样式（右下角显示） */
        .gsznrhdd-more-btn {
            width: auto;
            padding: 8px 16px;
            margin-left: auto; /* 右对齐核心 */
            text-align: center;
            background-color: #f5f7fa;
            color: #409eff;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .gsznrhdd-more-btn:hover {
            background-color: #409eff;
            color: #ffffff;
            border-color: #409eff;
        }

        /* 自适应响应式调整（移动端堆叠显示） */
        @media (max-width: 768px) {
            .gsznrhdd-container {
                gap: 16px;
            }
            .gsznrhdd-column {
                flex: 1 1 100%; /* 移动端单列显示 */
            }
        }
        


 /* 容器样式 */
    .gsznrhzbxx-container {
      max-width: 1430px;
      margin: 0 auto;
      padding: 2px 0px;
      width: 100%;
    }

    /* 四板块布局容器 */
    .gsznrhzbxx-grid {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
      width: 100%;
    }

    /* 通用板块样式 */
    .gsznrhzbxx-section {
      width: 25%;
      padding: 0 10px;
      margin-bottom: 2px;
    }

    .gsznrhzbxx-section-inner {
      background: #fff;
      border-radius: 6px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    /* 板块标题样式 - 溢出省略 */
    .gsznrhzbxx-section-title {
      font-size: 18px;
      font-weight: 600;
      color: #006699;
      margin-bottom: 15px;
      padding-bottom: 8px;
      border-bottom: 2px solid #3498db;
      display: inline-block;
      max-width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* 通用按钮样式 */
    .gsznrhzbxx-btn {
      display: inline-block;
      padding: 6px 12px;
      background-color: #3498db;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .gsznrhzbxx-btn:hover {
      background-color: #2980b9;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
    }

    /* 第一个板块 - 图文板块 终极优化版 */
    .gsznrhzbxx-img-text {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* 图片容器优化 */
    .gsznrhzbxx-img-box {
      width: 100%;
      height: 200px; /* 提升图片高度 */
      overflow: hidden;
      border-radius: 8px; /* 更大圆角 */
      margin-bottom: 18px;
      position: relative;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* 增加图片阴影 */
    }

    /* 图片遮罩层 */
    .gsznrhzbxx-img-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3));
      z-index: 1;
      transition: all 0.3s ease;
    }

    .gsznrhzbxx-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease; /* 延长过渡时间 */
      transform: scale(1.02); /* 初始轻微放大 */
    }

    .gsznrhzbxx-img-box:hover img {
      transform: scale(1.1); /* 更大缩放比例 */
    }

    .gsznrhzbxx-img-box:hover::before {
      background: linear-gradient(to bottom, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.4));
    }

    /* 图片标签和信息 */
    .gsznrhzbxx-img-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      background: rgba(52, 152, 219, 0.9);
      color: #fff;
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }

    /* 图片底部信息栏 */
    .gsznrhzbxx-img-info-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 12px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .gsznrhzbxx-img-date, .gsznrhzbxx-img-views {
      color: #fff;
      font-size: 13px;
      display: flex;
      align-items: center;
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .gsznrhzbxx-img-date i, .gsznrhzbxx-img-views i {
      margin-right: 5px;
      font-size: 12px;
    }

    /* 文字内容容器 - 标题+简介分层设计 */
    .gsznrhzbxx-text-content {
      background: linear-gradient(135deg, #f9fbff 0%, #f5f9ff 100%);
      border-radius: 8px;
      padding: 18px 20px;
      margin-bottom: 20px;
      /* 移除左侧蓝色边框 */
      box-shadow: 0 2px 6px rgba(52, 152, 219, 0.05);
      flex: 1;
    }

    /* 文字标题样式 - 增加溢出省略处理 */
    .gsznrhzbxx-text-title {
      font-size: 16px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 10px;
      padding-bottom: 8px;
      border-bottom: 1px solid #e8f4fd;
      position: relative;
      /* 溢出省略核心样式 */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* 标题装饰线 */
    .gsznrhzbxx-text-title::after {
      content: "";
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 40px;
      height: 1px;
      background-color: #3498db;
    }

    /* 简介文字样式 */
    .gsznrhzbxx-text-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.8;
      text-align: justify;
      letter-spacing: 0.2px;
    }

    /* 简介首字样式 */
    

    /* 按钮容器优化 */
    .gsznrhzbxx-img-btn-wrap {
      text-align: center;
      padding-top: 15px;
      border-top: 1px dashed #e0e8f0;
      margin-top: 5px;
    }

    .gsznrhzbxx-img-btn {
      padding: 9px 22px;
      font-size: 15px;
      border-radius: 6px;
      background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
      box-shadow: 0 3px 6px rgba(52, 152, 219, 0.15);
    }

    /* 列表板块通用样式 */
    .gsznrhzbxx-list-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .gsznrhzbxx-list {
      list-style: none;
      margin-bottom: 15px;
      flex: 1;
    }

    .gsznrhzbxx-list-item {
      padding: 8px 0;
      border-bottom: 1px dashed #eee;
      display: flex;
      flex-direction: column;
    }

    .gsznrhzbxx-list-item:last-child {
      border-bottom: none;
    }

    .gsznrhzbxx-list-item a {
      color: #333;
      text-decoration: none;
      font-size: 16px;
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color 0.2s ease;
    }

    .gsznrhzbxx-list-item a:hover {
      color: #3498db;
    }

    /* 公告信息来源和日期 */
    .gsznrhzbxx-list-meta {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #999;
      margin-top: 4px;
    }

    .gsznrhzbxx-list-source {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .gsznrhzbxx-list-date {
      white-space: nowrap;
    }

    /* 查看更多按钮容器 */
    .gsznrhzbxx-more-btn-wrap {
      text-align: right;
      margin-top: auto;
    }

    /* 招聘信息板块样式 - 深度优化 */
    .gsznrhzbxx-job-list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px; /* 职位项间距 */
    }

    .gsznrhzbxx-job-item {
      background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
      border-radius: 8px;
      padding: 15px;
      border-left: 3px solid #3498db;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .gsznrhzbxx-job-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(52, 152, 219, 0.1);
      border-left-color: #2980b9;
    }

    .gsznrhzbxx-job-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .gsznrhzbxx-job-title {
      font-size: 15px;
      color: #2c3e50;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex: 1;
    }

    .gsznrhzbxx-job-tag {
      background: rgba(52, 152, 219, 0.1);
      color: #3498db;
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 3px;
      margin-left: 8px;
      white-space: nowrap;
    }

    .gsznrhzbxx-job-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex: 1;
    }

    .gsznrhzbxx-job-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .gsznrhzbxx-job-salary {
      font-size: 14px;
      color: #e74c3c;
      font-weight: 600;
    }

    .gsznrhzbxx-job-label {
      font-size: 11px;
      color: #999;
    }

    /* 响应式适配 */
    @media (max-width: 1200px) {
      .gsznrhzbxx-section {
        width: 50%;
      }
    }

    @media (max-width: 768px) {
      .gsznrhzbxx-section {
        width: 100%;
      }

      .gsznrhzbxx-img-box {
        height: 240px;
      }
      
      .gsznrhzbxx-img-date, .gsznrhzbxx-img-views {
        font-size: 12px;
      }

      .gsznrhzbxx-text-content {
        padding: 15px 18px;
      }

      .gsznrhzbxx-text-title {
        font-size: 15px;
      }

      .gsznrhzbxx-text-desc {
        font-size: 13px;
        line-height: 1.7;
      }

      .gsznrhzbxx-job-item {
        padding: 12px;
      }
    }