 .ftl-review .body-box {
     position: relative;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: center;
     /* min-height: 300px; */
     /* 移动端高度 */
 }

 .ftl-review .carousel-list {
     display: flex;
     transition: transform 0.5s ease;
     padding: 0;
     margin: 0;
     list-style: none;
     height: 100%;
 }

 .ftl-review .item-box {
     min-width: 100%;
     padding: 0;
     box-sizing: border-box;
     opacity: 0;
     transition: width 0.5s, opacity 0.3s ease-in;
     display: none;
     align-items: center;
     justify-content: center;

 }

 .ftl-review .item-box.active {
     display: flex;
     opacity: 1;
 }

 /* 箭头样式 - 移动端适配 */
 .ftl-review .carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 36px;
     height: 36px;
     background: rgba(0, 0, 0, 0.5);
     color: white;
     border: none;
     border-radius: 50%;
     font-size: 18px;
     cursor: pointer;
     z-index: 10;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .ftl-review .prev-btn {
     left: 5px;
 }

 .ftl-review .next-btn {
     right: 5px;
 }

 /* 内容样式 - 移动端适配 */
 .ftl-review .item-content {
     /* background: #f9f9f9; */
     padding: 20px;
     border-radius: 8px;
     /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
     width: 100%;
     max-width: 1000px;
     margin: 0 auto;
     text-align: center;
 }

 .ftl-review .item-body {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .ftl-review .u-line-1 {
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     max-width: 100%;
     text-align: center;
     font-size: 16px;
     /* 移动端字体大小 */
 }

 .ftl-review .u-line-3 {
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     margin: 10px 0;
     text-align: center;
     max-width: 100%;
     font-size: 14px;
     /* 移动端字体大小 */
 }

 .ftl-review .ftl-btn-text-left {
     width: 100%;
     text-align: center;
     margin-top: 10px;
     font-size: 12px;
     /* 移动端字体大小 */
 }

 .ftl-review .ftl-btn-text-left div {
     margin: 3px 0;
 }

 /* 媒体查询 - 平板和桌面 */
 @media (min-width: 768px) {
     .ftl-review .body-box {
         /* min-height: 400px; */
     }

     .ftl-review .carousel-btn {
         width: 40px;
         height: 40px;
         font-size: 20px;
     }

     .ftl-review .prev-btn {
         left: 15px;
     }

     .ftl-review .next-btn {
         right: 15px;
     }

     .ftl-review .item-content {
         padding: 30px;
         width: 90%;
     }

     .ftl-review .title {
        font-size: 40px;
        line-height: 58px;
        margin-bottom: 28px;
     }

     .ftl-review .contnet {
        font-size: 16px;
        line-height: 25px;
         margin: 15px 0;
         color: #000;
     }

     .ftl-review .item-box {
         padding: 15px;
     }

     .ftl-review .summary-field{
        margin-top: 28px;
     }
     .ftl-review .summary-field .date{
        color: #000;
     }

     .ftl-review .summary-field .author{
        color: #000;
     }
 }

 /* 媒体查询 - 大屏幕 */
 @media (min-width: 1024px) {
     .ftl-review .body-box {
         /* min-height: 450px; */
     }

     .ftl-review .item-content {
         padding: 10px 20px;
     }
 }