﻿* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clr {
    clear: both;
}

body {
    font-size: 16px;
    font-family: 微软雅黑, Microsoft YaHei;
    min-width: 1300px;
}

.container {
    width: 1300px;
    margin: auto;
}

header {
    width: 100%;
}

.head-left {
    float: left;
    display: table;
    padding: 10px 0;
    margin-left: 30px;
}

.logo-img {
   
    height: 57px; margin-top:10px; float:left;
}

.logo-img img {
    height: 100%;
}

.logo-title {
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
    padding-left: 20px; border-left:1px #efefef solid; margin-left:20px; float:left; margin-top:20px;
}

.logo-title strong {
    font-size: 18px;
}

.logo-title p {
    font-size: 16px;
}

.head-right {
    float: right;
    margin-right: 50px;
    padding: 25px 0;
    display: table;
    position: relative;
}

.right-icon {
    display: inline-block;
    vertical-align: middle;
    padding-right: 20px;
}

.menu-icon{
    width: 50px;
    height: 24px;
    float: left;
    border-right: 1px solid #cbcbcb;
    overflow: hidden;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
}
.qrcode-i{
    background-image: url(/icon/qrcode-icon.png)
}
.search-i{
    background-image: url(/icon/search-icon.png)
}
/* .search-i:hover{
    background-image: url(/icon/search-icon-green.png)
} */

/* qr-code弹出框 */
.qrcode-box{
    display: none;
    width: 240px;
    background-color: #fff;
    position: absolute;    
    top: 80px;
    right: 80px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,.175);
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,.175);
    border-radius: 5px;
    z-index: 99;
}
.qrcode-box::before{
    content: " ";
    position: absolute;
    top: -8px;
    left: 35px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width:  0 8px 8px 8px;
    border-color:  transparent transparent #0c3972 transparent;
}
.qrcode-title{
    width: 100%;
    height: 50px;
    background-color: #0c3972;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 18px;
    border-radius: 5px 5px 0 0;
}
.qrcode-img{
    width: 160px;
    margin: 0 auto;
    padding: 15px 0;
}
.qrcode-img img{
    width: 100%;
}
/* search弹出框 */
.search-box{
    display: none;
    width: 280px;
    height: 90px;
    background-color: #fff;
    position: absolute;
    top: 80px;
    right: 80px;
    z-index: 99;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,.175);
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,.175);
    border-top: 3px solid #0c3972;
}
.search-box::before{
    content: " ";
    position: absolute;
    top: -11px;
    left: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color:  transparent transparent #0c3972 transparent;
}
.search_input {
    width: 240px;
    height: 40px;
    margin: 25px auto;
    position: relative;
}
.SearchStr {
    padding-left: 10px;
    width: 240px;
    height: 40px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    font-weight: lighter;
    outline: 0;
    border-radius: 5px;
}
.search-icon {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: transparent;
    border-left: 0;
    outline: 0;
}
.SearchStr:focus{ 
    border: 1px solid #0c3972;
}
.search-icon:focus{ 
    border: 0;
}
/* search弹出框 end */

.head-tel {
    display: inline-block;
    vertical-align: middle;
    padding-left: 48px;
    background-image: url(/icon/tel.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 38px;
}
.head-tel span {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    color: #333;
}

.head-tel strong {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #0c3972;
}



.fixed-header {
    position: fixed !important;
    top: 0;
    z-index: 99;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    /*动画播放次数*/
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,.2);
}

.top-menu {
    width: 100%;
    min-width: 1300px;
    background-color: #0c3972;
    text-align: center;
    position: relative;
}

.top-menu>ul {
    display: inline-block;
    width: 1300px;
    text-align: center;
    font-size: 0;
}

.top-menu>ul>li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.top-menu>ul>li>a {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    padding: 25px 50px 25px 38px;
    position: relative;
}

