
.warp {
    display: flex;
}

.container {
    width: 350px;
    height: 560px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 50px;
    margin-left: auto; /* 设置为auto，使元素水平居右 */
    margin-right: 50px; /* 设置右边距离，根据需要进行调整 */
}

.container.mobile {
    display: none;
}


.section-heading {
    font-size: 20px;
    color: rgb(83, 83, 87);
    font-family: "微软雅黑", sans-serif; /* 修改字体为微软雅黑 */
}

.section-subheading {
    font-size: 15px;
    color: rgb(83, 83, 87);
    font-family: "微软雅黑", sans-serif; /* 修改字体为微软雅黑 */
}

.circle-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.circle1 {
    background-image: url('/static/web3D/皮.png');
}

.circle2 {
    background-image: url('/static/web3D/花.png');
}

.circle3 {
    background-image: url('/static/web3D/布.png');
}

.circle {
    width: 68px;
    height: 68px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

.circle.selected {
    box-shadow: inset 0 0 0 2px rgb(152, 152, 222); /* 使用阴影来实现内边缘效果 */
}

.circle-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: rgb(83, 83, 87);
    font-size: 13px;
    margin-bottom: -25px;
    font-family: "微软雅黑", sans-serif; /* 修改字体为微软雅黑 */
}

.divider {
    border-top: 2px solid white;
    margin-top: 10px;
}

.color-selector {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-top: 12px;
    font-family: "微软雅黑", sans-serif; /* 修改字体为微软雅黑 */
}

.color-box {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 9px;
    cursor: pointer;
}


#color-svg {

    margin-left: 16px;
    margin-top: 17px;
    transform: translate(-50%, -50%); /* 平移来实现居中 */

}


.size-adjust {
    width: 100%;
    height: 8px;
    background-color: #d5d3d3;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.draggable-circle {
    width: 25px;
    height: 25px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    cursor: pointer;
}


#one {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;


}


#two {
    position: relative;
    top: 35%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 1280px;
    height: 1000px;


}


#three {
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 800px;
    height: 800px;


}



.sha_fa {
    text-align: center; width: 60%;
}

.color-box svg{
  display: none;
}

.svg-show svg{
  display: block;
}

.m-res {
    display: flex;
}

.mobile-sha_fa {
    display: none;
}

.pc-m-safe {
    float: left;
    width: 60%;
    position: relative;
}

.pc-m-kai-men {
    float: right;
    width: 40%;
    height: 580px;
    margin-left: auto;
    padding-top: 260px;
    padding-right: 100px;
}
.button-wrap{
    margin:0 calc(50% - 60px);
}
.pc-or-m{
    height: 400px;
    margin-top: -100px;
}

/*移动端响应式*/
@media screen and (max-width:767px){


    .sha_fa {
        width: 100%;
        margin-top: -100px;
    }

    #one {
        position: relative;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 600px;
        height: 600px;


    }

    .m-res {
        display: block;

    }


    .container {
        width: 100%;
        height: auto;
        background: none;
        border-radius: 8px;
        padding: 20px;
        margin-left: auto; /* 设置为auto，使元素水平居右 */
        margin-right: 50px; /* 设置右边距离，根据需要进行调整 */
        margin-top: -50px;
        position: relative;
        z-index: 999;
    }


    .mobile-sha_fa {
        display: block;
    }


    .pc {
        display: none;
    }


    .baoxian {
        margin-top: -300px!important;
    }

    .pc-m-kai-men {
        display: block;
        height: auto;
        margin-right: 0;
        text-align: center;
        position: relative;
        z-index: 1000;
        width: 100%;
        float: none;
        padding-top: 0;
        padding-right: 0;

    }


    .pc-or-m {
        display: block;
        height: auto;
        margin-top: 50px;
    }

    #three {
        top: 50%;
        width: 600px;
        height: 600px;
        transform: translate(-50%,-50%);
    }

    .button-wrap {
        padding: 3px;
    }
    .button-wrap{
        margin: 0;
    }
    button.button {
        padding: 0 20px;

    }

    .pc-m-safe{
        width: 100%;
        float: none;
        height: 400px;
        margin-top: 30px;
    }

    .circle-name {
        color: white;
    }
}


