/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.13.1763020080
Updated: 2025-11-13 15:48:00

*/
@import url('../astra/style.css');
/* 产品 */
/*.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current{*/
/*	color:#fff;*/

/*}*/
/*.woocommerce-ordering select.orderby:focus,.woocommerce .ast-woocommerce-container .woocommerce-pagination ul.page-numbers li a:focus{*/
/*		border:1px solid #b03434;*/
/*}*/
/*.woocommerce-js .woocommerce-ordering select, .woocommerce-page .woocommerce-ordering select{*/
/*	border:1px solid  #b03434;*/
/*	width: 220px;*/
/*}*/
/*.woocommerce-js .woocommerce-result-count{*/
/*	line-height:1.2;*/
/*}*/
/* 产品页侧边栏样式 */
/*.ast-filter-wrap {*/
/*  background: #fff;*/
/*}*/

/* 二级菜单默认隐藏 */
/*ul.wc-block-product-categories-list--depth-1 {*/
/*  display: none;*/
/*  margin-left: 15px;*/
/*  padding-left: 0;*/
/*  list-style: none;*/
/*}*/


/*li.wc-block-product-categories-list-item:has(ul.wc-block-product-categories-list--depth-1) > a {*/
/*  position: relative; */
/*  padding-right: 40px;*/
/*  display: inline-block;*/
/*}*/


/*.category-arrow {*/
/*  width: 16px; */
/*  height: 16px;*/
/*  background-image: url("/wp-content/uploads/2025/11/arrow-r.png");*/
/*  background-size: contain; */
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  position: absolute; */
/*  right: 10px; */
/*  top: 50%; */
/*  transform: translateY(-50%); */
/*  transition: transform 0.3s ease; */
/*  cursor: pointer; */
/*  z-index: 1;*/
/*}*/
/*li.wc-block-product-categories-list-item.expanded .category-arrow {*/
/*  transform: translateY(-50%) rotate(-90deg) !important;*/
/*}*/

/*.wc-block-product-categories-list--depth-0 > li a {*/
/*  display: flex;*/
/*  align-items: center;*/
/*}*/


/*li.wc-block-product-categories-list-item.text-active > a span {*/
/*  color: #b03434 !important;*/
/*  transition: color 0.3s ease;*/
/*}*/
/*li.text-active > a {*/
/*  color: #b03434;*/
/*}*/

/*ul.wc-block-product-categories-list--depth-1 li a.active span {*/
/*  color: #b03434;*/
/*}*/
/*ul.wc-block-product-categories-list--depth-1 li a.active,*/
/*ul.wc-block-product-categories-list--depth-1 li a.active span {*/
/*  color: #b03434 !important; */
/*  transition: color 0.3s ease;*/
/*  font-weight: normal; */
/*}*/
/*li.wc-block-product-categories-list-item {*/
/*  padding: 8px 0;*/
/*  cursor: pointer;*/
/*}*/
/*li.wc-block-product-categories-list-item a {*/
/*  color: #333; */
/*   text-decoration: none;  */
/*  transition: color 0.3s ease;*/
/*}*/
/*.ast-separate-container.ast-two-container #secondary #block-39{*/
/*    padding: 0;*/
/*}*/

/*页眉*/
/*页眉*/
/*.site-header-primary-section-right-center{*/
    
/*}*/
/*.site-header-primary-section-left-center{*/
/*    display: none;*/
/*}*/


/* === Animate.css 核心关键帧 - 常用动画 === */
/* 淡入动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* 轻微下移，入场更自然 */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左滑入动画 */
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* 右滑入动画 */
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* 缩放动画 */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* 新增：从下方滑入动画（slideInUp） */
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0); /* 初始位置：下方100% */
    visibility: visible;
    opacity: 0; /* 初始透明，更自然 */
  }
  to {
    transform: translate3d(0, 0, 0); /* 最终位置：原位置 */
    opacity: 1;
  }
}

/*左滑进入*/
@keyframes fadeInLeft {
  from {
    opacity: 0; /* 初始透明 */
    transform: translateX(-30px); /* 初始位置：左侧30px（距离适中，不夸张） */
  }
  to {
    opacity: 1; /* 最终不透明 */
    transform: translateX(0); /* 最终归位到原位置 */
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0; /* 初始完全透明 */
    transform: translateX(20px); /* 初始在右侧20px位置 */
  }
  100% {
    opacity: 1; /* 最终完全显示 */
    transform: translateX(0); /* 最终回到原位置 */
  }
}

