/* 轮播样式 */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: auto;
    right: auto;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
    margin: 0 6px;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: #b5b5b5;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: transparent;
    border-color: #b5b5b5;
}


body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img,
div,
dl,
dt,
dd,
input {
    margin: 0;
    padding: 0;
    border: none;
}

img,
button {
    border: none;
}

input:focus,
button:focus,
button.btn:focus {
    outline: none;
    box-shadow: none;
}

li {
    list-style: none;
}

input,
select,
textarea,
button {
    outline: none;
}

.form-control:focus {
    box-shadow: none;
}

textarea {
    resize: none;
}


body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 1.8;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    font-weight: 600;
}

p {
    margin: 0 0 10px;
    color: #666;
}

img {
    max-width: 100%;
}


a {
    color: #666;
}

a:hover {
    color: #d9261c;
    text-decoration: none;
}

a,
a:visited,
a:active,
a:link,
a:focus {
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

.bg-gray {
    background-color: #f4f4f4;
}

.section {
    padding: 60px 0;
}



#demo .carousel-indicators li {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    margin: 0 5px;
}

#demo .carousel-indicators .active {
    border: 2px solid rgba(255, 255, 255, 1);
    background: #205aac;
}




.list {
    display: flex;
}

.list>ul {
    flex: 0 0 36%;
    display: block;
}

.list>ul li a {
    background: #f7f7f7;
    display: flex;
    height: 140px;
    margin-bottom: 1px;
    color: #000;
}

.list>ul li a.active {
    background: #d9261c;
    color: #fff;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .5) inset;
}

.list>ul li a .list-icon {
    position: relative;
    flex: 0 0 140px;
    overflow: hidden;
    padding-left: 35px;
    line-height: 140px;
    font-size: 40px;
    color: #000;
    z-index: 1;

}

.list>ul li a.active .list-icon {
    color: #fff;

}

.list>ul li a .list-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: skewX(25deg);
    transform-origin: 100% 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.list>ul li a.active .list-icon::after {
    background: rgba(0, 0, 0, 0.15);
}

.list>ul li a .list-inner {
    flex: auto;
    padding: 30px 25px 30px 0;
    margin: 0;
    color: #000;
}

.list>ul li a.active .list-inner {
    color: #fff;
}

.list>ul li a .list-inner b {
    font-size: 18px;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.list>ul li a .list-inner span {
    font-size: 13px;
    display: block;
    line-height: 1.8;
    font-weight: 500;
}

.list .tab-content {
    flex: auto;

}

.list .tab-content>.tab-pane {
    padding: 60px 0 0 30px;
}

.dt-sc-button {
    color: #fff;
    background: #000;
    line-height: 33px;
    padding: 0px 0 0 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-weight: 500;
}

.dt-sc-button i {
    color: #fff;
    background: #d9261c;
    padding: 10px 20px 10px 30px;
    float: right;
    margin-left: 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.dt-sc-button:after {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    background: #000;
    right: 60px;
    top: 0;
    width: 18px;
    height: 60px;
    transform: skew(-25deg);
    -moz-transform: skew(-25deg);
    -ms-transform: skew(-25deg);
    -webkit-transform: skew(-25deg);
    -o-transform: skew(-25deg);
}

.dt-sc-button:hover {
    color: #fff;
    background: #d9261c;
}

.dt-sc-button:hover i {
    background: #000;
}

.dt-sc-button:hover:after {
    background: #d9261c;
}

.homeabout {
    margin-bottom: 80px;
}

.homeabout-inner h3 {
    color: #d9261c;
    font-size: 20px;
    font-weight: 300;
    margin-top: 0;
}

.homeabout-inner h1 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
}

.homeabout-inner p {
    line-height: 1.8;
    font-size: 13px;
}

.homeabout-inner .video-wrap {
    float: right;
    width: 300px;
    padding: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin-left: 10px;
}

.video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrap .link-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 0;
}


.video-wrap .link-circle span {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100%;
    position: relative;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    color: #000;
}

.video-wrap .link-circle span:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: #d9261c;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.video-wrap .link-circle span i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
    color: #d9261c;
}

.video-wrap .link-circle span:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.video-wrap .link-circle span:hover i {
    color: #fff;
}

.video-wrap .link-circle span:hover:before {
    opacity: 1;
    transform: scale(.85);
    -webkit-transform: scale(.85);
}

.weiduduan {
    width: 700px;
    margin: 0 auto;
}

#phoneCarousel {
    height: 350px;
    margin: 0 auto;
    position: relative;
}

#phoneCarousel .arrow {
    width: 44px;
    height: 44px;
    background: url(../images/arrows.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    left: 0;
    cursor: pointer
}

#phoneCarousel .next {
    background-position: right top;
    left: auto;
    right: 0
}

#phoneCarousel .arrow:hover {
    background-position: left bottom
}

#phoneCarousel .next:hover {
    background-position: right bottom
}

#stage {
    left: 50%;
    margin-left: -300px;
    position: absolute;
    width: 600px;
    height: 100%
}

#stage img {
    display: none;
    box-shadow: 0 35px 20px -30px rgba(0, 0, 0, 0.2);
}

