@charset "UTF-8";

:root {
  --news-color-white: #ffffff;
  --news-color-black: #000000;
  --news-color-muted: #aaaaaa;
  --news-color-red: #83180f;
  --news-font-cn: "HarmonyOS Sans", "Microsoft YaHei", "PingFang SC", sans-serif;
  --news-font-en: "Playfair Display", "Times New Roman", serif;
  --news-font-desc:"HarmonyOS_Sans_Light"
}

.rs-news-page {
  background: var(--news-color-white);
}

.rs-news-main {
  display: flex;
  flex-direction: column;
  padding-top: var(--rs-header-height);
  color: var(--news-color-black);
  font-family: var(--news-font-cn);
  font-weight: 300;
}

.rs-news-divider {
  height: 0.06475rem;
  background: var(--news-color-red);
}

.rs-news-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.1rem 0 5.075rem;
  background: var(--news-color-white);
}

.rs-news-title__en {
  font-family: var(--news-font-en);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.1em;
  color: var(--news-color-black);
}

.rs-news-title__cn {
  margin: 0.075rem 0 0;
  font-family: var(--youqianhua-font-cn);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0.1em;
  color: var(--youqianhua-color-black);
}

.rs-news-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
  color: var(--youqianhua-color-black);
  line-height: 2;
  letter-spacing: 0.1em;
}

.rs-news-intro p {
  margin: 0 0 0.8rem;
  font-family: var(--news-font-cn);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0.1em;
  color: var(--news-color-black);
}

.rs-news-intro p:last-child {
  margin-bottom: 0;
}

.rs-news-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3.825rem;
  background: var(--news-color-white);
}

.rs-news-card {
  width: calc((100% - 1.1rem) / 3);
  display: flex;
  flex-direction: column;
  margin-right: 0.55rem;
  margin-bottom: 2rem;
}

.rs-news-card:nth-child(3n) {
  margin-right: 0;
}

.rs-news-card .rs-news-card__pic {
  height: 10.5rem;

  overflow: hidden;
  margin-bottom: 1.4rem;
}

.rs-news-card .rs-news-card__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}


.rs-news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.rs-news-card__date {
  font-family: var(--news-font-cn);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.1em;
  color: var(--news-color-muted);
}




.rs-news-card__title-line {
  font-family: var(--news-font-cn);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--news-color-black);
  /* height: 1.5rem; */
 
  margin-bottom: 0.45rem;
 /* 两行省略 */
 min-height: 1.5rem;
 display: -webkit-box;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 2;
 overflow: hidden;
 text-overflow: ellipsis;
 
}


.rs-news-card__summary {

  font-family: var(--news-font-desc);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--news-color-black);
  margin-bottom: .45rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
  text-overflow: ellipsis;
  
}
@media(min-width:996px){
  .rs-news-card__summary{
    height: 1rem;
  }
}



.rs-news-card__summary p:last-child {
  margin-bottom: 0;
}

.rs-news-card__divider {
  height: 0.0125rem;
  background: var(--news-color-red);
}

.rs-news-card__more {
  font-size: 0.35rem;
  line-height: 1.16;
  margin-top: 0.3rem;
  color: #AAA;
  letter-spacing: 1px;
  font-weight: 400;
  /* font-family: var(--news-font-desc); */
}

.rs-news-more {
  display: flex;
  justify-content: center;
  padding: 5.775rem 0 6.05rem;
  background: var(--news-color-white);
}

.rs-news-more__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 0.6rem;
  background: var(--news-color-red);
  color: var(--news-color-white);
  font-family: var(--news-font-cn);
  font-weight: 300;
  font-size: 0.35rem;
  line-height: 1.16;
  letter-spacing: 0.1em;
}