/*动画效果*/
.elementor-element-fe66c88 {
    animation: slideInUp 1.2s ease-in-out;
    animation-delay: 0.3s
}
h1{
    animation: slideInUp 1.2s ease-in-out;
    animation-delay: 0.3s
}
/*产品页*/
/* 1. 定义淡入关键帧（必须加，否则动画不生效） */
.products-page .woocommerce-product-gallery {

    /*height: 500px;*/
}
.woocommerce-product-gallery{
     /*height: 500px;*/
}
.woocommerce-product-gallery__wrapper a{
    /*width: 600px;*/
    display: block;
     height: 500px;
}
.products-page .ast-archive-description{
    padding-top: 0;
}
.woocommerce-js div.product div.summary .woocommerce-product-details__short-description p{
    line-height: 30px;
}

.woocommerce-js div.product div.images img{
    height: 100%;
    object-fit: cover;
}
/* 2. 给#wpsp-1733绑定动画（核心） */
#wpsp-1733 , .ast-woocommerce-container , #wpsp-2506,.elementor-element-147bc28 .e-con-inner{
  animation: fadeIn 1.2s ease-in-out both; /* both：保持动画结束状态 */
  /* 可选：给容器内的卡片加延迟，依次出现 */
}
.elementor-element-d118cc3{
    animation: fadeIn 1.2s ease-in-out both;
}
.elementor-element-d118cc3,.site-branding{
    opacity: 0;
    animation: fadeInRight 1.2s ease-in-out both;
}

#gt_float_wrapper{
    animation: fadeInRight 1.2s ease-in-out both;
     opacity: 0;
  transform: translateX(20px);
}

.news-page #secondary{
    animation: fadeInRight 1.2s ease-in-out both;
}
.news-page .ast-row{
     animation: fadeInLeft 1.2s ease-in-out both;
}

/*语言切换*/
.ast-header-social-wrap{
    padding-right: 50px;
}
.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 4px 10px;
}
.gt_float_switcher{
    font-size: 16px;
}

.lang-switcher-wrapper{
    position: absolute; 
    right: 225px;
    top: 41px;
    z-index: 9999;
}
.lang-switcher-wrapper a{
    color: var(--ast-global-color-3);
}
.lang-option a{
   display: block;
    padding: 8px 12px; 
    border: none; 
    cursor: pointer; 
    text-align: left;
}
.lang-dropdown{

}
.lang-dropdown a{
    cursor: pointer;
    display: block;
    text-align: center;
    padding: 5px 15px;
    background-color: #fff !important;
    transition: all .6s;
    right: 50%;
   
}
.lang-switcher-wrapper a:hover{
    background-color: var(--ast-global-color-2) !important;
    color: #fff;
}


html,body{
    transition: all .6s;
}
p{
    text-align: justify;
    hyphens: auto;
}
.main-navigation a{
    color: #fff;
    font-size: 16px;
}
.ast-post-format- a{
    font-weight: bold;
    color: var(--ast-global-color-2);
}
.e-con-inner {
    max-width: 1400px !important;
    padding-left: 5%;
    padding-right: 5%;
}
.e-con.e-flex>.e-con-inner{
    padding-left: 10px;
    padding-right: 10px;
}
 [data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-minimal:focus{
     border-style: unset;
     border-width: unset;
 }
 .ast-button-wrap .menu-toggle:focus,.ast-menu-toggle:focus{
     outline: unset;
 }
.site-header-primary-section-center .ast-builder-html-element p{
    margin-bottom: 0;
}
#content{
    background: #fff;
}
a:focus {
    outline: none;
}
/* 下拉二级菜单 */
.ast-builder-menu-1 .sub-menu{
    width:300px;
}

