/*初始化样式*/
/* 样式 */
.fadein {
    -webkit-animation-name: a-fadein;
    animation-name: a-fadein
}

@-webkit-keyframes a-fadein {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes a-fadein {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadein-top {
    -webkit-animation-name: fadeinT;
    animation-name: fadeinT
}

@-webkit-keyframes fadeinT {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes fadeinT {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadein-right {
    -webkit-animation-name: fadeinR;
    animation-name: fadeinR
}

@-webkit-keyframes fadeinR {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@keyframes fadeinR {
    0% {
        opacity: 0;
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadein-bottom {
    -webkit-animation-name: fadeinB;
    animation-name: fadeinB
}

@-webkit-keyframes fadeinB {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes fadeinB {
    0% {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadein-left {
    -webkit-animation-name: fadeinL;
    animation-name: fadeinL
}

@-webkit-keyframes fadeinL {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@keyframes fadeinL {
    0% {
        opacity: 0;
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeout {
    -webkit-animation-name: a-fadeout;
    animation-name: a-fadeout
}

@-webkit-keyframes a-fadeout {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes a-fadeout {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeout-top {
    -webkit-animation-name: fadeoutT;
    animation-name: fadeoutT
}

@-webkit-keyframes fadeoutT {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100px)
    }
}

@keyframes fadeoutT {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-100px)
    }
}

.fadeout-right {
    -webkit-animation-name: fadeoutR;
    animation-name: fadeoutR
}

@-webkit-keyframes fadeoutR {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(100px)
    }
}

@keyframes fadeoutR {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(100px)
    }
}

.fadeout-bottom {
    -webkit-animation-name: fadeoutB;
    animation-name: fadeoutB
}

@-webkit-keyframes fadeoutB {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(100px)
    }
}

@keyframes fadeoutB {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(100px)
    }
}

.fadeout-left {
    -webkit-animation-name: fadeoutL;
    animation-name: fadeoutL
}

@-webkit-keyframes fadeoutL {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(-100px)
    }
}

@keyframes fadeoutL {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(-100px)
    }
}

.bounce,.bounce-hover:hover {
    -webkit-animation-name: a-bounce;
    animation-name: a-bounce
}

@-webkit-keyframes a-bounce {
    0%,20%,50%,80%,to {
        -webkit-transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px)
    }
}

@keyframes a-bounce {
    0%,20%,50%,80%,to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-15px)
    }
}

.bouncein {
    -webkit-animation-name: a-bouncein;
    animation-name: a-bouncein
}

@-webkit-keyframes a-bouncein {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(0.9)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes a-bouncein {
    0% {
        opacity: 0;
        transform: scale(0.3)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }

    70% {
        transform: scale(0.9)
    }

    to {
        transform: scale(1)
    }
}

.bounceout {
    -webkit-animation-name: a-bounceout;
    animation-name: a-bounceout
}

@-webkit-keyframes a-bounceout {
    0% {
        -webkit-transform: scale(1)
    }

    25% {
        -webkit-transform: scale(0.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.3)
    }
}

@keyframes a-bounceout {
    0% {
        transform: scale(1)
    }

    25% {
        transform: scale(0.95)
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }

    to {
        opacity: 0;
        transform: scale(0.3)
    }
}

.rotatein {
    -webkit-animation-name: a-rotatein;
    animation-name: a-rotatein
}

@-webkit-keyframes a-rotatein {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-200deg)
    }

    to {
        opacity: 1;
        -webkit-transform: rotate(0)
    }
}

@keyframes a-rotatein {
    0% {
        opacity: 0;
        transform: rotate(-200deg)
    }

    to {
        opacity: 1;
        transform: rotate(0)
    }
}

.rotateout {
    -webkit-animation-name: a-rotateout;
    animation-name: a-rotateout
}

@-webkit-keyframes a-rotateout {
    0% {
        -webkit-transform: rotate(0);
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: center center
    }

    to {
        -webkit-transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes a-rotateout {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1
    }

    to {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.flash,.flash-hover:hover {
    -webkit-animation-name: a-flash;
    animation-name: a-flash
}

@-webkit-keyframes a-flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@keyframes a-flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.shake,.shake-hover:hover {
    -webkit-animation-name: a-shake;
    animation-name: a-shake
}

@-webkit-keyframes a-shake {
    0%,to {
        -webkit-transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px)
    }
}

@keyframes a-shake {
    0%,to {
        transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        transform: translateX(10px)
    }
}

.swing,.swing-hover:hover {
    -webkit-animation-name: a-swing;
    animation-name: a-swing
}

@-webkit-keyframes a-swing {
    20% {
        -webkit-transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0)
    }
}

@keyframes a-swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0)
    }
}

