* {
  font-family: Raleway, Raleway;
}

.banner {
  width: 100%;
  height: 39.063vw;
}

.banner .swiper-container {
  width: 100%;
  height: 100%;
}

.banner .swiper-container .swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  transition: 1s linear 2s;
  transform: scale(1.1, 1.1);
  cursor: pointer;
}

.banner .swiper-container .swiper-pagination {
  display: flex;
  align-items: center;
  bottom: 20px;
  justify-content: center;
}

.banner .swiper-container .swiper-pagination-bullet {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #292929;
  opacity: 0.6;
  margin: 0 10px !important;
}

.banner .swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  width: 16px;
  height: 16px;
}

.banner .swiper-container .swiper-slide-active img,
.banner .swiper-container .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}

.product-center {
  width: 74%;
  margin: 4.167vw auto;
}

.product-center .title {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 36px;
  color: #292929;
  line-height: 42px;
  text-align: left;
  margin-bottom: 70px;
}

.product-center .listbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-center .listbox .list {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease-in;
}

.product-center .listbox .list .pic {
  width: 80px;
  height: 80px;
  padding: 10px;
  margin-bottom: 20px;
}

.product-center .listbox .list .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-center .listbox .list p {
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  line-height: 19px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}


.product-center .listbox .list:hover {
  transform: translateY(-25px);
  transition: transform 0.3s ease-out;
}

.product-center .listbox .list:hover p {
  color: #E71215;
  text-decoration: underline;
}

.hot-product {
  width: 74%;
  height: auto;
  margin: 0 auto;
}

.hot-product .tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.hot-product .tab .title {
  display: flex;
  align-items: center;
}

.hot-product .tab .title img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.hot-product .tab .title p {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 36px;
  color: #292929;
  line-height: 42px;
  text-align: left;
}

.hot-product .tab .controlbtn {
  display: flex;
  align-items: center;
}

.hot-product .tab .controlbtn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #f7f7f7;
  cursor: pointer;
  user-select: none;
}

.hot-product .tab .controlbtn .btn .pic {
  position: relative;
  width: 18px;
  height: 18px;
}

.hot-product .tab .controlbtn .btn .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-product .tab .controlbtn .btn:hover {
  background-color: #E71215;
}

.hot-product .tab .controlbtn .btn .pic img:first-child {
  opacity: 0;
}

.hot-product .tab .controlbtn .btn .pic img:last-child {
  opacity: 1;
}

.hot-product .tab .controlbtn .btn:hover .pic img:first-child {
  opacity: 1;
}

.hot-product .tab .controlbtn .btn:hover .pic img:last-child {
  opacity: 0;
}

.hot-product .proSwiper {
  width: 100%;
  overflow: hidden;
}

.hot-product .proSwiper .swiper-slide {
  display: block;
  height: 29.219vw;
  border: 1px solid #F0F0F0;
  cursor: pointer;
}

.hot-product .proSwiper .swiper-slide .list {
  height: 100%;
  display: block;
}

.hot-product .proSwiper .swiper-slide .pic {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23.594vw;
  transition: transform 0.5s;
}

.hot-product .proSwiper .swiper-slide .pic img {
  /* 300px */
  width: 15.625vw;
  height: 15.625vw;
  object-fit: cover;
}

.hot-product .proSwiper .swiper-slide .bot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.625vw;
  background: #F7F7F7;
}

.hot-product .proSwiper .swiper-slide .bot p {
  position: relative;
  z-index: 2;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 1.25vw;
  color: #292929;
  transition: all 0.5s;
}

.hot-product .proSwiper .swiper-slide .bot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: all 0.7s;
  background-color: #E71215;
}

.hot-product .proSwiper .swiper-slide .bot::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: all 0.7s;
  background-color: #E71215;
}

.hot-product .proSwiper .swiper-slide:hover .pic {
  transform: scale(1.1);
}

.hot-product .proSwiper .swiper-slide:hover .bot p {
  color: #fff;
}

