.navmenu {
  position: relative;
  box-sizing: border-box;
  padding: 0 10px;
  border-radius: 10px;
  background: #435055;
  font-size: 14px;
}

.navmenu input,
.navmenu label {
  display: none;
}

.navmenu-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #435055;
}

.navmenu-item {
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  line-height: 59px;
  font-size: 14px;
  transition: color .2s;
}

.navmenu-item:hover {
  color: #fff;
  text-decoration: underline;
}
.fx-r {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.fx-r img{
  width: 100%;
}
.pos-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mb-15 {
  margin-bottom: 15px;
}


@media screen and (max-width: 998px) {
  .navmenu {
    border-radius: 0;
  }

  .navmenu label {
    display: block;
    text-align: center;
    width: 100%;
    line-height: 49px;
    font-size: 18px;
    color: #fff;
  }

  .navmenu input {
    display: none;
  }

  .navmenu-list {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 100%;
    flex-direction: column;
    width: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
  }

  .navmenu input:checked~.navmenu-list {
    opacity: 1;
    pointer-events: visible;
  }

  .navmenu-item {
    text-align: center;
    width: 100%;
    margin-top: 5px;
    background: #5c787c;
  }
}


.service,
.service-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.service {
  box-sizing: border-box;
  padding: 20px 80px;
}

.service-item img {
  display: inline-block;
  width: 30px;
  height: auto;
}

.service-content {
  margin-left: 5px;
}

.service-content p {
  margin: 0;
  font-size: 12px;
  color: #0f246e;
}

@media screen and (max-width: 850px) {
  .service {
    padding: 0 0 0 10%;
  }

  .service-item {
    justify-content: flex-start;
    width: calc(100% / 2);
    margin: 10px 0;
  }
}

@media screen and (max-width: 500px) {
  .service {
    padding: 0 0 0 0;
  }

  .service-item:nth-child(1),
  .service-item:nth-child(3) {
    width: 55%;
  }

  .service-item:nth-child(2),
  .service-item:nth-child(4) {
    width: 45%;
  }
}


.selling {
  margin-top: 40px;
}

.selling-title {
  display: inline-block;
  max-width: 460px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  border-radius: 0 20px 20px 0;
  background: #435055;
  line-height: 64px;
  font-size: 24px;
  color: #fff;
}

.selling-title span {
  color: #f1ce65;
}

.selling-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.selling-item {
  cursor: pointer;
  width: calc(100% / 5 - 10px);
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.selling-item img {
  display: block;
  width: 100%;
  transition: all .3s;
}

.selling-item:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 998px) {
  .selling-title {
    max-width: 300px;
    width: 100%;
    padding-left: 20px;
    border-radius: 0 15px 15px 0;
    line-height: 49px;
    font-size: 18px;
  }

  .selling-item {
    width: calc(100% / 2 - 10px);
  }
}



/* banner */
.bnr {
  position: relative;
  margin-bottom: 15px;
}

.bnr img {
  display: block;
  width: 100%;
}

.bnr-content {
  position: absolute;
}

.bnr-content h3 {
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
  color: inherit;
}

.bnr-content h4 {
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  line-height: 26px;
  font-size: 22px;
  font-weight: normal;
  color: inherit;
} 

.bnr-content p {
  margin: 0;
  line-height: 24px;
  font-size: 16px;
  color: inherit;
}

.white.bnr-content {
  color: #fff;
}

.bnr-1 .bnr-content {
  position: absolute;
  left: 24%;
  top: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.bnr-1 .bnr-content .logo {
  width: 175px;
}

.bnr-1 .bnr-content h3 {
  margin: 20px 0 0 0;
  text-transform: uppercase;
  line-height: 26px;
  font-size: 22px;
  color: #fff;
  margin: 3% 0 0 0;
}

.bnr-1 .bnr-content p {
  margin: 10px 0 20px 0;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
}

.bnr-1 .bnr-content img {
  display: inline-block;
  width: 35px;
}


/* banner-320 */
.banner-320 {
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  line-height: 32px;
}

.banner-320 h3 {
  margin: 20px 0;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 32px;
  font-size: 28px;
  font-family: Helvetica, Verdana, sans-serif;
  transition: all .4s;
}

.banner-320 p {
  margin: 20px 0;
  color: rgba(0, 0, 0, .8);
  line-height: 20px;
  letter-spacing: 1px;
  font-size: 15px;
  transition: all .4s;
}

.induce-box {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 5px 20px;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 1.4px;
  line-height: 14px;
  font-size: 14px;
  font-family: Helvetica, Verdana, sans-serif;
  transition: all .2s;
  cursor: pointer;
  user-select: none;
  transition: all .4s;
}

.induce-box:hover {
  border: 1px solid rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
}

.induce-box span {
  transition: opacity .2s;
}

.induce-box span:nth-child(1) {
  margin-left: 10px;
  opacity: .6;
}

.induce-box span:nth-child(2) {
  opacity: .8;
}

.induce-box span:nth-child(3) {
  opacity: 1;
}



.bnr-2 .bnr-content {
  position: absolute;
  left: 67%;
  top: 11%;
  display: flex;
  flex-direction: column;
  width: 28%;
  height: 100%;
  color: #fff;
}
.bnr-2 .bnr-content h3{
  margin-left: 20px;
}
.bnr-2 .bnr-content ul li{
  line-height: 24px;
}
.bnr-2 span{
  position: absolute;
  color: #fff;
}
.bnr-2 span:nth-of-type(1){
  top: 9%;
  left: 9%;
}
.bnr-2 span:nth-of-type(2){
  top: 54%;
  left: 8%;
  color: #3b4c72;
}
.bnr-2 span:nth-of-type(3){
  top: 62.5%;
  left: 9%;
  color: #3b4c72;
}
.bnr-2 span:nth-of-type(4){
  top: 25%;
  left: 47%;
}
.bnr-2 span:nth-of-type(5){
  top: 50%;
  left: 54%;
}
.bnr-2 span:nth-of-type(6){
  top: 75%;
  left: 46%;
  color: #3b4c72;
}


.detail{
  width: 100%;
  
}
.detail p{
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  margin-top: 8px;
  border: solid 1px #333;
}



.bnr-3 .bnr-content {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 54%;
  height: 100%;
  
}
.bnr-3 .bnr-side {
  width: 60%;
  margin:64% 12% 0;
}
.bnr-3 .bnr-side h3 {
  width: 100%;
  display: inline-block;
  color: #1a3258;
}
.bnr-3 .bnr-side p{
  color: #1a3258;
}
.bnr-3 .bnr-content span{
  height: 2px;
  width: 150px;
  background-color: #1a3258;
  display: inline-block;
  margin-bottom: 4%;
}
.bnr-3 .bnr-side img {
  display: block;
  width: 100%;
  margin-top: 60px;
}
.b3-detail{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.detail-3{
  width: 65%;
  margin-top: 18%;
}


.bnr-4 .bnr-content {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 52%;
  height: 100%;
  
}
.bnr-4 .bnr-side {
  width: 60%;
  margin:24% auto 0;
}
.bnr-4 .bnr-side h3 {
  width: 100%;
  display: inline-block;
  color: #fff;
}
.bnr-4 .bnr-side p{
  color: #fff;
}
/* .bnr-2 .bnr-side p{
  color: #fff;
} */
.bnr-4 .bnr-content span{
  height: 2px;
  width: 150px;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 4%;
  margin-top: 4%;
}

.b4-detail{
  width: 25%;
  text-align: center;
  margin-top: 30%;
}
.b4-detail img{
  display: block;
  width: 35%;
  margin: 0 auto;
}
.b4-detail p{
  font-size: 12px;
  line-height: 35px;
}


.bnr-5 .bnr-content {
  position: absolute;
  left: 5%;
  top: 25%;
  display: flex;
  justify-content: space-between;
  width: 90%;
}
.b5{
  width: 30%;
  text-align: center;
  color: #fff;
}
.b5 img{
  width: 100%;
}
.bg5{
  background: rgba(49, 58, 73, 0.8);
  padding: 8% 3% 0 3%;
  width: 25%;
}
.bg5 p{
  line-height: 29px;
}


.bnr-6 h3 {
  position: absolute;
  top: 36%;
  left: 19%;
  width: 26%;
  font-size: 33px;
  line-height: 44px;
  color: #333;
  font-weight: normal;
}
.bnr-6 p {
  position: absolute;
  top: 40%;
  left: 57%;
  width: 24%;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #333;
}


.bnr-7 .bnr-content {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 57%;
  height: 100%;
  
}
.bnr-7 .bnr-side {
  width: 60%;
  margin:15% auto 0;
}
.bnr-7 .bnr-side h3 {
  width: 100%;
  display: inline-block;
  color: #fff;
}
.bnr-7 .bnr-side p{
  color: #fff;
}

.bnr-7 .bnr-content span{
  height: 2px;
  width: 150px;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 4%;
}

.b7-detail{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.b7-detail img{
  display: block;
  margin-left: 2%;
  margin-top: 20%;
}
.b{
  margin: 5% auto 0;
  text-align: center;
}
.b h3{
  font-size: 28px;
  line-height: 30px;
  font-weight: normal;
}
.color{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 5%;
}
.color .color-1{
  text-align: center;
  width: 29%;
}
.color .color-1 h3{
  font-weight: normal;
  line-height: 13px;
}
.color .color-1 img{
  display: block;
  width: 100%;
  border: solid 2px #b6b6b6;
  border-radius: 1%;
}
.bnr-8 .bnr-content {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 57%;
  height: 100%;
  
}
.bnr-8 .bnr-side {
  width: 60%;
  margin:11% auto 0;
}
.bnr-8 .bnr-side h3 {
  width: 100%;
  display: inline-block;
  color: #fff;
}
.bnr-8 .bnr-side p{
  color: #fff;
}

.bnr-8 .bnr-content span{
  height: 2px;
  width: 150px;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 4%;
}

.b8-detail{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 10%;
}
.b8-detail img{
  display: block;
  width: 100%;
  margin-left: 2%;
  margin-top: 20%;
}
.b8-detail-1{
  width: 31%;
}
.b8-detail-1 p{
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .bnr {
    margin-bottom: 15px;
  }

  .bnr-content h3 {
    margin: 0 0 10px 0;
    line-height: 22px;
    font-size: 18px;
  }

  .bnr-content h4 {
    margin: 0 0 10px 0;
    line-height: 20px;
    font-size: 14px;
  }

  .bnr-content p {
    line-height: 18px;
    font-size: 12px;
  }

  .bnr-1 .bnr-content {
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.5);
    transform-origin: center;
  }
  
  .bnr-1 .bnr-content h3 {
    margin: 10px 0 0 0;
  }

  .bnr-1 .bnr-content p {
    margin: 0 0 10px 0;
  }


  .bnr-2 .bnr-content{
    transform: scale(0.5);
    transform-origin: 0 0;
    width: 60%;
    top: 1%;
    left: 63%;
  }
  .bnr-2 .bnr-content ul li{
    line-height: 18px;
    font-size: 12px;
    
  }
  .bnr-2 .bnr-content ul{
    width: 70%;
  }
  .bnr-2 span{
    transform: scale(0.5);
    transform-origin: 0 0;
  }
  .bnr-2 span:nth-of-type(1){
    top: 8%;
    left: 12%;
  }
  .bnr-2 span:nth-of-type(2){
    top: 52%;
    left: 3%;
    
  }
  .bnr-2 span:nth-of-type(3){
    top: 61%;
    left: 1%;
    
  }
  .bnr-2 span:nth-of-type(4){
    top: 24%;
    left: 47%;
  }
  .bnr-2 span:nth-of-type(5){
    top: 47%;
    left: 50%;
  }
  .bnr-2 span:nth-of-type(6){
    top: 72%;
    left: 41%;
    
  }
  
  
  .bnr-3 .bnr-content {
    left: 57%;
    top: 0%;
    width: 43%;
  }
  .bnr-3 .bnr-side {
    width: 100%;
    margin: 48% auto 0;
    margin-left: 30%;
    transform: scale(0.6);
    transform-origin: 0 0;
}
  .bnr-3 .bnr-side img {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .detail-3{
    width: 65%;
    margin-top: 0;
  }
  
  .bnr-4 .bnr-content {
    left: 0%;
    top: 0%;
    width: 99%;
    
    transform: scale(0.6);
    transform-origin: 0 0;
}
  

.bg5 p{
  display: none;
}
  
  
  
.bnr-6 h3 {
  top: 31%;
  left: 18%;
  width: 56%;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  font-weight: normal;
  transform: scale(0.6);
  transform-origin: 0 0;
  display: block;
}
.bnr-6 p {
  position: absolute;
  top: 34%;
  left: 55%;
  width: 56%;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  transform: scale(0.6);
  transform-origin: 0 0;
}
  
  
  
  
  .bnr-7 .bnr-content {
    right: 0;
    bottom: 0;
    width: 46%;
    height: 100%;
  }
  .bnr-7 .bnr-side {
    width: 100%;
    margin:15% auto 0;
    transform: scale(0.6);
    transform-origin: 0 0;
  }
  .bnr-7 .bnr-side h3 {
    width: 100%;
    display: inline-block;
    color: #fff;
  }
  .bnr-7 .bnr-content span{
    width: 90px;
  }
  .b7-detail{
   display: none;
  }
  
  .b{
    margin: 5% auto 0;
    text-align: center;
  }
  .b h3{
    font-size: 28px;
    line-height: 30px;
    font-weight: normal;
  }

  .color{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 97%;
    margin: 0 auto 5%;
  }
  .color .color-1{
    text-align: center;
    width: 32%;
  }
  .color .color-1 h3{
    font-weight: normal;
    line-height: 3px;
    font-size: 16px;
  }
  .color .color-1 p{
    font-size: 12px;
    line-height: 12px;
  }

  .bnr-8 .bnr-content {
    left: 3%;
    bottom: 0;
    width: 69%;
    height: 100%;
    
  }
  .bnr-8 .bnr-side {
    width: 100%;
    margin:11% auto 0;
    transform: scale(0.6);
    transform-origin: 0 0;
  }

  
  .b8-detail{
    display: none;
  }
  


  .banner-320 {
    top: 2%;
    left: 2%;
    transform: translateY(-50%);
    line-height: 32px;
    transform: scale(0.6);
    transform-origin: 0 0;
  }
  .b{
    margin: 0 auto;
    text-align: center;
  }
  .b h3{
    font-size: 26px;
    line-height: 26px;
  }
  

}


.view {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  background-color: #f7f8f9;
}

.view-img {
  position: relative;
  width: 60%;
}

.view-img img {
  display: block;
  width: 100%;
}

.view-label {
  position: absolute;
  color: #fff;
  font-size: 14px;
}

.view-label:nth-of-type(1) {
  top: 63.5%;
  left: 14%;
}

.view-label:nth-of-type(2) {
  top: 68%;
  left: 8%;
}

.view-label:nth-of-type(3) {
  top: 16%;
  left: 68%;
}

.view-label:nth-of-type(4) {
  bottom: 62%;
  left: 68%;
}
.view-label:nth-of-type(5) {
  bottom: 18%;
  left: 68%;
}

.view-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  box-sizing: border-box;
  padding: 0 40px;
}

.view-content h3 {
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
}

.view-content ul {
  margin: 0;
  padding: 0 0 0 20px;
}

.view-list li {
  list-style: disc;
  line-height: 24px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .view {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .view-label {
    transform: scale(.8);
    transform-origin: left top;
  }


  .view-label:nth-of-type(1) {
    top: 63%;
    left: 7%;
  }
  
  .view-label:nth-of-type(2) {
    top: 68%;
    left: 0%;
  }
  
  .view-label:nth-of-type(3) {
    top: 16%;
    left: 68%;
  }
  
  .view-label:nth-of-type(4) {
    bottom: 54%;
    left: 68%;
  }
  .view-label:nth-of-type(5) {
    bottom: 13%;
    left: 68%;
  }


  .view-img,
  .view-content {
    width: 100%;
  }

  .view-content {
    padding: 20px;
  }

  .view-content h3 {
    margin: 0 0 10px 0;
    line-height: 22px;
    font-size: 18px;
  }

  .view-list li {
    line-height: 18px;
    font-size: 12px;
  }
}



/* symbol-list */
.symbol-list {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 25%;
}

.symbol-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 3);
  margin-top: 20px;
}

.symbol-item span {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .symbol-list {
    width: 100%;
    margin-top: 0;
  }

  .symbol-item span {
    font-size: 12px;
  }
}




.focus {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 96%;
  margin: 0 auto 3%;
}

.focus-item {
  position: relative;
  width: calc(100% / 2 - 10px);
  margin-top: 20px;
  
}

.focus-item img {
  display: block;
  width: 100%;
}

.focus-content {
  position: absolute;
  left: 5%;
  bottom: 0%;
  padding: 0 30px;
  color: #fff;
  width: 43%;
}


.focus-item:nth-of-type(2) .focus-content {
  left: 55%;
  bottom: 0%;
  padding: 0 30px;
  width: 38%;
}
.focus-item:nth-of-type(3) .focus-content {
  left: 22%;
  top: 37%;
  padding: 0 30px;
  width: 54%;
}
.focus-item:nth-of-type(4) .focus-content {
  position: absolute;
  left: 52%;
  top: 8%;
  padding: 0 30px;
  color: #fff;
  width: 43%;
}

.focus-content .focus-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10%;
  margin-left: 15%;
}

.focus-content .focus-icon img {
  display: inline-block;
  width: 40px;
}

.focus-content .focus-icon span {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}

.focus-item h4 {
  margin: 40px 0 20px 0;
  line-height: 28px;
  font-size: 24px;
  font-weight: normal;
}

.focus-item p {
  width: 90%;
  margin: 0 0 40px 0;
  line-height: 24px;
  font-size: 16px;
}
.black{
  color: #333;
}

@media screen and (max-width: 768px) {
  .focus-item {
    width: 100%;
  }

  .focus-item h4 {
    margin: 20px 0 10px 0;
    line-height: 20px;
    font-size: 16px;
  }

  .focus-item p {
    margin: 0 0 20px 0;
    line-height: 16px;
    font-size: 12px;
  }
  .focus-content {
    left: 50%;
    transform: scale(0.8);
    transform-origin: 0 0;
  }
}


.goods-info {
  width: 96%;
  margin: 5% auto 0;
}

.goods-title {
  text-align: center;
  margin: 40px 0;
  color: #333;
}

.goods-info .goods-title img {
  display: inline-block;
  width: 40px;
  margin: 0;
}

.goods-info .goods-title h3 {
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
}

.goods-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}