.wobble,.wobble-hover:hover {
    -webkit-animation-name: a-wobble;
    animation-name: a-wobble
}

@-webkit-keyframes a-wobble {
    0% {
        -webkit-transform: translateX(0)
    }

    15% {
        -webkit-transform: translateX(-50px) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(40px) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-33px) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10px) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-10px) rotate(-1deg)
    }

    to {
        -webkit-transform: translateX(0)
    }
}

@keyframes a-wobble {
    0% {
        transform: translateX(0)
    }

    15% {
        transform: translateX(-50px) rotate(-5deg)
    }

    30% {
        transform: translateX(40px) rotate(3deg)
    }

    45% {
        transform: translateX(-33px) rotate(-3deg)
    }

    60% {
        transform: translateX(10px) rotate(2deg)
    }

    75% {
        transform: translateX(-10px) rotate(-1deg)
    }

    to {
        transform: translateX(0)
    }
}

.ring,.ring-hover:hover {
    -webkit-animation-name: a-ring;
    animation-name: a-ring
}

@-webkit-keyframes a-ring {
    0% {
        -webkit-transform: scale(1)
    }

    10%,20% {
        -webkit-transform: scale(0.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scale(1) rotate(0)
    }
}

@keyframes a-ring {
    0% {
        transform: scale(1)
    }

    10%,20% {
        transform: scale(0.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale(1.1) rotate(-3deg)
    }

    to {
        transform: scale(1) rotate(0)
    }
}

.rotate,.rotate-hover:hover {
    -webkit-animation-name: a-rotate;
    animation-name: a-rotate
}

@-webkit-keyframes a-rotate {
    0% {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(359deg)
    }
}

@keyframes a-rotate {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(359deg)
    }
}

html {
    margin: 0;
    padding: 0;
    border: 0;
}

body, div, span, object, iframe, h1, h2, h3, h4, p, blockquote, pre, a, address, code, b, em, img, dl, dt, dd, ol, ul, li, fieldset, form, label, footer, header, hgroup, .x-menu, section {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #fff;
    color: #666;
    position: relative;
    vertical-align: baseline;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    outline: none;
}

a:hover, a:active, a:focus {
    color: #da251c;
    text-decoration: none;
    outline: none;
}

p {
    margin: 0;
}

input {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
    background: none;
    vertical-align: middle;
}

ul, ol, li {
    list-style-type: none;
}

select, input, img, select {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

table, th, td {
    vertical-align: middle
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    zoom: 1 }

.clearboth {
    height: 0px;
    line-height: 0px;
    overflow: hidden;
    clear: both;
    font-size: 0px;
}

h1, h2, h3, h4 {
    font-size: 12px;
    font-weight: bold;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    height: 0;
}

dt {
    font-weight: normal;
}

/*----- Common css ------*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flexd {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.com-img {
    display: block;
    overflow: hidden;
    margin: 0 auto;
}

.com-img img {
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.com-img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

/*头部样式*/
/* .top1 {
    height: 27px;
    background: #e6e6e6;
    color: #595959;
    line-height: 27px;
    overflow: hidden;
    font-size: 13px;
}

.top2 {
    height: 143px;
    overflow: hidden;
}

#header {
    width: 1000px;
    margin: 0 auto;
}

.logo {
    float: left;
    line-height: 143px;
}

.top2 .k2 {
    margin-top: 35px;
    font-size: 16px;
    color: #333333;
    line-height: 35px;
    background: url() no-repeat left center;
    padding-left: 40px;
}
 */
/*热门搜索*/
/* .sou {
    margin: 15px 0;
}

.hotSearch a {
    margin-right: 6px;
}

.hotSearch {
    float: left;
    height: 24px;
    line-height: 24px;
    font-weight: normal;
} */
/*搜索和热门搜索*/
/* #formsearch {
    float: right;
}

#search-type {
    float: left;
    width: 100px;
    height: 24px;
    border: 1px solid #c8c8c8;
    margin-right: 5px;
}

#formsearch input {
    height: 22px;
    background: #fff;
    border: 1px solid #c8c8c8;
    line-height: 22px;
}

#formsearch input#keyword {
    height: 22px;
    line-height: 22px;
    padding-left: 4px;
    color: #666;
}

#formsearch input#s_btn {
    width: 46px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #009b4c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
}
 */
/* 导航样式 */
/* #menu {
    background-color: #019350;
} */
.x-menu {
    align-items: center;
    width: 680px;
    margin-top: 19px;
}

.x-menu>li {
    padding-bottom: 11px;
}

.x-menu>li:nth-child(6) .menu-product-link>p:nth-child(5){
    display:none;
}
.x-menu>li:nth-child(4) .menu-product-simple {
    padding-top: 35px;
}

.x-menu>li>a {
    display: block;
    font-size: 16px;
    white-space: nowrap;
    line-height: 44px;
    text-align: center;
    color: #0d0d0d;
    font-weight: 600;
}

.x-menu>li:hover>a {
    color: #da251c;
}

.x-menu>li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
}

.x-sub-menu {
    position: absolute;
    z-index: 99;
    width: 120px;
    left: 50%;
    top: 44px;
    margin-left: -60px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu>li>a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #666666;
    line-height: 2.6;
}

.x-sub-menu>li>a:hover {
    background: #da251c;
    color: #fff;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
    display: none;
}

.x-menu .menu-product {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: hsla(0,0%,100%,.9);
    z-index: 1000;
    display: none;
    overflow-y: hidden;
    top: 111px;
}

.x-menu .menu-product:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    box-shadow: 0px 0px 5px rgba(0,0,0,.7);
}