.hot-product .proSwiper .swiper-slide:hover .bot::after {
  width: 100%;
}

.hot-product .proSwiper .swiper-slide:hover .bot::before {
  width: 100%;
}

.hot-product .proSwiper .swiper-slide {
  /* 400px */
  height: 20.833vw;
}

.hot-product .proSwiper .swiper-slide .pic {
  /* 320px */
  height: 16.667vw;
}

.hot-product .proSwiper .swiper-slide .bot {
  /* 80px */
  height: 4.167vw;
}

.about {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 80px;
}

.about .left {
  width: 50%;
  height: auto;
}

.about .left .top {
  width: 100%;
  height: 243px;
  padding-right: 4.167vw;
}

.about .left .top .mess {
  width: 59%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: auto;
}

.about .left .top .mess .title {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 36px;
  color: #292929;
  line-height: 42px;
  margin-bottom: 2.5vw;
}

.about .left .top .mess .word {
  width: 100%;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 16px;
  color: #292929;
  line-height: 24px;
  text-align: left;
  margin-bottom: 2.813vw;
}

.about .left .top .mess .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.677vw;
  height: 2.813vw;
  background: rgba(255, 255, 255, 0.001);
  border-radius: 54px 54px 54px 54px;
  border: 1px solid #292929;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about .left .top .mess .more p {
  position: relative;
  z-index: 1;
  margin-right: 4px;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 0.938vw;
  color: #292929;
  line-height: 21px;
  text-align: left;
}

.about .left .top .mess .more img {
  position: relative;
  z-index: 1;
}

.about .left .top .mess .more::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #ee1d23;
  opacity: 0;
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.5s, opacity 0.5s;
}

.about .left .top .mess .more:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(20);
}

.about .left .top .mess .more img:nth-child(3) {
  display: none;
}

.about .left .top .mess .more:hover img:nth-child(3) {
  display: block;
}

.about .left .top .mess .more:hover img:nth-child(2) {
  display: none;
}

.about .left .top .mess .more:hover {
  transform: translateX(5px);
  border-color: #E71215;
  background-color: #E71215;
}

.about .left .top .mess .more:hover p {
  color: #fff;
}

.about .left .bot {
  width: 100%;
  height: 17.708vw;
  overflow: hidden;
  cursor: pointer;
}

.about .left .bot img {
  width: 100%;
  height: 100%;
  object-fit: none;
  transition: all 0.4s;
}

.about .left .bot:hover img {
  transform: scale(1.1);
}

.about .right {
  flex: 1;
  height: auto;
}

.about .right .top {
  width: 100%;
  height: auto;
  display: flex;
  padding: 0 15px;
}

.about .right .top .pic {
  width: 100%;
  height: 245px;
  overflow: hidden;
}

.about .right .top .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.4s;
}

.about .right .top .pic:hover img {
  transform: scale(1.1);
}

.about .right .top .count {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 52%;
  height: 17.708vw;
  padding-left: 4.167vw;
  background: #F7F7F7;
}

.about .right .top .count .tab {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
}

.about .right .top .count .tab .img {
  width: 2.734vw;
  height: 2.734vw;
}

.about .right .top .count .tab .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .right .top .count .tab p {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 1.875vw;
  color: #292929;
  line-height: 42px;
  text-align: left;
  margin-left: 1.771vw;
}

.about .right .top .count .word {
  width: 75%;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 16px;
  color: #292929;
  line-height: 24px;
  text-align: left;
  margin: 1.771vw 0 1.875vw 0;
  transition: all 0.4s;
}

.about .right .top .count .rightmore {
  width: 30px;
  height: 22px;
  transition: all 0.6s;
}

.about .right .top .count:hover .word {
  transform: translateX(10px);
}

.about .right .top .count:hover .rightmore {
  transform: translateX(25px);
}

.about .right .bot {
  display: flex;
  width: 100%;
  height: auto;
}