.wp-show-posts-entry-summary p{
  /* 限制显示行数为2行 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
  text-overflow: ellipsis;
}

	.wp-show-posts-entry-title a{
		color:#333;
		font-size:1rem;
	}
.ast-builder-menu .main-navigation #ast-hf-menu-1 li ul.sub-menu li a{
	color:#4B4F58;
	
}
.ast-builder-menu .main-navigation #ast-hf-menu-1 li ul.sub-menu li a{
	transition:all .6s;
}
.ast-builder-menu .main-navigation #ast-hf-menu-1 li ul.sub-menu li:hover a{
	color:#254a2f;
	/*font-weight:bold;*/
}

/*首页产品*/
#wpsp-2253 .wp-show-posts-inner{
    position: relative;
    cursor: pointer;
    margin: 0;
}
#wpsp-2253 .wp-show-posts-image{
    margin: 0;
    width: 100%;
}
#wpsp-2253 .wp-show-posts-image a{
    width: 100%;
}
#wpsp-2253 .wp-show-posts-image a:before{
      position: absolute;
      bottom: 0;
      left: 0;
    content:'';
    width:100%;
    height: 100%;
   
    background-color: transparent;
    background-image: linear-gradient(0deg, #15371e7a 29%, #FFFFFF00 49%);
}
#wpsp-2253 .wp-show-posts-image a img{
    width: 100%;
    object-fit: unset;
}

#wpsp-2253 .wp-show-posts-inner:hover a img{
    transform: unset;
}
#wpsp-2253  .wp-show-posts-entry-header{
    position: absolute;
    bottom: 90px;
    margin: 0 20px;
    z-index: 2;
}
#wpsp-2253 .wp-show-posts-entry-summary{
    position: absolute;
    bottom:50px;
    z-index: 2;
    margin: 0 20px;
}
#wpsp-2253 .wp-show-posts-entry-summary p,#wpsp-2253 .wp-show-posts-entry-header a{
    color: #fff;
    -webkit-line-clamp: 1;
}

/* 产品页 */
/* 侧边栏 */
.wc-block-product-categories-list-item a[href*="home-products"] {
    display: none !important;
}
.ast-breadcrumbs{
    margin-bottom: 15px;
}
.ast-archive-description{
    padding-left: 0 !important;
}
.products-page .ast-archive-description .ast-breadcrumbs .trail-items> *:nth-child(2){
    display: none;
}
.woocommerce-result-count,.woocommerce-ordering{
    display: none;
}
.product-active{
    color: #254a2f;
    font-weight: bold;
}
.products-page .ast-woocommerce-container{
    padding:0;
}

#block-39{
padding:0 !important;
	margin-bottom:0 !important;
}
#block-38{
	padding-top:10px !important;
	padding-bottom:20px;
}
.sidebar-main{
	background-color:#fff;
}
.ast-filter-wrap{
/* 	background-color:#F5F5F5; */
	box-shadow: 1px 1px 5px #a7a2a240;
}
.wc-block-product-categories-list li{
	margin-bottom:10px;
}
.wc-block-product-categories-list li a{
	line-height:2;
}
 .wc-block-product-categories-list li a,.sidebar-main .ast-filter-wrap ul li a{
color:#333;
transition:all .1s;
}
.wc-block-product-categories-list li a:hover,.sidebar-main .ast-filter-wrap ul li a:hover{
	/*font-weight:bold;*/
	color:#254a2f;
	
}
.ast-woocommerce-container{
padding-top:0 !important;
}
.ast-separate-container.single-product .ast-article-single{
	padding-top:5.34em;
}
.woocommerce-products-header__title {
color:#254a2f;
	font-size:2rem
}
.woocommerce-ordering select.orderby:focus{
	border-style: none;
}
.woocommerce-js .variations select, .woocommerce-js .woocommerce-ordering select {
	padding-right:25px
}
.woocommerce-tabs ul.tabs li.active:before{
	background:#254A2F !important;
}
.woocommerce-js div.product .product_meta>span>*{
	color:#4b4f58;
}
.woocommerce-js div.product .product_meta>span>*:hover
{
	color:#254A2F;
}
.ast-separate-container.ast-two-container #secondary .widget{
	padding:1rem
}
.woocommerce-js ul.products li.product .woocommerce-loop-product__title, .woocommerce-page ul.products li.product .woocommerce-loop-product__title{
	line-height: 1.3;
 min-height: 36px;
}
.ast-on-card-button .ahfb-svg-iconset{
	display:none;
}



