@charset "utf-8";

header{
    width:100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    background: #fff;
    position: relative;
}
.header .tel{
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.0;
    background: url(../img/h-tel.png) no-repeat left;
    padding-left: 50px;
}
.top_bar {
    height: 27px;
    line-height: 27px;
    border-top: 6px solid #0079c3;
}

.top_bar .tb-rig {
    float: right;
    width: 272px;
    height: 26px;
    line-height: 21px;
    background: url("../img/top.png") no-repeat center center;
}
.top_bar .tb-rig ul {
    width: 210px;
    margin: 0 auto;
}
.top_bar .tb-rig ul li {
    position: relative;
    float: left;
    width: 50%;
    text-indent: 30px;
    color: #fff;
    z-index: 100;
    cursor: pointer;
}
.top_bar .tb-rig ul li a {
    color: #fff;
}
.top_bar .tb-rig ul li:nth-child(1) {
    background: url("../img/t-mes.png") no-repeat center left;
}
.top_bar .tb-rig ul li:nth-child(2) {
    background: url("../img/t-ewm.png") no-repeat top left;
}
.top_bar .tb-rig ul li:nth-child(2) img {
    display: none;
    padding-top: 5px;
    max-width: 100%;
}
.top_bar .tb-rig ul li:nth-child(2):hover img {
    display: block;
}
.header .tel span{
    font-weight: 800;
    font-size: 26px;
    color: #0079c3;
    display: block;
}
.header .tel i{
    font-size: 20px;
    color: #ff2e2e;
    border: 2px solid #ff2e2e;
    border-radius: 100%;
    padding: 16px 10px;
    float: left;
}
.logo a {
    width: 100%;
    display: flex;
    align-items: center;
}
.logo img {
    float: left;
}
.logo-tit h3 {
    color: #555555;
    font-weight: bold;
    font-size: 27px;
}
.logo-tit p {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}
.logo1:before {
    display: block;
    float: left;
    content: '';
    width: 1px;
    height: 37px;
    background: #ededed;
    margin: 0 22px;
}
.logo1 {
    float: left;
    flex:1;
}
.logo1 b {
    color: #555555;
    font-size: 22px;
    display: block;
}
.logo1 p {
    color: #555;
    font-size: 14px;
}
.header{
    padding: 20px 0px;
}
.header .container-fluid{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header h1{
    flex: 1;
}
header .nav{
    background: #f3f3f3;
}
header .nav ul{
    margin:0px auto 0px auto;
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
header .nav ul li{
    flex: 1;
    display: inline-block;
    position: relative;
}
header .nav ul li>a{
    position: relative;
    display: block;
    font-size: 16px;
    color: #555555;
    width: 100%;
    text-align: center;
    padding: 15px 0;
}
header .nav ul li:hover a,header .nav ul li.active a{
    color: #fff;
    background: #0079c3;
}
header .nav ul li a::after{
    display: block;
    content: '';
    width: 1px;
    height: 15px;
    background: #d6d4d4;
    float: right;
    margin-top: 8px;
}
header .nav ul li:hover a::after,header .nav ul li.active a::after{
    background: #0079c3;
    transition: all .5s;
}
header .nav ul li:last-child a::after{
    display: none;
}
header .nav ul li span{
    height: 20px;
    margin-top: 5px;
    display: inline-block;
    border-left: 1px solid #e4e4e4;
}

header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -95px;
    width: 190px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}
header .nav ul.submenu li{width:100%; border-bottom:1px solid rgba(0,0,0,.05);}
header .nav ul.submenu li a{display:block;font-size:14px; color:#444; line-height:20px; padding:12px 2%; text-align:center; }
header .nav ul.submenu li a:hover{color:#3c4a76; background:#f2fcfa;}
header .nav ul li:hover ul.submenu{
    display: block;
}

header.on{
    position: fixed;
}
@media (max-width: 1150px){
    .logo1 {
        display: none;
    }
}
@media (max-width: 992px){
    .logo img {
        height: 33px;
    }
    .top_bar {
        display: none;
    }
    .header{
        position: relative;
        padding: 10px 0px;
    }
    header .nav>ul{
        display: block;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top:53px;
        width:70%;
        height:calc(100vh - 60px);
        background:#fff;
        box-shadow: 0 0 10px #eee;
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    header .nav ul{
        display: block;
    }
    header .nav.show{
        left:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .nav ul li{
        display: block !important;
        padding:0 20px;
    }
    header .nav ul li a{
        color:#424242;
        font-size: 14px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;
    }
    .logo1{
        display: none;
    }
    .header .tel {
        display: none;
    }
}
@media(max-width:992px){
    .header h1 {
        width: 80%;
        float: left;
    }
    header .nav ul li a::after{
        display: none;
    }
    .header .nav .submenu li {
        display: none !important;
    }
    .logo-tit h3 {
        font-size: 16px;
    }
    .logo1:before {
        margin: 0 16px;
    }
    .logo1 b {
        font-size: 20px;
    }
    .logo1 p {
        font-size: 12px;
    }
    .header .tel {
        font-size: 14px;
        padding-left: 40px;
    }
    .header .tel span {
        font-size: 20px;
    }
}
@media (max-width: 540px){
    header.on .header .logo .logo, .header .logo .logo {
        height: 45px !important;
        margin-top: 10px;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
}
.homeLink{
    position:relative;
    display: block;
    line-height:1.2;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius:2px;
    padding: 15px 40px;
    overflow:hidden;
    color:#fff;
    background:#ff2727;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}
.homeLink:hover{ color: #fff; background: #da0000;}
@media(max-width:767px){
    .homeLink{
        font-size: 14px;
        padding: 4px 10px;
    }
}
.common{
    padding-top: 70px;
    padding-bottom: 75px;
}
.title{
    color: #0079c3;
    font-size: 3.25rem;
    font-weight: bold;
    margin-bottom: 35px;
}
.title p{
    font-size: 1.5rem;
    color: #555;
    line-height: 0.5;
}
.title p:after {
    display: block;
    content: '';
    width: 40px;
    height: 4px;
    background: #0079c3;
    margin: 0 auto;
    margin-top: 17px;
}
.ny-title{
  color: #0079c3;
  font-size: 32px;
  font-weight: bold;
}
.ny-title:after{
  display: block;
  content: '';
  width: 40px;
  height: 4px;
  background: #0079c3;
  margin-top:10px
}
@media (max-width:767px){
    .common{
       padding-top: 25px;
       padding-bottom: 25px;
    }
    .title{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .title p{
        font-size: 0.875rem;
        line-height: 1.2;
    }
    .ny-title {
        font-size: 22px;
    }
}
/* ht */
.ht{
    position: relative;
}
/*新闻滚动*/
.in-news {
    width: 100%;
    position: absolute;
    left: 0;
    top: -7%;
}
.in-news .news-com{
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 20px 50px;
}
.in-news strong {
    width: 15%;
    display: block;
    float: left;
    color: #555555;
    font-size: 16px;
    white-space: nowrap;
}
.xw-dian .swiper-pagination-bullet-active {
    color: #0079c3;
}
.nlist{
    width: 85%;
    display: flex;
    align-items: center;
}
.nlist-l{
    width: 85%;
}
.nlist-l .swiper-slide {
    display: flex;
    align-items: center;
}
.nlist-l .swiper-slide a{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    display: inline-block;
}
.nlist-r{
    width: 15%;
    display: flex;
    align-items: center;
}
.swiper-pagination-bullet {
    width: 30px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    font-size: 20px;
    font-weight: bold;
    color: #d4d4d4;
    margin-left: 15px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #0079c3;
}
.swiper-pagination-bullet:nth-child(1)::before {
    content: '01';
    margin-right: 10px;
}
.swiper-pagination-bullet:nth-child(2)::before {
    content: '02';
    margin-right: 10px;
}
.swiper-pagination-bullet:nth-child(3)::before {
    content: '03';
    margin-right: 10px;
}
.swiper-pagination-bullet:after {
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    color: #d4d4d4;
    background: #fff;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    color: #0079c3;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    background: #0079c3;
}
@media (max-width:992px) {
    .in-news .news-com {
        padding: 10px 30px;
    }
    .in-news strong {
        width: 35%;
        font-size: 14px;
    }
    .nlist {
        width: 65%;
    }
    .nlist-r {
        display: none;
    }
}
/* 产品 */
.product{
    background: url(../img/pro-bg.jpg) no-repeat center center;
    background-size: 100% 100%;
}

.pro-tab li a{
    padding: 10px 25px;
    text-align: center;
    border: 1px solid #ececec;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    display: block;
    transition: all 0.6s;
}
@media (max-width:767px){
    .pro-tab li a{
        padding: 8px 0px;
        font-size: 14px;
    }
}
.pro-tab li.active a,.pro-tab li a:hover{
    background: #ff2e2e;
    border: 1px solid #ff2e2e;
    color: #fff;
    font-weight: bold;
}
/* 优势 */
.advantage{
    background: url(../img/adv-bg.jpg) no-repeat center center;
    background-size: 100% 100%;
}
.advantage .title{
    color: #fff;
}
.advantage .title p{
    color: #fff;
}
.advantage .title p:after {
    background: #fff;
}
.advantage-con{
    display: flex;
    background: #fff;
    padding: 40px 40px 20px;
}
.advantage-con .adv-left,.advantage-con .adv-right{
    width: 50%;
}
.advantage-con .adv-right{
    padding-left: 30px;
}
.advantage-con .adv-right .adv-r-t{
    display: flex;
    flex-direction: column;
}
.advantage-con .adv-right .adv-r-t .tt{
    display: none;
}
.advantage-con .adv-right .adv-r-t .tt.on{
    display: block;
}
.advantage-con .adv-right .adv-r-tt{
    display: flex;
    align-items: center;
}
.advantage-con .adv-right .adv-r-tt span{
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    padding: 0 10px;
    margin-right: 20px;
    background: #0079c3;
}
.advantage-con .adv-right .adv-r-tt h3{
    color: #555555;
    font-size: 22px;
    font-weight: bold;
}
.advantage-con .adv-right .adv-text {
    padding-top: 28px;
    color: #888888;
    font-size: 14px;
    line-height: 26px;
    padding-bottom: 40px;
}
.advantage-con .adv-right .adv-r-tt h3 small{
    color: #717171;
    font-size: 14px;
    text-transform: uppercase;
}
.advantage-con .adv-right .adv-r-b{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.advantage-con .adv-right .adv-r-b .r-b-con{
    width: 24%;
    cursor: pointer;
    color: #555555;
    text-align: center;
    padding-bottom: 10px;
    background: #f7f7f7 url(../img/a1.png) no-repeat center top 10px;
    border-radius: 30px 0 30px 0;
}
.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(2){
    background: #f7f7f7 url(../img/a2.png) no-repeat center top 10px;
}
.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(3){
    background: #f7f7f7 url(../img/a3.png) no-repeat center top 10px;
}
.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(4){
    background: #f7f7f7 url(../img/a4.png) no-repeat center top 10px;
}
.advantage-con .adv-right .adv-r-b .r-b-con h3{
    font-size: 16px;
    padding-top: 50px;
}
.advantage-con .adv-right .adv-r-b .r-b-con p{
    font-size: 12px;
    text-transform: uppercase;
}
.advantage-con .adv-right .adv-r-b .r-b-con:hover,.advantage-con .adv-right .adv-r-b .r-b-con.active{
    color: #fff;
    background: #0079c3 url(../img/a11.png) no-repeat center top 10px;
}
.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(2):hover,.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(2).active{
    background: #0079c3 url(../img/a22.png) no-repeat center top 10px;
}
.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(3):hover,.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(3).active{
    background: #0079c3 url(../img/a33.png) no-repeat center top 10px;
}
.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(4):hover,.advantage-con .adv-right .adv-r-b .r-b-con:nth-child(4).active{
    background: #0079c3 url(../img/a44.png) no-repeat center top 10px;
}
@media (max-width:992px) {
    .advantage-con{
        flex-direction: column;
        padding: 20px;
    }
    .advantage-con .adv-left, .advantage-con .adv-right {
        width: 100%;
    }
    .advantage-con .adv-left img{
        width: 100%;
    }
    .advantage-con .adv-right {
        padding: 20px 0 0 0;
    }
    .advantage-con .adv-right .adv-r-tt span {
        font-size: 2.5rem;
        margin-right: 10px;
    }
    .advantage-con .adv-right .adv-r-tt h3 {
        font-size: 18px;
    }
    .advantage-con .adv-right .adv-r-b .r-b-con h3 {
        font-size: 12px;
    }
    .advantage-con .adv-right .adv-r-b .r-b-con p {
        font-size: 10px;
    }
}
/*关于我们*/
.about{
    background: #f7f7f7;
}
.about-con{
    display: flex;
    justify-content: space-between;
}
.about-con .con-l{
    width: 35%;
}
.com1 strong{
    color: #0079c3;
    font-size: 30px;
}
.com1 h3{
    color: #555555;
    font-weight: bold;
    font-size: 26px;
}
.com1 h3:after{
    display: block;
    content: '';
    width: 33px;
    height: 2px;
    background: #0079c3;
    margin: 15px 0;
}
.com1 p{
    color: #555555;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}
.c-pic{
    width: 100%;
}
.com1 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.com1 a{
    color: #555555;
    font-size: 16px;
    font-weight: bold;
    background: url("../img/line.jpg") no-repeat left bottom;
    height:30px;
    display: block;
}
.com1:hover a{
    color: #0079c3;
    font-weight: bold;
    font-style: italic;
}
.about-con .con-l,.about-con .con-r{
    width: 33%;
}
.about-con .con-m{
    width: 26%;
    display: flex;
    flex-direction: column;
}
.about-con .con-m .con-m-m{
    background: #fff;
    padding: 35px 35px 15px;
    margin-bottom: 30px;
}
.con-m-m .con-tit{
    padding-left: 45px;
    background: url("../img/c-ho.png") no-repeat center left;
}
.con-m-m:last-child .con-tit{
    background: url("../img/c-co.png") no-repeat center left;
}
.con-m-m .con-tit h3{
    color: #555555;
    font-weight: bold;
    font-size: 20px;
}
.con-m-m .con-tit small{
    color: #b6b4b4;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: lighter;
    display: block;
}
.con-m-m .con-text{
    color: #555555;
    font-size: 14px;
    padding-top: 15px;
    line-height: 24px;
}
.con-m-m a{
    color: #555555;
    font-size: 14px;
    padding-top: 15px;
    display: block;
}
.con-m-m:hover a{
    color: #0079c3;
    font-weight: bold;
    font-style: italic;
}
@media (max-width:992px){
    .about-con{
        flex-direction: column;
    }
    .about-con .con-r{
        display: none;
    }
    .about-con .con-l,.about-con .con-m{
        width: 100%;
    }
    .about-con .con-m{
        margin-top: 15px;
    }
    .com1 strong {
        font-size: 22px;
    }
    .com1 h3 {
        font-size: 18px;
    }
    .com1 h3:after {
        margin: 10px 0;
    }
    .con-m-m .con-tit h3 {
        font-size: 18px;
    }
    .about-con .con-m .con-m-m {
        padding: 20px 20px 15px;
        margin-bottom: 20px;
    }
}
/* 合作伙伴 */
.product-swiper{
    margin-top: 30px;
}
.partner-list .partner-img{
    position: relative;
    width: 100%;
}
.partner-list .partner-img img{
    width: 100%;
    padding: 20px 0;
}
.partner-list .partner-more{
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-list:hover .partner-more{
    top: 0;
}
.partner-list .partner-more p{
    color: #fff;
    padding-top: 50px;
    text-align: center;
    background: url(../img/cjia.png) no-repeat center 0;
}
.partner-list .partner-con{
    display: inline-block;
    background: #f8f8f8 url(../img/r-jt.png) no-repeat center right 30px;
    text-indent: 30px;
    color: #636363;
    font-size: 16px;
    text-align: left;
    width: 100%;
    padding: 20px 0;
}
.partner-list:hover .partner-con{
    color: #0079c3;
}
/* 联系我们 */
.ny-contact{
    background: url(../img/mes.jpg) no-repeat center center;
}
.ny-contact .message{
    width: 46%;
    float: right;
    margin: 40px 0 45px;
}
.ny-contact .message h3{
    color: #fff;
}
.ny-contact .message input{
    border: none;
}
@media (max-width:992px) {
    .ny-contact{
        background: url(../img/mes.jpg) no-repeat right;
    }
    .ny-contact .message {
        width: 100%;
    }
}
/* 新闻中心 */
.news-con{
    display: flex;
    justify-content: space-between;
}
.news-con .news-l,.news-con .news-r{
    width: 48%;
}
.news-con .news-l{
    overflow: hidden;
    height: 37rem;
}
.news-l a{
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}
.news-l a img{
    width: 100%;
    height: 100%;
}
.news-l a:hover .news-time{
    background: #0079c3;
}
.news-l a:hover .news-time strong,.news-l a:hover .news-time span{
    color: #fff;
}
.news-l a:hover .b-con h3{
    color: #0079c3;
}
.news-b{
    width: 80%;
    position: absolute;
    bottom: 0;right: 0;
    background: #f7f7f7;
    display: flex;
}
.news-time{
    width: 88px;
    height: 80px;
    background: #f4f4f4;
    float: left;
    text-align: center;
    margin-right: 20px;
}
.news-time strong{
    color: #5c5c5c;
    font-size: 30px;
    padding-top: 10px;
    width: 100%;
}
.news-time span{
    display: block;
    color: #5c5c5c;
    font-size: 12px;
}
.b-con{
    flex: 1;
}
.b-con h3{
    color: #5c5c5c;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 0 5px;
}
.b-con p{
    color: #8a8a8a;
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.news-r{
    display: flex;
    flex-direction: column;
}
.news-list{
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e9e9e9;
}
.news-list:last-child{
    margin-bottom: 0;
}
.news-list a{
    display: flex;
    align-items: center;
}
.news-r .b-con p{
    -webkit-line-clamp: 2;
}
.news-r .news-time{
    -webkit-line-clamp: 2;
}
.news-list a:hover .news-time{
    background: #0079c3;
}
.news-list a:hover .news-time strong,.news-list a:hover .news-time span{
    color: #fff;
}
.news-list a:hover .b-con h3{
    color: #0079c3;
}
@media (max-width:992px) {
    .news-con{
        flex-direction: column;
    }
    .news-con .news-l,.news-con .news-r{
        width: 100%;
    }
    .news-con .news-l{
        height: auto;
    }
    .news-l a img{
        width: 100%;
        height: auto;
    }
    .news-r .news-con{
        flex-direction: row;
    }
    .news-list:first-child {
        margin-top: 25px;
    }
    .news-time {
        width: 70px;
        height: 70px;
        padding-top: 8px;
    }
    .news-time strong {
        padding-top: 0px;
        line-height: 1;
    }
    .news-time span {
        line-height: 1;
    }
    .b-con h3 {
        padding: 0px 0 5px;
    }
    .news-l .b-con {
        padding-top: 10px;
    }
}
/*底部*/
.foot {
    width: 100%;
    position: relative;
    background: url("../img/foot.jpg") no-repeat center center;
    background-size: 100% 100%;
    padding-top: 85px;
    border-top: 14px solid #0079c3;
    padding-bottom: 94px;
}
.foot1 {
    width: 100%;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.f-logo {
    float: left;
}
.f-logo img {
    float: left;
}
.flogo-tit {
    float: right;
    margin-left: 15px;
}
.flogo-tit h3 {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 8.2px;
    line-height: 25px;
}
.flogo-tit p {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
}
.f-tel {
    float: right;
    background: url("../img/f-tel.png") no-repeat center left;
    padding-left: 40px;
}
.f-tel p {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
}
.f-tel strong {
    color: #0079c3;
    font-size: 26px;
    display: block;
    line-height: 25px;
}
.foot2 {
    margin: 0;
    margin-top: 45px;
}
.foot2 h3 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 25px;
}
.foot2 h3 span {
    color: #919191;
}
.f1 {
    padding-left: 0;
}
.f1 ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.f1 ul li {
    width: 33%;
    text-align: left;
}
.f1 ul li a {
    color: #9c9c9c;
    font-size: 14px;
    line-height: 26px;
    display: block;
}
.f1 ul li:hover a {
    color: #0079c3;
}
.f2 p {
    color: #9c9c9c;
    font-size: 14px;
    line-height: 26px;
}
.f3 strong {
    color: #a7a7a7;
    font-size: 16px;
}
.f3 p {
    color: #9c9c9c;
    font-size: 14px;
    line-height: 26px;
}
.f4 {
    display: flex;
    justify-content: flex-end;
}
.f4 img {
    max-width: 100%;
    display: block;
}
.f4 p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 26px;
}
.foot-admin {
    line-height: 72px;
    background: #141414;
}
.foot-admin {
    color: #a4a4a4;
    font-size: 14px;
}
.foot-admin a {
    color: #a4a4a4;
}
.foot-l {
    float: left;
    color: #a4a4a4;
}
.foot-r {
    float: right;
}
.foot-admin {
    line-height: 72px;
    background: #141414;
    color: #a4a4a4;
    font-size: 14px;
}
.foot-admin a {
    color: #a4a4a4;
}
.foot-l {
    float: left;
    color: #a4a4a4;
}
.foot-r {
    float: right;
}
@media (max-width:992px) {
    .f-tel strong {
        font-size: 20px;
        line-height: 22px;
    }
    .foot {
        padding: 30px 0;
    }
    .f-tel {
        float: left;
        margin-top: 15px;
    }
    .foot2 {
        margin-top: 15px;
    }
    .foot2 h3 {
        padding-bottom: 10px;
    }
    .f1{
        display: none;
    }
    .f2,.f3,.f4 {
        padding: 0;
        margin-top: 15px;
    }
    .f4 {
        justify-content: flex-start;
    }
    .foot-l {
        line-height: 1.2;
        padding: 15px 0;
    }
}