.about .right .bot .count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 32%;
  height: 21.875vw;
  padding-left: 2.604vw;
  background: #F7F7F7;
}

.about .right .bot .count .img {
  width: 3.125vw;
  height: 3.125vw;
}

.about .right .bot .count .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .right .bot .count .num {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 1.875vw;
  color: #292929;
  margin: 1.146vw 0 1.979vw 0;
}

.about .right .bot .count .word {
  width: 75%;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 16px;
  color: #292929;
  line-height: 24px;
  text-align: left;
  margin-bottom: 2.917vw;
  transition: all 0.4s;
}

.about .right .bot .count .rightmore {
  width: 30px;
  height: 22px;
  transition: all 0.6s;
}

.about .right .bot .count:hover .word {
  transform: translateX(10px);
}

.about .right .bot .count:hover .rightmore {
  transform: translateX(25px);
}

.about .right .bot .pic {
  width: 68%;
  height: 21.875vw;
  overflow: hidden;
}

.about .right .bot .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.4s;
}

.about .right .bot .pic:hover img {
  transform: scale(1.1);
}

.problem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 74%;
  height: auto;
  margin: 80px auto 0 auto;
}

.problem .list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 48%;
  height: 318px;
  padding: 3.125vw 2.083vw;
  transition: all 0.4s;
}

.problem .list .title {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 36px;
  color: #FFFFFF;
  line-height: 42px;
  text-align: left;
}

.problem .list .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 206px;
  height: 54px;
  background: rgba(255, 255, 255, 0.001);
  border-radius: 54px 54px 54px 54px;
  border: 1px solid #FFFFFF;
  transition: all 0.4s ease;
}

.problem .list .more p {
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 21px;
  text-align: left;
  margin-right: 4px;
}

.problem .list .more img {
  width: 30px;
  height: 22px;
}

.problem .list:nth-child(1) {
  background: #292929;
}

.problem .list:nth-child(1) .more img:nth-child(2) {
  display: none;
}

.problem .list:last-child {
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.07);
}

.problem .list:last-child .title {
  color: #292929;
}

.problem .list:last-child .more {
  border: 1px solid #292929;
  background: rgba(255, 255, 255, 0.001);
}

.problem .list:last-child .more p {
  color: #292929;
}

.problem .list:last-child .more img:nth-child(3) {
  display: none;
}

.problem .list:hover {
  background-color: #E71215;
}

.problem .list:hover .more {
  transform: translateX(20px);
  border-color: #E71215;
}

.problem .list:hover .title {
  color: #fff;
}

.problem .list:hover:last-child p {
  color: #FFFFFF;
}

.problem .list:hover:last-child .more img:nth-child(2) {
  display: none;
}

.problem .list:hover:last-child .more img:nth-child(3) {
  display: block;
}

.choosbox {
  width: 100%;
  background-color: #f3f3f3;
}

.choosbox .choos {
  width: 74%;
  margin: 80px auto 0 auto;
  padding: 40px 0;
}

.choosbox .choos .title {
  font-size: 1.771vw;
  margin-bottom: 40px;
}

.choosbox .choos .title i {
  color: #0B5394;
}

.choosbox .choos .listbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.choosbox .choos .listbox .list {
  display: flex;
  align-items: center;
  width: 50%;
  height: auto;
  margin-bottom: 20px;
}

.choosbox .choos .listbox .list img {
  width: 3.906vw;
  height: 3.906vw;
}

.choosbox .choos .listbox .list .word {
  margin-left: 20px;
}

.choosbox .choos .listbox .list .word .name {
  font-size: 1.771vw;
  margin-bottom: 10px;
}

.choosbox .choos .listbox .list .word p {
  font-size: 16px;
}

.news-module {
  width: 74%;
  height: auto;
  margin: 80px auto 0 auto;
}

.news-module {
  width: 74%;
  height: auto;
  margin: 80px auto 0 auto;
}

.news-module .list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 40px;
}

.news-module .list .left {
  width: 62%;
  height: auto;
  padding-bottom: 40px;
}