#stage .default {
    display: block;
    left: 50%;
    margin-left: -135px;
    position: absolute
}

#stage .animationReady {
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

#top3 {
    padding-top: 30px;
}

#hexGrid {
    overflow: hidden;
    margin: 0 auto;
    font-size: 15px;
    width: 580px;
}

#hexGrid:after {
    content: "";
    display: block;
    clear: both;
}

.hex {
    position: relative;
    list-style-type: none;
    float: left;
    overflow: hidden;
    visibility: hidden;
    outline: 1px solid transparent;
    /* fix for jagged edges in FF on hover transition */
    -webkit-transform: rotate(-60deg) skewY(30deg);
    -ms-transform: rotate(-60deg) skewY(30deg);
    transform: rotate(-60deg) skewY(30deg);
}

.hex * {
    position: absolute;
    visibility: visible;
    outline: 1px solid transparent;
    /* fix for jagged edges in FF on hover transition */
}

.hexIn {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
    -webkit-transform: skewY(-30deg) rotate(60deg);
    -ms-transform: skewY(-30deg) rotate(60deg);
    transform: skewY(-30deg) rotate(60deg);
}

/*** HEX CONTENT **********************************************************************/
.hex img {
    left: -100%;
    right: -100%;
    width: auto;
    height: 100%;
    margin: 0 auto;
}




@media (min-width: 900px) {

    /* <- 3-2  hexagons per row */
    .hex {
        width: 32.666%;
        /* = (100-2) / 3 */
        padding-bottom: 37.720%;
        /* =  width / sin(60) */
    }

    .hex:nth-child(5n+4),
    .hex:nth-child(5n+5) {
        margin-top: -8.564%;
        margin-bottom: -8.564%;
        -webkit-transform: translateX(50%) rotate(-60deg) skewY(30deg);
        -ms-transform: translateX(50%) rotate(-60deg) skewY(30deg);
        transform: translateX(50%) rotate(-60deg) skewY(30deg);
    }

    .hex:nth-child(5n+4):last-child,
    .hex:nth-child(5n+5):last-child {
        margin-bottom: 0;
    }

    .hex:nth-child(5n+4) {
        margin-right: 1%;
        margin-left: 0.5%;
    }

    .hex:nth-child(5n+2) {
        margin-left: 1%;
        margin-right: 1%;
    }

    .hex:nth-child(5n+6) {
        clear: left;
    }
}




.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(217, 22, 28, .7);
    transition: background .5s;
}

.header.active {
    background: rgba(0, 0, 0, .7);
}

.header .logo {
    width: 300px;


}

.header .language {
    width: 80px;
    text-align: right;
}

.header .language a {
    color: #fff;
}

.header .language a span {
    display: inline-block;
    padding-left: 5px;
}

