.myFooter {
    width: 1200px;
    height: 458px;
    background: #FFF;
    margin: auto;
    display: flex;
    box-sizing: border-box;
    padding: 55px 0;
    justify-content: space-between;

}

.myFooter .menuItem {
    width: 22%;
}

.myFooter .menuItem:nth-child(3) {
    width: 31%;
}

.myFooter .menuItem:nth-child(4) {
    width: 25%;
    display: flex;
    flex-direction: column;
}

.myFooter .menuItem .title {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 20px;
}

.myFooter .menuItem .item {
    background: url(/static/web/images/listToRight.png) no-repeat;
    background-position: left center;
    padding-left: 30px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 30px;
    margin-bottom: 7px;
    color: #666;
}
.myFooter .menuItem .item:last-child{
    margin-bottom: 0;
}
.myFooter .menuItem .item a{
    color: inherit;
    text-decoration: none;
}

.myFooter .menuItem .item:hover {
    color: #0043b3;
}
.myFooter .menuItem .item_1{
    background-image: url(/static/web/images/address.png);
    background-position: left 5px;
}
.myFooter .menuItem .item_2{
    background-image: url(/static/web/images/message.png);

}
.myFooter .menuItem .item_3{
    background-image: url(/static/web/images/telphone.png);

}
.myFooter .menuItem .item_4{
    background-image: url(/static/web/images/dayin.png);

}


.myFooter .menuItem .smallMenu{
    display: flex;
    margin-top: 25px;
}
.myFooter .menuItem .smallMenu .smallItem{
    width: 36px;
    height: 36px;
    background: #0043b3;
    border-radius: 50%;
    margin-right: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myFooter .menuItem .smallMenu .smallItem img{
    width: 20px;
    height: 20px;
    display: block;
}
.myFooter .menuItem .inp{
    position: relative;
   margin: 8px 0;
}
.myFooter .menuItem .inp:first-child{
    margin-top: 0;
}
.myFooter .menuItem .inp i{
    position: absolute;
    left: 8px;
    top: 10px;
    width: 10px;
    color: #0043b3;
    font-size: 20px;
}
.myFooter .menuItem .inp input{
    width: 100%;
    border: 1px solid #999;
    font-size: 18px;
    line-height: 20px;
    padding: 8px 8px 8px 20px;
    color: #999;
    transition: all 0.3s;
}
.myFooter .menuItem .inp textarea{
    width: 100%;
    border: 1px solid #999;
    font-size: 18px;
    line-height: 20px;
    padding: 8px 8px 8px 20px;
    color: #999;
    transition: all 0.3s;
    height: 80px;
    resize: none;
    outline: none;
}
.myFooter .menuItem .inp input:focus-within{
    border-color: #0043b3;
    box-shadow: 0 0 16px rgba(224, 19, 3, 0.5);
}
.myFooter .menuItem .inp textarea:focus{
    border-color: #0043b3;
    box-shadow: 0 0 16px rgba(224, 19, 3, 0.5);
}
.myFooter .menuItem .button{
    background: #0043b3;
    width: 100%;
    padding: 1px 6px;
    font-size: 17px;
    text-align: center;
    color: #FFF;
    line-height: 40px;
    margin-top: 8px;
}
@media (max-width:1400px) {
    .myFooter{
        padding: 45px 5%;
    }
}
@media (max-width:1200px) {
    .myFooter{
        width: 100%;
    }
}
@media (max-width:1024px) {
    .myFooter .menuItem {
        display: none;
    }
    
    .myFooter .menuItem:nth-child(3) {
        width: 50%;
        display: block;
    }
    
    .myFooter .menuItem:nth-child(4) {
        width: 50%;
        display: flex;
    }
    
}
@media (max-width:480px) {
    .myFooter{
        flex-wrap: wrap;
        padding: 30px 20px;
        height: auto;
    }
    .myFooter .menuItem:nth-child(3) {
        width: 100%;
    }
    
    .myFooter .menuItem:nth-child(4) {
        width: 100%;
    }
    .myFooter .menuItem .smallMenu{
        margin: 10px 0 20px;
    }
}