/* 单个产品鼠标移上去效果 */
#wpsp-1733 .wp-show-posts-entry-title a{
    text-align: center;
    font-size: 1rem;
}
#wpsp-1733 article .wp-show-posts-inner{
    padding-bottom: 10px;
}
#wpsp-1733 article .wp-show-posts-inner,.products li{
  transition: all .3s cubic-bezier(0,0,.5,1);
  /*padding-bottom: 15px;*/
  /*margin-bottom: 15px;*/
}
#wpsp-1733 article .wp-show-posts-inner:hover,.products li:hover{
	box-shadow: 0px 10px 30px 0px #00000033;
    transform: scale3d(1.01, 1.01, 1.01);
}
#wpsp-1733 .wp-show-posts-inner:hover a img{
    transform:scale(1) !important;
}
.woocommerce-js ul.products li.product .woocommerce-loop-product__title, .woocommerce-page ul.products li.product .woocommerce-loop-product__title{
    text-align: center;
}



/* 面包屑 */
.ast-breadcrumbs-wrapper .trail-items a:hover{
	text-decoration:underline;
}
.ast-breadcrumbs .trail-items li span{
    font-weight:bold;
    /* color:#222 */
}



 
/*新闻侧边栏*/
/*#nav_menu-5{*/
/*    box-shadow: 1px 1px 5px #a7a2a240;*/
/*}*/
/*#nav_menu-5 ul li{*/
/*    padding-left: 15px;*/
/*}*/
#nav_menu-5 ul li a{
    color: var(--ast-global-color-2);
}
/*#nav_menu-5 .menu-news-menu-container{*/
/*    padding-top: 10px;*/
/*    padding-bottom: 20px;*/
/*}*/
/*.widget-title{*/
/*    color: #fff;*/
/*    font-size: 22px;*/
/*    line-height: 1.7;*/
/*    padding:var(--wp--preset--spacing--50);*/
/*    background: var(--ast-global-color-2);*/
/*}*/





/* wp-show-post */

.wp-show-posts-columns .wp-show-posts-inner{
    width:100%;
}
body .wp-show-posts a{
    text-align: left;
}

.wp-show-posts-entry-title{
		line-height:.6em !important;

}
.wp-show-posts-entry-title a{
    		font-size: 1.6rem;
    		line-height: 1.3;
    		color: var(--ast-global-color-2);
}
a.wp-show-posts-read-more,a.wp-show-posts-read-more:visited {
    border:0;
    font-size:1rem;
    margin:0;
    padding:0;
}
a.wp-show-posts-read-more:focus,a.wp-show-posts-read-more:hover {
    border:0;
    background:#fff;
    color:#254a2f;
}

.wp-show-posts-inner a{
    display:block;
    overflow:hidden;
}
.wp-show-posts-inner a img{
     transition:all .6s;
}
.wp-show-posts-inner:hover a img{
    transform:scale(1.05)
}
.wp-show-posts-inner:hover .wp-show-posts-entry-title a{
	color:#254a2f;
}
.wpsp-read-more .elementor-icon-list-icon i{
    transition:all .3s;
}
.wpsp-read-more:hover .elementor-icon-list-icon i{
	color:#254a2f;
	transform:translateX(3px);
}
.wpsp-read-more{
	display: flex;
  align-items: baseline;
}
.products-page .ast-separate-container .ast-archive-description{
    padding: 0 0 2em 0;
}


/* 单篇文章 */
#page > header{
	position:unset;

}
.ast-single-entry-banner[data-post-type="post"]{
    display: flex;
    justify-content: center;
    text-align: center;
}
.ast-separate-container #primary{
		margin-top:0;
}


/*分页*/
.ast-pagination a, .nav-links a{
    color: #222;
}

.wpsp-load-more a{
    font-size: 12px;
    padding: 8px 13px;
    border: 1px solid  #bebebe;
    color: var(--ast-global-color-2);
}
.wpsp-load-more a:hover{
    color: #fff;
    background-color: var(--ast-global-color-2);
}
.wpsp-load-more .current{
     font-size: 12px;
    padding: 8px 13px;
    border: 1px solid  #bebebe;
    color: #fff;
    background-color: var(--ast-global-color-2);
}

