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

a {
    text-decoration: none;
    color: #000;
}

ul li {
    list-style: none;
}

img {
    vertical-align: middle;
}
.hand{cursor: pointer;}
.gainsboro {
    background-color: gainsboro;
}
.disabled{
    filter: grayscale(1);
    cursor:not-allowed;
    pointer-events: none;
}

/* scroll-window相关css */
.scroll-window {
    z-index: 1;
    position: fixed;
    right: -100%;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    transition: all 500ms;
    /* overflow: hidden; */
}

.scroll-window span {
    display: inline-block;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
}

.scroll-window .scroll-collection span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    top: 5px;
    right: 5px;
}

.scroll-tele span,
.scroll-mail span {
    padding: 8.5px 10px;
    margin: 0;
    border-radius: 5px;
    background-color: #32354e;
    color: #fff;
    position: absolute;
    left: 100%;
    top: 50%;
    white-space: nowrap;
    z-index: -1;
    transform: translate(0, -50%);
    transition: all 500ms;
}

.scroll-tele:hover span,
.scroll-mail:hover span {
    left: 0;
    transform: translate(-105%, -50%);
}

.scroll-window .code-img {
    width: 200px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;
    background-color: #32354e;
    position: absolute;
    left: 50px;
    top: 0;
    z-index: -1;
    transition: all 500ms;
}

.scroll-code span img {
    width: 180px;
    height: 180px;
}

.scroll-code:hover~div {
    left: -210px;
}

/* 提示弹窗 */
.collection-popup {
    width: 300px;
    padding-bottom: 30px;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 5px #ccc;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -200%);
    display: none;
}

.collection-popup p:first-child {
    padding: 15px 0;
    background-color: #999;
}

.collection-popup p:nth-child(2) {
    margin-top: 20px;
}

.collection-popup p:nth-child(3) {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.collection-popup p:nth-child(3) a {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 3px;
    text-decoration: none;
    background-color: #ff2566;
    color: #fff;
}

.collection-popup p:nth-child(3) span {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 3px;
    background-color: #999;
    color: #fff;
    cursor: pointer;
}

:-moz-placeholder {
    color: #fff;
}

::-moz-placeholder {
    color: #fff;
}

.draw .luck .draw-right .right-input input:-ms-input-placeholder {
    color: #fff;
}

.draw .luck .draw-right .right-input input::-ms-input-placeholder {
    color: #fff;
}

.draw .luck .draw-right .right-sub a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    background-color: #fc533b;
    color: #fff;
}

.draw .luck .draw-right p:last-child {
    margin-top: 15px;
}

.input-verfiy-error{
    border: 2px solid #d71f96 !important;
    box-shadow: 0px 0px 10px 0px #d71f96;
}


.not-comment{
    margin-top: 20px;
    text-align: center;
}
.modal-wrap{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 9999;
    left: 0;
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(15px);
}

/* 对 loading  整体布局*/
.loading-wrapper {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* loading 动画图像父级的布局 */
.loading-view {
    height: 40px;
    position: relative;
}

/*  */
/* 1. 以下实现type=1的样式*/
/*  */

.container1,
.container2 {
    width: 40px;
    height: 40px;
    position: absolute;
    /* border: 1px solid #ff0000; */
    top: 0;
    left: 50%;
    margin-left: -20px;
    position: absolute;
}

.container2 {
    transform: rotate(45deg);
}

.circle,
.bounce {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    /* 设置小球动画 */
    animation: loading 1.2s both infinite;
}

.circle {
    position: absolute;
}

/* 设置小球的相对位置 */
.circle1 {
    top: 0;
    left: 0;
}

.circle2 {
    top: 0;
    right: 0;
}

.circle3 {
    bottom: 0;
    right: 0;
}

.circle4 {
    bottom: 0;
    left: 0;
}

/* 设置延时 */
.container1 .circle1 {
    animation-delay: 0s;
}

.container2 .circle1 {
    animation-delay: 0.2s;
}

.container1 .circle2 {
    animation-delay: 0.3s;
}

.container2 .circle2 {
    animation-delay: 0.4s;
}

.container1 .circle3 {
    animation-delay: 0.5s;
}

.container2 .circle3 {
    animation-delay: 0.6s;
}

.container1 .circle4 {
    animation-delay: 0.7s;
}

.container2 .circle5 {
    animation-delay: 0.8s;
}

@keyframes loading {
    0% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }

    80% {
        transform: scale(0);
    }

    100% {
        transform: scale(0);
    }
}


