﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 740px;
    margin: 12px auto;
    border: 2px solid #000;
    background: #fff url('./background.jpg') no-repeat 0 0;
    overflow: hidden;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
}

header {
    position: absolute;
    z-index: 3;
    right: 18px;
    top: 19px;
    width: 325px;
}

article {
    padding: 18px 18px 1px;
    color: #fff;
    position: relative;
}

footer {
    padding: 0 34px 16px;
    margin-top: -4px;
}

.list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 20px;
    font-size: 14px;
}

p {
    margin: 0 0 10px;
}

h1 {
    margin: 0 0 33px;
    font-size: 47px;
    line-height: 56px;
    font-weight: 700;
}

h2 {
    font-size: 15px;
    margin: 6px 0 10px 0;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
}

a {
    color: #200e00;
    text-decoration: none;
}

ul {
    padding: 0 0 23px;
    list-style: none;
    line-height: 17px;
}

ul li {
    padding-left: 17px;
    background: url('./iconli.jpg') no-repeat 0 7px;
    padding-bottom: 4px;
}

ul.ul li {
    background: url('./like.jpg') no-repeat 0 7px;
    padding-left: 23px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.fontsize {
    font-size: 18px;
}

.box a {
    color: #fff;
}

h1 span {
    display: block;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 13px;
}

h1 small {
    display: inline-block;
    padding-top: 10px;
    border-top: 1px solid #fff;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.left {
    width: 55%;
}

.right {
    width: 38%;
    padding-top: 24px;
}

.box {
    margin: -3px -18px 10px -60px;
    border: 2px solid #fff;
    padding: 10px;
    border-right: none;
    font-size: 14px;
    line-height: 16px;
    position: relative;
}

.box p small {
    font-size: 13px;
}

.qrcode {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: -108px;
    box-shadow: 0 0 5px #666;
}

footer p {
    margin-bottom: 1px;
}

.flex_box {
    margin-top: 20px;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer p span {
    position: relative;
    top: -1px;
}

@media all and (max-width: 739px) {
    #wrapper {
        margin: 0;
        background: #fff;
        border: none;
    }

    header {
        position: static;
        padding: 15px;
        width: auto;
    }

    article {
        background: #c60e40;
        padding: 15px;
    }

    footer {
        padding: 10px 15px;
    }

    h2 {
        padding: 6px 10px;
        background: #8e012d;
    }

    :is(.left, .right) {
        width: 100%;
        padding: 0;
    }

    h1 {
        font-size: 40px;
        line-height: 44px;
    }

    h1 br {
        display: none;
    }

    .box {
        margin: 0 -15px 10px 0;
    }

    .qrcode {
        position: static;
        box-shadow: none;
    }

    footer p span {
        width: 22px;
        display: inline-block;
    }
}