/*首页办公环境*/
.elementor-7 .elementor-element.elementor-element-e3ad9fd.elementor-element,
.elementor-7 .elementor-element.elementor-element-e7f972a.elementor-element
{
    flex: 1;
}
.elementor-7 .elementor-element.elementor-element-e3ad9fd.elementor-element .elementor-widget-container img,
.elementor-7 .elementor-element.elementor-element-e7f972a.elementor-element .elementor-widget-container img
{
height:100%;
    
}

/*案例*/
#wpsp-2506 .wp-show-posts-inner,#wpsp-2511 .wp-show-posts-inner{
    position: relative;
    
}
#wpsp-2506 article,#wpsp-2511 article{
    width: 25%;
}
#wpsp-2506 .wp-show-posts-inner{
    margin-left: .1em !important;
    margin-bottom: 0 !important;
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-entry-title a,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-entry-title a{
    font-size: 1.2rem;
    text-align: center !important;
}
#wpsp-2511 .wp-show-posts-inner{
    margin-left: 0 !important;
}
.wp-show-posts-columns#wpsp-2511{
    margin-left: 0 !important;
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-entry-header,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-entry-header{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 150px;
    z-index: 10;
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-entry-header:before,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-entry-header:before{
    content: '';
    display: block;
    position: absolute;
    
    width: 100%;
    height: 150px;
    bottom: 0;
    background-image: linear-gradient(0deg,  #15371eb3 50%, #FFFFFF00 100%);
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-entry-header h2,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-entry-header h2{
    position: absolute;
    bottom: 0;
    /*right: 50%;*/
    z-index: 10;
    text-align: center;
    padding: 30px;
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-entry-header h2 a,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-entry-header h2 a{
    color: #fff;
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-image,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-image{
    margin-bottom:0;
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-image > a,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-image > a{
    width: 100% !important;
    height: 400px !important;
}
#wpsp-2506 .wp-show-posts-inner .wp-show-posts-image > a img,#wpsp-2511 .wp-show-posts-inner .wp-show-posts-image > a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*.ast-theme-transparent-header #masthead{*/
/*    position: unset;*/
/*}*/



/*.case-page #secondary{*/
/*    display: none;*/
/*}*/
/*.case-page #primary{*/
/*    width: 100%;*/
/*}*/

/*.case-page .ast-blog-featured-section{*/
/*    height: 280px;*/
/*}*/
/*.case-page .ast-blog-featured-section .post-thumb-img-content,.case-page .ast-blog-featured-section .post-thumb-img-content a,.case-page .ast-blog-featured-section .post-thumb-img-content a img{*/
/*    height: 100%;*/
/*}*/
/*.case-page .ast-blog-featured-section .post-thumb-img-content a img{*/
/*    object-fit: cover;*/
/*}*/
/*.case-page  .post-content>.read-more{*/
/*    display: none;*/
/*}*/
/*.case-page .entry-title{*/
/*    font-size: 1.3rem;*/
/*}*/


/*.case-page  .post-content>.read-more*/



/*about-us*/
.elementor-element-ab82582 figure{
    width: 270px;
    height: 410px;
}
.elementor-element-ab82582 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.elementor-element-ab82582 .elementor-image-box-description{
    text-align: left;
    margin-bottom: 24px !important;
}
.elementor-element-ab82582  .elementor-element-33b2f04 .elementor-image-box-description{
    margin-bottom: 0 !important;
}

/*服务*/
.services-page .ast-row article .ast-post-format-{
    border-radius: 20px;
}
.services-page #secondary{
    display: none;
}
.services-page #primary{
    width: 100%;
}
.services-page .ast-blog-featured-section{
    height: 280px;
}
.services-page .ast-blog-featured-section .post-thumb-img-content,.services-page .ast-blog-featured-section .post-thumb-img-content a,.services-page .ast-blog-featured-section .post-thumb-img-content a img{
    height: 100%;
}
.services-page  .ast-row article .post-thumb-img-content{
    overflow: hidden;
}
.services-page .ast-row article .post-thumb-img-content a img{
    transition:all .6s;
}
.services-page .ast-row article:hover .post-thumb-img-content a img{
    transform: scale(1.1);
}
/*单篇文章*/
.entry-content[data-ast-blocks-layout] > figure{
    text-align: center;
}

#wpsp-2164 .wp-show-posts-image{
    overflow: hidden;
}
#wpsp-2164 .wp-show-posts-image a img{
    width: 100%;
    
    object-fit: unset;
}

/*首页新闻*/
#wpsp-2686 .published{
    display: block;
    margin-top: 5px;
}
#wpsp-2686 .wp-show-posts-entry-title a{
    font-size: 1.3rem;
}
/*新闻页面*/
.published{
    display: none;
}
.news-page .published{
    display: block;
    color: #ccc;
    font-size: 14px;
}
.news-page .ast-row .post-thumb-img-content {
    height: 400px;
}