@media (min-width:768px) {
    .header .navbar {
        padding: 0;
        flex: 1;
        padding-left: 50px;
    }

    .header .navbar-nav {
        display: flex;
        flex: 0 0 100%;
    }

    .header .navbar-nav li.nav-item {
        flex: 1;

    }

    .header .navbar-nav li.nav-item a {
        text-align: center;
        color: #fff;
        display: block;
    }

    .header .navbar-nav li.nav-item>a {
        padding: 20px 0;

        position: relative;
        z-index: 1;
        font-size: 16px;
    }


    .header .navbar-nav li.nav-item.active>a i {
        margin-right: 4px;
    }

    .header .navbar-nav li.nav-item .dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .header .navbar-nav li.nav-item .dropdown-list li a {
        background: #000;
        opacity: 0;
        -webkit-transform: rotateY(90deg);
        -moz-transform: rotateY(90deg);
        -ms-transform: rotateY(90deg);
        -o-transform: rotateY(90deg);
        transform: rotateY(90deg);
        -webkit-transition: opacity .4s, -webkit-transform .5s;
        -moz-transition: opacity .4s, -moz-transform .5s;
        -ms-transition: opacity .4s, -ms-transform .5s;
        -o-transition: opacity .4s, -o-transform .5s;
        transition: opacity .4s, transform .5s;
        padding: 4px 0;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(1) a {
        transition-delay: 0ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(2) a {
        transition-delay: 50ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(3) a {
        transition-delay: 100ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(4) a {
        transition-delay: 150ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(5) a {
        transition-delay: 200ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(6) a {
        transition-delay: 250ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(7) a {
        transition-delay: 300ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(8) a {
        transition-delay: 350ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(9) a {
        transition-delay: 400ms;
    }

    .header .navbar-nav li.nav-item .dropdown-list li:nth-child(10)a {
        transition-delay: 450ms;
    }

    .header .navbar-nav li.nav-item:hover .dropdown-list {
        height: auto;
    }

    .header .navbar-nav li.nav-item:hover .dropdown-list li a {
        opacity: 1;

        transform: rotateY(0);
    }

    .header .navbar-nav li.nav-item:hover .dropdown-list li a:hover {
        background: #d9161c;
    }
}


.top-title {
    position: relative;
    margin: 30px 0 60px;
}

.top-title:after {
    content: "";
    position: absolute;
    left: calc(50% - 31px);
    top: calc(50% - 82px);
    height: 160px;
    width: 60px;
    border: 2px solid #000;
}

.top-title:before {
    content: "\f175";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -34px;
    text-align: center;
    color: #d9261c;
    font-size: 24px;
    ;
}

.top-title-inner {
    background: linear-gradient(90deg, rgba(244, 244, 244, 0) 45%, rgba(244, 244, 244, 1) 45%, rgba(244, 244, 244, 1) 55%, rgba(244, 244, 244, 0) 55%);
    text-align: center;
    position: relative;
    z-index: 9;
    padding: 10px 0;
}

.top-title-inner h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.top-title-inner span {
    font-size: 14px;
    font-weight: 300;
}

.home-tab ul {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.home-tab ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    padding: 5px 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.home-tab ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: skewX(-25deg);
    z-index: -1;
    border: 1px solid #e5e5e5;
}

.home-tab ul li.active a {
    color: #fff;
}

.home-tab ul li.active a:after {
    background: #d9261c;
    border-color: #d9261c;
}

.home-tab .home-content>div {
    display: none;
}

.home-tab .home-content>div.active {
    display: block;
}

.home-goods {
    margin-top: 30px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.home-goods-box {
    padding: 15px 0px;
    margin: 0 20px;
    border-top: 1px solid #e5e5e5;
}

.home-goods-wrap {

    height: 36px;
    overflow: hidden;
}

.home-goods-title {
    display: flex;
    flex-flow: column;
    position: relative;
    top: 0;
    transition: all 0.3s;

}

.home-goods-title h3 {
    font-size: 14px;
    font-weight: 700;
    height: 36px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    opacity: 1;
    justify-content: center;
    margin: 0;
}

.home-goods-title .more {
    text-align: center;
    line-height: 0;
}

.home-goods-title .more a {
    color: #fff;
    background: #000;
    line-height: 30px;
    padding: 0px 0 0 15px;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-weight: 500;
    margin: 3px 0;
    opacity: 0;
}

.home-goods-title .more a i {
    color: #fff;
    background: #d9261c;
    padding: 0px 15px 0px 25px;
    float: right;
    margin-left: 10px;
    transition: all 0.3s;
    line-height: 30px;
}

.home-goods-title .more a:after {
    transition: all 0.3s;
    content: "";
    position: absolute;
    background: #000;
    right: 50px;
    top: 0;
    width: 15px;
    height: 40px;
    transform: skew(-25deg);
}

.home-goods-title .more a:hover {
    background: #d9261c;
}

.home-goods-title .more a:hover i {
    background: #000;
}

.home-goods-title .more a:hover:after {
    background: #d9261c;
}

.home-goods:hover .home-goods-title {
    top: -36px;
}

.home-goods:hover .home-goods-title h3 {
    opacity: 0;
}

.home-goods:hover .home-goods-title .more a {
    opacity: 1;
}

.homecategory .row .col-lg-3 {
    padding: 0;
}

.homecategory-title h3 {
    text-align: center;
    font-size: 30px;
}

.homecategory-box {
    overflow: hidden;
    position: relative;
    display: block;
}

.homecategory-box .inner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    width: 35%;
    padding: 10% 0 10% 5%;

}

.homecategory-box .inner::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 200%;
    transform: skewX(15deg);
    transform-origin: 0 0;
    background: rgba(217, 38, 28, 0.85);
    z-index: -1;
}

.homecategory-box .inner i {
    position: absolute;
    color: #fff;
    left: 145%;
    bottom: 0;
    padding: 6px 15px;
    z-index: -1;
}

.homecategory-box .inner i::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: skewX(15deg);
    background: #000;
    z-index: -1;
}

.homecategory-box .inner h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    height: 36px;
}

.homecategory-box .inner p {
    color: #FFF;
    font-size: 13px;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.homecategory-box:hover .inner::after {
    background: rgba(0, 0, 0, 0.7);
}

.homecategory-box:hover .inner p {
    color: #fff;
}

.homecategory-box:hover .inner i::after {
    background: #d9161c;
}


.homenews .top-title-inner {
    background: #fff;
}

.homenews-left h3 {
    font-size: 18px;
    margin: 10px 0;
}

.homenews h3 a {
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homenews h3 a:hover {
    color: #d9261c;
}

.homenews-right ul li a {
    display: block;
    background: #f9f9f9;
    margin-bottom: 30px;
    display: flex;
    overflow: hidden;
}

.homenews-right ul li a .date {
    text-align: center;
    position: relative;
    flex: 0 0 100px;
    padding-right: 15px;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;

}

.homenews-right ul li a .date b {
    display: block;
    font-size: 42px;
    line-height: 1.1;
}

.homenews-right ul li a .date::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 200%;
    transform: skewX(-15deg);
    transform-origin: 0 0;
    background: #e1e1e1;
    z-index: -1;
}

.homenews-right ul li a .inner {
    flex: 1;
    min-width: 0;
    padding: 15px 10px;
}

.homenews-right ul li a .inner h3 {
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.homenews-right ul li a .inner p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0;
}

.homenews-right ul li a:hover {
    background: #d9261c;
}

.homenews-right ul li a:hover .inner h3 {
    color: #fff;
}

.homenews-right ul li a:hover .inner p {
    color: #fff;
}

.homenews-right ul li a:hover .date::after {
    background: #000;
}

.footer-top {
    background: #26393f;
    padding: 20px 0;
}

.footer-top-box {
    display: flex;
    align-items: center;
}

.footer-top-box i {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 2px solid #d9261c;
    border-radius: 100%;
    padding: 5px;
    line-height: 20px
}

.footer-top-box p {
    flex: 1;
    margin: 0;
    color: #eee;
    padding-left: 15px;
}

.footer-bottom {
    background: #212f32;
    padding: 30px 0 15px;
}

.footer-title {
    position: relative;
}

.footer-title h3 {
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}

.footer-title .line {
    position: absolute;
    top: 100%;
    left: 0;
    height: 1px;
    background: #ccc;
    width: 100%;
}

.footer-title .line:after {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    height: 3px;
    width: 15px;
    background: #fff;
}

.footer-inner ul {
    margin-top: 10px;
}

.footer-inner ul li {
    margin-bottom: 5px;
}

.footer-inner ul li a {
    color: #bbb;
    font-size: 12px;
}

.footer-inner ul li a:hover {
    color: #fff;
    text-decoration: underline;
}


.footer-contact li {
    display: flex;
    color: #bbb;
    font-size: 12px;
    text-align: flex-start;
}

.footer-contact li.tel a {
    font-size: 14px;
    color: #d9261c;
    font-weight: 700;
}

.footer-contact li b {
    flex: 0 0 45px;
    font-weight: 300;
}

.footer-contact li span {
    flex: 1;
}


.footer-bottom .copyright {
    padding: 10px 0;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    margin-top: 30px;
}

.footer-bottom .copyright p {
    font-size: 12px;
    margin-bottom: 0;
    color: #bbb;
}

.bread {
    background-position: center;
    background-size: cover;
    /* height: 600px; */
}

.pageinner {
    display: flex;
    margin-top: -80px;
    margin-bottom: 60px;
}

.pageinner-left {
    flex: 0 0 20%;
}

.pageinner-left .sidebar-title {

    color: #fff;
    height: 235px;
    position: relative;
    z-index: 1;


}

.pageinner-left .sidebar-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 435px;
    height: 235px;
    background: linear-gradient(45deg, rgba(217, 38, 28, 0) 8%, rgba(217, 38, 28, 1) 8%, rgba(217, 38, 28, 1) 91.8%, rgba(217, 38, 28, 0) 92%);
    z-index: -3;

}

.pageinner-left .sidebar-bg {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 435px;
    height: 235px;
    background: url(../images/sidebar-bg.png) no-repeat -25px bottom;
    z-index: -2;

}

.pageinner-left .sidebar-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    border-style: solid;
    border-color: transparent transparent #fff #fff;
    border-width: 28px;
    z-index: -1;

}

.pageinner-left .sidebar-title h3 {
    margin: 0;
    padding: 150px 0 0 50px;
}

.pageinner-left .sidebar-list {
    padding-left: 14px;
    position: relative;
}

.pageinner-left .sidebar-list::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 14px;
    background: #f1f1f1;
    z-index: 99;
}

.pageinner-left .sidebar-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: -30px;
    height: 100px;
    width: 14px;
    background: #f1f1f1;
    z-index: 100;
    transform: skewY(45deg)
}

.pageinner-left .sidebar-list ul li {
    position: relative;
    z-index: 999;
}

.pageinner-left .sidebar-list ul li::after {
    content: "";
    position: absolute;
    left: -14px;
    top: calc(50% - 15px);
    width: 0;
    height: 30px;
    background: #d9261c;
    transition: width 0.3s
}

.pageinner-left .sidebar-list ul li a {
    display: block;
    padding: 20px 0;
    margin: 0 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.pageinner-left .sidebar-list ul li:hover::after,
.pageinner-left .sidebar-list ul li.active::after {
    width: 16px;
}

.pageinner-left .sidebar-list ul li:hover a,
.pageinner-left .sidebar-list ul li.active a {
    color: #d9261c;
}

.pageinner-right {
    flex: 1;
    background: #f7f7f7;
    margin-top: 30px;
    position: relative;
    z-index: 99;
    padding: 30px;
    padding-top: 0;
    box-shadow: -6px -6px 4px rgba(0, 0, 0, 0.1);
}

.bread-inner {
    padding: 10px 0;
    margin-bottom: 30px;
    border-bottom: 1px dashed #ddd;
}

.bread-inner ul {
    display: flex;
    justify-content: flex-end;
}

.bread-inner ul li span {
    color: #d9261c;
    font-weight: 600;
}

.bread-inner ul li .bread-inner-home {
    margin-right: 5px;
    color: #d9261c;
}

.bread-inner ul li::after {
    content: "\f105";
    display: inline-block;
    font-family: 'FontAwesome';
    margin: 0 10px;
}

.bread-inner ul li:last-child::after {
    display: none;
}


.about-strong {
    color: #d9261c;
    font-size: 16px;
}

.about-image {
    margin-bottom: 15px;
}


.certificate-box {
    position: relative;
    margin-bottom: 30px;
}

.certificate-box-plus {
    position: absolute;
    background: rgba(217, 38, 28, 0.7);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.certificate-box-plus i {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transform: scale(0)
}

.certificate-box:hover .certificate-box-plus {
    opacity: 1;
    visibility: visible;
}

.certificate-box:hover .certificate-box-plus i {
    transform: scale(1);
    transition: all 0.3s 0.3s;
}


.about-title h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: #d9261c;
}


.culture-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.culture-list li i {
    margin-right: 5px;
    color: #d9261c;
}




table.tftable {
    font-size: 14px;
    color: #333333;
    width: 100%;
    border-width: 1px;
    border-color: #999;
    border-collapse: collapse;
    font-weight: 500;

}

table.tftable th {
    font-size: 14px;
    background-color: #999;
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #999;
    text-align: center;
    color: #fff;
}

table.tftable tr th:first-child {
    width: 60%;
    text-align: left;
}

table.tftable tr td:first-child {
    text-align: left;
}

table.tftable tr {
    background-color: #ffffff;
}

table.tftable tr:hover {
    background-color: #f3f8a4;
}

table.tftable td {
    font-size: 14px;
    border-width: 1px;
    padding: 15px 8px;
    border-style: solid;
    border-color: #999;
    line-height: 14px;
    text-align: center;
}

.contact {
    background: url(../images/contact-bg.jpg) no-repeat center/cover;
    height: 52.1vw;
    padding-top: 8%;
    overflow: hidden;
}

.contact .container {
    height: 100%;
}

.contact .container .row {
    height: 100%;
}

.contact-inner {
    background: #fff;
    height: 100%;
    padding: 30px 20px;
    padding-bottom: 0;
}

.contact-inner h4 {
    margin-bottom: 10px;
}

.contact-inner h3 {
    color: #d9261c;
    margin-bottom: 10px;
    font-family: fantasy;
    font-weight: 300;
    font-size: 30px;
}

.contact-inner h3 i {
    margin-right: 8px;
    line-height: 20px;
}

.contact-inner h3::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #222;
    margin-top: 10px;
}

.contact-inner ul {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.contact-inner ul li b {
    font-size: 18px;
}

.contact-inner ul:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


.contact-feedback h2 {
    color: #fff;
}

.contact-feedback h5 {
    color: #fff;
    font-weight: 300;
}


#feedback {
    position: relative;
    z-index: 1;
    padding: 30px;
}

#feedback::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2000px;
    height: 100%;
    z-index: -1;
    background: rgba(217, 38, 28, 0.8);
}

.news-list {
    margin-bottom: 20px;
    padding: 30px;
    border: 1px solid #e8e8e8;
    background: #fff;
    display: flex;
}

.news-list .image {
    flex: 0 0 240px;
    padding: 5px;
    border: 1px solid #e8e8e8;
}

.news-list .text {
    flex: 1;
    padding-left: 30px;
}

.news-list .text h4 {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 300;
}

.news-list .text h4 a {
    color: #000;
}

.news-list .text h4 a:hover {
    color: #d9261c;
}

.news-list .text h4::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #e5e5e5;
    margin-top: 15px;
}

.news-list .text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #999;
    margin-bottom: 20px;
}

