body,img{
    margin: 0;
    padding: 0;
    border: 0;
}
@media (min-width: 576px){
    .container {
        max-width: 576px;
    }
}
@media (min-width: 768px){
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px){
    .container {
        max-width: 940px;
    }
}
@media (min-width: 1200px){
    .container {
        max-width: 1180px;
    }
}
@media (min-width: 1920px){
    .container {
        max-width: 1320px;
    }
}
:focus{
    outline: 0;
}
button,input{
    outline: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
button{
    cursor: pointer;
}
button:hover,button:active,button:focus{
    box-shadow: 0 2px 2px 0 rgba(0,0,0, 0.1);
}
.navbar-light .navbar-toggler{
    border-color: #fff;
}
.navbar-light .navbar-nav .nav-link{
    color: rgba(0,0,0,.9);
}
.navbar-light .navbar-nav .active>.nav-link{
    color: #ffcc20;
}
/*滚动条隐藏及兼容*/
body::-webkit-scrollbar{
    display: none;
}
.outsideBox {
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
    position: relative;
    margin-left: -20px;
    margin-top: -20px;
}
.centerBox {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: scroll;
}
.insideBox{
    width: 100%;
    height: calc(100vh - 80px);
    /*background: radial-gradient(red, green, blue); !* 标准的语法 *!*/
}
/*分页*/
.swiper1>.swiper-pagination-bullets{
    top: 42vh !important;
}
.swiper1 .swiper-pagination-bullet-active{
    background: #ff9120;
}
/*联系我们*/
.contact-us{
    margin-top: 10px;
    margin-bottom: 80px;
}
.contact-us .footer-title{
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 65px;
    margin-bottom: 75px;
    overflow: hidden;
}
.contact-us .footer-title .logo{}
.contact-us .footer-title .customer{
    font-size: 38px;
    margin-top: 11px;
}
.contact-us .info{
    clear: both;
    overflow: hidden;
}
.contact-us .info .contact{
    width: 60%;
    position: relative;
}
.contact-us .info .contact .contact-title{
    font-size: 1.4vw;
}
.contact-us .info .contact .contact-title span{
    display: block;
}
.contact-us .info .contact .contact-block{
    clear: both;
    line-height: 2.3vw;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.contact-us .info .contact .contact-block .contact-item{
    font-size: 1.2vw;
}
.contact-us .info .image{
    width: 11vw;
    text-align: center;
    font-size: 1.2vw;
}
.contact-us .info .image img{
    width: 100%;
    overflow: hidden;
}
.contact-us .info .image p{
    margin-top: 7px;
}
.contact-us .copyright{
    clear: both;
    margin-top: 110px;
    text-align: center;
    font-size: 1.2vw;
}
/*动画效果*/
.hexagon{
    position: relative;
    width: 100%;
    /*background: linear-gradient(90deg, #f2d91a, #f5bb32, #fca282, #f2d91a, #f5bb32);*/
    /*background-size: 400% 400%;*/
    /*animation: mymove 3s ease infinite;*/
    /*-webkit-animation: mymove 3s ease infinite;*/
    /*-moz-animation: mymove 3s ease infinite;*/
}
@keyframes mymove
{
    0% {
        background-position: 0% 0%; }
    /* 50% { */
    /* background-position: 50% 100%; } */
    100% {
        background-position: 100% 0%; }
}

@keyframes mymove2
{
    0% {
        background-position: 0% 0%; }
    50% {
        background-position: 100% 50%; }
    100% {
        background-position: 0% 100%; }
}
/*栏目大标题*/
.title-big{
    overflow: hidden;
    font-size: 1.8vw;
}
.title-big .cat-title{
    font-weight: bold;
}
.title-big span{
    display: block;
}
.title-big .gomore a{
    font-size: 1vw;
    color: #4d4d4d;
}
.title-big .gomore a:hover{
    color: #0C0C0C;
}
/*版块居中*/
.container-swiper{
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
/*隐藏页面超出页面的内容*/
.swiper-slide{
    overflow: hidden;
}
/*底部联系我们距离*/
.mt-lg{
    margin-top: 70px;
}
/*自定义菜单折叠*/
.navbar-close-icon{
    background-image: url("../images/close_black.png") !important;
    background-size: 80% 80%;
}