.article-template {
  /* padding-top: 80px; */
  /* padding-bottom: 80px; */
}
.article-template > *:first-child {
  padding-top: 0;
}
.article-template .media {
  display: block;
  position: relative;
  overflow: hidden;
}
.article-template .media > * {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.article-template .media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 10px;
}
.article-template__hero-container {
  padding-top: 30px;
  padding-bottom: 40px;
}
.article-template__hero-container + .article-template__content {
  padding-top: 0;
}
.article-template__hero-small {
  height: 110px;
}
.article-template__hero-medium {
  height: 220px;
}
.article-template__hero-large {
  height: 330px;
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .article-template__hero-small {
    height: 220px;
  }

  .article-template__hero-medium {
    height: 440px;
  }

  .article-template__hero-large {
    height: 660px;
  }
}
@media screen and (min-width: 990px) {
  .article-template__hero-small {
    height: 275px;
  }

  .article-template__hero-medium {
height: 340px;
border-radius: 10px;
  }

  .article-template__hero-large {
    height: 825px;
  }
}
.article-template .caption-with-letter-spacing {
  opacity: 1;
  font-weight: 400;
    font-size: 12px;
    color: #d3d3d3;
font-family: Inter, sans-serif;
}
.article-template header {
  /* padding-top: 40px; */
  /* padding-bottom: 20px; */
}
.rest-realistic-padding{
padding-right: 0;
}
.article-template__title {
    padding-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #d3d3d3;
    font-family: Lab Grotesque;
}
.article-template__link {
  display: flex;
  text-decoration: none;
  align-items: center;
}
.article-template__link .icon-wrap {
  display: flex;
  margin-right: 10px;
  transform: rotate(90deg);
  position: relative;
  transform-origin: center;
  width: 10px;
  height: 10px;
}
/* 右边产品模块开始 */
.product-art-right-box {
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px;
    width: 340px;
    position: relative;
    background: #000;
}

.product-image-right-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.product-image-right-box img {
    width: 100%;
    border-radius: 10px;
}

.product-right-favorite-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 20px;
    cursor: pointer;
    background: #d3d3d3;
    opacity: 0.5;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: flex-start;
    border-radius: 50%;
    justify-content: center;
}

.product-right-favorite-icon.active {
    color: #121212;
}

