* {
    /* 页面初始化 */
    margin: 0;
    padding: 0;
}

/* 精品戒指 start */
.box-1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8% 0 3% 0;
}

.h2 {
    font-size: 1.5vw;
    color: #333;
    text-align: center;
}

.h3 {
    font-size: 1vw;
    color: #666;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
}

.Diamond {
    width: 84%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3%;
}

.Jewelry {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 3%;
    border: 1px solid #d6d6d6;
}

.Jewelry-content {
    width: 100%;
    height: 26vh;
    padding: 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.h6 {
    color: #333;
    font-size: 1.2vw;
    font-weight: 400;
}

.p1 {
    color: #333;
    font-size: 0.8vw;
    font-weight: 400;
    line-height: 1.8;
}

.Jewelry-content>a {
    width: 100%;
    height: 6vh;
}

.button1 {
    width: 40%;
    height: auto;
    background-color: #4A3939;
    font-size: 1vw;
    color: #fff;
    text-align: center;
    padding: 0.9rem 0;
    margin: 0 auto;
}

.button1:hover {
    background-color: #fff;
    color: #4A3939;
    border: 2px solid#4A3939;
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.1);
}

.h2 {
    font-size: 1.5vw;
    color: #333;
    text-align: center;
}

.h3 {
    font-size: 1vw;
    color: #666;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
}

.Ring-picture,
.Ring-picture-1 {
    width: 100%;
    height: 60vh;
    background-color: #eeeeee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.Ring-picture {
    background-image: url(../../image/zuanshi/Ring-picture.jpg);
}

.Ring-picture-1 {
    background-image: url(../../image/zuanshi/Ring-picture-1.jpg);
}

/* 精品戒指 end */

/* 移动端适配 start */
@media (max-width: 768px) {

    /* 钻石耳钉区域调整 */
    .box-1 {
        margin: 20% 0 10% 0;
        /* 增加顶部距离，避免被导航遮挡 */
    }

    .h2 {
        font-size: 1.2rem;
        /* 使用固定单位而非vw */
    }

    .h3 {
        font-size: 0.9rem;
    }

    .Diamond {
        width: 90%;
        flex-direction: column;
        /* 单列布局 */
    }

    .Jewelry {
        width: 100%;
        /* 占满宽度 */
        margin-bottom: 8%;
    }

    .Ring-picture,
    .Ring-picture-1 {
        height: 30vh;
        /* 调整图片高度 */
    }

    .h6 {
        font-weight: 700;
        font-size: 1.2rem;
    }

    .p1 {
        font-size: 1rem;
        line-height: 1.3rem;
    }

    .button1 {
        width: 60%;
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
}

/* 移动端适配 end */