* {
    margin: 0;
    padding: 0;
}

.contact {
    width: 100%;
    background: #F8F8F8;
}

.contact .contactBanner {
    position: relative;
    width: 100%;
    height: 7rem;
    background: url('../img/contact/contact.png') no-repeat;
    background-size: 100% 100%;
    /*padding-left: 1.33rem;*/
    /*padding-top: 3.01rem;*/
    box-sizing: border-box;
    /*overflow: hidden;*/
}

.textCon{
    position: absolute;
    top: 3.01rem;
    left: 1.33rem;
    /*padding-left: 1.33rem;*/
    /*padding-top: 3.01rem;*/
}

.contact .contactBanner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leftTrans {
    position: relative;
    height: 0.18rem;
}

.ball {
    animation: swap 2s infinite;
    /* 2秒无限循环动画 */
}

.ball1 {
    position: absolute;
    left: 0;
    width: 0.18rem;
    height: 0.18rem;
    background: #fff;
    border-radius: 50%;
    animation-delay: 0s;
    /* 第一个小球动画延迟 */
}

.ball2 {
    position: absolute;
    left: 0.14rem;
    width: 0.18rem;
    height: 0.18rem;
    border: 0.01rem solid #fff;
    box-sizing: border-box;
    border-radius: 50%;
    animation-delay: 1s;
    /* 第二个小球动画延迟 */
}

@keyframes swap {

    0%,
    100% {
        left: 0;
        /* 初始位置 */
    }

    50% {
        left: 0.14rem;
        /* 交换到的目标位置 */
    }
}

.bannerTit {
    margin-top: 0.11rem;
    font-family: Arial-Black, Arial-Black;
    font-size: 0.5rem;
    color: #FFFFFF;
    line-height: 0.71rem;
}

.contact .contactNav {
    display: flex;
    width: 100%;
    height: 1.59rem;
    background: url('../img/news/topbg.png')no-repeat;
    background-size: 100% 100%;
    padding-left: 1.33rem;
    padding-right: 1.38rem;
    box-sizing: border-box;
}

.contact .contactNav .navRight {
    display: flex;
    margin-top: 0.5rem;
}

.navRight img {
    display: block;
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.08rem;
}

.navRight a {
    font-family: Arial, Arial;
    font-size: 0.24rem;
    color: #7C7C7C;
}

.navRight a.active {
    color: #0D0D0D;
}






.contactBotom {
    width: 100%;
    height: 2.65rem;
    background: url('../img/news/bottombg.png') no-repeat;
    background-size: 100% 100%;
    margin-top: -0.7rem;
    padding-top: 1.11rem;
    box-sizing: border-box;
}

.contactCon {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 1.33rem;
    padding-right: 1.38rem;
    box-sizing: border-box;
}

.contactCon .contactCard {
    min-width: 7.38rem;
    height: 6.21rem;
    padding-top: 1.22rem;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.16);
}

.contactMap {
    min-width: 9.39rem;
    /*height: 6.65rem;*/
    height: 6.21rem;
    margin-left: -0.5rem;
    /* border: 0.01rem solid #000; */
}

.contactMap iframe{
    width: 100% !important;
    height: 100% !important;
}

.contactMap img {
    display: block;
    width: 100%;
    height: 100%;
}

.contactCon .contactCard .cardTit {
    display: flex;
    align-items: center;
    width: 6.17rem;
    border-bottom: 0.01rem solid #D6D6D6;
    padding-bottom: 0.37rem;
    margin-left: 0.59rem;
    margin-bottom: 0.24rem;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 0.41rem;
    color: #BE1E21;
}

.cardTit img {
    display: block;
    width: 0.63rem;
    height: 0.63rem;
    margin-right: 0.19rem;
}

.contactCon .contactCard .contactTex {
    width: 100%;
    padding-left: 0.66rem;
    box-sizing: border-box;
}

.contactTex .texItem {
    display: flex;
    /* align-items: center; */
    width: 6.2rem;
    margin-bottom: 0.22rem;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 0.25rem;
    color: #9A9A9A;
    line-height: 0.35rem;
}

.contactTex .texItem .itemLeft {
    font-weight: bold;
    font-size: 0.3rem;
    color: #727272;
}


@media only screen and (max-width:768px){
    .contact .contactBanner{
            margin-top: 1.3rem;
                height: 4rem;
    }
    .textCon{
            top: 1.5rem;
    }
    .contact .contactNav{
            padding-left: 0.33rem;
    padding-right: 0.33rem;    
    flex-direction: column;
    }
    .contactCon{
        padding-left: 0rem;
    padding-right: 0rem;
    flex-wrap:wrap;
    }
    .contactMap{
        min-width: 94%;
        margin-left: auto;
        margin-right: auto;
    }
    .contactCon .contactCard{
        min-width: 94%;
        margin-left: auto;
        margin-right: auto;
    }
}