.news-list .text span {
    color: #bbb;
    font-size: 13px;
}

.news-list .text span i {
    margin-right: 8px;
}


.blog-single-page-content {
    background: #fff;
}

.blog-single-page-content .single-blog-post-content .content {
    padding: 20px;
    border: 1px solid #eee;
}

.blog-single-page-content .single-blog-post-content .content h4 {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.blog-single-page-content .single-blog-post-content .content p {
    color: #666;
    font-size: 15px;
    font-weight: 300;
}

.blog-single-page-content .single-blog-post-content .content .blog-line {
    height: 1px;
    background: #eee;
    width: 80%;
    margin: 0 auto;
    margin: 5px 0 10px;
}

.blog-single-page-content .single-blog-post-content .content .blog-icon {
    text-align: center;
}

.blog-single-page-content .single-blog-post-content .content .blog-icon span {
    color: #888;
    margin: 0 10px;
    display: inline-block;
}

.blog-single-page-content .single-blog-post-content .content .blog-icon span a {
    color: #888;
}

.blog-single-page-content .single-blog-post-content .content .blog-icon span a:hover {
    color: #d9261c;
}



.details-footer {
    margin-top: 15px;
    font-size: 14px;
}

.details-footer-left {
    float: left;
}

.details-footer-right {
    float: right;
}

.details-footer a {
    color: #888;
    display: inline-block;
}

.details-footer a span {
    display: inline-block;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.details-footer a:hover {
    color: #d9261c;
}

.case-list {
    margin-bottom: 30px;
    padding: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
}

.case-list>span>a {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    background: rgba(217, 22, 28, .7);
    z-index: 99;
    color: #fff;
}

.case-list>a {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 100%;
    background-position: center;
    background-size: cover;
}

.case-list>a h4 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    font-size: 15px;
    line-height: 34px;
    transition: all 0.3s;
}

.case-list>a:hover h4 {
    bottom: calc(50% - 17px);
}

.case table {
    color: #666;
}


/*产品*/
.prolist>li {
    width: 66.66%;
    min-width: 680px;
    border: 1px solid #e8e8e8;
    margin-bottom: 25px;
    background: #fff;
    position: relative;
    padding: 25px;
}

.prolist>li:before,
.prolist>li:after {
    content: '';
    position: absolute;
}

.prolist>li:before {
    width: 82px;
    height: 103px;
    background: url(../images/arrow.png) no-repeat right top;
    bottom: -26px;
}

.prolist>li:after {
    width: 100%;
    height: 17px;
    background: url(../images/bg-shadow.png) no-repeat center bottom;
    background-size: 100% 100%;
    top: 100%;
    left: 0;
    z-index: -1;
}

.prolist .listtext {
    color: #444;
}

.prolist .listtext p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    margin-bottom: 0;
}

