﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.hidden {
  transition: all 200ms ease;
  opacity: 0;
  pointer-events: none;
}

.carousel {
  width:585px;
  height:190px;
  position: relative;
  margin-left: -42px;
}
.carousel .btn {
  position: absolute;
  height: calc(100% - 0%);
  width: calc(100% - 90%);
  margin: 0px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 400ms ease;
  overflow: hidden;
}
.carousel .btn:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 300ms ease;
}
.carousel .btn i {
  font-size: 20px;
  color: #000;
  transition: all 400ms ease;
  opacity: 0;
}
.carousel .btn-back {
  top: 0;
  left: 0px;
}
.carousel .btn-back:before {
  border-radius: 100% 0 0 100%;
  transform: translateX(100px);
}
.carousel .btn-back .fa-arrow-left {
  transform: translateX(100px);
}
.carousel .btn-next {
  top: 0;
  right: 0px;
  margin-right: -20%;
}
.carousel .btn-next:before {
  border-radius: 0 100% 100% 0;
  transform: translate(-100px);
}
.carousel .btn-next .fa-arrow-right {
  transform: translateX(-100px);
}
.carousel .btn .right-indicator, .carousel .btn .left-indicator {
  opacity: 1;
  color: rgba(0, 0, 0, 0.7);
}
.carousel .btn .right-indicator {
  transform: translateX(-20px);
}
.carousel .btn .left-indicator {
  transform: translateX(-5px);
}
.carousel .btn:hover:before {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(0);
}
.carousel .btn:hover .fa-arrow-left, .carousel .btn:hover .fa-arrow-right {
  opacity: 1;
}
.carousel .btn:hover .fa-arrow-left {
  transform: translateX(8px);
}
.carousel .btn:hover .fa-arrow-right {
  transform: translateX(8px);
}
.carousel .btn:hover .right-indicator {
  transform: translateX(100px);
  opacity: 0;
}
.carousel .btn:hover .left-indicator {
  transform: translateX(-100px);
  opacity: 0;
}
.carousel .viewbox {
  width: calc(100% - 0%);
  height: calc(100% - 0%);
  position: relative;
  margin: 15px auto;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 2px 5px 10px rgba(0, 0, 0, 0.1), -2px 8px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  margin-left: 9.65%;
}
.carousel .viewbox .track {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 500ms ease;
  z-index: 2;
}
.carousel .viewbox .track .slide {
  max-width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(1.00);
}
.carousel .viewbox .track .slide .images {
  /*width: 100%;
  height: 100%;
  object-fit: cover;*/
}
.carousel .nav-indicator {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.carousel .nav-indicator .dot {
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 300ms ease;
}
.carousel .nav-indicator .dot.active {
  background: rgba(0, 0, 0, 1);
}


.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top
}
.flexBetween {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flexStart {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.flexCenter {
    display: -webkit-flex;
    /* Safari */

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.flexEnd {
    display: -webkit-flex;
    /* Safari */

    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: justify;
    text-justify: distribute-all-lines;
}
.ellipsis3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-align: justify;
    text-justify: distribute-all-lines;
}
.ellipsis4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-align: justify;
    text-justify: distribute-all-lines;
}
.ellipsis5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-align: justify;
    text-justify: distribute-all-lines;
}
.ellipsis6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-align: justify;
    text-justify: distribute-all-lines;
}
.l_scrollx {
    overflow: auto;
    overflow-x: scroll;
    overflow-y: auto;
    padding-right: 10px;
}
.l_scrolly {
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 10px;
}
.layerVideo {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}
.layerVideo .box {
    max-width: 56.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 34.375rem;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}
.layerVideo .box video {
    width: 100%;
}
.layerVideo .box span {
    position: absolute;
    right: -2.1875rem;
    top: -2.1875rem;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}
 .input::-webkit-input-placeholder {
 color: #999;
 font-size: 16px;
}
 .input::-moz-placeholder {
 color: #999;
 font-size: 16px;
}
 .input:-moz-placeholder {
 color: #999;
 font-size: 16px;
}
 .input:-ms-input-placeholder {
 color: #999;
 font-size: 16px;
}
 .textarea::-webkit-input-placeholder {
 color: #999;
 font-size: 16px;
}
 .textarea::-moz-placeholder {
 color: #999;
 font-size: 16px;
}
 .textarea:-moz-placeholder {
 color: #999;
 font-size: 16px;
}
 .textarea:-ms-input-placeholder {
 color: #999;
 font-size: 16px;
}
 @-webkit-keyframes bounce-up {
 10% {
 transform: rotate(20deg)
}
 20% {
 transform: rotate(-10deg)
}
 30% {
 transform: rotate(5deg)
}
 40% {
 transform: rotate(-5deg)
}
 50%,  to {
 transform: rotate(0deg)
}
}

