.top-banner-box{
    width: 100%;
    height: 46vh;
    overflow: hidden;
    
}

.top-banner-box img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-show-box{
    width: 70%;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
   /* background-color: aqua;   */
}

/* 以下是公司信息介绍 */
.top-compnites-info{
    margin-bottom: 20px;width: 70%;height: auto;padding: 30px;background-color: #fff;margin:  0 auto;
}



/* 以下是主显示区域的样式 */
.main-show-box-left{
    float: left;
    width: 20%;
    padding: 1.5%;
    height: auto;
    background-color: rgb(255, 255, 255);
    
}


.menu-box-left{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 8px; 
}

.menu-box-left li{
    width: 100%;
    padding: 6% 0 6% 0;
    text-align: center;
    background-color: #f1f3f2;
    margin-bottom: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-box-left li.active {
    background: #007bff;
    color: white;
}

.content-tab {
    padding: 2%;
    display: none;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s;
}

.content-tab.active {
    display: block;
    opacity: 1;
}



/* 这是右边显示区域 */
.main-show-box-right{
    float: left;
    width: 80%;
    height: auto;
    background-color: rgb(255, 255, 255);
}

.goods-box{
    width: 100%;
    height: auto;
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
}

.goods-box .goods-list{
    flex:  0 0 calc(50% - 2%);
    box-sizing: border-box;
    margin-bottom: 2%;
    height: auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow:  0 3px 14px #dcdcdc;
}

.goods-img{
    width: 100%;
    border-radius: 12px 12px 0 0;
    height: 30vh;
    background-color: #4d4d4d;
}

.goods-img img{
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.goods-info{
    width: 100%;
    height: auto;
    padding: 4%;
}

.goods-info h4{
    font-size: 1.3rem;
    font-weight: 600;
}

.see-more{
    display: block;
    width: 100%;
    height: 50px;
    padding: 14px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #007bff;
    border-radius: 6px;
}