.prolist .listtext .title {
    font-size: 16px;
    font-weight: 300;
    color: #222;
    margin-bottom: 10px;
    display: block;
}

.prolist .listtext .title:hover {
    color: #d9261c;
}

.prolist li:first-child .listtext ul {
    display: flex;
    flex-flow: wrap;
}

.prolist li:first-child .listtext ul li {
    flex: 0 0 50%;
}

.prolist .listtext ul li a {
    display: inline-block;
    color: #888;
    font-size: 16px;
    line-height: 22px;
}

.prolist .listtext ul li a:hover {
    color: #d9261c;
    text-decoration: underline;
}

.prolist>li:nth-child(odd),
.prolist>li.profl {
    float: left;
}

.prolist>li:nth-child(even),
.prolist>li.profr {
    float: right;
}

.prolist>li:nth-child(odd):before,
.prolist>li.profl:before {
    left: 100%;
    margin-left: 1px;
}

.prolist>li:nth-child(even):before,
.prolist>li.profr:before {
    right: 100%;
    margin-right: 1px;
    background-position: left top;
}

.prolist>li:last-child:before,
.prolist>li.lastone:before {
    display: none;
}

@media screen and (max-width: 820px) {
    .prolist>li {
        width: 100%;
        min-width: auto;
        min-width: initial;
    }

    .prolist>li:before {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    .prolist {
        text-align: justify;
        text-justify: distribute-all-lines;
        letter-spacing: 0px;
        font-size: 0px;
    }

    .prolist:after {
        content: '';
        height: 0px;
        width: 100%;
        display: inline-block;
        overflow: hidden;
    }

    .prolist .line {
        display: inline-block;
        height: 0px;
        overflow: hidden;
    }

    .prolist>* {
        text-align: left;
        font-size: 14px;
    }

    .prolist .box {
        display: inline-block;
        vertical-align: top;
    }

    .prolist.box {
        text-align: justify;
    }

    .prolist>li img,
    .prolist>li .listtext {
        width: auto;
    }

    .prolist>li .listtext {
        padding: 6px 0;
    }
}



.ribbon {
    display: inline-block;
    margin-bottom: 30px;
}

.ribbon:after,
.ribbon:before {
    margin-top: 0.5em;
    content: "";
    float: left;
    border: 1.5em solid #eee;
}

.ribbon:after {
    border-right-color: transparent;
}

.ribbon:before {
    border-left-color: transparent;
}

.ribbon a:link,
.ribbon a:visited {
    color: #000;
    text-decoration: none;
    float: left;
    height: 3.5em;
    overflow: hidden;
}

.ribbon span {
    background: #eee;
    display: inline-block;
    line-height: 3em;
    padding: 0 1em;
    margin-top: 0.5em;
    position: relative;
    -webkit-transition: all 0.2s;
    /* Saf3.2+, Chrome */
    -moz-transition: all 0.2s;
    /* FF4+ */
    -ms-transition: all 0.2s;
    /* IE10 */
    -o-transition: all 0.2s;
    /* Opera 10.5+ */
    transition: all 0.2s;
    color: #444;
}

.ribbon a span i {
    margin-right: 5px;
}

.ribbon a:hover span,
.ribbon a.active span {
    background: #d9261c;
    margin-top: 0;
    color: #fff;
}

.ribbon span:before {
    content: "";
    position: absolute;
    top: 3em;
    left: 0;
    border-right: 0.5em solid #9B8651;
    border-bottom: 0.5em solid #eee;
}

.ribbon span:after {
    content: "";
    position: absolute;
    top: 3em;
    right: 0;
    border-left: 0.5em solid #9B8651;
    border-bottom: 0.5em solid #eee;
}

.goods-content>div {
    display: none;
    overflow: hidden;
}

.goods-content>div.active {
    display: block;
}

.pagination ul li {
    display: inline-block;
    padding: 5px 12px;
    background: #eee;
    margin-right: 5px;
    border-radius: 3px;
    margin-top: 15px;
}

.pagination ul li.active {
    background: #d9261c;
    color: #fff;
}



#valves-carousel-wrapper {
    width: 100%;
    height: 560px;
    position: relative;
}