.x-menu .menu-product-hr {
    position: absolute;
    width: 10px;
    overflow: hidden;
    display: none;
    top: 50px;
    bottom: 30px;
    left: 50%;
}

.x-menu .menu-product-hr:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    box-shadow: 0px 0px 5px rgba(0,0,0,.7);
}
.x-menu .menu-product .list-unstyle {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.x-menu .menu-product .list-unstyle li:nth-child(2) {
    width: 50%;
}
.x-menu .menu-product .list-unstyle li:nth-child(2) .menu-product-simple {
    display: flex;
    justify-content: space-between;
}
.x-menu .menu-product .list-unstyle li:nth-child(2) .menu-product-simple p {
    float: left;
    width: 48%;
}
.x-menu>li:nth-child(3) .menu-product .list-unstyle li {
    width: 75%
}
.x-menu>li:nth-child(3) .menu-product .list-unstyle li:nth-child(1) .menu-product-link p {
        width: 24.333333%;
}
.x-menu>li:nth-child(3) .menu-product .list-unstyle li:nth-child(2) {
    width: 24%;
    padding-top: 50px;
}
.x-menu>li:nth-child(3) .menu-product .list-unstyle li:nth-child(2) p {
    width: 100%;
}

.menu-product .fadein-top1 {
    transition-duration: 0.5s;
    opacity: 0;
    transform: translateY(-50px);
}

.menu-product.haha .fadein-top1 {
    opacity: 1;
    transform: translateY(0px);
}

.menu-product-short {
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0px !important;
}

.menu-product-link {
    padding-top: 0px;
    overflow: hidden;
}

.menu-product-link a {
    font-size: 17px;
    line-height: 48px;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}
.menu-product-link p:hover a {
    color: #d40600;
}

.menu-product-simple {
    padding-top: 5px;
}

.x-menu .menu-product.menu-columns .menu-product-simple a {
    display: block;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.x-menu .menu-product.menu-columns .menu-product-simple a span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    line-height: 48px;
    font-size: 18px;
    text-align: center;
    padding-top: 12px;
    background: -moz-linear-gradient(top, rgba(0,0,0,.0) 0%, rgba(0,0,0,.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,.0)), color-stop(100%, rgba(0,0,0,.8)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,.0) 0%, rgba(0,0,0,.8) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,.0) 0%, rgba(0,0,0,.8) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,.0) 0%, rgba(0,0,0,.8) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,.0) 0%, rgba(0,0,0,.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=' rgba(0,0,0,.0)', endColorstr=' rgba(0,0,0,.8)',GradientType=0 );
}