.news-page .ast-row .post-thumb-img-content a{
    display: block;
    height: 100%;
}
.news-page .ast-row .post-thumb-img-content a img{
    height: 100%;
    object-fit: cover;
}
.news-page .ast-row  article .post-thumb-img-content{
    overflow: hidden;
}
.news-page .ast-row  article .post-thumb-img-content a img{
    transition: all .6s;
}
.news-page .ast-row  article:hover .post-thumb-img-content a img{
    transform: scale(1.05);
}


.main-header-bar-navigation .main-navigation #ast-hf-mobile-menu li a{
    color: #333;
}
.main-header-bar-navigation .main-navigation #ast-hf-mobile-menu li a:hover{
    color: var(--ast-global-color-2);
}

/*切换语言*/
#gtranslate-3{
    display: none;
}
#block-59{
    margin-bottom: 0;
}
.gt_float_switcher .gt_options a:hover{
    background: var(--ast-global-color-2) !important;
}
.gt_float_switcher{
    
}
 .single .post-navigation a{
     color: var(--ast-global-color-3);
 }
 .elementor-element-8c322e3 p.elementor-image-box-description{
     text-align: left;
 }
@media (min-width: 993px) {
.news-page #content .ast-left-sidebar #secondary{

    padding-right: 0 !important;
 }
}
.news-page #content .ast-container{
    display: flex;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
}
.news-page #primary .ast-row{
    display: unset;
}
.news-page #primary .ast-row article{
    width: 100%;
}

/*单页面banner图*/
.news-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1 , .services-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1{
        color: #fff;
        font-size: 6rem !important;
    }
    .ast-single-entry-banner .ast-container .entry-title{
         color: #fff;
    }
/*页脚*/
#block-54 p{
    font-size: 1.4rem;
}
#block-25 h5{
    text-align: left;
}


/*底部表单*/
#content{
    padding-bottom: 120px;
}
.home #content,.page-id-13 #content ,.page-id-1714 #content , .page-id-2659 #content , .page-id-2871 #content ,.page-id-15 #content{
    padding-bottom: 0;
}
.footer-form-form {
    /*margin-top: 20px;*/
}
.form-form {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 150px;
}

.form-l, .form-r {
    width: 50%;
}
.form-r h4{
    margin-bottom: 20px;
    font-weight: 800;
    color: var( --e-global-color-astglobalcolor0 );
}
.form-l{
    margin-top: -55px;
}
.form-l h2{
    color: #fff;
}
.form-r {
    padding: 40px;
}
.form-r #wpsp-2686 .wp-show-posts-single {
    padding: 0;
    background: transparent;
    border-bottom: 0;
}
@media (max-width: 1700px) and (min-width:1500px){
    .lang-switcher-wrapper{
        right: 35px;
    }
}
@media (max-width: 1500px) {
    .lang-switcher-wrapper{
    right: 20px;
    }
}    
@media (max-width: 1400px) {
    h1, 
    .entry-content :where(h1),
    .news-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1, .services-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1{
        font-size: 3.5rem !important;
    }
    .wp-show-posts-entry-title a{
        font-size: 1.4rem;
    }

}
@media (max-width: 1200px) {
    
    .main-header-menu .menu-link{
     padding:0 .5em;
    }
    .ast-header-social-1-wrap .ast-builder-social-element{
        margin-left: 5px;
        margin-left: 5px;
    }
    .services-page .ast-blog-featured-section {
    height: 220px;
    }
    .entry-title{
     font-size: 20px;
    }
    .elementor-7 .elementor-element.elementor-element-d118cc3{
        padding-left: 50px;
    }
}
@media (max-width: 1100px){
    .ast-header-social-wrap {
        padding-right: 35px;
    }
    .ast-header-social-1-wrap .ast-builder-social-element{
        margin-left: 3px;
        margin-right: 3px;
    }
    #wpsp-2511{
        display: flex;
       	flex-wrap: wrap;
       	gap: 20px;
    }
    #wpsp-2511 article{
        flex: 0 0 48%;
        box-sizing: border-box;
    }
    
    #wpsp-2506{
        display: flex;
       	flex-wrap: wrap;
       	gap: 20px;
    }
    #wpsp-2506 > article{
        flex: 0 0 48%;
        box-sizing: border-box;
    }

}
    .elementor-element-295b90a .elementor-widget-container .wpsp-load-more{
        text-align: center;
    }
