
.page-title {
    width: 100%;
    height: 560px;
    background-image: url(../images/contactBgImg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title h3 {
    font-weight: bold;
    font-size: 60px;
    color: #FFFFFF;
}

.page-title p {
    font-size: 25px;
    color: #FFFFFF;
    margin-top: 40px;
}

.tabsCard {
    width: 100%;
    background-color: #fff;
}
.tabsCard > ul {
    display: flex;
    padding: 10px 0;
    justify-content: center;
}
.tabsCard > ul li {
    width: 216px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #222;
    background-color: #f6f6f6;
    cursor: pointer;
}
.tabsCard > ul li.active {
    background-color: #E21824;
    color: #fff;
}
.tabsCard .content {
    background-color: #f6f6f6;
}
.tabsCard .address {
    padding-bottom: 100px;
    display: none;
}
.tabsCard .address.show {
    display: block;
}
.tabsCard .address h4 {
    font-weight: bold;
    font-size: 32px;
    color: #222222;
    padding-top: 60px;
    margin-bottom: 50px;
    text-align: center;
}
.tabsCard .address .maps {
    width: 100%;
    height: 450px;
    /* background-color: pink; */
}
.address-mark {
    width: 60px;
    height: 60px;
    position: relative;
}
.address-mark img {
    width: 100%;
    height: 100%;
}
.tabsCard .address .wayList {
    display: flex;
    margin-top: 30px;
}
.tabsCard .address .wayList li:nth-of-type(n + 2) {
    margin-left: 40px;
}
.tabsCard .address .wayList li {
    width: 406px;
    height: 273px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 10px;
}
.tabsCard .address .wayList li:nth-of-type(n + 2) {
    margin-left: 40px;
}
.tabsCard .address .wayList .icon {
    padding-top: 50px;
    margin-bottom: 8px;
}
.tabsCard .address .wayList .icon img {
    height: 60px;
    width: 60px;
}
.tabsCard .address .wayList p {
    margin: 24px 66px 0;
    line-height: 30px;
}
.tabsCard .leaveMsg {
    padding-bottom: 100px;
    display: none;
}
.tabsCard .leaveMsg.show {
    display: block;
}
.tabsCard .leaveMsg h4 {
    font-weight: bold;
    font-size: 32px;
    color: #222222;
    padding-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}
.tabsCard .leaveMsg p {
    font-size: 16px;
    color: #999999;
    text-align: center;
    margin-bottom: 50px;
}
.tabsCard .leaveMsg .userInput {
    display: flex;
    justify-content: space-between;
}
.tabsCard .leaveMsg .userInput input {
    outline: none;
    border: none;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.1);
    border-radius: 10px 10px 10px 10px;
    padding: 12px 20px;
    width: 406px;
    height: 40px;
    color: #666;

}
.tabsCard .leaveMsg .userInput input::placeholder {
    color: #ccc;
}
.tabsCard .leaveMsg .userMsg {
    margin-top: 20px;
}
.tabsCard .leaveMsg .userMsg textarea {
    width: 100%;
    height: 260px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.1);
    border-radius: 10px 10px 10px 10px;
    outline: none;
    border: none;
    padding: 20px;
    color: #666;
    font-size: 16px;
}
.tabsCard .leaveMsg .userMsg textarea::placeholder {
    color: #ccc;
}
.tabsCard .leaveMsg .submitBtn {
    margin-top: 50px;
    text-align: center;
}
.tabsCard .leaveMsg .submitBtn button {
    border: none;
    padding: 0;
    width: 200px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 20px;
    background-color: #E21824;
    color: #fff;
    cursor: pointer;
}