.goods-list li {
  list-style: none;
  width: calc(100% / 1);
  line-height: 30px;
}
.alone.goods-list li {
  width: 100%;
}
.goods-info .goods-title-2{
  display: flex;
  flex-wrap: nowrap;
  /* border: solid 2px #333; */
  padding: 3% 5% 3% 5%;
  border: solid 2px #333;
}
.goods-title-2t{
  width: 80%;
}
.goods-title-2t img{
  width: 100%;
  display: block;
  margin-top: 10%;
}

.goods-info .goods-title-2 span{
  background-color: #333;
  height: 250px;
  width: 3px;
  display: inline-block;
  margin: auto;
  margin-left: 5%;
}
.goods-info .goods-title-3{
  width: 60%;
  margin: auto;
  padding-left: 5%;
}
.goods-info .goods-title-3 img{
  display: block;
  width: 100%;
}
.size2{
  margin: 5% auto 0;
  width: 95%;
}
.size2 img{
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .goods-info .goods-title img {
    width: 20px;
  }
  
  .goods-info .goods-title h3 {
    line-height: 22px;
    font-size: 18px;
  }

  .goods-info img {
    margin: 20px 0;
  }

  .goods-list {
    flex-direction: column;
  }

  .goods-list li {
    width: 100%;
    line-height: 16px;
    font-size: 12px;
  }


  .goods-info .goods-title-2{
    display: flex;
    flex-wrap: wrap;
    border: solid 2px #333;
    padding: 1%;
  }
  .goods-info .goods-title-2 img{
    width: 100%;
    display: inline-block;
  }
  .goods-info .goods-title-2 span{
    display: none;
  }
  .goods-info .goods-title-3{
    width: 90%;
    margin: auto;
    
    
  }

}
