.html,body{
    margin: 0;
    padding: 0;
}
.xuankuang{
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s linear 0s;
}

img{
    width: 100%;
}

.box {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.red{
    color: red;
}

.center{
    text-align: center;
}
.bold{
    font-weight: bold;
}


.img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.img img {
    width: 100%;
}

.color_imgs {
    display: flex;
}

.color_imgs img {
    width: 144px;
    transition: all 0.3s linear 0s;
}

.title {
    margin-top: 20px;
    margin-bottom: 16px;
}

.titles {
    margin-top: 20px;
    margin-bottom: 16px;
}

.titles span {
    color: red;
}

.title span {
    color: red;
}

.sizes {
    width: 100%;
}

.size {
    width: 100%;
    float: left;
    padding: 0.2rem;
    font-size: 1rem;
    color: #666;
    background-color: #fff;
    border: 2px solid #ccc;
    margin-right: 4px;
    margin-bottom: 4px;
    text-decoration: none;
    transition: all 0.3s linear 0s;
    border-radius: 0.4rem;
    cursor: pointer;
}

.num {
    display: flex;
}

.num .num_left {
    width: 40px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #ccc;
    border-right: none;
    cursor: pointer;
}

.num .num_center {
    width: 65px;
    height: 33px;
    border: 1px solid #ccc;
    line-height: 35px;
    text-align: center;
}

.num .num_right {
    width: 40px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #ccc;
    border-left: none;
    cursor: pointer;
}

.label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.label input {
    height: 40px;
    width: 82%;
    flex-shrink: 0;
}

.button {
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    height: 40px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(90deg, #E6A20F, #F27019);
    color: #fff;
    letter-spacing: 0.5em;
}

/* .btn:hover {
    width: 100%;
    height: 35px;
    background-color: #c9c9c9;
} */

.as {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.as a {
    color: #9797B2;
    font-size: 13px;
    margin: 0 10px;
    text-decoration: none;
}

.swiper {
    width: 100%;
} 

.swiper-wrapper{
    width: 100%;
}

.swiper-wrapper div{
    width: 100%;
    flex-shrink: 0;
}
.active{
    background-color: red;
    color: #fff;
}

.footerli{
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    a{
        color: #727171;
    }
}

@media screen and (max-width:700px) {
    .footerli{
        margin-top: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        a{
            margin-top: 1rem;
            color: #727171;
            text-align: center;
        }
    }
}


.loaderbox {
   width: 100%;
   position: fixed;
   left: 50%;
   bottom: 50%;
   transform: translateX(-50%);    
   display: flex;
   justify-content: center;
    
}
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%; 
    width: 30px;
    height: 30px; 
    animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); } 
}
.zhezhao {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    animation: zhezhao 0.5s;
    display: none;
}@keyframes zhezhao {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}