.detailListNo{
    display: none;
}
.detailListShow{
    display: flex;
    flex-direction: column;
    margin-top: 57px;
}

.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
}

.hero-title {
    font-size:4.1666vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-title::after{
    content: '';
    position: absolute;
    bottom: -0.52vw;
    width: 6.40625vw;
    height: 3px;
    background: white;
    top:110%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

nav {
    background: #ffffff;
    width: 100%;
}

.nav-container {
    display: flex;
    width: 54.1666vw;
    left: 22.9166vw;
    position: absolute;
    z-index: 9;
    bottom: 5.520vw;
}

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.25vw;
    transition: color 0.3s ease;
    position: relative;
}

/* 默认选中状态 */
.nav-links .active {
    color: white;
}

.nav-links .active::after,
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    bottom: -0.9895vw;
    left: 0;
    transition: width 0.3s ease;
}
.nav-links .active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: white;
}

.body_hidden{
    display: none;
}
.body_box{
    display: flex;
    flex-direction: row;
}
.img{
    width: 39.0625vw;
    height: 27.6041vw;
}
.text_box{
    display: flex;
    flex-direction: column;
    padding-left: 7.4479vw;
    padding-top: 6.1979vw;
}
.text_box_right{
    display: flex;
    flex-direction: column;
    padding-right: 7.4479vw;
    padding-top: 6.1979vw;
}
.text_head{
    font-size:2.3958vw;
    font-weight: bold;
}
.text_body{
    font-size: 20px;
    margin-top: 35px;
}
.moreBtn{
    max-width: 140px;
    max-height: 40px;
    margin-top: 40px;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.card-title{
    color:#27322A;
    font-size:1.14583vw;
    font-weight:bold;
    margin-top:1.6145vw;
    margin-bottom:2.8645vw
}
.product-card:hover .card-title{
    color: #C9062C;
}

.product-image {
    width: 25vw;
    height: 15.05208vw;
    object-fit: cover;
    border-bottom: 1px solid #dee2e6;
}

.product-content {
}

.pagination-custom{
    
}
.page-item{
    border-color: #999999;
    margin-right: 0.67708vw;
}
.page-item.active{
    background-color: #C9062C;
    color: white;
}
.page-link{
    width: 3.90625vw;
    height: 1.8229vw;
    border: 1px solid #999999;
    line-height: 1.8229vw;
    color: #999999;
}
.page-link.active{
    background-color: #C9062C;
    color: white;
}


.main-img {
    height: 27.6041vw;
    width: 32.1354vw;
}
.thumb-img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 11.1458vw;
    height: 8.75vw;
    margin-bottom: 0.625vw;
}
.thumb-img:hover {
    border-color: #C9062C;
}
.thumb-img.active {
    border-color: #C9062C;
}

.advantage-list {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.25vw;
}
.advantage-list li {
    padding-top: 1.25vw;
}
.advantage-list li:first-child {
    padding-top: 0px;
}


.marketAppBox{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 25.1562vw;
    height: 21.375vw;
    cursor: pointer;
}
.marketAppBox:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.marketAppAll{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.04166vw;
}
.marketAppText{
    color: #27322A;
    font-size: 1.25vw;
    padding-top: 0.5625vw;
}
@media  screen and (max-width:992px){
	.marketAppAll {
	    gap:initial !important;
	}
	.marketAppBox {
		width: calc(50% - 3px) !important;
		height: auto !important;
		
	}
	.marketAppBox:nth-child(2n-1) {
		margin-right: 6px;
	}
	.marketAppBox img{
		width: 100% !important;
		height: auto !important;
	}
	.marketAppBox p{
		font-size: 16px !important;
	}
}

@media  screen and (max-width:768px){
	.marketAppBox{
	    width: 100% !important;
	    height: auto !important;
	}
}
    
