.my-container{
    padding: 20px 5%;
}
.my-container .my-left{
    width: 100%;
}
.my-container .my-right{
    text-align: center;
}
.my-module{
    margin-bottom: 40px;
}
.my-module .my-title{
    line-height: 54px;
    font-size: 18px;
    font-weight: 600;
    color: #000323;
}
.my-map-layout{
    position: relative;
}
.my-map-layout .my-full-map{
    position: fixed !important;
    width: 100%;
    left :0;
    top: 60px;
    bottom: 29px;
    z-index: 3;
    touch-action: none;
}
.my-map-layout .my-map{
    width: 100%;
    height: 150px;
    z-index: 1;
    touch-action: none;
}
.my-map-layout .my-full-icon{
    position: fixed;
    width: 32px;
    height: 32px;
    top: 65px;
    right: 14px;
    z-index: 3;
}
.my-map-layout .my-icon{
    position: absolute;
    width: 32px;
    height: 32px;
    top: 0;
    right: 0;
    z-index: 2;
}
.my-contact-box{
    display: flex;
    font-size: 15px;
    line-height: 30px;
    color: #7c7c7c;
}
.my-contact-box img{
    width: 20px;
    height: 20px;
    margin: 5px 10px 5px 0;
}
.my-tel-box{
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 32px;
}
.my-tel-box .my-title{
    font-weight: 500;
    line-height: 20px;
    margin: 20px 0;
}

/* 大尺寸(竖屏) */
@media (min-width: 768px) and (orientation: portrait){
    .my-module .my-title{
        line-height: 60px;
        font-size: 20px;
    }
    .my-map-layout .my-map{
        height: 300px;
    }
}

/* 大尺寸(横屏) */
@media (min-width: 768px) and (orientation: landscape){
    .my-container{
        display: flex;
    }
    .my-container .my-left{
        width: 70%;
    }
    .my-container .my-right{
        flex: 1;
        display: block;
        border-left: 1px dashed #d9d9d9;
        margin-left: 40px;
        padding-left: 40px;
    }
    .my-module{
        display: inline-flex;
        position: relative;
        padding-top: 60px;
        align-items: center;
    }
    .my-module .my-title{
        position: absolute;
        top: 0;
        line-height: 60px;
        font-size: 20px;
    }
    .my-map-layout .my-map{
        width: 300px;
    }
    .my-contact-box{
        font-size: 16px;
        line-height: 32px;
        margin: 5px 0;
    }
    .my-contact-box img{
        width: 22px;
        height: 22px;
    }
}