:root {
    --theme-color: rgb(186, 155, 75);
    --text-color: #061a14;
    /* rgb(118, 96, 70) */
    --button-color: #766046;
    --price-color: #ba9b4b;
    --gray-color: #808080;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
    background:#f4f4f4;
    color: var(--text-color);
}

* {
    box-sizing: border-box;
    transition: all 0.3s;
}

a {
    text-decoration: none;
}

body,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h4,
h5 {
    margin: 0;
    padding: 0;
}

p {
    word-wrap: break-word
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

.wl-container {
    width: 92%;
    max-width: 1440px;
    margin: auto;
}

.padd {
    padding: 80px 0;
}
.m-padd{
    padding: 25px 0;
}

.cursor_pointer {
    cursor: pointer;
}
.bg-white{
    background:#fff;
}

.pc{
    display: block;
}
.mobile{
    display: none;
}

/* 导航栏容器 */

.ellipsis1 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.ellipsis2 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/*flex*/
.flex1 {
    flex: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex {
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    display: flex;
    /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.align-items_flex-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.align-items_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.align-items_baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.flex-direction_column {
    flex-direction: column;
}


.nav-link:focus .nav-link:active {
    outline: none !important;
    box-shadow: none !important;
    background: #000 !important;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--text-color);
}

.navbar .language {
    margin-left: 40px;
}

.navbar .language a {
    font-size: 14px;
    color: #fff;
    padding: 0 12px;
    height: 25px;
    line-height: 25px;
}

.navbar .language a:nth-child(1) {
    border-radius: 2em 0 0 2em;
    background: var(--theme-color);
}

.navbar .language a:nth-child(2) {
    border-radius: 0 2em 2em 0;
    background: #3d3d3d;
}



/* 滚动后的导航栏样式 */
.navbar.scrolled {
    background-color: #ffff;
    color: var(--text-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 导航栏内容容器 */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    height: 80px;
}

.navbar:hover {
    background: #fff;
}

/* 品牌logo/名称 */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
}

.navbar-brand img {
    height: 60px;
    display: block;
}

/* 导航菜单 */
.navbar-menu {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    /* column-gap: 4%; */
    padding: 0;
    flex: 1;
}

.navbar-menu .nav-item:not(:last-child) {
    margin-right: 4%;
}

/* 导航项 */

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    transition: color 0.3s;
    font-size: 18px;
    line-height: 80px;
    height: 80px;
    display: block;
}

.nav-item.active .nav-link {
    font-weight: bold;
}

.nav-item.current::after {
    position: absolute;
    content: '';
    width: 110%;
    height: 3px;
    background: var(--theme-color);
    bottom: 0;
    left: -5%;
}

.nav-link:hover {
    color: var(--theme-color);
}

.nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 3px;
    background: var(--theme-color);
    bottom: 0;
    left: -5%;
    transition: all 0.3s;
    opacity: 0;
}

.nav-item:hover .nav-link::before {
    opacity: 1;
    width: 110%;
}

.nav-item {
    position: relative;
}

/* 二级菜单容器 */
.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 200px;
    background-color: #fff;
    color: var(--text-color);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
}

/* 鼠标悬停时显示二级菜单 */
.nav-item:hover .dropdown {
    max-height: 100vh;
    opacity: 1;
}

/* 二级菜单内容容器 */
.dropdown-content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* 二级菜单列 */
.dropdown-column {
    flex: 1;
}

.dropdown-column h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.dropdown-column a {
    display: block;
    color: #666;
    padding: 5px 0;
    text-decoration: none;
    transition: color 0.3s;
}

