﻿.mainview {
    min-height: 500px;
    background: url(/static/images/guide/bg.png) no-repeat;
    background-size: cover;
    padding: 70px 0px;
}

/* 购物指南说明样式 */
.guide-description {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
    line-height: 2;
    text-align: center;
}

/* 注意事项样式 */
.notes {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    padding-bottom: 80px;
}

.note-item {
    width: calc(50% - 30px);
    margin: 15px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background: linear-gradient(132deg, #F2F6FD, #FFFFFF);
}

    .note-item .note-icon {
        color: #007BFF;
        margin-right: 10px;
    }

    .note-item i {
        color: #246CAF;
        font-size: 18px;
        font-weight: 700;
    }

    .note-item h2 {
        color: #246CAF;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        display: inline-block;
        margin-left: 5px;
    }

    .note-item .note-text {
        display: flex;
        margin-left: 28px;
        line-height: 32px;
    }

        .note-item .note-text a {
            margin: 0 5px;
        }

    .note-item .note-key {
        margin-right: 10px;
        font-size: 16px;
        color: #000;
        line-height: 2;
        font-weight: 500;
        width: 100px;
        min-width: 100px;
    }

    .note-item .note-value {
        font-size: 14px;
        color: #333;
        font-family: AliRegular;
    }
