.head-container{
    background-image: url('../img//cp_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.head-item{
    text-align: center;
    margin-right: 40px;
}

.head-item-title{
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 2rem;
}

.head-item-title span{
    position: relative;
    padding-bottom: 35px;
}

.head-item-title span::before{
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 0;
    background-image: url('../img/cp_head_x.png');
    background-repeat: no-repeat;
    background-size: contain;
    /* 让背景图片以保持纵横比的方式缩放以适应元素的尺寸 */
}

/* .head-item-title > img{
    width: 100%;
    height: auto;
} */

.head-item-text{
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .7);
    /* text-align: center; */
    /* margin: 20px 0; */
}

.head-item-text p{
    margin-bottom: 7px;
}


.exhibition-title-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.exhibition-title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.exhibition-title > span{
    font-size: 2rem;
    font-weight: 600;
    background-image: linear-gradient(to bottom, #279FFE, #2275D4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.exhibition-title > img{
    width: 45px;
    height: 45px;
    margin-right: 10px;
}


.exhibition-md{
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px 12px;
    width: 50%;
    border: 1px solid #333;
}

.exhibition-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.exhibition-content-item{
    display: flex;
    align-items: center;
    width: 70%;
    margin-bottom: 20px;
}

.exhibition-content-item:last-child{
    margin-bottom: 0;
}


.exhibition-content-item-1{
    width: 50%;
    height: 200px;
}

.exhibition-content-item-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 10px;
}

.exhibition-content-item-2{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exhibition-content-item-2 > img{
    width: 200px;
    height: auto;
    object-fit: cover;
    margin-top: 8px;
}

.exhibition-content-item-2 span:nth-child(1){
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-container{
    width: 70%;
    margin: auto;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;/* 一行两列 */
    grid-gap: 40px 100px ; /* 设置网格间隔 */
}


.product-item-1{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-item-1_1{
    display: flex;
    align-items: center;
}

.product-item-1_1 img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.product-item-1_1 span{
    font-size: 22px;
    font-weight: 600;
    background-image: linear-gradient(to bottom, #279FFE, #2275D4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-item-2 img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 7px 0;
}

.product-item-4{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.product-item-4 img{
    width: 200px;
    height: auto;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}