#valves-carousel-wrapper .container {
    height: 100%;
    position: relative;
}

#valves-carousel-container {
    position: absolute;
    top: 20px;
    left: 0;
    width: 500px;
    height: 500px;
    transform: rotate(-90deg);
}

#valves-carousel-container:before {
    content: "";
    background: #eaeff3;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#valves-carousel-container:after {
    content: "";
    background: url(../images/goods-bg.jpg) center/cover no-repeat;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    height: 66%;
    width: 66%;
    margin-top: -33%;
    margin-left: -33%;
    position: absolute;
    top: 50%;
    left: 50%;
}

#valves-carousel-container:after,
#valves-carousel img,
#valves-carousel-buttons {
    transform: rotate(90deg);
}

#valves-carousel {
    width: 500px;
    height: 500px;
    overflow: visible !important;
}

#valves-carousel img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 120px;
    height: 120px;
    background: #fff;
}

#valves-carousel .item {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

#valves-carousel .item.active {
    border: 5px solid #d9261c;
}

#valves-carousel-buttons {
    position: absolute;
    right: 45%;
    bottom: -110px;
    z-index: 2;
}

#valves-carousel-buttons>a {
    width: 55px;
    height: 55px;
    display: block;
    background: url(../images/icon-arrow-sprite.png) no-repeat;
    background-position: 0 0;
    transition: background 0s;
    -moz-transition: background 0s;
    -webkit-transition: background 0s;
    -o-transition: background 0s;
}