@media (max-width: 1024px) {
    .form-form{
        display: flex;
        flex-direction: column;
    }
    .form-l,.form-r{
        width: 100%;
    }
    .form-r{
        padding-top: 100px;
    }
}
@media (min-width: 922px) {
    .ast-container {
        max-width: 1500px;
    }
}
/*@media (min-width: 921px) {*/
    .news-page #page > header , .services-page #page > header{
        position:absolute;
        left: 0;
        right: 0;
    }
    .news-page .ast-primary-header-bar,.services-page .ast-primary-header-bar , .news-page .ast-below-header-bar , .services-page .ast-below-header-bar {
        background-color: transparent;
    }
    .news-page .ast-primary-header-bar .services-page .ast-primary-header-bar{
        border: 1px solid var(--ast-global-color-subtle-background, --ast-global-color-7);
    }
    .services-page .ast-below-header-bar,.news-page .ast-below-header-bar{
        border-bottom: 0;
    }
    .news-page .ast-archive-entry-banner[data-post-type="post"],.services-page .ast-archive-entry-banner[data-post-type="post"]{
               padding-top: 12rem !important; 
    }
    


/*}*/

@media (max-width: 992px) {
      .products-page.ast-separate-container.ast-two-container.ast-left-sidebar #secondary {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .site-title{
        font-size: 1.6rem
    }

    .ast-logo-title-inline .site-logo-img {
    padding-right: .5em;
    }
    .ast-header-social-wrap {
        padding-right: 28px;
    }
    .main-header-menu .menu-link {
        padding: 0 .5em;
    }
    .ast-theme-transparent-header .main-header-menu .menu-link {
        /*font-size: .9rem*/
    }
    .site-header-section>* {
    padding: 0;
}
    .wpsp-col-4{
        width: 50%;
    }
    #primary {
        /*width: 65%;*/
    }
    .woocommerce ul.products:not(.elementor-grid).columns-3, .woocommerce-page ul.products:not(.elementor-grid).columns-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .elementor-widget-container{
        margin-top: 50px !important;
    }
    .elementor-element-bb98507 .elementor-element .elementor-widget-container{
        margin-top: 0 !important;
    }
    .elementor-element-73ce37a .elementor-element{
        padding: 20px !important;
    }

}
@media (max-width: 922px) {
    .lang-switcher-wrapper button svg{
        width: 30px !important;
        height: 30px !important;
    }
    .lang-switcher-wrapper {
        right: 76px;
        top: 36px;
    }
    [data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{
        width: 36px;
        height: 36px;
    }
    .elementor-element-d4ffd3e .e-con-inner{
        padding: 110px 0;
    }
    .ast-primary-header-bar{
        border-bottom: 0 !important;
    }   
    .ast-archive-entry-banner[data-post-type="post"]{
        min-height: auto;
    }
   
        h1, .entry-content :where(h1) , h2, .entry-content :where(h2) ,
        .news-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1,
        .news-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1, .services-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1 {
        font-size: 22px !important;
    }
        h3, .entry-content :where(h3) {
        font-size: 20px;
    }
    .news-page .ast-archive-entry-banner[data-post-type="post"], .services-page .ast-archive-entry-banner[data-post-type="post"]{
        padding-top: 8rem !important;
    }
    .elementor-7 .elementor-element.elementor-element-d6211bd > .elementor-widget-container{
        padding-bottom: 10px;
    }
.ast-left-sidebar #content > .ast-container{
    display: flex;
        flex-direction: row;
}
.ast-left-sidebar #secondary{
    width: 35%;
    margin-right: 20px;
}
.wp-show-posts-entry-title a{
    font-size: 1.2rem;
}
.wp-show-posts-columns:not(.wp-show-posts-masonry){
    display: flex;
    justify-content: space-between;
}
       .elementor-widget-container {
        margin-top: 0 !important;
    }
    .elementor-button{
        font-size: 12px;
    }
    body .elementor-button{
    padding-right: 15px;
    padding-left: 15px;
    }
 #wpsp-2164{
     margin-top: 30px;
 }
 .services-page .ast-blog-featured-section {
    height: auto;
    }
    .form-form{
        padding-bottom: 50px;
    }
}
@media (max-width: 921px) {
    
    /*页脚*/
    footer .ast-builder-footer-grid-columns .site-footer-section aside{
        text-align: left !important;
    } 
    
}
@media (max-width: 768px) {
    #secondary  , .elementor-element-e26cffe{
        display: none;
    }

    .elementor-element-b23578b .e-con-inner{
        padding-bottom: 0;
    }
    .wp-show-posts-columns .wp-show-posts-single{
        width: 50%;
    }
    #wpsp-2164 article , #wpsp-2253 article{
        width: 48%;
    }
    .ast-separate-container.ast-two-container #secondary{
        display: none;
    }
    .ast-left-sidebar #content > .ast-container{
        display: unset;
    }
    #primary{
        /*width: 100%;*/
    }
    .ast-separate-container #primary{
        padding-top:30px;
    }
    .ast-woocommerce-container{
        padding-right: 2em !important;
        padding-left: 2em !important;
    }
    .ast-separate-container .ast-archive-description{
        padding-right: 2em;
        padding-left: 2em;
    }
    .elementor-7 .elementor-element.elementor-element-007db15 .elementor-icon-list-item > .elementor-icon-list-text{
        font-size: 15px !important;
    }
    /*.product-nav{*/
    /*    display: none;*/
    /*}*/
    .elementor-7 .elementor-element.elementor-element-b23578b {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .elementor-7 .elementor-element.elementor-element-2027dd8 > .elementor-widget-container {
    padding: 0px 0px 0px 0px;
    }
}

