* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

/* 装饰元素 */
.decoration {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.8;
}

.circle {
    border-radius: 50%;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD1DC 0%, #FFC6E1 100%);
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A5DEE5 0%, #D0F0F4 100%);
    bottom: 20%;
    right: 15%;
}

.circle-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFE4E1 0%, #FFD8E8 100%);
    top: 25%;
    right: 20%;
}

.square {
    border-radius: 15px;
    transform: rotate(15deg);
}

.square-1 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C9F0D8 0%, #E5F8EC 100%);
    bottom: 15%;
    left: 15%;
}

.square-2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFC6E1 0%, #FFD8E8 100%);
    top: 35%;
    left: 25%;
}

.guide-container {
    max-width: 400px;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.guide-title {
    color: #7C4D8F;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.main-content {
    margin-bottom: 50px;
}

.main-title {
    font-size: 28px;
    font-weight: 600;
    color: rgba(90, 90, 114, 255);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.description {
    font-size: 16px;
    color: rgba(138, 138, 158, 255);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.weui-btn_custom-primary {
    border: none;
    height: 60px;
    font-size: 16px;
    color: white;
    border-radius: 35px;
    box-shadow: 0px 8px 20px 0px rgba(182, 153, 255, 0.35);
    background: linear-gradient(162.86deg, rgba(255, 183, 197, 1),rgba(181, 234, 215, 1) 100%);
}

.weui-btn_custom-primary:active {
    background: linear-gradient(90deg, #f58bba 0%, #95d1d9 100%);
}

.weui-btn_custom-default {
    background-color: transparent;
    color: rgba(138, 138, 158, 255);
    border: 2px solid rgba(181, 234, 215, 255);
    border-radius: 30px;
    height: 46px;
    font-size: 16px;
}

.weui-btn_custom-default:active {
    background-color: rgba(165, 222, 229, 0.1);
}

/* 响应式调整 */
@media (max-width: 480px) {
    .guide-title {
        margin-bottom: 40px;
    }

    .main-title {
        font-size: 30px;
    }

    .description {
        font-size: 17px;
    }

    .weui-btn_custom-primary,
    .weui-btn_custom-default {
        height: 60px;
        line-height: 36px;
        font-size: 16px;
    }
}