#valves-carousel-buttons a.prev {
    -moz-transform: rotate(-28deg);
    -webkit-transform: rotate(-28deg);
    -o-transform: rotate(-28deg);
    -ms-transform: rotate(-28deg);
    transform: rotate(-28deg);
    background-position: 27px 0;
}

#valves-carousel-buttons a.next {
    -moz-transform: rotate(207deg);
    -webkit-transform: rotate(207deg);
    -o-transform: rotate(207deg);
    -ms-transform: rotate(207deg);
    transform: rotate(207deg);
}

#valves-carousel-buttons a:hover {
    background-position: -53px 0;
}

#valves-carousel-buttons a.next:hover {
    background-position: -80px 0;
}

#valves-content {
    width: 60%;
    float: right;
    padding: 0 0 0 30px;
    height: 100%;
}

#valves-content .mobile-valves {
    position: relative;
    margin-bottom: 50px;
}

#valves-content .mobile-valves:before {
    content: "";
    position: absolute;
    left: -50px;
    top: calc(50% - 60px);
    width: 120px;
    height: 120px;
    border: 5px solid #d9261c;
}

#valves-content .mobile-valves h2 {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: 300;
    color: #222;
    background: #f4f4f4;
    margin: 0;
    padding-bottom: 10px;
}

#valves-content .mobile-valves p {
    position: relative;
    z-index: 1;
    background: #f4f4f4;
}

#valves-content .valves-description {
    margin-left: 60px;
    position: relative;
    height: 100%;
}

#valves-content .valves-description h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

#valves-content .valves-description>div {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

#valves-content .valves-description>div>.mask {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -2;
    text-align: right;
}

#valves-content .valves-description>div>.mask img {
    width: 400px;
}

#valves-content .valves-description .active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
}

#valves-content .valves-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
}

#valves-content .box-btn {
    display: inline-block;
    padding: 6px 20px;
    border: 2px solid #d9261c;
    color: #d9261c;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#valves-content .box-btn i {
    margin-left: 4px;
}

#valves-content .box-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    background: #d9261c;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

#valves-content .box-btn:hover:after {
    height: 260%;
    opacity: 1;
}

#valves-content .box-btn:hover,
#valves-content .box-btn:active {
    color: #fff;
}


.homegoods {
    padding: 100px 0 60px;
}



.sidebar-contact {
    margin-top: 50px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.05);
    font-size: 12px;
}

.sidebar-contact-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #d9161c;
    margin: 0;
    padding: 12px 30px;
}

.sidebar-contact-inner {
    border: 1px solid #e8e8e8;
    border-top: none;
}

.sidebar-contact-inner .tel {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 0;
}

.sidebar-contact-inner .tel-text {
    padding-left: 10px;
}

.sidebar-contact-inner .tel-text i {
    color: #3e4b5b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

.sidebar-contact-inner .tel-text span {
    color: #3e4b5b;
    font-size: 22px;
    font-family: fantasy;
    font-weight: 300;
    display: block;
    line-height: 1;
}

.sidebar-contact-inner ul {
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
    margin: 0 15px;
}



.sidebar-contact-inner ul li p,
.sidebar-contact-inner ul li a {
    color: #999;
    margin: 0;
}

.sidebar-contact-add {
    margin: 0 15px;
    padding: 15px 0;
}

.sidebar-contact-add b {
    font-size: 14px;
    color: #3e4b5b;
    display: block;
    margin-bottom: 5px;
}

.sidebar-contact-add p {
    color: #999;
}

.color {
    padding: 60px 0;
}

.color-title {
    text-align: center;
    margin-bottom: 30px;
}

.color-list {
    display: flex;
}

.color-list li {
    flex: 0 0 25%;
    margin-left: 1px;

}

.color-list li .color-img {
    position: relative;
    overflow: hidden;
}

.color-list li h3 {
    font-size: 14px;
    text-align: center;
    margin: 15px 0;
}

.color-list li .wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    background: rgba(217, 38, 28, 0.8);
}

.color-list li .wrap a {
    height: 48px;
    width: 48px;
    margin: 0 10px;
    border-radius: 100%;
    border: 2px solid #fff;
    line-height: 45px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    transition: transform .5s;

}