.x-menu .menu-product.menu-columns .menu-product-simple img {
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.x-menu .menu-product.menu-columns .menu-product-simple a:hover img {
    -webkit-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05)
}

.x-menu li:nth-child(3) .menu-product-simple p:nth-child(2) {
    display: none;
}
.x-menu li:nth-child(3) .menu-product-simple p {
    float: right;
}

.x-menu .menu-product .container {
    padding-top: 50px
}

.x-menu .menu-product .container li {
    padding-bottom: 50px
}

.x-menu .menu-product .container h3 {
    padding-bottom: 1pc
}

.x-menu .menu-product .container h3 a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 100;
    color: #d40000;
    transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    -webkit-transition: all .2s ease
}

.x-menu .menu-product .container h3 a:hover {
    color: #ef011c;
    font-size: 20px
}

.x-menu .menu-product .container img {
    max-width: 100%;
    margin: 0 auto
}

.x-menu .menu-product .container h5,.x-menu .menu-product .container img {
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -webkit-transform: scale(.9,.9);
    transform: scale(.9,.9)
}

.x-menu .menu-product .container h5 {
    font-size: 1pc;
    color: #656565;
    font-weight: 100;
    padding: 4px 0 1pc
}

.x-menu .menu-product .container a:hover img {
    -webkit-transform: scale(1,1);
    transform: scale(1,1)
}

.x-menu .menu-product .container a:hover h5 {
    color: #ef011c
}

.x-menu .menu-product a.menu-more {
    font-size: 1pc
}

/* 友情链接 */
.c-link {
    font-size: 14px;
    line-height: 24px;
    color: #a9b3b3;
    padding:30px 0;
    height: 84px;
    overflow: hidden;
}

.c-link .con {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background: url(../image/33732112263d7b228993392c145ab444b9b83570.png) no-repeat 0 50%;
    padding-left: 21px;
    height: 24px;
    overflow: hidden;
}

.c-link span {
    cursor: pointer;
    display: block;
}

.c-link dd {
    width: calc(100% - 70px)
}

.c-link dd a {
    color: #a9b3b3;
}

.c-link .sec {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    /* background: rgba(255,255,255,.6); */
    padding: 10px;
    min-width: 120px;
}

.c-link a {
    color: #2a333c;
    padding: 0 4px;
    font-size: 14px;
    line-height: 24px;
}

/*内页左侧样式*/
.container {
    width: 1200px !important;
    margin: 0 auto;
    padding: 0;
}

.page-product-inquiry a {
    color: #fff;
}

@media (max-width: 992px) {
    body {
        padding-top: 60px!important;
        padding-bottom: 50px!important;
    }
}