/*  */
/* 2. 以下实现type=2的样式 */
/*  */
.bounce-view {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bounce {
    /* 设置小球形状的样式几乎和type=1一样，重复利用了 */
    display: inline-block;
}

/* 设置延迟 */
.bounce1 {
    animation-delay: -0.32s;
}

.bounce2 {
    animation-delay: -0.16s;
}

.bounce3 {
    animation-delay: 0s;
}


/*  */
/* 3. 以下实现type=3的样式 */
/*  */
.wave {
    width: 100px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-evenly;
}

.react{
    width: 3px;
    height: 40px;
    background-color: #fff;
    animation: waveLoading 1.2s both infinite;
}

/* 设置延时 */
.react1{
    animation-delay: 0s;
}
.react2{
    animation-delay: -1.1s;
}
.react3{
    animation-delay: -1.0s;
}
.react4{
    animation-delay: -0.9s;
}
.react5{
    animation-delay: -0.8s;
}

@keyframes waveLoading{
    0% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
    80% {
        transform: scaleY(0.4);
    }
    100% {
        transform: scaleY(0.4);
    }
}

.overflow-webkit-box-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.inline-flex {
    display: inline-flex;
}

.mr-30 {
    margin-right: 30px;
}

.comments {
    display: block;
    padding: 30px 30px 10px 30px;
    background: #fff;
    border: 1px solid #f2f2f2;
}

.comments h4{padding: 10px 28px 10px;border-left: 2px solid #1bb8e7;margin: auto -30px;margin-bottom: 20px;}

.comments .comment-box {
    display: flex;
    gap: 2%;
    justify-content: space-between;
}

.comment-box .star-box {
    display: inline-flex;
    flex-direction: column;
}

.score li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-bottom: 5px;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.score li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.score li>div:first-child {width: 120px;}

.score li img{margin-right: 2px;width: 16px;height: 16px;}
.star-box .progress {
    width: 280px;
    position: relative;
    height: 10px;
    background-color: #ededed;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 10px;
}

.progress .length {
    position: absolute;
    background-color: #1bb8e7;
    height: 100%;
}

.star-box .percentage {
    width: 100px;
    text-align: left;
}

.comment-box .comment-desc {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

.comment-box .write-btn {
    border-radius: 4px;
    padding: 7px 12px;
    color: #fff;
    background-color: #fbb267;
}

.comment-box .write-box {
    width: 600px;
    display: inline-flex;
    flex-direction: column;
    border: 1px solid #ccc;
    padding: 30px;
    justify-content: center;
    align-items: center;
}

.comments .comment-list {
    margin: 20px auto;
}

.comment-list .comment-list-item {
    display: flex;
    margin-bottom: 15px;
    flex-direction: row;
    justify-content: space-between;
}

.comment-list-item .left {
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comment-list-item .avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.comment-list-item:last-child .right {
    border: none;
}

.comment-list-item .nickname {
    font-size: 14px;
    color: gray;
    margin-top: 10px;
}

.comment-list-item .right {
    flex: 1;
    display: flex;
    font-size: 13px;
    color: #888;
    line-height: 25px;
    flex-direction: column;
    border-bottom: 1px dashed #ccd7c6;
}

.comment-list-item .nickname {
    font-size: 14px;
    color: gray;
    margin-top: 10px;
    display: inline-block;
    width: 70px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.comment-list-item .right {
    flex: 1;
    display: flex;
    font-size: 13px;
    color: #888;
    line-height: 25px;
    flex-direction: column;
    border-bottom: 1px dashed #ccd7c6;
}

.comment-list-item  .right div:first-child img {
    width: 16px;height: 16px;
}

.comment {
    padding: 10px 0;
    font-size: 14px;
}

.show {
    display: block !important;
}

.not-found{
    padding: 30px;
    margin-top: 30px;
    text-align: center;
    line-height: 50px;
    background: #fff;
    text-transform: capitalize;
}

.not-found .sm-img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    vertical-align: text-bottom;
    padding-right: 5px;
}

.label {
    width: 70px;
    color: #fff;
    letter-spacing: 0px;
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.label-blue { background: #1b7fe7;}
.label-orange { background: #e78c1b;}
.label-green { background: #0cbf33;}
.label-lgblue { background: #3fc7d5;}
.label-Purple { background: #7468db;}
.label-skyblue { background: #6d9ccd;}
.label-brown { background: #a75b5b;}

.flex{display: flex;}
.flex-column {flex-direction: column;}
.just-center { display: flex;justify-content: center;}
.just-around { display: flex; justify-content : space-around;}
.just-between { display: flex; justify-content: space-between;}
.align-center { display: flex; align-items: center;}
.flex-wrap{flex-wrap: wrap;}
.filter-black{filter: brightness(0);}
.filter-gray{filter: grayscale(1);}
.collect{ cursor:pointer;}
.over-hide{overflow: hidden;}
.swiper-pagination{bottom: -5px !important;}
.btn:hover{
    opacity: 0.9;
}
.not-results{
    box-sizing: border-box;
    padding: 30px;
    text-align: center;
}

.not-results img{
    max-width: 400px;
    width: 100%;
}
.not-results p{
    padding: 10px;
    font-size: 16px;
    color: #666;
}
.container{
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
}

.countdown{
    padding: 20px 0;
    position: relative;
}

.countdown .countdown-index {
    display: flex;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2px;
    flex-shrink: 0;
    text-align: center;
    flex-direction: column;
    transition-property: transform;
}

.countdown .countdown-index img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.countdown .countdown-index::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 0.2em;
    background-size: 300%;
    background-position: 0% center;
    background-image: linear-gradient(60deg, aquamarine, cornflowerblue, goldenrod, hotpink, salmon, lightgreen, sandybrown, violet);
    transition: all .5s;
    opacity: 0.3;
    animation: animate_bg 5s infinite;
}

.countdown-index:hover::before{
    opacity: 1;
}

.countdown-index .index-img{
    position: relative;
}

.countdown-index .index-img .index-subscript{
    position: absolute;
    left: 5px;
    top: 5px;
    width: 80px;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.index-subscript span , .bottom-btn{
    text-align: center;
    color: #fff;
    font-size: 12px;
    box-sizing: border-box;
}

.index-subscript span {
    padding: 5px 7px;
    background-color: #ff3f68;
    border-radius: 3px;
}

.bottom-btn{
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    bottom: -100%;
    cursor: pointer;
    transition: all .5s;
}

.countdown-index:hover .bottom-btn{
    bottom: 0;
}

.countdown-index .index-details{
    padding: 10px;
    box-sizing: border-box;
    background-color: #121232;
    color: #fff;
    /* animation: animate_text 5s infinite; */
}

.light .countdown-index .index-details{
    color: #121232;
    background-color: #fff ;
}


.index-details .icon-comment,.index-details .icon-star {
    /* animation: animate_text 5s infinite; */
    color: #fff;
}

.light .index-details .icon-comment,.light .index-details .icon-star {
    /* animation: animate_text 5s infinite; */
    color: #edc534;
}

.index-details .index-name {
    font-size: 13px;
    text-align: left;
    height: 60px;
    display: block;
}

.index-details .index-name a{
    animation: animate_text 5s infinite;
}

.light .index-details .index-name a{
    color: #121232;
    animation: none;
}

.index-details .index-price{
    font-size: 18px;
    margin-top: 15px;
}

.index-details .index-price span{
    color: #666;
    text-decoration: line-through;
    font-size: 14px;
}
@keyframes animate_bg {
    0%, 100% {
        background-position: 0%, center;
    }
    50% {
        background-position: 100%, center;
    }
}

@keyframes animate_text {
    0% { color: #e74c3c; }
    20% { color: #f1c40f; }
    40% { color: #1abc9c; }
    60% { color: #3498db; }
    80% { color: #9b59b6; }
    100% { color: #e74c3c; }
}

.count-down {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background-image: linear-gradient(60deg,#f1c40f, #3498db, turquoise);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* -webkit-text-fill-color: turquoise; */
}

.count-down i {
    font-size: 34px;
    font-weight: bold;
}

@media screen and (min-width:751px) {
    .mod-header,
    .mod-footer{
        display: none;
    }

    .icon-star {
        font-size: 20px !important;
        color: #ffcc3f;
        margin-right: 5px;
    }

    .icon-comment {
        font-size: 20px !important;
        color: #ffcc3f;
        margin-right: 5px;
    }

    .icon-stars {
        font-size: 20px !important;
        color: #bbb;
        margin-right: 5px;
    }

    /* header相关css */
    .header-one {
        min-width: 1400px;
        padding: 5px 0;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
    }

    .header-one p {
        width: 1400px;
        margin: auto;
        text-align: right;
    }

    .header-one p img {
        margin-left: 5px;
    }

    .header-two {
        background-color: #fff;
        position: relative;
    }

    .header-ul {
        position: relative;
    }

    .header-two>div {
        width: 1400px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* position: relative; */
    }

    .header-two>div>div {
        height: 96px;
        line-height: 96px;
    }

    .header-two>div>div:hover .header-two-div {
        display: block;
    }

    .header-two>div>div:hover>a {
        padding-bottom: 5px;
        border-bottom: 3px solid #000;
    }

    .header-two .header-search {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: -130%;
        z-index: 1;
    }

    .header-two .header-search p {
        display: inline-block;
        width: 100%;
        height: 55px;
        box-sizing: border-box;
        padding: 0 20px;
        border-bottom: 1px solid #f3f3f3;
        display: flex;
        align-items: center;
    }

    .header-two .header-search p input {
        width: 100%;
        height: 33px;
        border: none;
        text-indent: 15px;
        outline: none;
    }

    .header-two .header-search p img,
    .header-two .header-search p span {
        cursor: pointer;
    }

    .header-two a {
        position: relative;
    }

    .header-two .font-our span,
    .header-two .font-car span {
        font-size: 25px;
    }

    .header-two>div>a .car-num {
        display: inline-block;
        width: 20px;
        height: 20px;
        text-align: center;
        font-size: 14px;
        line-height: 20px;
        border-radius: 50%;
        background-color: red;
        color: #fff;
        transform: scale(0.7);
        position: absolute;
        right: -8px;
    }

    .header-two .header-two-div {
        width: 100%;
        padding: 10px 0 30px;
        box-shadow: 0px 0px 5px 2px #eee;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 96px;
        z-index: 2;
        display: none;
    }

    .header-two .header-two-div div {
        width: 1400px;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .header-two .header-two-div div ul {
        width: 11%;
        margin-top: 10px;
    }

    .header-two div ul li {
        list-style: none;
        line-height: 28px;
    }

    .header-two .header-two-div div ul li:first-child a {
        color: #ff2566;
    }

    .header-two div ul li a {
        color: #333;
        position: relative;
    }

    .header-two .header-two-div div ul li span {
        display: inline-block;
        width: 45px;
        height: 20px;
        line-height: 20px;
        border-radius: 3px;
        text-align: center;
        background-color: #ff2566;
        color: #fff;
        font-size: 12px;
        position: absolute;
        right: -42px;
        top: -72%;
        transform: scale(0.8);
    }

    .header-ul:hover .header-two-ul {
        display: block;
    }

    .header-two .header-two-ul {
        padding: 20px 10px;
        background-color: #fff;
        position: absolute;
        left: -10px;
        top: 80px;
        z-index: 2;
        box-shadow: 0px 0px 5px 2px #eee;
        display: none;
    }

    .header-two .header-help .header-two-ul {
        left: -35px;
    }

    .header-three {
        width: 100%;
        padding: 5px 0;
        background-color: #ff3f68;
        color: #fff;

    }

    .header-three div {
        width: 1400px;
        height: 30px;
        margin: auto;
        overflow: hidden;
        position: relative;
    }

    .header-three div p {
        position: absolute;
        left: 1400px;
        top: 0;
        bottom: 0;
        white-space: nowrap;
        padding: 5px 0;
    }

    /* footer相关css */
    .footer-one {
        width: 100%;
        margin-top: 30px;
        position: relative;
        background-position: center center;
        /* padding: 30px; */
        background-size: cover;
        box-sizing: border-box;
        color: #000;
    }

    .footer-one img {
        width: 100%;
    }

    .footer-one>div {
        padding: 40px;
        background: rgba(255,255,255,.5);
        margin: auto;
        backdrop-filter: blur(10px);
        /* padding-right: 76px; */
    }

    .footer-one div p {
        margin-top: 20px;
    }

    .footer-one div .footer-title {
        font-size: 25px;
        font-weight: 600;
    }
    .footer-one div h2{
        font-size: 25px;
        margin-top: 10px;
    }

    .footer-two {
        background-color: #fff;
    }

    .foot {
        width: 1400px;
        padding: 20px 0;
        margin: auto;
        display: flex;
        justify-content: space-between;
    }

    .foot .div-one {
        color: #ff2566;
    }

    .foot .div-one p {
        line-height: 30px;
    }

    .foot .div-one p img {

        margin-right: 5px;
    }

    .foot .div-one p:first-child {
        width: 200px;
    }

    .foot .div-one p:first-child img {
        width: 100%;

    }

    .foot ul li {
        list-style: none;
        line-height: 35px;
        font-size: 14px;
        font-weight: bold;
        position: relative;
    }

    .foot ul li:first-child {
        font-size: 18px;
    }

    .foot ul li:nth-child(2) {
        margin-top: 10px;
    }

    .foot ul li a {
        color: #000;
        text-decoration: none;
    }

    .foot .div-four p {
        line-height: 35px;
    }

    .foot .div-four p:first-child {
        font-size: 18px;
        font-weight: bold;
    }

    .foot .div-four p:nth-child(2) {
        margin-top: 20px;
        font-size: 14px;
    }

    .foot .div-four p:nth-child(5) {
        padding-top: 15px;
        margin-top: 20px;
        border-top: 1px solid #666;
    }

    .foot .div-four p:nth-child(6) {
        font-size: 12px;
    }

    .foot .div-four p:nth-child(7) {
        margin-top: 10px;
    }

    .foot .div-four p:nth-child(7) img {
        width: 65px;
        margin-right: 5px;
    }

    .div-four p img{
        filter: invert(1);
    }

    .footer-copy {
        border-top: 1px solid #666;
    }

    .footer-copy p {
        width: 1400px;
        margin: 0 auto;
        padding: 10px 0;
    }



    /* 面包屑相关css */
    .crumbs {
        width: 100%;
        max-width: 1400px;
        margin: auto;
        margin-top: 20px;
        font-size: 14px;
        font-weight: bold;
    }

    .crumbs a {
        text-decoration: none;
        color: #000;
    }

    /* 抽奖 */
    .go-draw {
        position: fixed;
        left: 0;
        top: 500px;
    }

    .draw {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10;
        height: 100%;
        width: 100%;
        background: url('../images/draw-background.jpg') center no-repeat;
    }

    .draw .luck {
        width: 1400px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .draw .luck>p {
        text-align: right;
    }

    .draw .luck>p img {
        cursor: pointer;
    }

    .draw .luck .draw-div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .draw .luck .draw-right {
        width: 400px;
        color: #fff;
        margin-left: 100px;
        line-height: 36px;
    }

    .draw .luck .draw-right p:nth-child(2) {
        margin-top: 15px;
    }

    .draw .luck .draw-right .right-input {
        margin-top: 10px;
    }

    .draw .luck .draw-right .right-input input {
        width: 100%;
        height: 40px;
        border: 1px solid #fff;
        border-radius: 8px;
        background-color: transparent;
        text-indent: 15px;
        color: #fff;
        outline: none;
    }

    .draw .luck .draw-right .right-input input::-webkit-input-placeholder {
        color: #fff;
    }


    :-moz-placeholder {
        color: #fff;
    }

    ::-moz-placeholder {
        color: #fff;
    }

    .draw .luck .draw-right .right-input input:-ms-input-placeholder {
        color: #fff;
    }

    .draw .luck .draw-right .right-input input::-ms-input-placeholder {
        color: #fff;
    }

    .draw .luck .draw-right .right-sub a {
        text-decoration: none;
        display: inline-block;
        width: 100%;
        margin-top: 20px;
        padding: 10px 0;
        text-align: center;
        border-radius: 8px;
        background-color: #fc533b;
        color: #fff;
    }

    .draw .luck .draw-right p:last-child {
        margin-top: 15px;
    }

    /* 页码相关css */
    .page-number {
        margin-top: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-number a {
        text-decoration: none;
        color: #000;
        height: 30px;
        text-align: center;
        line-height: 30px;
        display: inline-block;
        border-radius: 3px;
        border: 1px solid #999;
        cursor: pointer;
    }

    .page-number .page,
    .page-number .ellipsis {
        width: 30px;
        margin: 0 5px;
    }

    .page-number .page-prev,
    .page-number .page-next,
    .page-number .jump {
        width: 96px;
    }

    .page-number .num {
        width: 96px;
        height: 30px;
        text-align: center;
        border-radius: 3px;
        border: 1px solid #999;
        margin: 0 5px;
        outline: none;
        font-size: 18px;
    }

    .page-number .red {
        background-color: #ff2566;
        color: #fff;
        border: 1px solid #ff2566;
    }
}




@media screen and (max-width:750px) {
    body {
        font-size: 14px;
    }

    .container{
        padding: 10px !important;
    }
    .icon-star {
        color: #ffcc3f;
        margin-right: 3px;
    }

    .bottom-btn{bottom:0}

    .icon-comment {
        color: #ffcc3f;
        margin-right: 5px;
    }

    .icon-stars {
        color: #bbb;
        margin-right: 3px;
    }

    .header-one,
    .header-two-two,
    .header-three,
    .draw,
    .go-draw,
    .crumbs{
        display: none;
    }

    /* header的css */
    .header-search {
        margin: 10px;
    }

    .header-search p {
        height: 30px;
        display: flex;
        align-items: center;
        border: 1px solid #ccc;
        border-radius: 3px;
        position: relative;
    }

    .header-search p img {
        position: absolute;
        right: 10px;
        top: 3px;
    }

    .header-search p input {
        width: 100%;
        height: 30px;
        border: none;
        text-indent: 10px;
        outline: none;
    }

    .header-search p .search-close {
        display: none;
    }

    .mod-header {
        width: 100%;
        display: block;
        position: relative;
        top: 0;
        left: 0;
        z-index: 15;
    }

    .header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        padding: 10px 0;
        box-shadow: 0px 0px 10px 3px #efefef;
    }

    .header>div:first-child {
        padding-left: 10px;
    }

    .header>div img {
        width: 30px;
        margin-right: 10px;
    }

    .header>a {
        display: inline-block;
        width: 40%;
    }
    
    .header>a img{
        width: 100%;
    }

    .header>div:nth-child(3) {
        position: relative;
    }

    .header>div:nth-child(3) span {
        display: inline-block;
        width: 18px;
        height: 18px;
        text-align: center;
        border-radius: 50%;
        position: absolute;
        left: 63px;
        top: -6px;
        background-color: red;
        font-size: 12px;
        color: #fff;
        transform: scale(0.8);
    }

    .header .head-search {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
        background-color: #fff;
        text-align: center;
        line-height: 60px;
        display: none;
    }

    .header .head-search input {
        width: 85%;
        height: 35px;
        border: 1px solid #666;
        border-radius: 20px;
        text-indent: 15px;
        outline: none;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -18px;
        margin-left: -43%;
    }

    .header .head-search img {
        width: 23px;
        position: absolute;
        right: 9%;
        top: 33%;
    }

    .menu {
        width: 100%;
        height: 100%;
        position: fixed;
        left: -100%;
        top: 0;
        z-index: 101;
        /* background-color: rgba(0, 0, 0, 0.3); */
    }

    .menu .menu-column {
        width: 75%;
        height: 100%;
        background-color: #fff;
        overflow: auto;
        padding: 10px 15px 20px;
        box-sizing: border-box;
        box-shadow: 0px 0px 19px 8px #bbb;
    }

    .menu .menu-column::-webkit-scrollbar {
        display: none;
    }

    .menu .menu-column>div:first-child {
        text-align: right;
        padding: 10px;
        border-bottom: 0px;
    }

    .menu .menu-column>div:first-child img {
        width: 30px;
        filter: invert(1);
    }

    .menu .menu-column>div:nth-child(2),
    .menu .menu-column>div:nth-child(3) {
        text-align: center;
        border-bottom: 0px;
    }

    .menu .menu-column>div:nth-child(2) img {
        width: 90px;
    }

    .menu .menu-column>div:nth-child(3) {
        margin-top: 10px;
        padding: 10px;
        font-size: 15px;
    }

    .menu .menu-column>div {
        color: #999;

    }

    .menu .menu-column .column-m {
        text-align: center;
        margin-top: 60px;
        border-bottom: 0px;
    }

    .menu .menu-column .column-m img {
        margin-right: 5px;
    }

    .menu .menu-column>div:last-child {
        display: flex;
        justify-content: space-around;
        margin-top: 25px;
        padding-bottom: 20px;
        border-bottom: 0px;
    }

    .menu .menu-column>div:last-child img {
        width: 35px;
    }

    .menu-ul {
        margin-top: 30px;

    }

    .menu-ul li a {
        display: inline-block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #ccc;
        color: #999;
    }

    .menu-ul li a img {
        width: 45px;
        margin-right: 10px;
    }


    /* footer.css */
    .footer-one {
        margin-top: 20px;
        position: relative;
        background-size: cover;
        background-position: top right;
    }

    .footer-one img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .footer-one>div {
        width: 100%;
        padding: 10px;
        color: #fff;
        font-size: 14px;
        line-height: 26px;
        backdrop-filter: blur(10px);
        /* background-color: rgba(0,0,0,0.4); */
        box-sizing: border-box;
    }

    .footer-one>div .footer-title {
        font-size: 16px;
        font-weight: bold;
    }

    .footer-one>div div {
        margin-top: 10px;
    }

    .footer-two {
        padding: 20px 10px 60px;
    }

    .footer-two .foot {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .footer-two .foot ul {
        width: 50%;
        margin-top: 20px;
        line-height: 26px;
    }

    .footer-two .foot ul li:first-child {
        font-size: 16px;
    }

    .footer-two .foot ul li:nth-child(2) {
        margin-top: 10px;
    }

    .footer-two .foot div {
        width: 100%;
        line-height: 30px;
    }

    .footer-two .foot div .icon{
        filter: invert(1);
    }

    .footer-two .foot div p:first-child,
    .footer-two .foot div p:nth-child(5) {
        font-size: 16px;
        font-weight: bold;
        margin-top: 20px;
    }

    .footer-two .foot div p:nth-child(5) {
        padding: 20px 0 0;
        border-top: 1px solid #e5e5e5;
    }

    .footer-two .foot div p:last-child {
        margin-top: 10px;
    }

    .footer-two .foot div p:last-child img {
        width: 55px;
        margin-right: 5px;
    }

    .footer-copy {
        margin-top: 30px;
        padding: 15px 0;
        border-top: 1px solid #e5e5e5;
        text-align: center;
    }

    .mod-footer {
        width: 100%;
        display: flex;
        justify-content: space-around;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 10;
        background-color: #fff;
    }

    .mod-footer a {
        display: inline-block;
        position: relative;
    }

    .mod-footer a img {
        width: 56px;
    }

    .mod-footer a span {
        display: inline-block;
        width: 18px;
        height: 18px;
        text-align: center;
        border-radius: 50%;
        position: absolute;
        left: 35px;
        top: 3px;
        background-color: red;
        font-size: 12px;
        color: #fff;
        transform: scale(0.8);
    }


    /* 页码相关css */
    .page-number {
        margin-top: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-number a {
        text-decoration: none;
        color: #000;
        height: 30px;
        text-align: center;
        line-height: 30px;
        display: inline-block;
        border-radius: 3px;
        border: 1px solid #999;
        cursor: pointer;
    }

    .page-number .page,
    .page-number .ellipsis {
        width: 30px;
        margin: 0 5px;
    }

    .page-number .page-prev,
    .page-number .page-next{
        width: 55px;
    }

    .page-number .red {
        background-color: #ff2566;
        color: #fff;
        border: 1px solid #ff2566;
    }
}


/* 添加購物車成功 */
.add-window{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    /* background-color: rgba(143,27,15,0.8); */
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}
.add-window .window-tips{
    width: 80%;
    max-width: 350px;
    padding-bottom: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 5px;
    /* background-color: #e74c3c; */
    background-color: #fff;
    position: relative;
}
.add-window .window-tips .close-span{
    content: "X";
    width: 25px;
    height: 25px;
    background-color: #ccc;
    border-radius: 50%;
    border: 2px solid #fff;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
}
.add-window .window-tips .window-header{
    padding: 15px;
    font-size: 38px;
    font-weight: 300;
    opacity: 0.8;
    background-color: rgba(0,0,0,0.1);
    text-align: center;
    font-size: 20px;
    color: #fff;
}
.add-window .window-tips .window-cont{
    padding: 15px 40px 30px;
    line-height: 24px;
    text-align: center;
}

.add-window .window-tips .window-cont .window-success{
    margin: 20px 0;
}
.add-window .window-tips .window-cont .window-success span{
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-align: center;
    position: relative;
}
.add-window .window-tips .window-cont .window-success span::after{
    content: "";
    height: 4px;
    width: 30px;
    background-color: #00bc9b;
    position: absolute;
    left: 16px;
    top: 24px;
    transform: rotateZ(-43deg);
}
.add-window .window-tips .window-cont .window-success span::before{
    content: "";
    height: 4px;
    width: 18px;
    background-color: #00bc9b;
    position: absolute;
    left: 7px;
    top: 29px;
    transform: rotateZ(43deg);
}
.add-window .window-tips .window-but{
    display: flex;
    justify-content: space-around;
}
.add-window .window-tips .window-but .but-width{
    display: inline-block;
    width: 40%;
    padding: 10px 0;
    border-radius: 3px;
    color: #fff;
    text-align: center;
}
.add-window .window-tips .window-but span{
    background-color: #ff5613;
}
.add-window .window-tips .window-but a{
    background-color: #c0392b;
}