.w_1720 {
  margin: 0 6.25%;
}
.w_1440 {
  margin: 0 12.5vw;
}
.maodian {
  position: relative;
  top: -100px;
}
.anchorBL{
	display: none;
}
.p90 {
  padding-top: 40px;
}
.p90_ {
  padding-bottom: 40px;
}
.index_product .box {
  padding-left: 0;
}
.index_product .box .banner .swiper-slide {
  width: calc(20% - 40px);
}
.index_product .box .banner .swiper-slide .item {
  display: block;
}
.index_product .box .banner .swiper-slide .item .content1 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 50% / 47%;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.index_product .box .banner .swiper-slide .item .content1 img {
  width: 100%;
  height: 100%;
  margin: auto;
}
.index_product .box .banner .swiper-slide .item .content2 {
  padding: 15px 20px;
  text-align: center;
}
.index_product .box .banner .swiper-slide .item .content2 .content3 {
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.index_product .box .banner .swiper-slide .item .content2 .content4 {
  font-size: 16px;
  margin-top: 5px;
  color: #000;
}
.index_product .box .banner .swiper-slide .item .content2 .content5 {
  margin-top: 5px;
  font-size: 16px;
  color: #000;
}
.index_product .box .banner .swiper-slide .item .content2 .content5 i {
  font-size: 18px;
  color: #f9c03c;
  vertical-align: middle;
}
.index_product .index_page {
  margin-top: 25px;
}

.index_page .le {
  display: flex;
  align-items: center;
  width: 30%;
  position: relative;
}
.index_page .le div {
  width: 100%;
  height: 2px;
}
.index_page .le .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1);
}
.index_page .le .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #f9c03c;
}
.index_page .le_ {
  line-height: 48px;
  font-family: 'gilroy_regular';
  color: #999;
  font-size: 1.25rem;
  width: 30%;
}
.index_page .le_ span {
  font-family: 'gilroy_bold';
  color: #000;
}
.index_page .ce p {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
  margin: 0 10px;
  transition: 0.4s;
}
.index_page .ce p i {
  color: #000;
  font-size: 18px;
  display: block;
  line-height: 50px;
}
.index_page .ce p:hover {
  background: #f9c03c;
}
.index_page .ri {
  width: 30%;
  line-height: 48px;
  text-align: right;
}
.index_page .ri a {
  font-size: 14px;
  font-family: 'gilroy_regular';
  color: #999;
  transition: 0.4s;
}
.index_page .ri a:hover {
  color: #f9c03c;
}
@media screen and (max-width: 1440px) {
  .cl_about2 .box .item a .content2 .content4 {
    line-height: 1.875rem;
  }
  .cl_speech .box .boxRight .content1 {
    font-size: 2.5rem;
  }
  .cl_speech .box .boxRight .content2 .div1 {
    line-height: 1.7rem;
  }
  .cl_news_info .box .content1 .flexStart .right .feng p img {
    width: 1.5rem;
  }
  .indexBanner .index_button {
      bottom: 19rem;
  }
}
@media screen and (max-width: 1024px) {
  .index_header {
    display: none;
  }
  .indexBanner .box .swiper-slide > img {
    height: 30rem;
  }
  .index_news {
    margin-right: 0vw;
    transform: translateY(0%);
  }
  .index_news .box > div {
    flex: 1 50%;
  }
  .index_news .box .item1 a {
    height: 100%;
  }
  .index_news .box .item1 a .img {
    height: 100%;
  }
  .index_news .box .item1 a .img img {
    height: 100%;
  }
  .index_news .box .item1 a .video_ .main_ div {
    margin: auto;
  }
  .index_news_ {
    height: auto;
  }
  .index_news .title {
    position: initial;
    margin-top: 3rem;
    width: 100%;
  }
  .index_news .box .item {
    padding: 3.75rem 5.2vw 2.5rem;
  }
  .indexBanner .index_button {
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
  }
  .indexBanner .box .swiper-slide .main {
    top: 6rem;
  }
  .indexBanner .box .swiper-slide .main .mainBox .bot {
    font-size: 2.375rem;
  }
  .indexBanner .box .swiper-slide .main .mainBox .link {
    margin-top: 3rem;
  }
  .index_about .box .boxLeft {
    width: 100%;
    padding-right: 0vw;
  }
  .index_about .box .boxLeft .content1 {
    font-size: 2.5rem;
    margin-top: 5rem;
  }
  .index_about .box .boxCen {
    width: 100%;
  }
  .index_about .box .boxCen p img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
  }
  .index_about .box .boxRight {
    width: 100%;
    padding: 2rem;
  }
  .index_about .box .boxRight .item {
    padding: 2rem 0;
  }
  .index_about .box .boxRight .item .content1 span {
    font-size: 3.375rem;
  }
  .p90_ {
    padding-bottom: 5rem;
  }
  .p90 {
    padding-top: 5rem;
  }
  .index_about .box .boxRight .item .content1 font {
    top: -1rem;
  }
  .index_solve .box .content1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
  .index_solve .img img {
    height: 36rem;
    object-fit: cover;
  }
  .indexNews .box .banner .list .boxRight {
    display: none;
  }
  .indexNews .box .banner {
    margin-top: 0;
  }
  .indexNews .box .banner .list .boxLeft {
    width: 100%;
    margin-top: 5rem;
  }
  .index_four .box .list {
    width: 50%;
  }
  .index_four .box .list .img::after {
    opacity: 0.8;
  }
  .index_four .box .list .info {
    color: #fff;
  }
  .index_four .box .list .more {
    color: #fff;
  }
  .index_four .box .list .more i {
    color: #fff;
  }
  .index_four::after {
    bottom: -1px;
  }
  .w_1440 {
    margin: 0 5.2vw;
  }
  .cl_about .box .boxLeft .content1 {
    font-size: 2.5rem;
  }
  .cl_about .box .boxLeft {
    width: 100%;
  }
  .cl_about .box .boxRIght {
    width: 100%;
    margin-top: 3rem;
  }
  .cl_about1 .box .item .content1 span {
    font-size: 3.2rem;
  }
  .cl_about1 .box .item .content1 .font {
    top: -1rem;
    font-size: 1.5rem;
  }
  .m56 {
    margin-top: 3.5rem;
  }
  .cl_about2 .box .item {
    margin-bottom: 1.75rem;
  }
  .cl_speech .box .boxLeft {
    width: 100%;
  }
  .cl_speech .box .boxRight {
    width: 100%;
    margin-top: 3rem;
  }
  .cl_speech1 .box .boxTop .left {
    font-size: 2.5rem;
    font-family: 'albb_b';
  }
  .cl_speech1 .box .boxTop .right {
    width: 100%;
    margin-top: 2rem;
  }
  .index_title h5 {
    font-size: 2.5rem;
  }
  .cl_history .box1 .box1_ .swiper-slide .item .left {
    width: 100%;
  }
  .cl_history .box1 .box1_ .swiper-slide .item .right {
    height: 32rem;
    width: 100%;
    margin-top: 3rem;
  }
  .cl_history .box .box_ .button .next {
    right: 0;
  }
  .cl_history .box .box_ .button .prev {
    left: 0;
  }
  .cl_history .box1 .box1_ .swiper-slide .zhi {
    left: 8.375rem;
    font-size: 6.875rem;
  }
  .cl_history .box1 .box1_ .swiper-slide {
    padding-top: 4.25rem;
    position: relative;
  }
  .cl_banner .box .main h5 {
    font-size: 2.5rem;
  }
  .cl_honor .box .list {
    justify-content: space-between;
  }
  .cl_honor .box .list .item {
    width: 50%;
    margin-bottom: 3rem;
  }
  .cl_page .link a {
    display: none;
  }
  .cl_page .link .active {
    display: block;
  }
  .cl_contact2 .map {
    height: 32rem;
  }
  .cl_contact1 .box .item {
    width: 50%;
    margin-bottom: 2rem;
  }
  .p90_ {
    padding-bottom: 60px;
  }
  .p90 {
    padding-top: 3.5rem;
  }
  .cl_contact .box .boxRight {
    width: 100%;
    margin-top: 3rem;
  }
  .cl_network .box .list {
    justify-content: space-between;
  }
  .cl_network .box .list .item {
    width: 48%;
    margin-right: 0%;
  }
  .cl_map .box .boxLeft {
    width: 100%;
  }
  .cl_map .box .boxRight {
    width: 100%;
  }
  .cl_product .box .item {
    width: 50%;
  }
  .cl_product1 .box .list {
    justify-content: space-between;
  }
  .cl_product1 .box .list .item {
    width: 48%;
    margin-right: 0%;
  }
  .cl_pro_info .box .boxLeft {
    width: 100%;
  }
  .cl_pro_info .box .boxRIght {
    width: 100%;
  }
  .cl_pro_info1 .box .list {
    justify-content: space-between;
  }
  .cl_pro_info1 .box .list .item {
    width: 48%;
    margin-right: 0%;
  }
  .cl_pro_info2 .box .boxLeft {
    width: 100%;
  }
  .cl_pro_info2 .box .boxRIght {
    width: 100%;
    margin-top: 2rem;
  }
  .cl_pro_info3 .box .page {
    right: 3%;
  }
  .cl_case .box .list {
    justify-content: space-between;
  }
  .cl_case .box .list .item {
    width: 48%;
    margin-right: 0%;
  }
  .cl_case_info .box .boxLeft {
    width: 100%;
  }
  .cl_case_info .box .boxRight {
    width: 100%;
    margin-top: 2rem;
  }
  .cl_case_info1 .box .banner .swiper-slide {
    width: 100vw;
  }
  .cl_case_info1 .box .number {
    display: none;
  }
  .cl_case_info1 .box .page {
    top: auto;
    right: 0;
    width: 100%;
    bottom: 2rem;
    text-align: center;
  }
  .cl_case_info1 .box .page span {
    margin: 0 5px;
  }
  .cl_case_info2 .box .list {
    justify-content: space-between;
  }
  .cl_case_info2 .box .list .item {
    width: 49%;
    margin-right: 0%;
    margin-bottom: 1rem;
  }
  .cl_news1 .box .list {
    justify-content: space-between;
  }
  .cl_news1 .box .list .item {
    width: 49%;
    margin-right: 0%;
    margin-bottom: 1rem;
  }
  .cl_news .box .boxLeft {
    width: 100%;
  }
  .cl_news .box .boxRight {
    width: 100%;
  }
  .cl_news_info .box .content1 h5 {
    font-size: 2rem;
  }
  .cl_join .box {
    padding-left: 5.2vw;
  }
  .cl_join .box .pageBox .le {
    width: 74%;
  }
  .cl_join .box .banner .swiper-slide .item p {
    bottom: 1.25rem;
  }
  .cl_join2 .box .list {
    column-count: 2;
  }
  .cultureBox7 .box .item {
    padding: 0 1.8125rem;
  }
  .cultureBox8 .box .list .boxTop .item {
    padding: 0px 1.8125rem;
  }
  .cultureBox8 .box .list .boxBottom {
    padding: 0 1.8125rem;
  }
  .indexNews .box .banner .list .boxLeft {
    justify-content: space-between;
  }
  .indexNews .box .banner .list .boxLeft .item {
    width: 49%;
    margin-right: 0%;
    margin-bottom: 1rem;
  }
  .index_about .box .boxLeft .content3 {
    margin-top: 4rem;
  }
  .header_box_phone {
    display: block;
  }
  .index_footer .box .boxCen .item {
      width: 33.333%;
      box-sizing: border-box;
  }
  .index_footer .box .boxCen .item div {
      font-size: 1.3rem;
  }
  .index_footer .box .boxCen .item1 {
      padding-left: 0;
  }
  .my-customer .number{
	  width: 100%;
	  padding: 0px;
	  padding-bottom: 25px;
  }
  .my-customer .title{
	  padding-left: 0px;
	}
  .my-customer .title{
	  padding-bottom: 15px;
  }
  .index_product .box .banner .swiper-slide{
	  padding: 0px 15px;
  }
}
@media screen and (max-width: 669px) {
  .index_page .ce p {
    transform: scale(0.7);
    margin: 0;
  }
  .index_footer .box .boxTop {
    display: none;
  }
  .index_footer .box .boxCen .item1 {
    margin-top: 2rem;
  }
  .cl_about1 .box .item1 {
    display: none;
  }
  .cl_about1 .box .item {
    width: 50%;
    margin-bottom: 1rem;
  }
  .cl_about2 .box .item {
    width: 100%;
  }
  .cl_speech .box .boxRight .content2 .div1 {
    line-height: 2.5rem;
    font-size: 1.4rem;
  }
  .cl_speech .box .boxRight .content1 {
    font-size: 2rem;
  }
  .cl_speech1 .box .boxTop .left {
    font-size: 2rem;
  }
  .index_about .box .boxLeft .content1 {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .index_solve .box .content1 span {
    font-size: 2.5rem;
    vertical-align: baseline;
  }
  .index_solve .box .content1 {
    font-size: 2rem;
  }
  .cl_history .box .box_ .button p {
    z-index: 4;
    transform: scale(0.8) translateY(-58%);
  }
  .cl_history .box1 .box1_ .swiper-slide .zhi {
    left: 4.375rem;
    font-size: 5.875rem;
  }
  .cl_banner .img img {
    height: 22rem;
    object-fit: cover;
  }
  .cl_report .box .list .item a .left {
    width: 70%;
  }
  .cl_page p a {
    transform: scale(0.8);
  }
  .cl_contact1 .box .item {
    width: 100%;
  }
  .cl_network .box .list .item {
    width: 100%;
  }
  .cl_map .box .boxLeft_ img {
    width: 100%;
  }
  .cl_map .box .boxLeft_ select {
    display: block;
    margin: 2rem 0;
    width: 100%;
    height: 5rem;
    box-sizing: border-box;
    border: 0;
    box-shadow: 0px 0px 10px #eee;
    padding: 0 2rem;
  }
  .cl_map .box .boxLeft_ select option {
    font-size: 1.5rem;
  }
  .cl_product1 .box .list .item {
    width: 100%;
  }
  .cl_pro_info1 .box .list .item {
    width: 100%;
  }
  .cl_pro_info3 .box .swiper-slide {
    transform: scale(1);
  }
  .cl_pro_info3 .box .button p {
    transform: scale(0.8) translateY(-60%);
  }
  .cl_case .box .list .item {
    width: 100%;
  }
  .cl_case {
    background: #eee;
  }
  .cl_case .box .list .item .img {
    opacity: 1;
  }
  .cl_case .box .list .item a .content1 .img1 {
    display: none;
  }
  .cl_case .box .list .item a .content1 .img2 {
    display: inline-block;
  }
  .cl_case .box .list .item a .content2 {
    color: #fff;
  }
  .cl_case .box .list .item a .content4 {
    opacity: 0;
  }
  .cl_case .box .list .item .img::after {
    opacity: 0.4;
  }
  .cl_case_info2 .box .list .item {
    width: 100%;
  }
  .cl_join .box .pageBox .ce p {
    transform: scale(0.8);
  }
  .cl_join .box .pageBox .le {
    width: 52%;
  }
  .cultureBox8 .box .list .boxTop .item5 {
    flex-wrap: initial;
  }
  .cultureBox8 .box .list .boxTop .item5 span {
    margin-left: 1rem;
  }
  .header_box_phone .header_main .logo img {
    height: 30px;
  }
  .mob_header {
    top: 51px;
    height: calc(100% - 51px);
  }
  .searchBox {
    top: 51px;
  }
  .searchBox .boxMain input[type='text'] {
    height: 4.125rem;
    width: 26rem;
  }
  .searchBox .boxMain a input {
    width: 4.125rem;
    height: 4.125rem;
  }
  .index_page .le {
    position: relative;
  }
  .index_page .le div {
    width: 100%;
  }
  .cl_news_info .box .content3 .left {
	  width: 100%;
  }
  .indexNews .index_page {
      margin-bottom: 4.75rem;
  }
  .cl_pro_info  .index_link {
      margin: auto;
  }
  .cl_honor .box .list .item {
      border: 0;
  }
  .cl_honor .box .list .item:nth-child(2n-1) {
     border-right: 1px solid #ddd;
  }
  .cl_news .box .boxRight .main {
      width: calc(100% );
      margin-left: 0;
	  padding: 0;
  }
}
