.middle_content{
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}
.blog_banner{
    padding: 60px 0 34px;
}

.blog_banner .head{
    max-width: 470px;
}
.blog_banner .head h1{
    font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 40px;
}
.blog_banner .head p{
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}
.filter_top select{
    border: none;
    appearance: none;
    border-bottom: 1px solid #000;
    line-height: 32px;
    min-height: 32px;
    min-width: 162px;
    outline: none;
    font-family: "Gotham Bold", sans-serif;
    background: url('../img/sanjiao.svg') no-repeat right center/20px;
}
.filter_top{
    padding-top: 37px;
    margin-bottom: 130px;
}
.filter_top .search{
    min-width: 162px;
    border-bottom: 1px solid #000;
    position: relative;
}
.filter_top .search input{
    appearance: none;
    border: none;
    background: transparent;
    line-height: 32px;
    font-family: inherit;
}
.filter_top .search input[type="submit"]{
    width: 15px;
    height: 15px;
    display: inline-block;
    background: url('../img/icon-search.png') no-repeat center/contain;
    text-indent: -9999px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.blog_lists ul.blogs{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 70px 13px;
}
.blog_lists li .img{
    aspect-ratio: 385/211;
    overflow: hidden;
    margin-bottom: 29px;
}
.blog_lists li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.blog_lists li:hover .img img{
    transform: scale(1.1);
}
.blog_lists li strong{
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 10px;
    display: block;
    margin-bottom: 20px;
}
.blog_lists li p{
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 2rem;
}
.blog_lists li span{
    font-weight: 500;
    color: #000;
}
.blog_lists{
    padding-bottom: 126px;
}
.post_banner{
    padding-top: 130px;
}
.post_banner h1{
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 0.5rem;
}
.blog_lists .button_t{
    margin-top: 3rem;
}
.blog_lists .button_t:hover{
    border-color: #333;
    color: #333 !important;
}
.main_img{
    padding: 2rem 0;
}
.main_img img{
    width: 100%;
    display: block;
    height: auto;
}

.post_details p{
    line-height: 1.5rem;
    margin-bottom: 1rem;
}
.post_details figure.wp-block-image, .post_details figure.wp-block-image img{
    width: 100%;
    display: block;
}
.post_details figcaption{
    width: 100%;
    display: block !important;
}
.post_details figcaption a{
    color: var(--theme_color);
    text-decoration: underline;
}
.post_details h2{
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}
.post_details .wp-block-columns{
    gap: 1rem;
}
.post_details{
    padding-bottom: 5rem;
}
.post_details ul{
    margin: 1rem 0;
}
.post_details ul li{
    line-height: 1.2rem;
    margin-bottom: 0.5rem;
    list-style: disc;
    margin-left: 20px;
}
.post_details a{
    color: var(--theme_color);
    text-decoration: underline;
}
div.loader { 
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  margin-left: -1.75rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center;
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}