﻿html {
    display: flex;
    justify-content: center;
}

body {
    width: 1280px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.shop-header {
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(to right, #0072e7, #92a5ff);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .shop-header img {
        height: 50px;
    }

    .shop-header > .title {
        font-size: 20px;
        font-weight: bold;
        color: white;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        .shop-header > .title > img {
            margin-right: 10px;
        }

    .shop-header .back-home {
        margin-right: 10px;
        color: white;
    }

.shop-main > .banner {
    text-align: center;
}

    .shop-main > .banner > img {
        width: 100%;
        border-radius: 20px;
    }


    .shop-main > .banner > p:nth-child(1) {
        font-size: 30px;
        margin: 20px 0 10px 0;
    }

    .shop-main > .banner > p:nth-child(2) {
        font-size: 20px;
        margin: 0 0 20px 0;
    }

.buy {
    margin: 10px 0;
    padding: 10px;
    border-radius: 20px;
}

.buy-title {
    text-align: center;
    background: #ebebeb;
    border-radius: 10px;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
}

.form-item {
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

    .form-item > .form-label {
        width: 150px;
        font-size: 16px;
        font-weight: bold;
        margin-right: 10px;
    }

    .form-item > .price {
        color: red;
        font-size: 20px;
        font-weight: bold;
    }

    .form-item .form-line {
        min-height: 36px;
    }

.shop-footer {
    padding: 20px 0;
    border-radius: 20px;
}

.shop-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .shop-footer > img {
        width: 120px;
        margin-bottom: 5px;
    }