.top-menu>ul>li:first-child>a {
    padding: 25px 38px;
}
.top-menu>ul>li:nth-child(6)>a {
    padding: 25px 38px;
}

.triangle::after {
    content: '';
    position: absolute;
    top: 33px;
    right: 36px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: #ffffff transparent transparent transparent;
}

.top-on {
    z-index: 99;
    background-color: #e50112;
    color: #fff !important;
}

.s-on {
    background-color: #e50112;
    color: #fff !important;
}

/* .top-on::after {
    content: '';
    position: absolute;
    top: 33px;
    right: 36px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: #fff transparent transparent transparent;
} */

.top-menu>ul>li:hover>a {
    color: #fff;
    z-index: 99;
    background-color: #e50112;
}

.top-menu>ul>li:hover>.triangle::after {
    border-color: #ffffff transparent transparent transparent;
}

.top-menu>ul>li:hover>ul {
    /* display: block; */
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.top-menu ul li ul {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 70px;
    left: 0px;
    z-index: 99;
    width: 100%;
    border-top: 2px solid #e50112;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.top-menu ul li ul li a {
    display: block;
    width: 100%;
    background-color: #e50112;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 0px;
}

.top-menu ul li ul li a:hover {
    background-color: #0c3972;
    color: #fff;
}

/* banner */
.banner-box{
    width: 100%;
    height: 683px;
    position: relative;
}
.banner-box ul li{
    width: 100%;
}
.banner-box ul li img{
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}
.scroll-btn {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: 40px;
    width: 30px;
    height: 70px;
    cursor: pointer;
    display: block;
    z-index: 20;
    animation: fadeInDown 2s infinite;
    -moz-animation: fadeInDown 2s infinite;
    -ms-animation: fadeInDown 2s infinite;
    -o-animation: fadeInDown 2s infinite;
    -webkit-animation: fadeInDown 2s infinite;
    background: url(/icon/scroll-icon.png) center center no-repeat;
}
/* banner end */

/* about */
.main-about{
    width: 100%;
    height: 640px;
    background-image: url(/images/about.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.about-left{
    width: 1300px;
    margin: 0 auto;
}
.about-right{
    width: 610px;
    height: 590px;
    float: left;
}
.about-title{
    padding-top: 60px;
    padding-left: 18px;
    position: relative;
}
.about-title::before{
    content: '';
    width: 5px;
    height: 72px;
    background-color: #E50112;
    position: absolute;
    left: 0;
    top: 62px;
}
.about-title strong{
    display: block;
    color: #fff;
    font-size: 32px;
    line-height: 30px;
    font-weight: normal;
}
.about-title h3{
    color: #fff;
    font-size: 36px;
    letter-spacing: 2px;
}
.about-title h3 span{
    color: #ffc555;
}
.about-txt{
    width: 100%;
    /* height: 160px; */
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    padding-top: 35px;
    text-align: justify;
}
.about-txt p{
    margin-bottom: 10px;
}
.about-menu{
    padding-top: 40px;
}
.about-menu ul li{
    float: left;
    display: block;
}
.about-menu ul li a{
    display: block;
    width: 132px;
    height: 42px;
    margin-right: 2px;
    background-color: #e50112;
    color: #fff;
    line-height: 42px;
    text-align: center;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}
.about-menu ul li a:hover{
    background-color: #ffc555;
    color: #333;
}
.about-menu ul li:first-child a{
    background-color: #ffc555;
    color: #333;
}
/* about end */

.do-title{
    text-align: center;
}
.do-title h2{
    color: #0C3972;
    font-size: 36px;
}
.do-title h2 span{
    color:#F00;
}
.do-title img{
    margin-top: 10px;
}
.do-title p{ line-height:44px;}

/* main-product */
.main-product{
    padding: 50px 0;
    /* background-image: url(/images/15.png);
    background-size: 100% 100%; */
}
.main-product-box{
    width: 1300px;
    margin: 30px auto 0;
}
.product-menu{
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.product-menu ul li{
    width: 200px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    vertical-align: top;
    background-color: #f1f1f1;
    color: #333;
    margin: 5px;
    cursor: pointer;
    border-radius: 3px;
}
.product-menu ul li.on{
    background-color: #e50112;
    color: #fff;
}
.product-list{
    font-size: 0;
    margin-top: 10px;
}
.product-item{
    width: 302.5px;
    margin-right: 30px;
    margin-top: 30px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #f1f1f1;
    background-color: #fff;
    padding: 10px 10px 60px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.product-item:nth-child(4n+4){
    margin-right: 0;
}
.product-image{
    width: 100%;
    height: 220px;
    overflow: hidden;
    text-align: center;
}
.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.product-title{
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100%;
    padding: 10px;
    background-color: #f1f1f1;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.product-title h3{
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: #555;
    font-weight: normal;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.product-title b{
    display: block;
    width: 50px;
    height: 2px;
    background-color: #fff;
    margin: 10px auto 6px;
}
.product-item:hover{
    border: 1px solid #e50112;
    /* box-shadow: 0 4px 12px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,.2); */
}
.product-item:hover .product-image img{
    transform: scale(1.05);
}
.product-item:hover .product-title{
    background-color: #e50112;
    bottom: 0;
}
.product-item:hover .product-title h3{
    color: #fff;
}
.product-more{
    margin: 40px 0 10px;
    text-align: center;
}
.product-more a{
    display: block;
    margin: 0 auto;
    width: 168px;
    height: 48px;
    border-radius: 3px;
    background-color: #0C3972;
    text-align: center;
    font-size: 18px;
    line-height: 48px;
    color: #fff;
    overflow: hidden;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
/* .product-more:hover{
    background-color: #e50112;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.3);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
} */
/* main-product end */


/* main-support */
.main-support{
    padding: 60px 0;
    background-color: rgba(48, 90, 166, .15);
    background-image: url(/images/16.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.support-list{
    width: 1300px;
    margin: 50px auto 40px;
    text-align: center;
}
.support-item{
    display: inline-block;
    vertical-align: top;
    width: 360px;
    height: 380px;
    margin: 0 20px;
    background-color: #fff;
    border-radius: 10px;
    padding: 60px 40px 50px;
    box-shadow: 0 8px 20px rgba(48, 90, 166, .15);
    -webkit-box-shadow: 0 8px 20px rgba(48, 90, 166, .15);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.support-image{
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}
.support-image1{
    background-color: #e50112;
}
.support-image2{
    background-color: #ffc555;
}
.support-image3{
    background-color: #6ec69a;
}
.support-item1:hover{
    background-color: #e50112;
}
.support-item2:hover{
    background-color: #ffc555;
}
.support-item3:hover{
    background-color: #6ec69a;
}
.support-item:hover .support-image{
    background-color: #fff !important;
}
.support-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit;
    transform: rotate(15deg);
    border-radius: inherit;
    opacity: .3;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    z-index: 1;
}
.support-item:hover .support-image::before{
	transform: rotate(195deg);
}
.support-icon{
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.support-icon1{
    background-image: url(/icon/support1.png);
    background-color: #e50112;
}
.support-icon2{
    background-image: url(/icon/support2.png);
    background-color: #ffc555;
}
.support-icon3{
    background-image: url(/icon/support3.png);
    background-color: #6ec69a;
}
.support-item:hover .support-icon{
    background-color: #fff !important;
}
.support-item:hover .support-icon1{
    background-image: url(/icon/support1-color.png);
}
.support-item:hover .support-icon2{
    background-image: url(/icon/support2-color.png);
}
.support-item:hover .support-icon3{
    background-image: url(/icon/support3-color.png);
}
.support-title {
    margin-top: 50px;
}
.support-title h3{
    font-size: 20px;
    line-height: 30px;
    color: #333;
}
.support-title p{
    font-size: 16px;
    line-height: 30px;
    color: #8f8f8f;
    margin-top: 20px;
}
.support-item:hover .support-title h3{
    color: #fff;
}
.support-item:hover .support-title p{
    color: #fff;
}
/* main-support */
/* news */
.main-news{
    width: 1300px;
    margin: 60px auto;
}

.news-box{
    margin-top: 40px;
}
.news-title{
    position: relative;
}
.news-title strong{
    display: block;
    font-size: 24px;
    color: #333;
    line-height: 30px;
}
.news-title span{
    display: block;
    font-size: 14px;
    color: #999999;
    padding-top: 5px;
}
.news-title a{
    position: absolute;
    right: 0;
    top: 0;
    color: #17136f;
}
.news-title a:hover{
    text-decoration: underline;
}

.news-left{
    width: 660px;
    float: left;
}
.news-left ul li{
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
}
.news-left ul li:last-child{
    border: 0;
}
.news-left a:hover .news-left-text strong{
    color: #0c3972;
}
.news-left-image{
    width: 160px;
    height: 110px;
    float: left;
}
.news-left-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-left-text{
    width: 480px;
    float: right;
}
.news-left-text strong{
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    display: block;
}
.news-left-text p{
    color: #8f8f8f;
    font-size: 14px;
    margin-top: 10px;
}
.news-hit{
    margin-top: 10px;
    color: #8f8f8f;
    font-size: 14px;
    line-height: 20px;
}
.news-hit b{
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    position: relative;
    margin-right: 10px;
}
/* .news-hit i{
    display: inline-block;
    vertical-align: middle;
    padding-left: 25px;
    background-image: url(../icon/eye.png);
    background-position: left center;
    background-size: 20px;
    background-repeat: no-repeat;
    font-style: normal;
} */

.news-right{
    width: 560px;
    float: right;
}
.wenti-list{
    width: 100%;
    height: 412px;
    padding: 20px;
    background-color: #f1f1f1;
    margin-top: 20px;
}
.wenti-list li{
    border-bottom: 1px dashed #d1d1d1;
}
.wenti-list li:first-child{
    border-bottom: 0px dashed #d1d1d1;
    margin-bottom: 10px;
}
.wenti-list li a{
    display: block;
}
.wenti-list li a:hover strong{
    color: #0c3972;
}
.wenti-image{
    width: 200px;
    height: 120px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    float: left;
}
.wenti-image img{
    height: 100%;
    width: auto;
    min-width: 100%;
    margin: 0 -100%;
}
.wenti-ri{
    float: right;
    width: 300px;
}
.wenti-ri strong{
    display: block;
    color: #333;
    font-weight: normal;
    line-height: 30px;
}
.wenti-ri b{
    font-size: 14px;
    line-height: 24px;
    color: #999;
    display: block;
    font-weight: normal;
    padding: 2px 0;
}
.wenti-ri p{
    font-size: 14px;
    color: #555;
    line-height: 24px;
}
.wenti-text{
    float: left;
}
.wenti-text strong{
    font-size: 14px;
    color: #666;
    font-weight: normal;
    line-height: 38px;
    padding-left: 10px;
    position: relative;
}
.wenti-text strong::before{
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aeaeae;
}
.wenti-date{
    float: right;
}
.wenti-date p{
    color: #999;
    font-size: 14px;
    line-height: 36px;
}

/* news end */



/* foot-ys */
.foot-ys{
    padding: 50px 0;
    text-align: center;
    font-size: 0;
    border-top: 1px solid #f7f7f7;
    background-color: #fff;
}
.foot-ys ul li{
    display: inline-block;
    vertical-align: top;
    width: 295px;
    margin-right: 40px;
    text-align: left;
}
.foot-ys ul li:nth-child(4){
    margin-right: 0;
}
.foot-ys ul li img{
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}
.foot-ys-tit{
    display: inline-block;
    vertical-align: top;
    width: 240px;
    padding-left: 5px;
}
.foot-ys-tit strong{
    font-size: 22px;
    font-weight: normal;
    color: #333333;
}
.foot-ys-tit p{
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin-top: 10px;
}

/* foot-ys end */

/* footer */
footer{
    width: 100%;
    text-align: center;
    padding-top: 60px;
   background-color: #222222;
}
.foot-box{
    width: 1300px;
    margin: 0 auto;
}
.foot-left{
    width: 400px;
    height: 260px;
    float: left;
    text-align: left;
    padding-top: 5px;
    border-right: 1px solid #414140;
}
.foot-logo{
    width: 100%;
}
.foot-logo img{
    width: auto;
    height: 66px;
}
.foot-logo p{
    color: #999999;
    padding: 25px 0 30px;
    font-weight: lighter;
}

.foot-contact{
    width: 100%;
    text-align: left;
}
.foot-contact strong{
    font-size: 20px;
    font-weight: lighter;
    color: #ffffff;
}
.foot-contact h3{
    font-size: 38px;
    line-height: 38px;
    color: #e50112;
    font-weight: bold;
    padding-top: 6px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.foot-ewm{
    width: 220px;
    height: 260px;
    float: right;
    text-align: right;
    border-left: 1px solid #414140;
}
.foot-ewm ul li{
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 148px;
    margin-left: 30px;
}
.foot-ewm img{
    width: 100%;
}
.foot-ewm p{
    color: #999999;
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
}

.foot-menu{
    float: right;
    padding-right: 10px;
}
.foot-menu-list{
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding-right: 60px;
}
.foot-menu-list>a{
    display: block;
    color: #cbcbcb;
    font-size: 16px;
    font-weight: lighter;
}
.foot-menu-list>a:hover{
    color: #fff;
}
.foot-menu-list ul{
    margin-top: 10px;
}
.foot-menu-list ul li a{
    display: block;
    color: #999999;
    font-size: 14px;
    line-height: 24px;
    font-weight: lighter;
}
.foot-menu-list ul li a:hover{
    color: #fff;
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 20px 0 20px;
    margin-top: 30px;
    border-top: 1px solid #414140;
}
.copyright p{
    color: #999999;
    font-size: 14px;
    line-height: 30px;
    font-weight: lighter;
}
.copyright p a{
    color: #999999;
    font-size: 14px;
    line-height: 30px;
    font-weight: lighter;
    display: inline-block;
}
.copyright p a:hover{
    text-decoration: underline;
}


.fanyi_list ul {
    margin: 30px 0;
}

.fanyi_list li {
    width: 25%;
    float: left;text-align:center;
}

.fanyi_list li a {
    display: block;
    margin: 10px;
    border: 1px #f5f5f5 solid;
    background-color: #fefefe;
    height: 260px;
}

.fanyi_list li a img {
    margin-top: 42px; width:80px;
}

.fanyi_list li a strong {
    display: block;
    color: #000;
    line-height: 55px;
    font-size: 18px; 
}

.fanyi_list li a i {
    display: block;
    height: 1px;
    width: 60px;
    background-color: #CCC;
    margin: auto;
}

.fanyi_list li a p {
    color: #333;
    padding-top: 10px;
    font-size: 14px;
}

.can-do{ padding-top:50px;}


.sloution {
    margin: 30px auto;
    width: 1200px;
}

.sloution li {
    width: 400px;
    float: left;
}

.sloution li a {
    display: block;
    margin: 20px;
    border: 1px #f5f5f5 solid;
    background-color: #fefefe;
    padding: 20px;
}

.sloution li a img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sloution li a strong {
    display: block;
    color: #000;
    line-height: 55px;
    font-size: 18px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.sloution li a i {
    display: block;
    height: 2px;
    width: 70px;
    background-color:#F00;
    margin: auto;
    margin-bottom: 10px;
}

.sloution li a p {
    color: #333;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
}