.news-module .list .left .time {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 20px;
  color: #E71215;
  line-height: 23px;
  text-align: left;
  margin-bottom: 20px;
}

.news-module .list .left .title {
  font-family: Raleway, Raleway;
  font-weight: 700;
  font-size: 1.875vw;
  color: #292929;
  line-height: 42px;
  text-align: left;
  margin-bottom: 2.083vw;
  transition: transform 0.3s;
}

.news-module .list .left p {
  width: 90%;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 18px;
  color: #757575;
  line-height: 27px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-module .list .right {
  width: 15vw;
  height: 11.25vw;
  border-radius: 36px 0 36px 0;
  overflow: hidden;
}

.news-module .list .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.news-module .list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E71215;
  transition: all 0.5s;
}

.news-module .list:hover::after {
  width: 100%;
}

.news-module .list:hover .left .title {
  color: #E71215;
  transform: translateX(10px);
}

.news-module .list:hover .left p {
  color: #E71215;
  text-decoration: underline;
}

.news-module .list:hover .right img {
  transform: scale(1.1);
}

.news-module .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 54px;
  background: #FFFFFF;
  border-radius: 54px 54px 54px 54px;
  border: 1px solid #E71215;
  margin: 2.083vw auto 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.news-module .more p {
  position: relative;
  z-index: 1;
  font-family: Raleway, Raleway;
  font-weight: 400;
  font-size: 18px;
  color: #E71215;
  margin-right: 4px;
}

.news-module .more img {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 22px;
}

.news-module .more img:nth-child(3) {
  display: none;
}

.news-module .more::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #ee1d23;
  opacity: 0;
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.5s, opacity 0.5s;
}

.news-module .more:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(20);
}

.news-module .more:hover {
  background-color: #E71215;
}

.news-module .more:hover img:nth-child(3) {
  display: block;
}

.news-module .more:hover img:nth-child(2) {
  display: none;
}

.news-module .more:hover p {
  color: #fff;
}

.choospic {
  display: none;
}

@media (max-width: 1400px) {
  .about .word {
    font-size: 14px !important;
  }

  .about .left .top .mess .title {
    margin-bottom: 15px;
  }

  .about .left .top .mess .word {
    margin-bottom: 15px;
  }
}

@media (max-width: 1200px) {
  .about .left .top .mess .title {
    font-size: 26px;
  }
}

@media (max-width: 1100px) {
  .about .word {
    font-size: 12px !important;
  }

  .about .left .top .mess .title {
    font-size: 22px;
  }

  .about .left .top .mess .title {
    margin-bottom: 8px;
  }

  .about .left .top .mess .word {
    margin-bottom: 8px;
  }
}