.rs-news-card__more,
.rs-news-card__title-line,
.rs-news-more__btn {
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.rs-news-card:hover .rs-news-card__more {
  color: var(--news-color-red);
}

.rs-news-card:hover .rs-news-card__title-line {
  color: var(--news-color-red);
}

.rs-news-more__btn:hover {
  background: var(--news-color-black);
  transform: translateY(-0.05rem);
}

.rs-news-card:hover .rs-news-card__pic img {
  transform: scale(1.05);

}

@media (hover: none) {

  .rs-news-card:hover .rs-news-card__more,
  .rs-news-card:hover .rs-news-card__title-line,
  .rs-news-more__btn:hover {
    transform: none;
  }
}

@media (max-width: 996px) {
  .rs-news-main {
    padding-top: var(--rs-header-height);
  }

  .rs-news-title-section {
    padding: 1.75rem 4% 1.5rem;
    padding: 1.75rem 4% 0rem;

  }

  .rs-news-title__en,
  .rs-news-title__cn {
    font-size: 0.5rem;
  }

  .rs-news-intro {
    width: 100%;
    padding: 0 4% 1.75rem;
  }

  .rs-news-intro p {
    font-size: 0.325rem;
    margin-bottom: 0.5rem;
  }

  .rs-news-list {
    padding: 0 4%;
    flex-direction: column;
  }

  .rs-news-card {
    width: 100%;
    padding-bottom: 1.75rem;
    border-bottom: 0.0125rem solid var(--news-color-red);
  }

  .rs-news-card:last-child {
    border-bottom: none;
  }


  .rs-news-card__divider {
    display: none;
  }

  .rs-news-more {
    padding: 1.75rem 0 2rem;
  }

  .rs-news-more__btn {
    font-size: 0.3rem;
  }
}

.rs-news-detail {
  display: flex;
  flex-direction: column;
  padding-top: var(--rs-header-height);
  color: var(--news-color-black);
  font-family: var(--news-font-cn);
  font-weight: 300;
}

.rs-news-detail-banner {
  width: 100%;
  height: 20rem;
  display: flex;
  overflow: hidden;
  flex: 0 0 auto;
}

.rs-news-detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rs-news-detail-intro {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--youqianhua-color-white);
}

.rs-news-detail-breadcrumb {
  position: absolute;
  left: 1.975rem;
  top: 2.65rem;
  color: var(--youqianhua-color-black);
  line-height: 1.16;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.rs-news-detail-title {
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rs-news-detail-title__en {

  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #AAA;
  margin-top: 0.5rem;
}

.rs-news-detail-title__cn {

  font-family: var(--youqianhua-font-cn);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--youqianhua-color-black);
}

.rs-news-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--youqianhua-color-black);
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 3rem;
  width: 66.5%;
}

.rs-news-detail-copy img {
  display: inline-block;
}

.rs-brand-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.rs-brand-list .rs-brand-item {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}

.rs-brand-item:nth-child(3n) {
  margin-right: 0;
}

.rs-brand-item .rs-brand-item__img {
  width: 100%;
  height: 10.5rem;
  overflow: hidden;
}

.rs-brand-item .rs-brand-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.35s ease;
}

.rs-brand-item .rs-brand-item__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 1.25rem;
}

.rs-brand-item .rs-brand-item__title__cn {

  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 1px;
  transition: color 0.35s ease;
  color: var(--news-color-black);
}

.rs-brand-item .rs-brand-item__title__en {
  font-size: 0.325rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #aaa;
  margin-top: 0.3rem;
}

.rs-brand-item__more {
  font-size: 0.325rem;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #aaa;
  margin-top: 0.45rem;
  border-bottom: .5px solid #76161B;
  transition: color 0.35s ease;
}
.rs-brand-item__more span{
  display: block;
  margin-left: 1px;
}

.rs-brand-item:hover .rs-brand-item__more {
  color: var(--news-color-red);
}

.rs-brand-item:hover .rs-brand-item__title__cn {
  color: var(--news-color-red);
}

.rs-brand-item:hover .rs-brand-item__img img {
  transform: scale(1.05);
}

.rs-news_more {
  font-family: var(--news-font-desc);
  margin: 6rem auto 0;
  width: auto;
  padding: 3px 12px;
  display: flex;
  font-size: .35rem;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  background-color: #84060d;
  color: #fff;
  cursor: pointer;
  letter-spacing: 1.4px;
  transition: all .5s;
}
.rs-news_more:hover{
  background-color: var(--news-color-black);
}
@media (max-width:996px) {
  .rs-news_more {
    margin-top: 0;
  }

  .rs-news-detail-copy {
    width: 92%;
    margin-top: 1.75rem;
  }

  .rs-news-detail-banner {
    height: 88vw;
  }

  .rs-brand-list {
    padding: 0 4%;
    flex-direction: column;
    gap: .75rem;
  }

  .rs-brand-list .rs-brand-item {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: .75rem;
  }

  .rs-news-card .rs-news-card__pic {
    margin-bottom: .75rem;
  }

  .rs-brand-item .rs-brand-item__title {
    padding-top: .75rem;
  }

  .rs-news-detail-title {
    width: 92%;
    margin-top: 1.75rem;
  }


  /*  */
  .rs-news-title__en,
  .rs-news-title__cn {
    font-size: .6rem;
  }

  .rs-news-card__date {
    font-size: .35rem;
  }

  .rs-news-card__date,
  .rs-news-card__more {
    font-size: 0.35rem;
  }

  .rs-news-card__title-line {
    font-size: 0.5rem;
  }

  .rs-news-card__summary {
    font-size: .4rem;
  }

  .rs-brand-item .rs-brand-item__title__cn {
    font-size: .5rem;
  }
.rs-brand-item__more ,
  .rs-brand-item .rs-brand-item__title__en {
    font-size: .4rem;
  }
}