@media (max-width: 767px) {
    .elementor-element-ab82582 figure img{
        object-fit: contain;
    }
    .elementor-element-ab82582 .elementor-image-box-description{
        margin-bottom: 0 !important;
    }
    #wpsp-2511{
        display: block;
    }
 #wpsp-2511 article {
      width: 100%;  
    }
}
@media (max-width: 550px){
    .elementor-widget-container {
        margin-top: 0;
    }
     #wpsp-2164 article,#wpsp-2253 article{
        width: 100%;
    }
    .wp-show-posts-columns .wp-show-posts-single:not(.wp-show-posts-masonry-block) .wp-show-posts-image img{
        margin: 0 auto;
    }
    .elementor-widget-heading h2.elementor-heading-title {
    line-height: 1em;
    }
        h1, .entry-content :where(h1), h2, .entry-content :where(h2) ,
        .news-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1,
        .news-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1, .services-page .ast-archive-entry-banner[data-post-type="post"] .ast-container h1{
        font-size: 22px !important;
    }
.elementor-widget-heading h4.elementor-heading-title {
    line-height: 1em;
}
h4, .entry-content :where(h4){
    font-size: 1.3rem;
}
    h3, .entry-content :where(h3) {
        font-size: 15px;
    }
    .elementor-7 .elementor-element.elementor-element-b23578b{
        padding-top: 0;
        padding-bottom: 0;
    }
    .post-7 .elementor-widget-container{
        margin-top: 20px !important;
    } 
    .e-con>.e-con-inner{
        padding-bottom: 20px;
    }
}
@media (max-width: 520px){
    #wpsp-2506{
        display: block;
    }
    #wpsp-2506 article{
        width: 100%;
        margin-bottom: 5px;
    }
    .form-r{
        padding-top: 50px;
    }
}
@media (max-width: 450px){
    .wp-show-posts-columns .wp-show-posts-single{
        width: 100%;
    }
}


 .news-pages  #secondary {
        padding-right: 0px !important;
    }