.product-right-sale-status {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 12px;
    font-weight: bold;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.product-right-sale-status-out{
    position: absolute;
        top: 1px;
        right: 1px;
        font-size: 12px;
        font-weight: bold;
        background: #000;
        color: red;
        padding: 5px 10px;
        border-radius: 5px;
}

.product-right-product-title {
    font-family: Inter, sans-serif;
    font-size: 12px;
    margin: 10px 0;
    color: #f5f5f5;
}

.product-right-product-description {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    /* color: #555; */
    color: #fff;
}

.product-right-reviews {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.product-right-reviews .product-right-stars {
    color: gold;
    font-size: 20px;
    margin-right: 5px;
}

.product-right-reviews .product-right-review-count {
    font-size: 13px;
    color: #007aff;
    font-family: Inter, sans-serif;
}

.product-right-cart-module {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.product-right-cart-module .product-right-prices {
    display: flex;
    flex-direction: column;
}

.product-right-cart-module .product-right-original-price {
    text-decoration: line-through;
    color: #a7a7a7;
    font-size: 12px;
    font-family: Inter, sans-serif;
}

.product-right-cart-module .product-right-current-price {
    font-size: 16px;
    color: #fcfcfc;
    margin-top: 4px;
    font-family: Inter, sans-serif;
}

.product-right-cart-module .product-right-cart-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.product-right-cart-button {
    position: relative;
    background-color: white;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    justify-content: center;
    overflow: hidden;
    border: none;
}

.product-right-cart-button::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 14px;
    /* 边框半径应比按钮大 */
    padding: 2px;
    /* 边框厚度 */
    background: linear-gradient(to right, yellow, red, blue);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.product-right-cart-button:hover {
    background-color: black;
    color: white;
}


.product-right-cart-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.product-right-cart-button:hover .product-right-cart-icon svg {
    fill: #fff;
    /* 鼠标悬停时图标颜色变为白色 */
}
/* 右边产品模块结束 */

/* css代码开始 */
.best-realistic-sex{
    display: inline-block;
}
.best-realistic-sex__wrapper {
    display: flex;
    flex-wrap: wrap;
    /* 确保在小屏幕上能换行 */
}

.best-realistic-sex__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* 横向排列 */
    flex: 1;
    /* 确保容器内的项目均分宽度 */
}

.best-realistic-sex__item {
    flex: 1;
    margin: 10px;
    /* 可根据需要调整间距 */
}
.simple-to-articles-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: -10px;
    /* padding-bottom: 40px; */
    margin-top: 50px;
}

.simple-to-articles-sec .simple-to-articles-sec-left-container {
    display: flex;
    align-items: center;
}

.simple-to-articles-sec .simple-to-articles-sec-left-container img {
    width: 18px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.simple-to-articles-sec .simple-to-articles-sec-left-container h3 {
    font-size: 16px;
    color: #d3d3d3;
    margin: 0 10px;
}

.simple-to-articles-sec .simple-to-articles-sec-right-container img {
    width: 24px;
    height: auto;
}
.simple-to-articles-sec-myself-p{
width: 300px;
overflow: hidden;
margin-left: 4px;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 16px;
color: #d3d3d3;
font-family: Inter, sans-serif;

}

.footer-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 20px;
    background-color: #121212;
    width: 96%;
    margin: 0 auto;
    border-radius: 10px;
}

.footer-author-buttons {
    display: flex;
    gap: 10px;
}

.footer-author-buttons button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.footer-author-text {
    font-size: 14px;
}

.footer-author-icons {
    display: flex;
    gap: 10px;
}

.footer-author-icons span img {
    width: 24px;
    height: auto;
    margin-right: 20px;
}
.caption-with-letter-spacing-size span{
    font-size: 14px;
}
.field__description {
    position: relative;
    bottom: 46px;
    white-space: nowrap;
    /* width: 100%; */
    /* background: red; */
    color: #d5d5d5;
}
.field__description-comment {
    position: relative;
    bottom: 68px;
    white-space: nowrap;
    /* width: 100%; */
    /* background: red; */
    color: #d5d5d5;
}
.field-comment-input-padding{
    margin-top: 26px;
}
.field-bg{
    background: #1a1a1a;
}
.Related-posts-card-image{
    width: auto;
    height: 250px;
}
.article-template_all-container{
    display: flex;justify-content: center;
}
.article-template__right-Products{
    padding-left: 70px;
    /* width: 30%; */
}
.article-template__right-Products h1{
    font-size: 24px;
    font-weight: bold;
    color: #f5f5f5;
}
/* css代码结束 */
.article-template__content {
width:70%;
left: 0px;
margin: unset;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.article-template__divide {
  width: 100%;
}
.article-template__divide:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(var(--color-entry-line));
}
.article-template__social-sharing {
  padding-top: 40px;
  padding-bottom: 40px;
}
.article-template__comment-title {
  /* text-transform: uppercase; */

padding-top: 60px;
font-size: 24px;
font-weight: bold;
}
.article-template__comment-title::first-letter {
     text-transform: uppercase;
 
 }
.article-template__comments-comment {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  padding-bottom: 15px;
  width: 100%;
  min-height: 145px;
  background: var(rgba(--color-page-background));
  /* border: 1px solid rgb(var(--color-entry-line)); */
  border: 1px solid #333333;
  border-radius: var(--card-border-radius);
  margin-bottom: 20px;
}
.myself-comment-count{
    font-size: 14px;
    color: #d3d3d3;
    font-family: Inter, sans-serif;
    padding-bottom: 10px;
}
.article-template__comments-comment .caption-with-letter-spacing {
    font-size: 16px;
    font-weight: bold;
  opacity: 1;
}
.caption-with-letter-spacing-span{
    color: #d3d3d3;
    vertical-align: middle;
}
.article-template__comments-comment .right {
display: flex;
justify-content: space-between;
padding-top: 15px;
border-top: 1px solid #333333;
}
.article-template__comments-comment .right::after{
    display: block;
    border-top: 1px solid #333333;
    
}
.article-template__comments-comment:last-of-type {
  padding-bottom: 0;
}
.article-template__comment-warning {
  margin-top: 20px;
}
.article-template__comment-submit {
  text-align: left;
  /* padding-top: 40px; */
}
.article-template__comment-submit_button{
    background-color: #fff;
        --border-opacity: navajowhite;
    color: #000;
    border: 1px solid transparent;
}
.article-template__comment-submit_button:hover{
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}
.article-template__back {
  padding-top: 40px;
  padding-bottom: 80px;
}
.article-template .circle-divider::after {
  /* content: "\2022"; */
  content: '';
  margin: 0 13px 0 15px;
}
.article-template .circle-divider:last-of-type::after {
  display: none;
}
.article-template .comment_title {
  /* text-transform: uppercase; */
  padding-bottom: 14px;
  font-weight: bold;
  padding-top: 40px;
  font-size: 32px;
font-family: Lab Grotesque !important;
color: #f5f5f5;
}
.comment_audit_tip_myself{
    font-size: 14px;
    color: #d3d3d3;
    margin-bottom: 40px;
}
.article-template .field__info {
  padding-bottom: 40px;
}
.article-template__comments-fields > .field:last-child {
  margin-bottom: 0;
}
.Related-posts-card .Related-posts-card-a{
    text-decoration: none;
}
.Related-posts-card .Related-posts-card-a:hover {
    text-decoration: none;
}
.Related-posts-card:hover{
    transform: scale(1.01);
    transition: all 0.5s;
}
.related-posts-card-author{
padding-left: 15px;
padding-top: 10px;
}
.related-posts-container-wrapper {
overflow: hidden;
width: 96%;
margin: 0 auto;
position: relative;
}

.related-posts-container {
display: flex;
transition: transform 0.5s ease;
width: 100%;
}

.Related-posts-card {
border: 1px solid #333333;
/* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
border-radius: 8px;
overflow: hidden;
/* width: calc(100% / 3); */
width: calc((100% / 3) - 22px);
flex-shrink: 0;
box-sizing: border-box;
padding: 10px;
margin: 16px;
}
.Related-posts-card:first-child{
margin-left: 0;
}
.Related-posts-card img {
width: 100%;
/* height: auto; */
border-radius: 10px;
object-fit: cover;
}

.Related-posts-card-content {
padding: 15px;
}

.Related-posts-card-content h3 {
margin: 0 0 10px;
font-size: 16px;
color: #f5f5f5;
font-family: -apple-system,
BlinkMacSystemFont,
Segoe UI,
Roboto,
Ubuntu,
Helvetica Neue,
sans-serif,
Apple Color Emoji,
Segoe UI Emoji,
Segoe UI Symbol;
display: -webkit-box;
-webkit-line-clamp: 3;
/* 显示的行数 */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.Related-posts-card-content p {
margin: 0 0 15px;
font-family: Inter, sans-serif;
color: #a7a7a7;
font-size: 16px;
display: -webkit-box;
-webkit-line-clamp: 3;
/* 显示的行数 */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.Related-posts-card-content a {
color: #f5f5f5;
text-decoration: underline;
text-underline-offset: 8px;
font-size: 16px;
font-family: Inter, sans-serif;
font-weight: bold;
}

.Related-posts-card-content a:hover {
text-decoration: underline;
}

.related-posts-title {
width: 96%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
margin-top: 40px;
}

.related-posts-title h1 {
font-size: 32px;
color: #f5f5f5;
font-weight: bold;
font-family: 'Lab Grotesque', sans-serif;
}

.control-buttonre {
background: transparent;
cursor: pointer;
border: none;
}

.control-button-left:hover {
transform: translateX(-8px);
transition: all 0.5s;
}

.control-button-right:hover {
transform: translateX(8px);
transition: all 0.5s;
}

.control-buttonre img {
width: 24px;
}

.control-button-left img {
width: 24px;
transform: rotate(-180deg);
}

@media (max-width: 959px) {
.article-template_all-container{
    display: flex;
    flex-direction: column;
}
.article-template__right-Products{
    display: none;
    width: 100%;
}
.Related-posts-card {
    width: 100%;
    /* width: calc((100%) - 22px); */
    margin: 0;
}
.related-posts-title{
    width: 94%;
}
.related-posts-title h1{
    font-size: 24px;
}

}
@media (min-width: 960px) {
  .article-template .article-template__comment-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
}
@media (max-width: 959px) {
.footer-author-icons{
    padding-top: 10px;
}
.article-template .comment_title{
    padding-top: 0;
}
.footer-author{
    flex-direction: column;
}
.footer-author-buttons{
    display: none;
}
.simple-to-articles-sec{
    width: 96%;
}
.best-realistic-sex__wrapper{
display: flex;
flex-direction: column;
flex-wrap: unset;
}
.simple-to-articles-sec-myself-p{
    width: 100px;
    font-size: 14px;
}
.simple-to-articles-sec .simple-to-articles-sec-left-container h3{
    font-size: 14px;
}
.article-template__comment-submit_button {
    border-radius: 10px;
    padding: 10px 16px;
}
.field-bg {
        
        margin-bottom: 44px;
    }
.comment_audit_tip_myself{
    margin-bottom: 48px;
}
.article-template__content{
    width: 100%;
}
  .article-template {
    padding-top: 40px;
    padding-bottom: 22px;
  }
  .article-template__hero-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .article-template header {
    padding-top: 20px;
  }
  .article-template__content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .article-template__social-sharing {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .article-template__back {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .article-template__comment-wrapper {
    padding-bottom: 0px;
  }
  .article-template__comments-comment {
    padding: 20px;
    font-size: 16px;
    min-height: 100px;
  }
  .article-template .comment_title {
    padding-bottom: 20px;
    font-size: 24px;
  }
  .article-template__comments {
    padding-bottom: 30px;
  }
  .article-template__comment-title {
    padding-bottom: 0px;
padding-top: 34px;
  }
  .article-template__comment-warning {
    margin-top: 10px;
  }
  .article-template .field__info {
    padding-bottom: 40px;
  }
  .article-template__comment-submit {
    /* padding-top: 30px; */
  }
  .field-comment-input-padding{
    margin-bottom: 14px;
  }
}
@media (min-width:959px) and (max-width:1280px){
    .article-template__content{
        width: 62%;
    }
    .article-template__right-Products{
        padding-left: 0;
        width: 38%;
    }
}
/* The ipad end responds to the mobile end in vertical screen */
/* @custom-media --tablet (max-width: 959px); */
/* @custom-media --gt-mobile (min-width: 751px); */
/* detectingScreen need to consider the configuration of the tablet */
.product-form {
    position: relative;
}

.loading-overlay__spinner {
    position: absolute;
    top: 7px;
    left: 20px;
}