* {
  padding: 0;
  margin: 0;
}

.shareContent {
  width: 15rem;
  position: relative;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.bg {
  width: 100%;
  height: auto;
}

.last-content {
    width: 12.52rem;
    height:11.16rem;
    background: #FFFFFF;
    border-radius: 0.2rem;
    border: 0px solid #FF9D44;
    position: absolute;
    left:1.34rem;
    top: 61.58rem;
}
.video {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  border: 0px solid #ff9d44;
}
.qrCode {
  position: absolute;
  left: 3.34rem;
  top: 45.62rem;
  width: 8.5rem;
  height: 8.5rem;
}
.gzh {
  position: absolute;
  left: 3.78rem;
  top: 82.74rem;
  width: 8.02rem;
  height: 8.02rem;
}
.pf-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15rem;
  z-index: 99;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  height: 1.96rem;
}
.pf-nav-item {
  text-align: center;
  margin: 0.26rem 0 0.22rem 0;
  width: 3rem;
}
.pf-img {
  width: 0.88rem;
}
.pf-title {
  font-size: 0.4rem;
  color: #cccccc;
  font-family: SourceHanSansCN-Regular;
  margin-top: 0.22rem;
}
.w100 {
  width: 100%;
}
.h100 {
  height: 100%;
}


/* 视频轮播样式 */
.video-title-container {
    width: 100%;
    text-align: left;
    margin-bottom: 0.2rem;
}

.video-title {
    font-size: 0.7rem;
    color: #333;
    font-weight: bold;
    
}
 .video-carousel {
    position: relative;
    width: 100%;
    height:100%;
    overflow: hidden;
    border-radius: 0.24rem;
    box-shadow: 0 0.08rem 0.4rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.4rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.carousel-item .video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0.24rem;
    background: #fff;
}

/* 轮播控制按钮 */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 0.2rem;
    pointer-events: none;
}

.carousel-btn {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.52rem;
    color: #333;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* 轮播指示器 */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.16rem;
    margin-top: 0.3rem;
}

.indicator {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFD900;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 0, 0, 0.6);
}
 /* 下载按钮样式 */
 .download-btn {
    display: inline-block;
    margin: 0.5859375rem auto;
    padding: 0.46875rem 0.9375rem;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0.3125rem;
    font-size: 0.625rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    width: 80%;
    max-width: 11.71875rem;
}

.download-btn:hover {
    background-color: #45a049;
    transform: translateY(-0.078125rem);
}

.download-btn i {
    font-size: 0.703125rem;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 提示弹窗样式 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 0.9765625rem;
    border-radius: 0.46875rem;
    width: 85%;
    max-width: 15.625rem;
    text-align: center;
}

.modal-content h3 {
    color: #333;
    margin-top: 0;
    font-size: 0.703125rem;
}

.modal-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.5859375rem;
}

.close-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.390625rem 0.78125rem;
    border-radius: 0.1953125rem;
    margin-top: 0.5859375rem;
    cursor: pointer;
    font-size: 0.625rem;
}

.guide-img {
    width: 100%;
    max-width: 7.8125rem;
    margin: 0.5859375rem auto;
    display: block;
}

/* 浏览器跳转引导弹窗样式 */
.browser-guide {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.3125rem;
    padding: 0.5859375rem;
    margin: 0.5859375rem 0;
}

.browser-guide h4 {
    color: #856404;
    margin: 0 0 0.390625rem 0;
    font-size: 0.625rem;
}

.browser-guide p {
    color: #856404;
    margin: 0.1953125rem 0;
    font-size: 0.546875rem;
}

.browser-guide strong {
    color: #d63384;
}