.zhuanpan {
    direction: ltr !important;
    width: 500px;
    height: 500px;
    position: relative;
    margin: 12% auto;
    border-radius: 100%;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.59);
    z-index: 1;
    padding: 20px;
}

.zhuanpan .point {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.zhuanpan .point::before,
.zhuanpan .point::after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #fff;
    box-shadow: 0 0 6px #fff;
    border-radius: 50%;
    display: block;
}

.zhuanpan .point:nth-child(1) {
    transform: translateX(-50%) rotate(20deg);
}

.zhuanpan .point:nth-child(2) {
    transform: translateX(-50%) rotate(40deg);
}

.zhuanpan .point:nth-child(3) {
    transform: translateX(-50%) rotate(60deg);
}

.zhuanpan .point:nth-child(4) {
    transform: translateX(-50%) rotate(80deg);
}

.zhuanpan .point:nth-child(5) {
    transform: translateX(-50%) rotate(100deg);
}

.zhuanpan .point:nth-child(6) {
    transform: translateX(-50%) rotate(120deg);
}

.zhuanpan .point:nth-child(7) {
    transform: translateX(-50%) rotate(140deg);
}

.zhuanpan .point:nth-child(8) {
    transform: translateX(-50%) rotate(160deg);
}

/* 转盘内容容器：自动旋转动画 + 锥形渐变背景（由JS动态生成） */
.zhuanpan .content {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent; /* 透明背景，显示锥形渐变 */
    border-radius: 50%;
    overflow: hidden;
    transform-origin: 50% 50%; /* 以中心为旋转原点 */
}

/* 自动旋转动画：60秒一圈（可调整速度），无限循环，匀速转动 */
.zhuanpan .auto-rotate {
    animation: slowRotate 60s linear infinite; /* 60s可改为更大值，转动更慢 */
}

/* 定义旋转动画关键帧 */
@keyframes slowRotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.zhuanpan .content .item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: 50% 100%;
    padding: 12px;
    z-index: 1; /* 确保内容在渐变背景上层 */
}

.zhuanpan .content .item .title {
    color: #ffffff;
    margin-top: 6px;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.zhuanpan .content .item .desc {
    font-size: 12px;
    color: #f5f5f5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.zhuanpan .content .item .img {
    height: 80px;
    padding: 3px 0;
}

/* 其他原有样式保留（无需修改） */
.footer-back {
    width: 116px;
    height: 40px;
    border: 1px solid #fff;
    position: fixed;
    bottom: 23px;
    left: 23px;
    color: white;
    font-size: 12px;
}

.RegionMsg {
    width: 100%;
    background: white;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 17px 17px 0 0;
    padding: 17px;
    min-height: 260px;
    max-height: 690px;
    z-index: 999 !important;
    display: flex;
    flex-direction: column;
}

.RegionMsg .RegionMsg-content {
    flex: 1;
    overflow: auto;
}

.RegionMsg .RegionMsg-content-item {
    border: 1px solid #999;
    margin: 12px auto;
    padding: 12px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.RegionMsg .activeView {
    width: 58px;
    height: 58px;
    background: #d5193d;
    position: absolute;
    bottom: 0;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 6px;
    padding-top: 29px;
}

.RegionMsg .activeView-right {
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.RegionMsg .activeView-left {
    left: 0;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.RegionMsg .RegionMsg-btn {
    justify-content: space-between;
    width: 100%;
    padding: 17px 6px;
    background: white;
    display: flex;
}

.RegionMsg .RegionMsg-item {
    width: 48%;
    height: 58px;
    background: #f5f5f5;
    border-radius: 6px;
    position: relative;
}

.RegionMsg .RegionMsg-active {
    border: 3px solid #d5193d;
    background: #ffc3c5;
}

.RegionMsg .Mode-Msg-active {
    border: 3px solid #d5193d;
}

.rewardMsg {
    width: 377px;
    background: white;
    border-radius: 17px;
    padding: 23px;
    box-shadow: 0px 2px 5px #ffffff66;
    margin: 0 auto;
}

.rewardMsg .img {
    width: 345px;
    margin: 12px auto;
}

.rewardMsg .img img {
    width: 100%;
    border-radius: 17px;
}

.rewardMsg .desc {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 17px;
    line-height: 29px;
    color: #666;
    text-align: justify;
}

.rewardMsg .content .item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #f5f5f5;
    background: transparent !important;
    position: relative;
    height: auto;
    transform: none !important;
}

.rewardMsg .content .item .label {
    color: #666;
}

.rewardMsg .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 23px;
}

.rewardMsg .btn div {
    width: 160px;
    height: 64px;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    background: #f5f5f5;
}

.rewardMsg .btn div:first-child {
    background: #d5193d;
    color: #fff;
}

/*全屏*/
.full-screen-btn {
    padding: 6px 12px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #2f3360;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    margin: 10px;
    position: absolute;
}