body {
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background: #00be89; /* 全局背景颜色 */
}
.content{
    background: #00be89; /* 全局背景颜色 */
}

/* 轮播图样式 */
.zqmr-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 4px 4px 10px #00af7f; /* 阴影 */
}

.zqmr-carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.zqmr-carousel-inner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.zqmr-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.zqmr-carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.zqmr-carousel-dot.active {
    opacity: 1;
    background-color: #ff6600;
}



.zqmr-navigation {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.zqmr-nav-item {
    text-align: center;
}

.zqmr-nav-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.zqmr-nav-item p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #333;
}



/* 中间图片样式 */
.zqmr-middle-image {
    margin: 10px auto;
    width:96%;
    max-width: 640px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 4px 4px 10px #00af7f; /* 阴影 */
}

.zqmr-middle-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 内容区样式 */
.zqmr-content {
    margin: 10% auto;
    padding: 20px 1px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 4px 4px 10px #00af7f;
    max-width: 640px;
    width: 96%;
    text-align: center;
}

/* 商品网格样式 */
.zqmr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 0px;
}

.zqmr-grid-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 4px 4px 10px #00af7f;
}

.zqmr-grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.zqmr-grid-item p {
    margin: 10px;
}

.zqmr-price {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 10px;
}





.tuititle {
    background-color: #dfec59; /* 设置背景颜色 */
    height: 40px; /* 设置高度 */
    line-height: 40px; /* 设置行高，保证文本垂直居中 */
    margin: 10px auto;

    border-radius: 50px; /* 设置左右为圆柱形 */
    font-size: 18px; /* 设置字体大小 */
    text-align: center;
    width: 96%;
    position: relative;
    box-shadow: 10px 10px 20px rgb(6 70 52 / 50%), 0px 10px 20px rgba(0, 175, 127, 0.5); /* 底部阴影 */
    background: linear-gradient(90deg, #dfec59 30%, #ffffff 50%, #dfec59 70%); /* 中间高光 */
    font-family: Arial, sans-serif;
}

