/*-- culture --*/
.wthree-almubimg {
    background: url(../images/about01.jpg)no-repeat center;
    background-size: cover;
    min-height: 347px;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -o-transition: all 3s;
    transition: all 3s;
    display: block;
} 
.albums-right,.albums1-left{ 
    background: #f6f7fb;
    padding: 8em 8em;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
.wthree-almubimg.wthree1-almubimg {
    background: url(../images/about02.jpg)no-repeat center;
    background-size: cover;
	min-height: 347px;
	
}
.albums-left, .albums1-right {
    padding: 0;
}
.albums1-right {
    float: right;
}
.albums h4 {
    font-size: 2.5em;
    font-weight: 300;
    color: #000;
    margin-bottom: 0.8em;
}
/*-- //culture --*/

/*-- custom-albums --*/
.custom-wthree-almubimg {
    background: url(../images/about04.jpg) no-repeat center;
    background-size: cover;
    min-height: 350px;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -o-transition: all 3s;
    transition: all 3s;
    display: block;
} 
.custom-albums-right, .custom-albums1-left { 
    background: #f6f7fb;
    padding: 8em 8em;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
.custom-wthree-almubimg.custom-wthree1-almubimg {
    background: url(../images/about03.jpg) no-repeat center;
    background-size: cover;
	
}
.custom-albums-left, .custom-albums1-right {
    padding: 0;
}
.custom-albums1-right {
    float: right;
}
.custom-albums h4 {
    font-size: 2.5em;
    font-weight: 300;
    color: #000;
    margin-bottom: 0.8em;
}
/*-- //custom-albums --*/



/*-- contact --*/

.contact {
    padding: 5em 0;
}

.contact-box {
    background-color: #0070c0;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: row; /* 默认情况下是左右布局 */
    align-items: center;
    justify-content: space-between; /* 左右布局时，内容水平分布 */
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
}

.contact-details {
    flex: 1; /* 让内容区域占据剩余空间 */
    padding-right: 20px;
    margin-left: 50px;
    text-align: center;
}

.contact-details h2 {
    margin-top: 0;
}

.contact-details p {
    color: white;
}

.handshake {
    background: url(../images/contact01.jpg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 450px;
    max-width: 100%;
    max-height: 320px; /* 限制图片最大高度，防止变形 */
    position: relative;
    left: 1px;
    object-fit: cover; /* 使用 object-fit 属性调整图片填充方式 */
}

.qrcode {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 90px;
    height: 90px;
    background: url(../images/code.jpg);
    background-size: cover;
}

/* 媒体查询：调整在小屏幕上的布局 */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column; /* 小屏幕下改为上下布局 */
        align-items: center; /* 内容垂直居中 */
    }

    .contact-details {
        margin-left: 0;
        padding: 0 10px;
        text-align: center;
    }

    .handshake {
        width: 100%;
        height: auto;
        max-height: 300px; /* 调整图片最大高度为300px */
    }

    .qrcode {
        position: static;
        width: 70px;
        height: 70px;
        margin-top: 160px;
        margin-left: 0px; /* 图片code.jpg向右移动100px */
    }
}


/*-- //contact --*/


