/* 头部 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    /*user-select: none;*/
}

#app {
    background-color: #f5f5f7;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

img {
    vertical-align: middle;
    width: 100%;
}

.active_li {
    font-weight: bold;
    background: #5b5959;
    border-radius: 6px;
}

.home_title {
    width: 100%;
    height: 50px;
    background: #000;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.homeTitle_left {
    width: 40%;
    height: 100%;
    display: flex;
}

.homeTitle_left_title {
    width: 50%;
    height: 100%;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homeTitle_left_list {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .homeTitle_left_list li {
        width: 100px;
        height: 100%;
        line-height: 50px;
        text-align: center;
        transition: all 0.25s;
    }

.homeTitle_right {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homeTitle_right_serach {
    width: 40%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
    justify-content: center;
}

.homeTitleRightSerach_input {
    width: 100%;
    height: 100%;
    background: #fff;
    color: #999;
    border: none;
    outline: none;
    text-indent: 10px;
}

.homeTitle_right_login {
    width: 50px;
    height: 100%;
    line-height: 50px;
    text-align: center;
    transition: all 0.25s;
    margin-left: 5%;
}
/* 响应式 */
@media screen and (max-width: 1060px) {
    .home_title {
        height: 40px;
        line-height: 40px;
    }

    .homeTitle_left {
        width: 60%;
    }

    .homeTitle_left_title {
        width: 80%;
        font-size: 15px;
    }

    .homeTitle_left_list {
        width: 50%;
    }

    .homeTitle_right {
        width: 40%;
    }

    .homeTitle_right_serach {
        width: 60%;
    }

    .homeTitleRightSerach_input {
        font-size: 12px;
    }

    .homeTitle_left_list li {
        width: 80px;
        font-size: 12px;
        line-height: 40px;
    }

    .homeTitle_right_login {
        width: 40px;
        font-size: 12px;
        line-height: 40px;
    }
}

@media screen and (max-width: 650px) {
    .homeTitle_left_title {
        display: none;
    }

    .homeTitle_left_list {
        width: 100%;
    }
}
/* 悬浮 */
.homeTitle_left_list li:hover {
    cursor: pointer;
    background: #989393;
    border-radius: 6px;
}

.homeTitle_right_login:hover {
    cursor: pointer;
    border-radius: 50%;
    background: #5b5959;
}

.footer {
    width: 100%;
    height: 360px;
    color: #ccc;
    line-height: 35px;
    align-items: center;
    font-size: 15px;
    color: #5c5d62;
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
    overflow: hidden;
    background-color: #f5f5f7;
}

.logo {
    width: 250px;
    margin: 0 auto;
    margin-top: 40px;
}

.logoTitle {
    font-weight: bold;
    color: red;
    margin-bottom: 15px;
}

.footer p {
    line-height: 30px;
    color: #999;
}

.content {
    background: #fff;
    overflow: hidden;
}

.title_brp {
    width: 100%;
    height: 50px;
    margin: 20px 0;
    clear: both;
    line-height: 50px;
    text-indent: 70px;
    font-size: 20px;
    font-weight: bold;
}

.goods {
    width: 90%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.goods_image {
    width: 50%;
}

    .goods_image img {
        width: 80%;
        display: block;
        margin: 0 auto;
    }

.goods_info {
    width: 50%;
    position: relative;
}

    .goods_info p {
        margin-left: 50px;
    }

.goods_info_title {
    font-size: 50px;
    margin: 50px 0;
}

.oldPrice, .newPrice {
    font-size: 25px;
    line-height: 40px;
}

.oldPrice {
    margin-bottom: 70px;
}

    .oldPrice span {
        text-decoration: line-through;
        color: #999;
    }

.goods_info_lin {
    width: 100%;
    font-size: 25px;
    line-height: 40px;
}

.btnBox {
    position: absolute;
    bottom: 0;
    display: flex;
}

.goods_purchase_btn {
    width: 200px;
    height: 50px;
    background: #fa3d3d;
    margin-left: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    border: none;
}

    .goods_purchase_btn:hover {
        cursor: pointer;
        background: rgb(255, 0, 0);
        color: #fff;
    }

    .goods_purchase_btn:active {
        background: rgb(255, 102, 102);
    }

.goods_stars_btn:hover {
    cursor: pointer;
    background: #f00;
    color: #fff;
    border: 1px solid #f00;
}

.goods_stars_btn:active {
    background: rgb(255, 102, 102);
}

.goods_stars_btn {
    width: 70px;
    height: 40px;
    background: #fff;
    border: 1px solid #000;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    margin-left: 5px;
    margin-top: 8px;
    transition: all 0.25s;
}

.goods_introduce {
    width: 70%;
    margin: 0 auto;
}

    .goods_introduce img {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
/* 响应式 */
@media screen and (max-width: 1200px) {
    .goods_info_title {
        font-size: 40px;
    }

    .goods_image img {
        width: 80%;
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 850px) {
    .title_brp {
        text-indent: 20px;
    }

    .goods {
        width: 100%;
        flex-wrap: wrap;
        padding-bottom: 20px;
        border-bottom: 2px solid #ccc;
    }

    .goods_image {
        width: 100%;
    }

    .goods_info {
        width: 100%;
    }

        .goods_info p {
            margin-left: 30px;
        }

    .goods_purchase_btn {
        margin-left: 30px;
    }

    .btnBox {
        width: 100%;
        justify-content: flex-start;
    }

    .goods_stars_btn {
        margin-right: 30px;
    }
}

@media screen and (max-width: 700px) {
    .goods_introduce {
        width: 100%;
    }
}
/* 禁用状态 */
#dashid {
    border: 1px solid #ccc;
    background-color: #ccc;
    cursor: not-allowed;
    color: #fff;
}
