/* 顶部横幅 */
.top-banner {
    width: 100%;
    background: #027173;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    /*margin-top: 0.3rem;*/
    /*border-radius: 1rem;*/
}

.top-banner .container {
    width: 70%;
    /*padding: 0 1rem;*/
    margin: 0 auto;
    /*background: pink;*/
}


.titleCenter {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.titleCenterText {
    width: 100%;
    font-size: 0.7rem;
    opacity: 0.9;
    text-align: center;
}




/* 主要内容区域 */
.main-content {
    margin: 1.2rem 0;
}
.main-content .container{
    width: 100%;
    padding: 0 0;
}
.section-title {
    font-size: 2rem;
    color: #1a3c5a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

/* 展会信息部分 */
.exhibitions-section {
    width: 100%;
    margin-bottom: 1rem;
}

/*.upcomingBox {*/
/*    width: 100%;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    !*align-items: center;*!*/
/*    !*background: pink;*!*/
/*}*/

/*瀑布流排法*/
/*.ulBox{*/
/*    column-count: 1;*/
/*    column-gap: 0;*/
/*}*/
/*.ulBox li{*/
/*    padding-top: 10px;*/

/*    box-sizing: border-box;*/
/*    break-inside: avoid;*/
/*}*/

.upcoming-exhibitions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*align-items: baseline;*/
    /*background: pink;*/

}

.exhibition-item {
    width: 33%;
    /*margin-left: 1%;*/
    /*margin-top: 1rem;*/
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1%;
    /*break-inside: avoid;*/
    /*padding-bottom: 20px;*/
    /*border-bottom: 1px solid #eee;*/
}
.exhibition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.imgDiv {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    height: 9rem;
}

.imgDiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-section {
    /*width: 100%;*/
    padding: 1rem;
}

/*.exhibition-item:last-child {*/
/*    border-bottom: none;*/
/*    margin-bottom: 0;*/
/*    padding-bottom: 0;*/
/*}*/

.exhibition-title {
    width: 100%;
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    line-height: 1rem;
    /*text-align: center;*/
}

.keyWordBox {
    width: 100%;
    /*background: pink;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.keyWordBox p {
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 8px;
    color: white;
    font-size: 0.6rem;
    border-radius: 0.3rem;
    margin-bottom: 0.3rem;
}
.keyWordBox p:hover{
    transition: 0.6s;
    background: #027173;
    cursor: pointer;
}

.preparationBox {
    /*width: 33%;*/
    border: 1px dashed rgba(0, 0, 0, 0.3);
    padding: 6rem 0;
    /*margin-left: 1%;*/
    border-radius: 0.5rem;
}
.preparationBox .layui-icon{
    font-size: 2rem;
    color: rgba(0,0,0,0.7);
}
.preparationBox p{
    width: 90%;
    margin: 0.8rem auto;
    font-size: 0.6rem;
    text-align: center;
    line-height: 1.1rem;
    color: rgba(0,0,0,0.5);
    /*margin-bottom: 0.8rem;*/
}
.preparationBox .pTwice{
    font-size: 0.8rem;color: rgba(0,0,0,0.8);
}

/*过往展会*/
.previous-exhibitions {
    width: 100%;
    margin: 2rem auto;
    padding: 1rem;
}

.item-exhibitions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    /*justify-content: space-around;*/
}

.exhibition-item1 {
    width: 33%;
    border-left: 2px solid #027173;
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
}
.exhibition-item1:nth-child(-n+1){
    border-left:none
}
.exhibition-item1 .exhibition-title {
    text-align: center;
}

/*媒体查询*/
@media (max-width: 900px) {
    /*.top-banner {*/
    /*    !*text-align: justify;*!*/
    /*    padding: 2rem 0.5rem;*/
    /*    border-radius: 0.6rem;*/
    /*}*/

    .top-banner .container {
        width: 96%;
        margin: 0 auto;
    }
    .titleCenter {
        text-align: justify;
        line-height: 1.5rem;
    }
    .titleCenterText {
        text-align: justify;
        line-height: 1rem;
    }

    .exhibition-item {
        width: 100%;
        margin-left: 1%;
        margin-top: 0rem;
        margin-bottom: 0.5rem;
    }

    .previous-exhibitions {
        margin: 1rem auto;
        padding: 1rem;
    }

    .exhibition-item1 {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #027173;
    }
    .exhibition-item1:last-child{
        border-bottom: none;
    }
    .preparationBox {
        padding: 1rem 0;
    }
}