/**
 * 联系我们页面样式
 * 包含联系方式（地址/电话/邮箱/公众号）、公司介绍、企业宣传片及页脚。
 * 与 css/shared.css 共同使用。
 */

/* ==========================================
   主容器
   ========================================== */
.mainContent {
    display: flex;
    flex-direction: column;
    /* position: relative;
    top: 6rem; */
    /* margin-top: 6rem; */
    width: 100%;
    height: auto;
    align-items: center;
}

/* ==========================================
   联系我们区块：背景图 + 联系方式信息
   ========================================== */
.contactUsWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12rem;
    padding-bottom: 10rem;
    /* padding: 0 15%; */
    background-image: url(../assets/image/home/contactUsBackground.png);
    background-size: cover;
    /* padding-bottom: 20rem; */
    width: 100%;
}

.contactUsWrap .head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 0 15%;
}

.contactUsWrap .head .text {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #3d3d3d;
    font-weight: 600;
}

.contactUsWrap .head .dash {
    height: 1px;
    background-color: #3d3d3d;
    flex: 1;
}

.contactUsWrap .contentWrap {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 4rem;
    padding: 0 15%;
}

.contactUsWrap .contentWrap .contentTextWrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 45%;
    height: auto;
    
}

.contactUsWrap .contentWrap .contentTextWrap .companyName {
    font-size: 1.6rem;
    font-weight: 600;
}

.contactUsWrap .contentWrap .contentTextWrap .addressWrap {
    display: flex;
    flex-direction: row;
    margin-top: 3rem;
    align-items:center;
}

.contactUsWrap .contentWrap .contentTextWrap .addressWrap .text {
    font-size: 1.1rem;
    margin-left: 1.5rem;
    line-height: 100%;
    color: #3d3d3d;
}

.contactUsWrap .contentWrap .contentTextWrap .addressWrap img {
    height: 1.5rem;
    width: auto;
}

.contactUsWrap .contentWrap .contentTextWrap .phoneWrap {
    display: flex;
    flex-direction: row;
    margin-top: 3rem;
    align-items:center;
}

.contactUsWrap .contentWrap .contentTextWrap .phoneWrap .text {
    font-size: 1.1rem;
    margin-left: 1.5rem;
    line-height: 100%;
    color: #3d3d3d;
    white-space: pre-line;
}

.contactUsWrap .contentWrap .contentTextWrap .phoneWrap img {
    height: 1.5rem;
    width: auto;
}

.contactUsWrap .contentWrap .contentTextWrap .emailWrap {
    display: flex;
    flex-direction: row;
    margin-top: 3rem;
    align-items:center;
}

.contactUsWrap .contentWrap .contentTextWrap .emailWrap .text {
    font-size: 1.1rem;
    margin-left: 1.5rem;
    line-height: 100%;
    color: #3d3d3d;
}

.contactUsWrap .contentWrap .contentTextWrap .emailWrap img {
    height: 1.5rem;
    width: auto;
}

.contactUsWrap .contentWrap .contentTextWrap .publicWrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 6rem;
}

.contactUsWrap .contentWrap .contentTextWrap .publicWrap .public1Wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-left: 1rem; */
}

.contactUsWrap .contentWrap .contentTextWrap .publicWrap .public1Wrap img {
    height: 6.5rem;
    width: auto;
}

.contactUsWrap .contentWrap .contentTextWrap .publicWrap .public1Wrap .text {
    font-size: 1.1rem;
    color: #3d3d3d;
    margin-top: 1.6rem;
}

.contactUsWrap .contentWrap .contentTextWrap .publicWrap .public2Wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 3.5rem;
}

.contactUsWrap .contentWrap .contentTextWrap .publicWrap .public2Wrap img {
    height: 6.5rem;
    width: auto;
}

.contactUsWrap .contentWrap .contentTextWrap .publicWrap .public2Wrap .text {
    font-size: 1.1rem;
    color: #3d3d3d;
    margin-top: 1.6rem;
}

.contactUsWrap .contentWrap .map {
    width: 50%;
    height: auto;
}

/* ==========================================
   公司介绍区块
   ========================================== */
.companyIntroductionWrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 12% 15rem 15%;
    background-color: #f6f6f6;
    background-image: url(../assets/image/contactUs/companyLogo.png);
    background-size: cover;
}

.companyIntroductionWrap .textWrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 38%;
}

.companyIntroductionWrap .textWrap .text1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3d3d3d;
}

.companyIntroductionWrap .textWrap .text2 {
    font-size: 0.9rem;
    font-weight: 300;
    color: #646464;
    margin-top: 2.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.1rem;
}

.companyIntroductionWrap .textWrap .button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: #FFDEE4;
    border-radius: 15rem;
    margin-top: 1.8rem;
}

.companyIntroductionWrap .textWrap .button:hover {
    cursor: pointer;
}

.companyIntroductionWrap .textWrap .button .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3d3d3d;
}

.companyIntroductionWrap .textWrap .button img {
    width: 0.8rem;
    height: auto;
}

.companyIntroductionWrap .companyLogo {
    width: 50%;
    height: auto;
}

/* 以下是企业宣传片 */
.videosWrap {
    width: 100%;
    padding: 0 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.videosWrap .head {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 8rem;
}

.videosWrap .head .text1 {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #3d3d3d;
    font-weight: 600;
}

.videosWrap .head .dash {
    height: 1px;
    min-height: 1px;
    background-color: #3d3d3d;
    flex: 1;
}

.videosWrap .head .text2 {
    font-size: 1.2rem;
    margin-left: 1rem;
    color: #3d3d3d;
    font-weight: 600;
}

.videosWrap .head img {
    height: 0.8rem;
    width: auto;
    margin-left: 0.5rem;
}

.videosWrap .videos {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.videosWrap .videos .video1 {
    width: 75.2%;
    height: auto;
    position: relative;
}

.videosWrap .videos .video1:hover {
    cursor: pointer;
}

.videosWrap .videos .video1 .bg {
    width: 100%;
    height: auto;
    display: block;
}

.videosWrap .videos .video1 .icon {
    width: 3rem;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;

}

.videosWrap .videos .video2_3_4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 23.8%;
}

.videosWrap .videos .video2_3_4 .video {
    width: 100%;
    height: auto;
    position: relative;
}

.videosWrap .videos .video2_3_4 .video:hover {
    cursor: pointer;
}

.videosWrap .videos .video2_3_4 .video .bg {
    width: 100%;
    height: auto;
    display: block;
}

.videosWrap .videos .video2_3_4 .video .icon {
    width: 3rem;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
}

.mask {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
}


.videoPlayerMask {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    /* width: 50%;
    height: auto; */
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 200;
}

.videoPlayerMask .palyer{
    width: 20rem;
    height: auto;
    object-fit: cover;
}


/* 以下是页脚 */
.mainContent .footWrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2% 15%;
    width: 100%;
    margin-top: 5rem;
}

.mainContent .footWrap .urlWrap {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.mainContent .footWrap .urlWrap a {
    color: #ffffff;
    text-decoration: none;
}

.mainContent .footWrap .urlWrap .parent {
    font-size: 1.1rem;
    font-weight: 600;
}

.mainContent .footWrap .urlWrap .child {
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 0.8rem;
}

.mainContent .footWrap .publicWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 9rem;
}

.mainContent .footWrap .publicWrap img {
    width: 6rem;
    height: auto;
}

.mainContent .footWrap .publicWrap .text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 1rem;
}