.teamlistwrap {
    background-color: #f5f5f5;
    padding-top: 40px;
    padding-bottom: 100px;
}
.teamlistwrap .w {
    display: flex;
    flex-wrap: wrap;
}
.teamlistwrap .teamitem {
    width: calc((100% - 90px)/4);
    height: 380px;
    background-color: #fff;
    margin-right: 30px;
    margin-bottom: 30px;
}
.teamlistwrap .teamitem:nth-child(4n){
    margin-right: 0;
}
.teamlistwrap .teamitem .pic {
    padding: 10px;
    height: 300px;
}
.teamlistwrap .teamitem .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.teamlistwrap .teamitem h2 {
    padding: 10px;
    line-height: 60px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}
.aboutmain {
    padding-top: 40px;
}
.contactwrap {
    width: 100%;
    padding: 50px 0;
}
.contactwrap .w {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contactwrap .info {
    width: 600px;
}
.contactwrap .info .top {
    border-bottom:1px solid #f0f0f0;
    padding-bottom: 15px;
}
.contactwrap .info .top h1 {
    color: #c59d58;
    font-size: 25px;
    line-height: 30px;
    font-weight: bold;
}
.contactwrap .info .top p {
    font-size: 15px;
    color: #888;
    line-height: 20px;
    margin-top: 10px;
}
.contactwrap .map {
    width: calc(100% - 700px);
}
.contactwrap ul {
    margin-top: 30px;
}
.contactwrap ul li {
    margin-bottom: 15px;
}
.contactwrap ul h2 {
    font-size: 15px;
    line-height: 30px;
    color: #666666;
}
.contactwrap ul p {
    font-size: 18px;
    line-height: 30px;
    color: #222;
}

/* 超小型设备（电话，600px 及以下） */
@media only screen and (max-width: 600px) {
    .teamlistwrap{
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .teamlistwrap .teamitem {
        width: calc((100% - 15px)/2);
        height: 190px;
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .teamlistwrap .teamitem:nth-child(2n){
        margin-right: 0;
    }
    .teamlistwrap .teamitem .pic {
        height: 150px;
    }
    .teamlistwrap .teamitem h2 {
        padding: 10px;
        line-height: 20px;
        font-size: 12px;    
    }
    .contactwrap {
        padding: 30px 0;
    }
    .contactwrap .w {
        flex-direction: column;
    }
    .contactwrap .info {
        width: 100%;
    }
    .contactwrap .map {
        width: 100%;
        margin-top: 30px;
    }

}

/* 小型设备（纵向平板电脑和大型手机，600 像素及以上） */
@media only screen and (min-width: 600px) {
    .teamlistwrap{
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .teamlistwrap .teamitem {
        width: calc((100% - 15px)/2);
        height: 190px;
        margin-right: 15px;
        margin-bottom: 15px;
    
    }
    .teamlistwrap .teamitem:nth-child(2n){
        margin-right: 0;
    }
    .teamlistwrap .teamitem .pic {
        height: 150px;
    }
    .teamlistwrap .teamitem h2 {
        padding: 10px;
        line-height: 20px;
        font-size: 12px;    
    }
    .contactwrap {
        padding: 30px 0;
    }
    .contactwrap .w {
        flex-direction: column;
    }
    .contactwrap .info {
        width: 100%;
    }
    .contactwrap .map {
        width: 100%;
        margin-top: 30px;
    }
}

/* 大型设备（笔记本电脑/台式机，992px 及以上） */
@media only screen and (min-width: 1200px) {
    .teamlistwrap{
        padding-top: 40px;
        padding-bottom: 100px;
    }
    .teamlistwrap .teamitem {
        width: calc((100% - 90px)/4);
        height: 380px;
        margin-right: 30px;
        margin-bottom: 30px;
    }
    .teamlistwrap .teamitem:nth-child(2n){
        margin-right: 30px;
    }
    .teamlistwrap .teamitem:nth-child(4n){
        margin-right: 0px;
    }
    .teamlistwrap .teamitem .pic {
        height: 300px;
    }
    .teamlistwrap .teamitem h2 {
        padding: 10px;
        line-height: 60px;
        font-size: 22px;    
    }

    .contactwrap {
        padding: 50px 0;
    }
    .contactwrap .w {
        flex-direction: row;
    }
    .contactwrap .info {
        width: 600px;
    }
    .contactwrap .map {
        width: calc(100% - 700px);
    }

}