@media screen and (max-width: 2560px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1540px;
  }
}
@media screen and (max-width: 1920px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1600px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1366px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1200px;
  }
}
@redc:#2f63bd;
@bluec:#2f63bd;
@yellowc:#fdda04;
.carousel{
  .carousel-inner{
    .carousel-item{
      position: relative;
      .carousel-caption{
        position: absolute; left: 20%; top: 50%; transform: translateY(-50%);

        h1{
          font-size: 50px;
          @media screen and(max-width: 768px){
          display: none;
        }
        }
        h5{text-align: left;font-size: 46px;line-height: 2em;
          font-weight: 600;
          position: relative;
          @media screen and(max-width: 768px){
            display: none;
          }
          &::before{
            content: "";
            width: 120px;
            height: 3px;
            background: #ffffff;
            position: absolute;
            left: 0px;
            bottom: 0px;
          }
        }
        p{text-align: left;font-size: 16px;line-height: 1.6em;
          margin-top: 30px;
          @media screen and(max-width: 768px){
            display: none;
          }
        a{
          padding: 12px 60px;
          background: @redc;
          color: #ffffff;
          text-decoration: none;
          border-radius: 20px;
          &:hover{
            background:darken(@redc,10%);
          }
        }
        }
      }

      .imgactive{
        transition: 1s 2.7s; transform: perspective(1000px) translate3d(0, 0, 110px);
      }
      &.active{
        .imgactive{
          transition: 3s 0s; transform: perspective(1000px) translate3d(0, 0, 0px);
        }
      }
    }
  }
  button{
    &.carousel-control-prev{
      background: transparent;border: none;
    }
    &.carousel-control-next{
      background: transparent;border: none;
    }
  }
}
.card {
  transition: all ease-out 0.5s;
  &:hover {
    transform: translateY(-20px);
    cursor: pointer;
  }
}
.media {
  transition: all ease-out 0.5s;
  &:hover {
    transform: translateY(-20px);
    cursor: pointer;
  }
}
.w100m0autop0{
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.w100m0auto{
  width: 100%;
  margin: 0 auto;
}
header{
  .navbar{
    height: 100px;
    background: rgba(0,0,0,0.3);
    @media screen and(max-width: 768px){
      height: 50px;
      background: rgba(255,255,255,0.5);
    }

    .w100m0auto();
    padding: 0px 10%;
    .navbar-brand{
      &>img[src='content/images/logo.png']{
        display: none;
      }
      &>img[src='content/images/wlogo.png']{
        display: block;
      }
      @media screen and(max-width: 768px){
        img{
          max-width: 160px;
        }
      }
    }
    .navbar-collapse{
      .navbar-nav{
        .nav-item{
          margin: 0 auto;
          padding: 0 15px;
          border-bottom: transparent solid 2px;
          &.active{
            border-bottom: @redc solid 2px;
          }
          &:hover{
            border-bottom: @redc solid 2px;
          }
          .nav-link{
            color: #ffffff; text-decoration: none;
          }
        }
      }
      .navbar-text{
        margin-left: 20px;
        ul{
          .w100m0autop0(); display: flex; flex-direction: row; justify-content: flex-start;
          @media screen and(max-width: 768px){
            li{
              &:nth-child(4){
                width: 100%;
              }
            }
          }
          li{
            list-style-type: none; margin-right: 4px;
            a{
              img{
                border: rgba(255,255,255,0.1) solid 1px; vertical-align: bottom;
                margin-top: 5px;
              }
            }
            i{
              color: #ffffff;}
            form{
              position: relative;
              @media screen and (min-width: 1366px) and (max-width: 1600px){
                display: none;
              }

              input{
                width: 100%;}
              button{
                position: absolute; right: 0px;
                border: transparent;
                &:hover{
                  background: transparent;
                }
                i{
                  color: #333333;
                }
              }
            }
          }
        }
      }
      @media screen and(max-width: 768px){
        background: #333333;
      }
    }
    .navbar-toggler{ background: #333333;
      .navbar-toggler-icon{
        @media screen and(max-width: 768px) {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }
      }
    }

    &.bg-light{
      height: 80px;
      background: rgba(255,255,255,1) !important;box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
      @media screen and(max-width: 768px){
        height: 50px;}
      .w100m0auto();
      padding: 0px 10%;
      .navbar-brand{
        &>img[src='content/images/wlogo.png']{
          display: none;
        }
        &>img[src='content/images/logo.png']{
          display: block;
        }
        @media screen and(max-width: 768px){
          img{
            max-width: 150px;
          }
        }
      }
      .navbar-collapse{
        .navbar-nav{
          .nav-item{
            margin: 0 auto;
            padding: 0 15px;
            border-bottom: transparent solid 2px;
            &.active{
              border-bottom: @redc solid 2px;
            }
            &:hover{
              border-bottom: @redc solid 2px;
            }
            .nav-link{
              color: #666666; text-decoration: none;
              @media screen and(max-width: 768px){
                color: #ffffff;
              }
            }
          }
        }
        .navbar-text{
          margin-left: 20px;
          ul{
            .w100m0autop0(); display: flex; flex-direction: row; justify-content: flex-start;
            @media screen and(max-width: 768px){
              flex-direction: row;
              flex-wrap: wrap;
            }
            li{
              list-style-type: none; margin-right: 4px;

              a{
                img{
                  border: #f1f1f1 solid 1px;
                  @media screen and(min-width: 768px){
                    margin-top: 5px;
                  }
                }
              }
              i{
                color: #666666;
                @media screen and(max-width: 768px){
                  color: #ffffff;
                }
              }
              form{
                position: relative;
                input{
                  width: 100%;}
                button{
                  position: absolute; right: 0px;
                  border: transparent;
                  &:hover{
                    background: transparent;
                  }
                }
              }
              @media screen and(max-width: 768px){
                margin-bottom: 10px;
                form{
                  width: 100%;position: relative;
                  input{width: 100%;}
                  button{
                    position: absolute; right: 0px;
                    border: transparent;
                    &:hover{
                      background: transparent;
                    }
                  }
                }
                &:nth-child(4){
                  width: 100%;
                }
              }

            }
          }
        }
        @media screen and(max-width: 768px){
          background: #333333;
        }
      }
    }
  }
  .showsearch{
    cursor: pointer;
  }
}
.index-page{
  a{
    text-decoration: none;
    &.more{
      padding: 10px 60px;
      border-radius: 30px;
      background: @redc;
      color: #ffffff;
      font-size: 16px;
      border: #ffffff solid 2px;
      &:hover{
        background: darken(@redc,10%);
        border: @redc solid 2px;
      }
    }
  }
    &>.index-about{
      width: 100%;
      margin: 0 auto;
      padding: 80px 0;
      background: url("../images/index-about-bg.jpg") center center no-repeat;
      @media screen and(max-width: 768px){
        padding: 30px 0;
        background: url("../images/index-about-bg0.jpg") center center no-repeat;
      }
      .container{
        .row{
          .col-md-6{

            h2{
              font-size: 38px;
              position: relative;
              margin-bottom: 60px;
              &::before{
                content:"";
                position: absolute;
                left: 0;
                bottom:-20px;
                width: 80px;
                height: 2px;
                background: @redc;
                /*transform: translateX(-50%);*/

              }
            }
            p{
              font-size: 14px;
              color: #666666;
              line-height: 2.4em;
              @media screen and(max-width: 768px){
                line-height: 1.8em;
              }
            }
            &:nth-child(2){
              height: calc(~"100vh - 160px");
              @media screen and(max-width: 768px){
                display: none;
              }
            }
          }
        }
      }
    }
    &>.index-service{
      width: 100%;
      margin: 0 auto;
      padding: 80px 0;
      background: url("../images/index-service-bg22.jpg") center center no-repeat;
      @media screen and(max-width: 768px){
        padding: 40px 0;
        height: auto;
        background-size: cover;
        background: rgba(0,0,0,0.8);
      }
        .container{
          h2{
            margin-top: 0px;
            text-align: left;
            font-size: 38px;
            position: relative;
            margin-bottom: 60px;
            color: @redc;
            @media screen and(max-width: 768px){
              margin-top: 0px;
              margin-bottom: 30px;
              font-size: 24px;
            }
            &::before{
              content:"";
              position: absolute;
              left: 0%;
              bottom:-20px;
              width: 80px;
              height: 2px;
              background: @redc;
              /*transform: translateX(-50%);*/
            }
            span{
              float: right;
              a{
                font-size: 16px;
                color: #666666;
                border: @redc 1px solid;
                padding: 10px 36px;
              }
            }
          }
          &>.more{
            width: 100%;
            margin: 0 auto;
            padding: 0;
            text-align: center;
            padding-top: 100px;
            @media screen and(max-width: 768px){
              padding-top: 30px;
            }
          }
        }
      &>ul{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        @media screen and(max-width: 768px){
          flex-wrap: wrap;
        }
        li{
          width: 16.66%;
          list-style-type: none;
          /*margin: 0 auto;*/
          padding: 0;
          text-align: center;
          background-size: cover;
          height: 424px;
          cursor: pointer;
          border-right: #ffffff 2px solid;
          display: block;
          position: relative;
         /* transition: all 0.5s ease-out;*/
          z-index: 1;
          @media screen and(max-width: 768px){
            width: 33.33%;
            height: 220px;
          }
          &::before{
            position: absolute;
            content:'';
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            z-index: 0;
            background: rgba(0,0,0,0.8);
            pointer-events: none;
            cursor: pointer;
          }
          &:last-child{
            border-right: 0;
          }
          &.active{
            &::before{
              background: @redc;
              z-index: 0;
              pointer-events: none;

            }
            width: 33.33%;
            @media screen and(max-width: 768px){
              width: 66.66%;
            }
            a{
              .pic{
                z-index: 2;
                position: relative;
               display: none;
              }
              .title{
                color: #ffffff;
                font-weight: bold;
                z-index: 2;
                line-height: 3em;
              }
              .desc{
                display: block;
                color: #ffffff;
                z-index: 2;
                padding: 20px;
              }
              .a{
                display: block;
              }
            }
            &:hover{
              cursor: pointer;
            }
          }
          &>a{
            display: flex;
            width: 100%;
            height: 100%;
            flex-direction: column;
            justify-content: center;
            .pic{
              z-index: 2;
              img{
                @media screen and(max-width: 768px){
                  width: 80%;
                  margin: 0 auto;
                }
              }
            }
            .title{
              color: #ffffff;
              font-weight: bold;
              z-index: 2;
              line-height: 3em;
            }
            .desc{
              display: none;
            }
            .a{
              display: none;
            }
          }
          &:hover{
            cursor: pointer;
          }
        }
      }
    }
    &>.index-advantage{
      width: 100%;
      margin: 0 auto;
      padding: 0px 0 0 0;
      .title{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        .container{
          margin: 0 auto;
          padding: 0;
          h2{
            font-size: 38px;
            margin: 50px 0 60px 0;
            padding: 0;
            line-height: 38px;
            height: 38px;
            @media screen and(max-width: 768px){
              font-size: 24px;
            }
            span{
              float: right;
              a{
                color: #666666;
                font-size: 16px;
                padding: 10px 30px;
                border: @redc solid 1px;
              }
            }
          }
          .menu{
            width: 100%;
            height: 80px;
            margin: 0 auto;
            padding: 0;
            @media screen and(max-width: 768px){
              height: auto;
            }
            ul{
              margin: 0 auto;
              padding: 0;
              display: flex;
              flex-wrap: nowrap;
              @media screen and(max-width: 768px){
                flex-wrap: wrap;
              }
              li{
                width: 16.66%;
                list-style-type: none;
                position: relative;
                display: flex;
                justify-content: center;
                line-height: 80px;
                height: 80px;
                align-content: center;
                align-self: center;
                align-items: center;
                cursor: pointer;
                @media screen and(max-width: 768px){
                  width: 50%;
                }
                &.active{
                  background: @redc;
                  img{
                    width: 40px;
                    height: 40px;
                    margin-right: 8px;
                  }
                  .icon1{
                    display: none;
                  }
                  .icon2{
                    display: block;
                  }
                  &::before{
                    content:"";
                    position: absolute;
                    left: 50%;
                    bottom: -10px;
                    width: 20px;
                    height: 20px;
                    background: @redc;
                    transform: rotate(45deg) translateX(-50%);

                    /*transform: rotate(45deg);*/
                  }
                  .word{
                    color: #ffffff;
                    .title{
                      background-color: transparent;
                    }
                  }
                }
                .word{
                  height: 80px;
                  line-height: 80px;
                  background-color: transparent;

                }
                .icon1{
                  display: block;
                  img{
                    width: 40px;
                    height: 40px;
                  }
                }
                .icon2{
                  display: none;
                }
                img{
                  width: 40px;
                  height: 40px;
                  margin-right: 8px;
                }
              }
            }
          }
        }
      }
      .advantage-content{
        width: 100%;
        margin: 0 auto;
        padding: 0px 0 0 0;
        background: url("../images/index-advantage-bg.jpg") center center no-repeat;
        .container{
          margin: 0 auto;
          padding: 0;
          .content{
            display: flex;
            @media screen and(max-width: 768px){
              flex-wrap: wrap;
            }
            .promise{
              width: 250px;
              height: 493px;
              padding: 60px 0 0 41px;
              background: rgba(0,0,0,0.5);
              @media screen and(max-width: 768px){
                width: 100%;
                display: none;
              }
              h3{
                font-size: 24px;
                color: #fefefe;
              }
              .intro{
                margin-top: 14px;
                font-size: 18px;
                color: #fefefe;
              }
              .line{
                width: 60px;
                height: 5px;
                margin-top: 36px;
                background-color: #fff;
                margin-bottom: 30px;
              }
              .strip{
                display: flex;
                align-items: center;
                margin-bottom: 15px;
                div{
                  width: 8px;
                  height: 8px;
                  margin-right: 10px;
                  background-color: #fff;
                }
                span{
                  font-size: 15px;
                  color: #fefefe;
                  line-height: 2em;
                }
              }
              .order{
                margin-top: 20px;
                width: 160px;
                height: 54px;
                color: #fefefe;
                font-size: 16px;
                line-height: 54px;
                text-align: center;
                display: block;
                transition: .2s;
                border: solid 1px #fff;
              }
            }
            .advantage-box{
              width: calc(~"100% - 260px");

              margin-left: 10px;
              @media screen and(max-width: 768px){
              width: 100%;
              clear: both;
                margin-left: 0px;
                margin-top: 30px;
            }
              .advantageSwiper{
                display: flex;
                justify-content: center;align-items: center;
                width: 650px;
                margin: 0 auto;
                padding: 0;
                margin-left: 100px;
                margin-top: 100px;
                .swiper-pagination-bullet-active{
                  background: @redc;
                }
                @media screen and(max-width: 768px){
                  width: 100%;
                  margin-left: 0;
                  margin-top: 0;
                }
                .swiper-wrapper{
                  width: 100%;
                  margin: 0 auto;
                  .swiper-slide{
                    .desc{
                      width: 650px;
                      background: #ffffff;
                      padding: 20px;
                      @media screen and(max-width: 768px){
                        width: 100%;
                      }
                      h2{
                        font-size: 24px;
                        color: @redc;
                      }
                      .intro{
                        margin-top: 10px;
                        font-size: 18px;
                      }
                      .line{
                        width: 100%;
                        height: 1px;
                        margin-top: 20px;
                        background-color: #ccc;
                      }
                      .detail{
                        margin-top: 20px;
                        font-size: 14px;
                        color: #666;
                        line-height: 32px;
                        text-align: justify;
                        display: -webkit-box;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                      }
                    }
                  }
                }
              }

            }
          }
        }
      }
    }
    &>.index-contact{
      width: 100%;
      margin: 0 auto;
      padding: 80px 0;
      background: url("../images/index-contact-bg.jpg") center center no-repeat;
      .container{
        h2{
          font-size: 38px;
          position: relative;
          text-align: center;
          color: #ffffff;
          &::before{
            content:"";
            position: absolute;
            left: 50%;
            bottom:-20px;
            width: 80px;
            height: 2px;
            background: @redc;
            transform: translateX(-50%);/**/

          }
        }
        ul{
          width: 100%;
          margin: 0 auto;
          padding: 0;
          display: flex;
          margin-top: 30px;
          li{
            width: 25%;
            text-align: center;
            list-style-type: none;
            a{
              display: flex;
              flex-direction: column;
              color: #ffffff;
              i{
                font-size: 20px;
              }
              em{
                font-style: normal;
              }
            }
          }
        }
      }
    }
    &>.index-news{
      background: #ffffff;
      width: 100%;
      padding: 80px 0;
      margin: 0 auto;
        .container{
          .title{
            width: 100%;
            margin-bottom: 70px;
            @media screen and(max-width: 768px){
              height: 100px;
              margin-bottom: 20px;
            }
            h2{
              font-size: 38px;
              color: @redc;
              span{
                float: right;

                @media screen and(max-width: 768px){
                  display: flex;
                  flex-wrap: wrap;
                }
                a{
                  font-size: 16px;
                  padding: 10px 40px;
                  text-decoration: none;
                  border:  @redc solid 3px;
                  border-radius: 36px;
                  color: @redc;
                  margin-top: 50px;
                  transition: 0.5s ease-out;
                  margin-right: 10px;
                  @media screen and(max-width: 768px){
                    margin-top: 10px;
                    margin-right: 3px;
                    font-size: 12px;
                    padding: 3px 6px;
                    width: calc(~"33.33% - 3px");
                    display: block;
                    text-align: center;
                  }
                  &:hover{
                    color: #ffffff;
                    background: @redc;
                  }
                  &.active{
                    color: #ffffff;
                    background: @redc;
                  }
                }
              }
              @media screen and(max-width: 768px){
                font-size: 28px;
              }
            }
          }
          .row{
            display: flex;
            .col-md-4{
              display: none;
              .card{
                background-color: transparent;
                border: none;
                @media screen and(max-width: 768px){
                  margin-bottom: 30px;
                }
                &>a{
                  img{
                    max-width: 100%;
                  }
                }
                a{
                  text-decoration: none;
                }
                .card-body{
                  width: 100%;
                  margin: 0 auto;
                  padding: 0;
                  .card-title{
                    line-height: 2em;
                    font-size: 16px;
                    color: #333333;
                    margin-top: 15px;
                    a{
                      color: #666666;
                      font-weight: 500;
                    }
                  }
                  .card-text{
                    a{
                      color: #999999;
                      span{
                        float: right;
                      }
                    }
                  }
                }
              }
            }
            &.active{
              display: flex;
              .col-md-4{
                display: block;
              }
            }
          }
        }
    }
}
footer{
  width: 100%;
  background: url("../images/footer-bg.jpg") top center no-repeat #111111;
  border-top: @redc solid 0px;
  /*  height: 60px;*/
  margin: 0 auto;
  padding: 0;
  @media screen and (max-width: 2560px) {
    background-size: cover;
  }
  .footer-link{
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    .container{
      .row{
        &:nth-child(1){
          border-bottom: rgba(255,255,255,0.05) solid 1px;
          margin-bottom: 20px;
        }
        .col-md-4{
          p{
            line-height: 2em;
            &:nth-child(2){
              color: #ffffff;margin-top: 30px;
            }
          }
          ul{
            margin: 0 auto;
            padding: 0;
            width: 100%;
            li{
              list-style-type: none; color: #ffffff;
              span{
                display: inline-block;
                width: 18px;
                i{
                  color: #ffffff;}
              }
              a{
                color: #ffffff;}

            }
          }
        }
        .col-md-2{
          ul{
            margin: 0 auto;
            padding: 0;
            width: 100%;
            li{
              list-style-type: none; color: #ffffff;
              a{
                color: #ffffff;}
            }
          }
          img{
            max-width: 110px;
            margin-bottom: 5px; border-radius: 4px;
          }
        }
        .col-md-6{
          display: flex;
          @media screen and(max-width: 768px){
              flex-direction: column;
          }
          .link{
            width: 33.33%;
            @media screen and(max-width: 768px){
              width: 100%;
            }
            h3{
              margin-left: 0;
              padding: 0;
            }
            ul{
              margin: 0 auto;
              padding: 0;
              width: 100%;
              li{
                list-style-type: none; color: #ffffff;
                a{
                  color: #ffffff;}
                i{
                  color: @redc;
                  margin-right: 10px;}
              }
            }
          }
        }
        &>div{
          h3{
            margin-bottom: 20px;
            font-size: 16px;
            color: #ffffff;
          }
          ul{
            li{
              line-height: 2em;
              font-size: 14px;
            }
          }
          @media screen and(max-width: 768px){
            margin-bottom: 30px;
          }
        }
      }
    }
  }
  .footer-copyright{
    width: 100%;
    margin: 0 auto;padding: 0px;
    border-top: 1px solid #424242;
  }
  .container{
    p{
      text-align: left;
      padding: 0;
      margin: 0 auto;
      color: #ffffff; line-height: 60px;
      font-size: 15px;
      @media screen and(max-width: 768px){
        span{display: none;}
      }
    }
  }
}
.bread{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: #f7f7f7;
  height: 66px;
  .container{
    p{
      margin: 0 auto;
      padding: 0;
      line-height: 66px;
      height: 66px;
      font-size: 16px;
      a{
        text-decoration: none;
        color: #333333;
        i{
          color: #9b9b9b;
        }
        &::after{
          content: "   >   ";
          color: #323232;
        }
      }
    }
  }
}
.ny-banner{
  position: relative;
  z-index: 2;
  img{
    max-width: 100%;
    @media screen and(max-width: 2560px){
      width: 100%;
    }
  }
}
.products-page{
  &>.title{
    margin: 50px auto;
    padding: 0;
    h2{
      text-align: center;
      font-size: 28px;
      color: #111111;
      font-weight: 600;
    }
    p{
      text-align: center;
      margin: 15px auto;
      i{
        font-size: 30px;
        color: @redc;
      }
    }
  }
  .container{
    .row{
      .col-md-3{
        @media screen and(max-width: 768px){
        }

        .title{
          width: 100%;
          margin: 0 auto;
          padding: 0;
            font-size: 20px;
          font-weight: bold;
          color: #111111;
          background: #233a88;
          h2{font-size: 30px;
            font-weight: 700;
            color: #ffffff;
          text-align: center;
            line-height: 1.6em;
          }
          h3{
            font-size: 16px;
            color: #ffffff;
            text-align: center;
            line-height: 1.6em;
            padding-bottom: 20px;
          }
        }
        ul{
          margin: 0 auto;
          padding: 0;
          background: #f3f3f3;
          &.class{

            &>li{
              line-height: 2.6em;
              list-style-type: none;
              padding: 0 15px;
              img{
                max-width: 100%;
                margin-top: 30px;
              }
              h4{
                color: @redc;font-size: 25px;
                font-weight: bold;
                text-align: center;
                line-height: 3em;
              }
              i{
                color: #999999;
                margin-right: 20px;
              }
              a{
                color: #555555;font-size: 16px; text-decoration: none;
              }
              &>ul{
                list-style-type: none;
                display: none;
                &>li{
                }
              }
              &.active{
                i{
                  color: @redc;
                }
                a{
                  color: @redc;
                }
                &>ul{
                  display: block;
                  padding-left: 35px;
                  margin: 10px auto;
                  li{
                    a{
                      color: #666666;
                    }
                  }
                }
              }
            }
          }
        }
      }
      .col-md-9{
        .products-list{
          display: flex;
          flex-wrap: wrap;
          .item{
            width: calc(~"33.33% - 12px");
            margin-bottom: 30px;
            margin-right: 18px;
            &:nth-child(3n){
              margin-right: 0;

            }
            .pic{
              width: 100%;
              img{
                max-width: 100%;
                border: #d1d1d1 solid 1px;
              }
            }
            p{
              text-align: center;
              line-height: 50px;
              height: 50px;
              overflow: hidden;
              text-overflow: ellipsis;
              a{
                color: #666666;
                font-size: 18px;
                font-weight: bold;
              }
            }
          }
        }
      }
    }
  }
}
.about-page{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fcfcfc;
  .container{
    &>.row{
      .col-md-3{
        .left-nav{
          width: 100%;
          position: relative;
          top:-60px;
          left: 0px;
          z-index: 100;

          .dl-nav{
            background: #ffffff;
            @media screen and(max-width: 768px){
              background-color: transparent;
            }
            dt{
              width: 100%;
              margin: 0 auto;
              padding: 0;
              display: block;
              height: 60px;
              background: @redc;
              color: #ffffff;
              padding-left: 20px;
              line-height: 60px;
              @media screen and(max-width: 768px){
                background: rgba(47,99,189,0.8);
              }
            }
            dd{
              height: 50px;
              line-height: 50px;
              border-bottom: #eeeeee solid 1px;
              padding-left: 15px;
              transition: 0.2s ease-out;
              margin: 0 auto;
              a{
                margin: 0 auto;
                padding: 0;
                font-size: 16px;
                color: #666666;
                text-decoration: none;
              }
              &.active{
                padding-left: 25px;
                a{
                  color: @redc;
                }
              }
              &:hover{
                padding-left: 25px;cursor: pointer;
              }
            }
          }
          .left-contact{
            margin-top: 50px;
            width: 100%;
            border-top: @redc 2px solid;
            background: #ffffff;
            h5{
              font-size: 16px;
              line-height: 50px;
              margin: 0 auto;
              padding: 0;
              height: 50px;
              padding-left: 20px;
            }
            .left-text{
              width: 100%;
              padding: 20px;
              font-size: 14px;
              color: #666666;
              h6{
                color: @redc;font-size: 14px;
              }
              p{line-height: 1.7em;font-size: 14px;}

            }
          }
        }
      }
      .col-md-9{
        &>.location{
          border-bottom: #dcdcdc 1px solid;
          h3{
            font-size: 16px;
            margin: 0 auto;
            padding: 0;
            line-height: 60px;
            margin-top: 20px;
            position: relative;
            &::before{
              content: "";
              position: absolute;
              left: 0;
              bottom: 0;
              width: 64px;
              height: 1px;
              background: @redc;
            }
            span{
              font-size: 14px; float: right;
              a{
                text-decoration: none;
                color: #666666;
              }
            }
          }
        }
        &>h1{
          text-align: center;
          font-size: 18px;
          border-bottom: #d4d4d4 dashed 1px;
          margin: 40px auto;
          line-height: 60px;
        }
        &>.rich-html{
          font-size: 14px;
          background: url("../images/rich-bg2.png") no-repeat top center;
          background-size: cover;
          .about{
            margin-bottom: 40px;
            margin-top: 30px;
            h3{
              font-weight: bold;
              font-size: 18px;
              padding: 0;
              margin: 0 auto;
              margin-top: 30px;
              line-height: 2em;
            }
            p{
              font-size: 17px;
              padding: 0;
              margin: 0 auto;
              line-height: 2em;
            }
            .container{
              .row{
                @media screen and(max-width: 768px){
                  &:nth-child(2){
                    margin-top: 30px;
                  .col-md-6{
                    p{
                      &:nth-child(1){
                        margin-top: 20px;
                      }
                    }
                  }
                  }
                }
                .col-md-6{
                  width: 50%;
                  padding: 0;
                  align-content: center;
                  align-items: center;
                  @media screen and(max-width: 768px){
                    width: 100%;
                  }
                  h2{
                    font-size: 20px;
                    padding-left: 20px;
                    font-weight: 600;
                  }
                  h3{
                    font-size: 18px;
                    padding-left: 20px;
                    position: relative;
                    margin-bottom: 20px;
                    line-height: 2.4em;
                    font-weight: 600;
                    &::before{
                      content:"";
                      position: absolute;
                      width: calc(~"100% - 60px");
                      height: 1px;
                      background: #dddddd;
                      left: 20px;
                      bottom: -10px;
                    }
                  }
                  p{
                    font-size: 16px;
                    padding-left: 20px;
                    padding-right: 20px;
                  }
                  img{
                    max-width: 100%;
                  }
                }
                .col-md-12{
                  font-size: 16px;
                  line-height: 2em;
                }
              }
            }
          }
          .contact{
            h3{font-size: 20px; text-align: center; line-height: 3em;
              font-weight: bold;}
            p{font-size: 16px;}

          }
          .maps{
            margin-bottom: 40px;
            border: #f1f1f1 solid 2px;
          }
        }
        .case-list{
          width: 100%;
          margin: 0 auto;
          padding: 0;
          display: flex;
          margin-top: 50px;
          flex-wrap: wrap;
          &>.card{
            width: calc(~"33.33% - 10px");
            margin-right: 15px;
            margin-bottom: 30px;
            &:nth-child(3n){
              margin-right: 0;
            }
            a{
              text-decoration: none;
               .card-body{
                h5{
                  color: #666666;
                font-size: 16px;
                }
                p{
                  font-size: 14px;
                  color: #666666;
                }
              }
            }
          }
        }
        .news-list{
          margin-top: 50px;
          .media{
            padding: 10px;
            margin-bottom: 30px;
            background: #ffffff;
            border-radius: 10px;
            display: flex;
            @media screen and(max-width: 768px){
              flex-direction: column;
            }
            &>a{
              img{
                max-width: 240px;
              }
            }
            .media-body{
              padding: 10px;
              h5{
                font-size: 16px;
                span{
                  float: right;
                  color: #999999;
                }
                a{
                  text-decoration: none;
                  color: #666666;
                }
              }
              p{
                font-size: 14px;
                a{
                  text-decoration: none;
                  color: #666666;
                }
              }
            }
          }
        }
      }
    }
  }
}
.news-page{
  background: #f2f4f6;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  .crumbs{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    height: 80px;
    @media screen and(max-width: 768px){
      height: auto;
    }
    .crumbsSwiper{
      .swiper-slide{
        position: relative; line-height: 80px; text-align: center;
        border-bottom: transparent 2px  solid;
        a{
          color: #666666; text-decoration: none;
        }
        &.active{
          border-bottom: #F10310FF  2px solid;
        }
        &::after{
          content: "";
          width: 1px;
          height: 15px;
          right: 0px; top: 50%; transform: translateY(-50%);
          background: #666666; position: absolute;
        }
        &:hover{
          border-bottom: #F10310FF  2px solid;cursor: pointer;
        }

      }
    }
  }
  .container{
    .row{
      .col-md-6{
        p{
          line-height: 80px;    font-size: 16px;
          color: #666666;
          i{
            color: #f10310;font-size: 20px; margin-right: 8px;
          }
          a{text-decoration: none; color: #666666;}
        }
      }
    }
    .news-list{
      background: #ffffff;
      width: 100%;
      margin: 60px auto;
      padding: 20px;
      .container{
        .row{
          .col-12{
            .media {
              padding: 10px;
              background: #ffffff;
              border-radius: 10px;
              margin-bottom: 30px;
              border: #f1f1f1 solid 1px;
              a {
                img {
                  max-width: 150px;
                  text-decoration: none;
                }
              }
              .media-body {
                h5 {
                  font-size: 18px;
                  color: #0b132f;
                  span {
                    float: right;
                    font-size: 16px;
                  }
                  a {
                    text-decoration: none;
                    color: #0b132f;
                  }
                }
                p {
                  a {
                    text-decoration: none;
                    color: #666666;
                  }
                  @media screen and (max-width: 768px) {
                    display: none;
                  }
                }
              }
            }
          }
        }
      }
    }
    .newsdetail{
      background: #ffffff;
      width: 100%;
      margin: 60px auto;
      padding: 20px;
      .container {
        padding: 40px 0px;
        background: #ffffff;
        h1 {
          font-size: 20px; border-bottom: #d1d1d1 solid 1px;
        }
        img {
          max-width: 100%;
        }
        .content {
          padding: 20px;
        }
      }
    }
  }
}
.products {
  width: 100%;
  background: #f6f6f6;
  .container {
    .row {
      .col-md-3 {
        .left {
          background: @redc;
          padding: 30px 0 20px 0;
          .input-search {
            width: 90%;
            height: 36px;
            border: #f1f1f1 solid 1px;
            border-radius: 18px;
            background: #ffffff;
            margin: 0 5%;
            form {
              margin: 0 auto;
              padding: 0px;
              input {
                border: none;
                height: 32px;
                width: 80%;
                margin: 0 0 0 10px;
                background: #ffffff;
                line-height: 30px;
                border-radius: 16px;
                &:focus {
                  outline: none;
                }
              }
              button {
                background: #ffffff;
                height: 32px;
                padding: 0px;
                margin: 0 auto;
                border-radius: 16px;
              }
            }
          }
          h2 {
            font-size: 24px;
            color: #fff;
            font-weight: 0;
            letter-spacing: 0;
            line-height: 2.4em;
            text-align: center;
            position: relative;
            margin-top: 10px;
            &::before {
              content: "";
              width: 90%;
              height: 1px;
              background: #ffffff;
              position: absolute;
              left: 5%;
              bottom: 0px;
            }
          }
          ul {
            margin: 0 auto;
            padding: 0px 10px;
            li {
              list-style: none;
              margin: 0 auto;
              padding: 0px;
              color: #ffffff;
              line-height: 2.2em;
              span {
                float: right;
                & > em {
                  font-style: normal;
                  display: none;
                }
                & > i {
                  font-style: normal;
                }
              }
              a {
                color: #ffffff;
              }
              ul {
                display: none;
                margin: 0 auto;
                padding: 0px 10px;
              }
              &.active {
                span {
                  i {
                    display: none;
                  }
                  em {
                    display: inline-block;
                    & > i {
                      display: inline-block;
                    }
                  }
                }
                ul {
                  display: block;
                  li {
                    list-style: none;
                    margin: 0 auto;
                    padding: 0px;
                  }
                }
              }
            }
          }
          p {
            padding-left: 20px;
            color: #ffffff;
          }
          .icon {
            margin-left: 3px;
            a {
              span {
                display: inline-block;
                width: 30px;
                height: 30px;
                background: #f1f1f1;
                font-size: 20px;
                line-height: 30px;
                text-align: center;
                color: #333333;
              }
              &:hover{
                span{
                  color: #666666;
                }
              }
            }
          }
          @media screen and (max-width: 768px) {
            margin-top: 30px;
          }
        }
      }
      .col-md-9 {
        .right {
          h2 {
            line-height: 100px;
            margin: 0 auto;
            padding: 0px;
            border-bottom: #d1d1d1 solid 1px;
            font-size: 36px;
            color: #1f6bb9;
            font-weight: 700;
          }
          .container {
            .row {
              .col-md-4 {
                margin-top: 40px;
                .card {
                  background: #ffffff;
                  border: none;
                  border-radius: 0px;
                  .card-body {
                    .inquire {
                      width: 100%;
                      background: #1f6bb9;
                      overflow: hidden;
                      position: relative;
                      height: 40px;
                      a {
                        line-height: 40px;
                        text-decoration: none;
                        display: inline-block;
                        position: absolute;
                        bottom: 0px;
                        span {
                          color: #ffffff;
                          line-height: 40px;
                          text-align: center;
                        }
                        &.basket {
                          span {
                            margin-left: 15px;
                          }
                          left: 0px;
                        }
                        &.prodlist-pro-inquire {
                          display: inline-block;
                          float: right;
                          width: 40px;
                          height: 40px;
                          line-height: 40px;
                          border-left: #ffffff solid 1px;
                          background: #ca0000;
                          transition: width 0.5s ease-out;
                          z-index: 888;
                          right: 0px;
                          color: #ffffff;
                          .inquire-wrap {
                            display: none;
                          }
                          span {
                            width: 40px;
                            height: 40px;
                            text-align: center;
                            color: #ffffff;
                          }
                          &:hover {
                            width: 180px;
                            color: #ffffff;
                            .inquire-wrap {
                              display: inline-block;
                            }
                            span {
                              &:nth-child(2) {
                                width: 140px;
                              }
                            }
                          }
                        }
                      }
                    }
                    .card-title {
                      line-height: 28px; height: 28px; overflow: hidden;
                      a {
                        color: #666666;
                        font-size: 14px;
                        text-decoration: none;
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
.showp {
  border-top: #9497ba solid 1px;
  background: #f6f6f6;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  .container {
    .nav {
      height: 100px;
      line-height: 100px;
      span {
        padding: 0 15px;
      }
      a {
        color: @redc;
        font-weight: bold;
        &:last-child {
          font-weight: normal;
        }
      }
    }
    .row {
      .col-md-3 {
        .left {
          background: @redc;
          padding: 20px 0 20px 0;
          .input-search {
            width: 90%;
            height: 36px;
            border: #f1f1f1 solid 1px;
            border-radius: 18px;
            background: #ffffff;
            margin: 0 5%;
            form {
              margin: 0 auto;
              padding: 0px;
              input {
                border: none;
                height: 32px;
                width: 80%;
                margin: 0 0 0 10px;
                background: #ffffff;
                line-height: 30px;
                border-radius: 16px;
                &:focus {
                  outline: none;
                }
              }
              button {
                background: #ffffff;
                height: 32px;
                padding: 0px;
                margin: 0 auto;
                border-radius: 16px;
              }
            }
          }
          h2 {
            font-size: 24px;
            color: #fff;
            font-weight: 0;
            letter-spacing: 0;
            line-height: 2.4em;
            text-align: center;
            position: relative;
            margin-top: 20px;
            &::before {
              content: "";
              width: 90%;
              height: 1px;
              background: #ffffff;
              position: absolute;
              left: 5%;
              bottom: 0px;
            }
          }
          ul {
            margin: 0 auto;
            padding: 0px 10px;
            li {
              list-style: none;
              margin: 0 auto;
              padding: 0px;
              color: #ffffff;
              line-height: 2.2em;
              span {
                float: right;
                & > em {
                  font-style: normal;
                  display: none;
                }
                & > i {
                  font-style: normal;
                }
              }
              a {
                color: #ffffff;
              }
              ul {
                display: none;
                margin: 0 auto;
                padding: 0px 10px;
              }
              &.active {
                span {
                  i {
                    display: none;
                  }
                  em {
                    display: inline-block;
                    & > i {
                      display: inline-block;
                    }
                  }
                }
                ul {
                  display: block;
                  li {
                    list-style: none;
                    margin: 0 auto;
                    padding: 0px;
                  }
                }
              }
            }
          }
          p {
            padding-left: 20px;
            color: #ffffff;
          }
          .icon {
            margin-left: 3px;
            a {
              span {
                display: inline-block;
                width: 30px;
                height: 30px;
                background: #f1f1f1;
                font-size: 20px;
                line-height: 30px;
                text-align: center;
                color: #333333;
              }
              &:hover{
                span{
                  color: #666666;
                }
              }
            }
          }
          @media screen and (max-width: 768px) {
            margin-top: 30px;
          }
        }
      }
      .col-md-9 {
        .right {
          width: 100%;
          margin: 0 auto;
          padding: 0px;
          background: #ffffff;
          .desc {
            display: flex;
            overflow: hidden;
            @media screen and (max-width: 768px) {
              flex-wrap: wrap;
            }
            .desc-left {
              width: 55%;
              padding: 20px;
              @media screen and (max-width: 768px) {
                width: 100%;
              }
              .big_img {
                border: #dddddd solid 1px;
                img {
                  max-width: 100%;
                }
              }
              .big_small {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                margin-top: 30px;
                .img {
                  border: #dddddd solid 2px;
                  position: relative;
                  margin-right: 4px;
                  width: 150px;
                  &::before {
                    position: absolute;
                    left: 50%;
                    top: -6px;
                    content: "";
                    border-style: solid;
                    border-width: 0px 5px 5px 5px;
                    border-color: transparent transparent #dddddd transparent;
                    transform: translateX(-50%);
                  }
                  &:hover {
                    cursor: pointer;
                  }
                  img {
                    max-width: 100%;
                  }
                }
                .active {
                  border: @redc solid 2px;
                  &::before {
                    position: absolute;
                    left: 50%;
                    top: -6px;
                    content: "";
                    border-style: solid;
                    border-width: 0px 5px 5px 5px;
                    border-color: transparent transparent @redc transparent;
                    transform: translateX(-50%);
                  }
                }
              }
            }
            .desc-right {
              width: 45%;
              @media screen and (max-width: 768px) {
                width: 100%;
                padding-left: 10px;
              }
              h1 {
                font-size: 20px;
                margin-top: 20px;
                line-height: 1.6em;
                letter-spacing: 0;
                text-align: left;
                color: #222;
                font-weight: bold;
              }
              .prod_brief {
                font-size: 16px;
                color: #000000;
                ul {
                  li {
                    color: #666666;
                  }
                }
                .tb-prop{
                  display: flex;
                  dt{
                    width: 50px; margin-right: 10px;
                  }
                  dd{
                    width: calc(~"100% - 60px");
                    div{
                      width: 100%;
                      display: flex;
                      flex-wrap: wrap;
                      a{
                        padding: 0 2px;
                        margin-bottom: 5px;border: #dee2e6 solid 1px;
                        color: #666666; text-decoration: none;
                        width: calc(~"33.33% - 6px");
                        margin-right: 6px;
                        font-size: 12px;
                        display: flex;
                        line-height: 40px; border-radius: 4px;
                        img{
                          width: 40px;height: 40px; margin-right: 4px; border-radius: 4px;
                        }
                        &.selected{
                          border: @redc solid 1px;
                        }
                      }
                    }

                  }
                }
              }
              .cart {
                display: flex;
                .order-cart {
                  display: flex;
                  a {
                    border: #dddddd solid 1px;
                    margin-right: 6px;
                    text-align: center;
                    width: 30px;
                    color: #666666;
                    &.order-minus {
                      content: "-";
                      display: inline-block;
                      margin-left: 20px;
                    }
                    &.order-plus {
                      content: "+";
                      display: inline-block;
                    }
                  }
                  input {
                    border: #dddddd solid 1px;
                    width: 60px;
                    margin-right: 6px;
                  }
                }
              }
              .inquire_btn {
                a {
                }
              }
            }
          }
          .line {
            width: calc(~"100% - 40px");
            margin: 40px 20px;
            background: #dddddd;
            height: 1px;
          }
          .detail {
            width: calc(~"100% - 40px");
            margin: 0 20px;
            h3 {
              /*background: #ca0000;*/
              text-align: center;
              color: #666666;
              font-size: 30px;
              line-height: 2em;
              font-weight: 700;
              @media screen and(max-width: 768px) {
                font-size: 20px;
              }
              span {
                &::before {
                  content: "—— ";
                  color: @redc;
                }
                &::after {
                  content: " ——";
                  color: @redc;
                }
              }
            }
            h4 {
              text-align: center;
              font-weight: bold;
            }
            .detail-text {
              img {
                max-width: 100%;
              }
              p {
                word-break: break-all;
                word-wrap: break-word;
                strong {
                  color: #666666;
                  font-weight: bold;
                }
              }
            }
            .page {
              display: flex;
              justify-content: space-between;
              margin: 40px auto;
              & > div {
                height: 40px;
                line-height: 40px;
                border-radius: 20px;
                background: #dddddd;
                padding: 0 15px;
                max-width: 45%;
                overflow: hidden;
                color: #666666;
                a {
                  text-decoration: none;
                  color: #0b132f;
                }
              }
            }
          }
          .related {
            & > h2 {
              text-align: center;
              font-size: 30px;
              margin-top: 50px;
              margin-bottom: 40px;
              color: #666666;
              font-weight: 700;
              letter-spacing: 0;
              line-height: 1em;
              @media screen and(max-width: 768px) {
                font-size: 20px;
              }
            }
            span {
              &::before {
                content: "—— ";
                color: @redc;
              }
              &::after {
                content: " ——";
                color: @redc;
              }
            }
            form {
              padding-bottom: 50px;
              .form-row {
                @media screen and(max-width: 768px) {
                  margin-bottom: 0px;
                }
                .col-md-6 {
                  margin-bottom: 30px;
                }
                .col {
                  @media screen and(max-width: 768px) {
                    margin-bottom: 30px;
                  }
                  margin-bottom: 30px;
                }
              }
            }
            .reSwiper {
              width: calc(~"100% - 40px");
              margin: 20px 20px;
              .card-title{
                a{
                  color: #666666;}
              }
            }
          }
        }
      }
    }
  }
}
#search{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; z-index: 99999;background: rgba(0,0,0,0.75);
  &>span{
    position: relative;
    right: 30px;
    top:10px; cursor: pointer;
    i{
      font-size: 30px;
      color: #aaaaaa;
    }
  }
  .search-div{
    width: 100%;
    display: flex; flex-direction: row;position: absolute;left: 50%;top:50%; transform: translate(-50%,-50%);
    .container{
      form{
        button{
          background-color: transparent;border: none;
          i{
            color: #aaaaaa;}
          &.form-control{
            border-bottom: transparent;
          }
        }
        .form-control{
          /*background: rgba(0,0,0,0.85);*/
          background: transparent;
          border-bottom: #555555 solid 1px; border-top: transparent;border-left: transparent;border-right: transparent;
          &:focus{
            outline: none;
          }
        }
      }
    }
  }
}
.footer-cart {
  z-index: 999;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 200px;
  cursor: pointer;
  span {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #7a8599;
    display: inline-block;
    text-align: center;
    position: relative;
    i {
      color: #FFFFFF;
      line-height: 50px;
      text-align: center;
      font-size: 30px;
    }
    em {
      position: absolute;
      font-style: normal;
      background: #ff0000;
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 10px;
      top: -5px;
      right: -5px;
      line-height: 20px;
      text-align: center;
      color: #FFFFFF;
      font-size: 12px;
    }
  }
}
#whatsapp {
  .info {
    display: none;
    border-radius: 6px;
    width: 150px;
    font-size: 16px;
    background: #f1f1f1;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
    color: #0b132f;
    position: absolute;
    right: 50px;
    top: -60px;
    height: 50px;
    line-height: 50px;
  }
  &:hover {
    .info {
      display: block;
    }
  }
}
.footer-cart-list {
  display: none;
  z-index: 9999;
  background: #FFFFFF;
  width: 230px;
  position: fixed;
  bottom: 0px;
  right: 5px;
  border: #d1d1d1 solid 1px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.25);
  h3 {
    background: #7a8599;
    text-align: center;
    font-size: 15px;
    height: 37px;
    margin: 0 auto;
    padding: 0px;
    line-height: 37px;
    position: relative;
    color: #FFFFFF;
    span {
      float: left;
      position: absolute;
      left: 20px;
      bottom: 0px;
      i {
        cursor: pointer;
      }
    }
    em {
      font-style: normal;
      color: #e64545;
      font-weight: bold;
    }
  }
  ul {
    margin: 0 auto;
    padding: 0px;
    background: #FFFFFF;
    height: 150px;
    overflow-y: scroll;
    li {
      height: 56px;
      margin: 5px auto;
      border-bottom: #d1d1d1 solid 1px;
      display: flex;
      a {
        display: inline-block;
        width: 80px;
        margin-right: 5px;
        img {
          max-width: 40px;
          margin-left: 5px;
        }
      }
      span {
        p {
          margin: 0 auto;
          padding: 0px;
          font-size: 12px;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
          width: 160px;
        }
        a {
          display: none;
        }
      }
      &:hover {
        span {
          a {
            display: block;
            color: #555555;
            text-decoration: none;
            font-size: 14px;
          }
        }
      }
    }
  }
  h4 {
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    a {
      text-decoration: none;
      border-radius: 4px;
      &:nth-child(1) {
        background: #f1f1f1;
        color: #ff0000;
        font-size: 14px;
        padding: 5px 15px;
        margin-right: 15px;
      }
      &:nth-child(2) {
        background: #e64545;
        color: #FFFFFF;
        font-size: 14px;
        padding: 5px 15px;
      }
    }
  }
}
.inquirePage {
  .inquire {
    table {
      thead {
        tr {
          th {
            color: #9396a5;
            text-align: center;
            background: #f3f3f3;
          }
        }
      }
      tbody {
        tr {
          td {
            text-align: center;
            a {
              color: #666666;
              line-height: 120px;
              @media screen and(max-width: 768px) {
                line-height: 1.6em;
              }
              &:hover {
                color: #555555;
                text-decoration: none;
              }
            }
            .proNum {
              margin-top: 50px;
              text-align: center;
              width: 80px;
            }
          }
        }
      }
      tr {
        .prod-list {
          td {
            display: flex;
            justify-content: center;
            align-self: center;
          }
        }
      }
    }
    form {
      label {
        span {
          color: #ff0000;
        }
      }
    }
  }
  .show_success_info {
    display: none;
    padding: 50px 0;
  }
}
.page-item {
  &.active {
    .page-link {
      z-index: 3;
      color: #fff;
      background-color: #0b132f;
      border-color: #0b132f;
    }
  }
  .page-link {
    z-index: 3;
    color: #0b132f;
    background-color: #ffffff;
    border-color: #eeeeee;
  }
}
#index-contact-maps{
  width: 100%;
  height: 500px;
}
/*
.ny-carousel{
  margin-top: 80px;
  @media screen and(max-width: 768px){
    margin-top: 50px;
  }
}
.index-carousel{
  margin-top: 80px;
  @media screen and(max-width: 768px){
    margin-top: 50px;
  }
}*/