.color-list li .wrap a.eye {
    transform: translateX(-120px);
}

.color-list li .wrap a.download {
    transform: translateX(120px);
}

.color-list li .color-img:hover .wrap {
    opacity: 1;
    visibility: visible;
}

.color-list li .color-img:hover .wrap a {
    transform: translateX(0);
}

.color-list li .wrap a:hover {
    color: #d9161c;
    background: #fff;
}

.team h2 {
    text-align: center;
    font-size: 18px;
    margin: 30px 0 15px;
}

.team img {
    margin-bottom: 5px;
}

.certificate .hometab {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.certificate .hometab li a {
    display: block;
    padding: 6px 30px;
    margin: 0 20px;
    font-size: 14px;
    font-weight: 700;
    background: #eee;
    color: #aaa;
    box-shadow: 0 4px 4px #bbb;
    transform: translateY(0);
    transition: all 0.3s;
}

.certificate .hometab li a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 4px #bbb;
}

.certificate .hometab li.active a {
    transform: translateY(-4px);
    box-shadow: 0 8px 4px #bbb;
    color: #d9161c;
}

.certificate .home-content>div {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.certificate .home-content>div.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
    height: auto;
}


.certificate-list {
    margin-bottom: 30px;
}

@media (min-width:768px) {
    .hidden-lg {
        display: none !important;
    }
}

@media (max-width:768px) {

    #feedback::after,
    .ribbon:after,
    .ribbon:before,
    .pageinner-left .sidebar-list ul li::after,
    .bread-inner,
    .sidebar-contact,
    .dropdown-list,
    #valves-carousel-container:before,
    #valves-carousel-container:after,
    .hidden-xs {
        display: none !important;
    }

    #valves-carousel-wrapper,
    #valves-carousel,
    #valves-carousel-container {
        width: auto;
        height: auto;
    }

    #valves-carousel-container,
    #valves-carousel-container:after,
    #valves-carousel img,
    #valves-carousel-buttons {
        transform: rotate(0);
    }

    #valves-carousel-container {
        position: relative;
    }

    #valves-carousel {
        display: flex;
        flex-flow: wrap;
        justify-content: space-around;
    }

    #valves-carousel .item {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        margin: 20px 0;

    }

    #valves-carousel img {
        width: 140px;
        height: 140px;
    }

    .list .tab-content>.tab-pane {
        padding: 60px 0 0 0;
    }

    .homeabout-inner .video-wrap {
        float: none;
        margin: 0 auto 20px;
    }

    .homeabout {
        margin-bottom: 50px;
    }

    .homegoods {
        padding: 60px 0 50px;
    }

    #valves-carousel .item a {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 50%;
    }

    #valves-carousel .item a h6 {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        line-height: 32px;
        background: rgba(0, 0, 0, .7);
        color: #fff;
        text-align: center;
        margin: 0;
    }

    .footer-top-box p {
        font-size: 12px;
        padding-left: 5px;
    }

    .footer-top-box i {
        border: none;
        width: 24px;
        height: 24px;
        padding: 0;
    }

    .header .navbar {
        position: static;
    }

    .header .navbar-toggler {
        border: 1px solid #fff;
    }

    .header .navbar-toggler .navbar-toggler-icon {
        color: #fff;
        font-size: 18px;
        height: 22px;
        width: 20px;
    }

    .header .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        width: 150px;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .header .navbar-nav>.nav-item>a {
        display: block;
        display: block;
        padding: 5px 30px;
        border-bottom: 1px dashed #ddd;
        position: relative;
    }

    .header .navbar-nav>.nav-item>a:after {
        content: "";
        position: absolute;
        left: 15px;
        top: calc(50% - 2px);
        width: 5px;
        height: 5px;
        border-radius: 100%;
        background: #d9261c;
    }

    .pageinner {
        flex-flow: wrap;
    }

    .pageinner-left {
        flex: 0 0 100%;
    }

    .sidebar {
        overflow: hidden;
    }

    .sidebar-list ul {
        display: flex;
        flex-flow: wrap;
    }

    .sidebar-list ul li {
        flex: 0 0 33.33%;
    }

    .pageinner-left .sidebar-list ul li a {
        padding: 8px 0;
        font-size: 12px;
    }

    .pageinner-left .sidebar-title,
    .pageinner-left .sidebar-title::after,
    .pageinner-left .sidebar-bg {
        height: 150px;
    }

    .pageinner-left .sidebar-title h3 {
        padding: 100px 0 0 50px;
    }

    .bread {
        height: 300px;
    }

    .pageinner-right {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .ribbon span {
        padding: 0 .8em;
    }

    .news-list {
        flex-flow: wrap;
    }

    .news-list .image {
        flex: 0 0 100%;
    }

    .news-list .text {
        padding: 0;
    }

    .contact {
        height: auto;
    }

    #feedback {
        background: rgba(217, 38, 28, 0.8);
    }

    .contact-inner {
        padding-bottom: 30px;
        margin-top: 50px;
        height: auto;
    }
}


.footer-list {
    display: flex;
    margin: 0 -15px;
}

.footer-inner {
    padding: 0 15px;
    flex: 1;
}