.dropdown-column a:hover {
    color: var(--theme-color);
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav_pro_list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.nav_pro_list .item {
    display: block;
    width: calc((100% - 80px) / 5);
}

.nav_pro_list .item .img {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.nav_pro_list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.nav_pro_list .item:hover .img img {
    transform: scale(1.1);
}

.nav_pro_list .item:hover .img {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.nav_pro_list .item .t {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
}

.nav_pro_list .item:hover .t {
    color: #78312B;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .padd {
        padding: 40px 0;
    }

    .navbar-container {
        padding: 0 4%;
        height: 60px;
    }

    .navbar-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        color: var(--text-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-item:hover .dropdown {
        max-height: 0;
    }

    .navbar-menu.active {
        max-height: calc(100vh - 60px);
        overflow-y: scroll;
        justify-content: flex-start;
    }

    .nav-item .nav-link::before {
        display: none;
    }



    .nav-item {
        width: 100%;
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
        line-height: 40px;
        height: 40px;
    }

    .dropdown {
        position: static;
        width: 100%;
        transform: none;
        max-height: 0;
        background-color: #f9f9f9;
        box-shadow: none;
    }

    .dropdown.active {
        max-height: 100vh !important;
        opacity: 1 !important;
        margin-top: 10px;
        overflow-y: scroll;
    }

    .dropdown-content {
        padding: 15px;
        flex-direction: column;
    }

    .dropdown-column {
        width: 100%;
        padding: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-item.current::after {
        display: none;
    }

    /* 添加箭头图标 */
    .has-dropdown .nav-link::after {
        content: '+';
        font-size: 20px;
        transition: transform 0.3s;
    }

    .has-dropdown.active .nav-link::after {
        content: '-';
        width: auto;
        height: auto;
        right: 0;
        bottom: auto;
        background: transparent;
        color: var(--text-color);
        left: auto;
    }

    .nav_pro_list .item {
        width: calc((100% - 20px) / 2);
    }

    .navbar-brand img {
        height: 45px;
    }


}

.swiper-button-next,
.swiper-button-prev {
    color: var(--button-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: .8;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 1px solid var(--button-color);
    opacity: 1;
    background: transparent;
    margin: 0 6px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #F5BF67;
    border-color: #F5BF67;
}

.banner {
    position: relative;
}

.banner .swiper-pagination {
    bottom: 20px;
}

.banner img {
    width: 100%;
    display: block;
}



.img-container {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.img-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    transform: translate(-50%, -50%);
}

.index-product-nav{
    gap: 35px;
}
.index-product-nav-item{
    width: calc((100% - 70px) / 3);
    position: relative;
}
.index-product-nav-item .img-container{
    padding-bottom: 75%;
}
.index-product-nav-item:hover{
    transform: translateY(-10px);
    z-index: 1;
}
.index-product-nav-item .title{
    position: absolute;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background: rgb(0,0,0,.5);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    left: 0;
    bottom: 0;
}
.index-product-nav-item:hover .title{
    background:rgba(118, 96, 70,.5)
}

/* 响应式设计 */
@media (max-width: 768px) {
    .index-product-nav{
        gap: 15px;
    }
    .index-product-nav-item{
        width: calc((100% - 30px) / 3);
    }
    .index-product-nav-item .img-container{
        padding-bottom: 133.333%;
    }
    .index-product-nav-item .title{
        font-size: 12px;
        font-weight: normal;
    }
}


/* 行业新闻 */
.industry-header {
    margin-bottom: 60px;
}

.industry-header .title {
    font-size: 44px;
    font-weight: bold;
}

.industry-header .more {
    color: var(--text-color);
    font-size: 20px;
}

.industry-swiper {
    position: relative;
    padding-bottom: 50px;
}

.industry-swiper .swiper-pagination {
    bottom: 0;
}

.industry-swiper .item {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.industry-swiper .item .thumb {
    width: 59.222%;
}

.industry-swiper .item .thumb .img-container {
    padding-bottom: 53.488%;
}

.industry-swiper .item:hover .thumb .img-container img {
    width: 110%;
    height: 110%;
}

.industry-swiper .item .info {
    padding: 50px 90px 40px 90px;
}

.industry-swiper .item .name {
    font-size: 16px;
    color: var(--button-color);
    margin-bottom: 30px;
}
.zgtyd .item .name {
    color: var(--theme-color);
}

.industry-swiper .item .title {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.industry-swiper .item .desc {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
}

.industry-swiper .item:hover .title {
    color: var(--button-color);
}
.zgtyd .item:hover .title {
    color: var(--theme-color);
}


/* 响应式设计 */
@media (max-width: 768px) {
    .industry-header {
        margin-bottom: 30px;
    }

    .industry-header .title {
        font-size: 28px;
        font-weight: bold;
    }

    .industry-header .more {
        font-size: 16px;
    }

    .industry-swiper .item {
        flex-wrap: wrap;
    }

    .industry-swiper .item .thumb {
        width: 100%;
    }

    .industry-swiper .item .info {
        padding: 20px 30px;
    }

    .industry-swiper .item .title {
        font-size: 18px;
    }

    .industry-swiper .item .desc {
        font-size: 14px;
    }

    .industry-swiper .item .moreicon {
        height: 36px;
    }

    .industry-swiper .item .name {
        margin-bottom: 20px;
    }
}

.index-img img{
    display: flex;
    width: 100%;
}


.products{
    gap: 35px;
}
.products .item{
    display: block;
    width: calc((100% - 70px) / 3);
}
.products .item .img-container{
    padding-bottom: 100%;
}
.products .item .img-container:hover{
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}
.products .item .info{
    padding: 25px 10px;
    text-align: center;
}
.products .item .title{
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: bold;
}
.products .item .price{
    font-size: 18px;
    color: var(--price-color);
}
.products .item:hover .title{
    color: var(--theme-color);
}
.products .item:hover .img-container img{
    width: 105%;
    height: 105%;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .products{
        gap: 20px;
        min-height: 30vh;
    }
    .products .item{
        width: calc((100% - 20px) / 2);
    }
    .products .item .title{
        font-size: 16px;
    }
    .products .item .price{
        font-size: 14px;
    }
}

.single-page {
    line-height: 1.8;
    font-size: 16px;
    max-width: 1000px;
    margin: auto;
}

.single-page p {
    text-indent: 2em;
}
.page-header{
    margin-bottom: 80px;
}
.page-title{
    font-size: 30px;
    font-weight: bold;
}

.footer {
    padding: 40px 0 35px;
}

.foot-nav {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 80px;
}
.foot-nav .list {
    column-gap: 40px;
    row-gap: 5px;
}

.foot-nav a {
    color: var(--text-color);
}

.foot-nav a:hover {
    color: var(--theme-color);
}

.footlogo{
    row-gap: 10px;
    margin-bottom: 40px;
}
.footlogo img{
    height: 80px;
}
.footlogo .t{
    font-size: 16px;
    color: #999;
}

.footer .footer-copyright {
    margin-top: 15px;
    text-align: center;
    color: #999;
    font-size: 16px;
}

.footer .footer-copyright a {
    color: #999;
}

.footer .footer-copyright img {
    height: 18px;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
        padding-bottom: 25px;
        position: relative;
    }
    .footlogo img{
        height: 50px;
    }

    .foot-top-icon {
        display: flex;
        top: -25px;
        position: absolute;
        width: 100%;
    }
    
    .foot-top-icon img {
        height: 50px;
    }

    .foot-nav {
        font-size: 14px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .footer .footer-copyright {
        font-size: 10px;
        text-align: center;
    }
    .footer .footer-copyright img{
        height: 14px;
    }
}

.pg-margin,
.pg-engineering {
    margin: 80px 0;
}

.pg-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #9f9f9f;
    margin-bottom: 40px;
}

.pg-header .title {
    font-size: 30px;
    color: var(--text-color);
}

.pg-about.pg-details .pg-header .title {
    font-size: 30px;
    color: var(--text-color);
    font-weight: bold;
}

.pg-details .pg-header .title {
    font-size: 24px;
}

.pg-header .lm {
    color: var(--theme-color);
    font-size: 14px;
    margin-top: 10px;
}

.pg-mbx {
    background: #f4f4f4;
    font-size: 14px;
    color: #999;
    padding: 10px 0;
}

.pg-mbx a {
    color: #999;
}

.pg-mbx a:hover,
.pg-mbx span {
    color: var(--theme-color);
}

.pg-mbx span {
    padding: 0 5px;
}

.pg-details .wl-container,
.pg-mbx .wl-container {
    max-width: 1025px;
}

.pg-details {
    margin: 40px 0 100px;
}


/* 响应式设计 */
@media (max-width: 768px) {

    .navbar .language {
        display: none;
    }

}

/* 新闻 */
.engineering-list {
    column-gap: 35px;
    row-gap: 35px;
}
.engineering-list .item {
    /* border-radius: 10px; */
    overflow: hidden;
    width: calc((100% - 70px) / 3);
}

.engineering-list .item:nth-child(-n + 2) {
    width: calc((100% - 35px) / 2);
}

.engineering-list .item .img-container {
    padding-bottom: 54.94%;
}

.engineering-list .item .info {
    padding: 24px 10px 10px;
}

.engineering-list .item:hover .thumb .img-container img {
    width: 110%;
    height: 110%;
}

.engineering-list .item .name {
    font-size: 16px;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.engineering-list .item .title {
    font-size: 22px;
    color: #000;
}

.engineering-list .item:hover .title {
    color: var(--theme-color);
}

@media (max-width: 768px) {
    .engineering-list {
        row-gap: 20px;
    }

    .engineering-list .item:nth-child(-n + 2),
    .engineering-list .item {
        width: 100%;
    }

    .engineering-list .item .info {
        padding: 20px 25px 25px;
    }

    .engineering-list .item .title {
        font-size: 18px;
    }

    .engineering-list .item .name {
        font-size: 14px;
        margin-bottom: 10px;
    }

}

.page-nav{
    column-gap: 20px;
    margin-top: 20px;
}
.page-nav .item{
    background: #3C3C3C;
    font-size: 16px;
    padding: 8px 30px;
    color: #fff;
}
.page-nav .item:hover,
.page-nav .item.active{
    background: var(--button-color);
}
@media (max-width: 768px) {
    .page-nav{
        column-gap: 10px;
    }
    .page-nav .item{
        font-size: 14px;
        padding: 5px 24px;
    }
}


/* 查询 */
.form-cx{
    row-gap: 20px;
}
.form-cx .form-title{
    font-size: 30px;
    font-weight: bold;
}
.form-cx .form-input{
    border: 1px solid #000;
    background: #fff;
    font-size: 16px;
    width: 240px;
    padding: 0 12px;
}
.form-cx .form-input input{
    height: 38px;
    line-height: 38px;
    outline: none;
    width: 100%;
}
.form-cx .submit,
.form-cx .form-input input{
    border: none;
}
.form-cx .submit{
    background: var(--button-color);
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    width: 240px;
    cursor: pointer;
}
.form-cx .submit:hover{
    background: var(--theme-color);
}


.zsjm{
    column-gap: 40px;
    row-gap: 20px;
}
.zsjm .item{
    flex: 1;
    width: 100%;
}
.zsjm .item .info{
    padding: 50px 0;
    text-align: center;
    background: #fff;
    color: var(--theme-color);
}
.zsjm .item .title{
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 30px;
}
.zsjm .item .desc{
    color: var(--theme-color);
    font-size: 22px;
    line-height: 1.8;
}



@media (max-width: 768px) {
    .pc{
        display: none;
    }
    .mobile{
        display: block;
    }
    .page-header{
        margin-bottom: 40px;
    }
    .zsjm {
        column-gap: 20px;
    }
    .zsjm .item .title{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .zsjm .item .info{
        padding: 20px 0;
    }
    .zsjm .item .desc{
        font-size: 14px;
    }

    .pg-banner{
        position: relative;
        padding-bottom: 40%;
    }
    .pg-banner img{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        object-fit: cover;
    }
    .form-cx .form-title{
        font-size: 26px;
    }
    .form-cx{
        min-height: 40vh;
    }
    .m-mb10{
        margin-bottom: 10px;
        display: block;
    }

}

.product-detail{
    max-width: 640px;
}
.product-detail-thumb{
    width: 100%;
    position: relative;
}
.product-detail-thumb .img-container{
    padding-bottom: 100%;
}
.product-title{
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
}
.product-price{
    font-size: 18px;
    color: var(--price-color);
    text-align: center;
}
.product-details-cont-tt{
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    color: #999;
}
.product-details-cont{
    line-height: 1.8;
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}
.product-details-cont img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

.product-gg{
    background: #eee;
    border-radius: 12px;
    padding: 20px 20px;
    width: 100%;
    max-width: 640px;
    margin-top: 40px;
}
.product-gg-list{
    row-gap: 10px;
    margin-top: 20px;
}
.product-gg-list .item{
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
}
.product-gg-list .item .title{
    font-size: 16px;
    position: relative;
}
.product-gg-list .item .title::before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eee;
    margin-right: 10px;
}
.product-gg-list .item .price{
    color: var(--theme-color);
    font-size: 14px;
    line-height: 1;
}
.product-gg-list .item .price span{
    font-size: 20px;
    position: relative;
    top: -2px;
}



.details-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #9f9f9f;
    margin-bottom: 40px;
}

.details-header .title {
    font-size: 30px;
    font-weight: bold;
    color: var(--text-color);
}

.details-header .lm {
    color: var(--gold-color);
    font-size: 14px;
    margin-top: 10px;
}

.pg-details-cont {
    line-height: 1.8;
    font-size: 18px;
}

.pg-details-cont img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.pg-details-cont p {
    text-indent: 2em;
}



@media (max-width: 768px) {
    .details-header .title {
        font-size: 24px;
    }
}