.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;
}

@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: 15%;
  top: 37%;
  width: 30%;
  transform: translateY(-50%);
}

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

.bnr-1 .bnr-content h3 {
  margin: 20px 0 0 0;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}

.bnr-1 .bnr-content .ml {
  display: inline-block;
  margin: 20px 0 20px 0;
  padding: 5px 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  letter-spacing: 1px;
  line-height: 16px;
  font-size: 16px;
  color: #fff;
  opacity: .8;
}

.bnr-1 .bnr-content p {
  color: #fff;
  opacity: .8;
}

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

.bnr-2 .bnr-content {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 35%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.bnr-2 .bnr-side {
  width: 60%;
  margin: auto;
}

.bnr-2 .bnr-side h3 {
  width: 60%;
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  display: inline-block;
  border-bottom: 2px solid #eee;
}

.bnr-2 .bnr-side img {
  display: block;
  width: 100%;
  margin-top: 60px;
}

.bnr-3 .bnr-content {
  right: 0;
  bottom: 0;
  display: flex;
  width: 35%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.bnr-3 .bnr-side {
  width: 50%;
  margin: auto;
  text-align: center;
}

.bnr-3 .bnr-side img {
  display: block;
  width: 100%;
  margin: 100px 0;
}

@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: 14px;
  }

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

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

  .bnr-2 .bnr-content {
    width: 50%;
  }

  .bnr-2 .bnr-side {
    width: 80%;
  }

  .bnr-2 .bnr-side h3 {
    margin: 0 0 5px 0;
    padding: 0 0 5px 0;
  }

  .bnr-2 .bnr-side img,
  .bnr-3 .bnr-side img {
    display: none;
  }

  .bnr-3 .bnr-content {
    width: 60%;
  }

  .bnr-3 .bnr-side {
    width: 80%;
  }
}


.view {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.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: 12%;
  left: 6%;
  text-align: right;
}

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

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


.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(4) {
    bottom: 5%;
    left: 5%;
  }

  .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: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 140px;
}

.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;
}

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

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

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

.focus-content .focus-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.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: 80%;
  margin: 0 0 40px 0;
  line-height: 24px;
  font-size: 16px;
}

@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;
  }
}


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

.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-info img {
  display: block;
  width: 100%;
  margin: 40px 0;
}

.goods-list li {
  list-style: none;
  width: calc(100% / 2);
  line-height: 30px;
}

.goods-list li:nth-of-type(1),
.goods-list li:nth-of-type(2) {
  background-color: #eee;
}

.goods-list li:nth-of-type(5),
.goods-list li:nth-of-type(6) {
  background-color: #eee;
}

.alone.goods-list li {
  width: 100%;
}

@media screen and (max-width: 768px) {

  .bnr-3 .bnr-content {
    width: 50%;
  }
  .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;
  }
  .view-label:nth-of-type(1){
    left: 1%;
  }
  .view-label:nth-of-type(3) {
    top: 76%;
    left: 2%;
  }
}