* {
  margin: 0;
  padding: 0;
}
button {
  border: none;
  outline: none;
  font-family: inherit;
}
body {
  background: #F4F4F4;
  padding-top: 2.13rem;
}
.news_view_head {
  padding: 0.3rem 0 0.6rem;
}
.news_view_head h2 {
  width: 100%;
  font-family: Poppins-Bold;
  font-weight: bold;
  font-size: 0.3rem;
  color: #000000;
  line-height: 1.5;
}
.news_view_head .date {
  margin-top: 0.18rem;
  font-family: Poppins-Bold;
  font-weight: bold;
  font-size: 0.2rem;
  color: #747474;
  text-transform: uppercase;
}
.news_view_body {
  padding: 0.68rem 0;
  background: #FFFFFF;
}
.news_view_body .main {
  display: flex;
  justify-content: space-between;
  column-gap: 0.74rem;
}
.news_view_body .main .article_detail {
  width: calc(100% - 4rem);
  font-size: 0.18rem;
  color: #151515;
  line-height: 1.944;
}
.news_view_body .main .article_detail p {
  font-weight: 400;
  font-size: 0.18rem;
  color: #151515;
  line-height: 1.944;
  margin: 0.2rem 0;
}
.news_view_body .main .article_detail > img {
  width: revert-layer;
  max-width: 100%;
  height: auto;
}
.news_view_body .main .article_detail strong,
.news_view_body .main .article_detail b {
  font-weight: bold;
}
.news_view_body .main .hot_side {
  width: 3.24rem;
  padding-top: 0.2rem;
  
  
  height: fit-content;
  position: sticky;
  top: 1.6rem;
}
.news_view_body .main .hot_side h3 {
  margin-bottom: 0.3rem;
  font-family: Poppins-Bold;
  font-size: 0.2rem;
  color: #000000;
}
.news_view_body .main .hot_side .side_item {
  display: block;
  margin-bottom: 0.48rem;
}
.news_view_body .main .hot_side .side_item .side_img {
  width: 100%;
  height: 0;
  padding-bottom: 61.7%;
  overflow: hidden;
  position: relative;
  border-radius: 0.1rem;
}
.news_view_body .main .hot_side .side_item .side_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.news_view_body .main .hot_side .side_item span {
  display: block;
  margin-top: 0.24rem;
  font-family: Poppins-Light;
  font-weight: 300;
  font-size: 0.16rem;
  color: #656363;
}
.news_view_body .main .hot_side .side_item p {
  margin-top: 0.06rem;
  font-family: Poppins-SemiBold;
  font-weight: 600;
  font-size: 0.18rem;
  color: #000000;
  line-height: 1.55;
}
.news_view_body .main .hot_side .side_item:hover img {
  transform: scale(1.1);
}
.news_view_body .main .hot_side .side_item:hover p {
  color: #0072E5;
}
.news_view_body .main .hot_side .return {
  width: 0.32rem;
  height: 0.32rem;
  display: block;
  margin: 0.76rem 0 0 auto;
}
.related_products {
  padding: 0.7rem 0;
}
.related_products .main {
  overflow: hidden;
}
.related_products h2 {
  font-family: Poppins-Bold;
  font-weight: bold;
  font-size: 0.45rem;
  color: #000000;
  line-height: 1.644;
}
.related_products > .main > p {
  font-family: Poppins-Light;
  font-weight: 300;
  font-size: 0.2rem;
  color: #000;
}
.related_products .product_scroll {
  margin-top: 0.45rem;
  display: flex;
  column-gap: 0.3rem;
}
.related_products .product_item {
  border: 0.01rem solid transparent;
  border-radius: 0.05rem;
  background: #FFFFFF;
  padding: 0.13rem 0.18rem 0.13rem 0.1rem;
  display: flex;
  column-gap: 0.14rem;
  align-items: center;
}
.related_products .product_item .product_img {
  width: 1.56rem;
  height: 1.56rem;
  overflow: hidden;
}
.related_products .product_item .product_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related_products .product_item .product_info {
  width: calc(100% - 1.7rem);
}
.related_products .product_item .product_info h3 {
  font-family: Poppins-SemiBold;
  font-weight: 600;
  font-size: 0.2rem;
  color: #0069DB;
  line-height: 1.6;
}
.related_products .product_item .product_info p {
  margin-top: 0.03rem;
  font-family: Poppins-Light;
  font-weight: 300;
  font-size: 0.14rem;
  color: #000;
  line-height: 1.5;
  margin-bottom: 0.14rem;
}
.related_products .product_item:hover {
  border-color: #0072E5;
}
.related_products .product_item:hover .text_more {
  color: #0072E5;
}
.related_products .product_item:hover .text_more::after {
  left: calc(100% + 0.1rem);
  background: url(../img/nav_icon.png) no-repeat center center;
  background-size: contain;
}
.related_products .product_item:hover .text_more::before {
  width: 100%;
}








@media screen and (max-width: 1042px) {
    body{
        padding-top: 190px;
    }
    .news_view_head{
        padding: 30px 0 50px;
    }
    .news_view_head h2{
        font-size: 24px;
    }
    .news_view_head .date{
        font-size: 16px;
        margin-top: 16px;
    }
    .news_view_body .main{
        column-gap: 40px;
    }
    .news_view_body .main .article_detail{
        width: calc(100% - 240px);
    }
    .news_view_body .main .article_detail p{
        font-size: 16px;
    }
    .news_view_body .main .hot_side{
        width: 200px;
    }
    .news_view_body .main .hot_side .side_item p{
        font-size: 14px;
    }
    .news_view_body .main .hot_side .side_item span{
        font-size: 12px;
    }



    .related_products{
        padding: 40px 0;
    }
    .related_products h2{
        font-size: 28px;
    }
    .related_products>.main>p{
        font-size: 16px;
    }
    .related_products .product_item .product_info h3{
        font-size: 16px;
    }
    .related_products .product_item .product_info p{
        font-size: 14px;
    }
    .related_products .product_item .product_info .more_btn{
        font-size: 13px;
    }
}



@media screen and (max-width: 768px) {
    body{
        padding-top: 100px;
    }
    .news_view_head{
        padding: 20px 0;
    }
    .news_view_head h2{
        font-size: 18px;
    }
    .news_view_head .date{
        font-size: 14px;
        margin-top: 16px;
    }
    
    .news_view_body .main{
        flex-wrap: wrap;
    }
    .news_view_body .main .article_detail{
        width: 100%;
    }
    .news_view_body .main .article_detail p{
        font-size: 14px;
    }

    .news_view_body .main .hot_side{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .news_view_body .main .hot_side h3,
    .related_products h2{
        width: 100%;
        font-size: 20px;
    }
    .news_view_body .main .hot_side .side_item{
        width: calc(50% - 5px);
    }
    .news_view_body .main .hot_side .side_item + .side_item{
        margin-left: 10px;
    }
    .related_products>.main>p {
        font-size: 14px;
    }
    .related_products .product_item .product_img{
        width: 100px;
        height: 100px;
    }
    .related_products .product_item .product_info{
        width: calc(100% - 120px);
    }
    .related_products .product_item .product_info p {
        font-size: 12px;
    }
}