@media (max-width: 961px) {
  .banner {
    width: 100%;
    height: 200px;
  }

  .product-center {
    width: 100%;
    height: auto;
    margin: 20px 0;
    padding: 0 0.4rem;
  }

  .product-center .title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .product-center .listbox {
    flex-wrap: wrap;
  }

  .product-center .listbox .list {
    width: 48%;
    margin-bottom: 30px;
  }

  .hot-product {
    width: 100%;
    height: auto;
    padding: 0 15px;
  }

  .hot-product .tab {
    margin-bottom: 20px;
  }

  .hot-product .tab .title img {
    width: 30px;
    height: 30px;
  }

  .hot-product .tab .title p {
    font-size: 24px;
  }

  .hot-product .tab .controlbtn {
    display: none;
  }

  .hot-product .swiper-slide {
    height: auto !important;
  }

  .hot-product .swiper-slide .list .pic {
    height: 150px !important;
  }

  .hot-product .swiper-slide .list .bot {
    padding: 5px;
    height: 50px !important;
  }

  .hot-product .swiper-slide .list .bot p {
    font-size: 14px;
  }

  .about {
    display: block;
    width: 100%;
    margin: 30px 0;
  }

  .about .left {
    width: 100%;
  }

  .about .left .top {
    height: auto;
    padding: 15px;
  }

  .about .left .top .mess {
    width: 100%;
  }

  .about .left .top .mess .word {
    font-size: 14px !important;
  }

  .about .left .top .mess .more {
    width: 120px;
    height: 35px;
  }

  .about .left .top .mess .more p {
    font-size: 14px;
  }

  .about .left .top .mess .more img {
    width: 24px;
    height: 18px;
  }

  .about .left .bot {
    width: 100%;
    height: 150px;
  }

  .about .right .top .pic {
    height: auto;
  }

  .about .right .top .count {
    height: auto;
    padding: 10px;
  }

  .about .right .top .count .tab .img {
    width: 30px;
    height: 30px;
  }

  .about .right .top .count .tab p {
    font-size: 14px;
  }

  .about .right .top .count .word {
    width: 100%;
    margin: 10px 0;
  }

  .about .right .top .count .rightmore {
    width: 24px;
    height: 18px;
  }

  .about .right .bot .pic {
    width: 52%;
    height: auto;
  }

  .about .right .bot .count {
    width: 48%;
    height: auto;
    padding: 10px;
  }

  .about .right .bot .count .img {
    width: 30px;
    height: 30px;
  }

  .about .right .bot .count p {
    font-size: 14px;
  }

  .about .right .bot .count .num {
    width: 100%;
    margin: 10px 0;
    font-size: 14px;
  }

  .about .right .bot .count .word {
    width: 100%;
    margin-bottom: 10px;
    line-height: 18px;
  }

  .about .right .bot .count .rightmore {
    width: 24px;
    height: 18px;
  }

  .problem {
    display: block;
    width: 100%;
    margin: 30px 0;
    padding: 0 15px;
  }

  .problem .list {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
  }

  .problem .list .title {
    font-size: 24px;
  }

  .problem .list .more {
    width: 150px;
    height: 40px;
  }

  .problem .list .more p {
    font-size: 16px;
  }

  .problem .list .more img {
    width: 24px;
    height: 18px;
  }

  .choosbox {
    width: 100%;
    background-color: #f3f3f3;
  }

  .choosbox .choos {
    width: 100%;
    margin: 30px auto 0 auto;
    padding: 20px 15px;
  }

  .choosbox .choos .title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .choosbox .choos .title i {
    color: #0B5394;
  }

  .choosbox .choos .listbox {
    display: block;
    width: 100%;
    height: auto;
  }

  .choosbox .choos .listbox .list {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .choosbox .choos .listbox .list img {
    width: 35px;
    height: 35px;
  }

  .choosbox .choos .listbox .list .word {
    margin-left: 10px;
  }

  .choosbox .choos .listbox .list .word .name {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .choosbox .choos .listbox .list .word p {
    font-size: 14px;
  }

  .news-module {
    width: 100%;
    height: auto;
    padding: 0 15px;
    margin: 30px 0;
  }

  .news-module .tab {
    margin-bottom: 20px !important;
  }

  .news-module .tab .title p {
    font-size: 24px !important;
  }

  .news-module .list {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .news-module .list .left {
    padding-bottom: 20px;
  }

  .news-module .list .left .time {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .news-module .list .left .title {
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-module .list .left p {
    font-size: 14px;
  }

  .news-module .list .right {
    width: 120px;
    height: 120px;
  }

  .news-module .more {
    width: 150px;
    height: 40px;
  }

  .news-module .more p {
    font-size: 16px;
  }

  .news-module .more img {
    width: 24px;
    height: 18px;
  }

  .choospic {
    display: block;
  }

  .about .right .top {
    display: block;
  }

  .about .right .top .pic {
    width: 100% !important;
    height: 150px;
  }

  .about .right .top .count {
    width: 100% !important;
  }

  .about .right .bot {
    display: block;
  }

  .about .right .bot .count {
    width: 100% !important;
    height: auto;
  }

  .about .right .bot .pic {
    width: 100% !important;
  }
}