.containerf {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.actions {
    display: flex;
    gap: 15px;
}

.action-link {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.address-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.address-card {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

    .address-card.selected {
        border-color: #ff6a00;
        background-color: #fff8f0;
    }

.address-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-card.selected .address-icon {
    border-color: #ff6a00;
    background-color: #ff6a00;
}

.address-icon-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
}

.address-content {
    padding-left: 30px;
}

.address-tag {
    display: inline-block;
    background-color: #ff6a00;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 2px;
    margin-right: 5px;
}

.address-detail {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.address-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.address-contact {
    font-size: 14px;
    color: #666;
}

/* 模态框样式 */
.modalDialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modalDialog-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modalDialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.modalDialog-title {
    font-size: 18px;
    font-weight: bold;
}

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

/* 表单样式 */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
}

    .form-input:focus {
        border-color: #1890ff;
        outline: none;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    }

.form-row {
    display: flex;
    gap: 15px;
}

.form-col {
    flex: 1;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btnDialog {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btnDialog-cancel {
    background-color: white;
    border-color: #d9d9d9;
    color: #333;
}

    .btnDialog-cancel:hover {
        background-color: #f5f5f5;
    }


.payment-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .payment-option:hover {
        border-color: #ccc;
        background-color: #f9f9f9;
    }

    .payment-option.selected {
        border-color: #4CAF50;
        background-color: #f0f9f0;
    }

        .payment-option.selected.alipay {
            border-color: #1677FF;
            background-color: #f0f7ff;
        }

.payment-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wechat-icon {
    color: #07C160;
}

.alipay-icon {
    color: #1677FF;
}

.payment-details {
    flex: 1;
}

.payment-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.payment-description {
    font-size: 14px;
    color: #666;
}

.radio-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
}

.selected .radio-indicator {
    border-color: #4CAF50;
}

.selected.alipay .radio-indicator {
    border-color: #1677FF;
}

.selected .radio-indicator::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4CAF50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.selected.alipay .radio-indicator::after {
    background-color: #1677FF;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .submit-button:hover {
        background-color: #222;
    }

    .submit-button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

.order-summary {
    background-color: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

    .order-summary h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 600px) {
    .containerf {
        margin: 20px 16px;
        padding: 16px;
    }
}

/**------------内页------------*/
:root {
    --primary-color: #3a3a3a;
    --accent-color: #222;
    --light-accent: #f5f5f5;
    --background: #ffffff;
    --text-color: #333333;
    --heading-color: #222222;
    --border-color: #e0e0e0;
}




.col-lg-9 .brand-logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.col-lg-9 .header-line {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto 30px;
}

.col-lg-9 h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

    .col-lg-9 h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background-color: var(--accent-color);
    }

.col-lg-9 h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin: 40px 0 20px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

    .col-lg-9 h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 25px;
        background-color: var(--accent-color);
    }

.col-lg-9 p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.col-lg-9 .intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.col-lg-9 .section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--light-accent);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .col-lg-9 .section:nth-child(even) {
        background-color: var(--background);
        border: 1px solid var(--border-color);
    }

.col-lg-9 .highlight {
    font-weight: 500;
    color: var(--accent-color);
}



@media (max-width: 768px) {


    .col-lg-9 h2 {
        font-size: 1.8rem;
    }

    .col-lg-9 h3 {
        font-size: 1.3rem;
    }

    .col-lg-9 .intro {
        font-size: 1.1rem;
    }

    .col-lg-9 .section {
        padding: 20px;
    }
}
/*-----------新闻详情------------*/
:root {
    --primary-color: #1a1a1a;
    --accent-color: #c9a77c;
    --light-accent: #f9f6f2;
    --background: #ffffff;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #888888;
}



.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.brand-logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.article-category {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    margin-bottom: 25px;
}

.article-container h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-date {
    position: relative;
    padding: 0 15px;
}

    .article-date::before {
        content: "";
        width: 4px;
        height: 4px;
        background-color: var(--accent-color);
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.featured-image {
    width: 100%;
    height: 400px;
    background-color: var(--light-gray);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-caption {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 20px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.article-content {
    padding: 20px 0;
}

    .article-content p {
        margin-bottom: 25px;
        font-size: 1.05rem;
        line-height: 1.9;
        text-align: justify;
    }

/*   .article-content p:first-of-type::first-letter {
						            font-size: 3.5rem;
						            font-weight: 700;
						            float: left;
						            line-height: 1;
						            padding-right: 10px;
						            color: var(--accent-color);
						            font-family: 'Noto Serif SC', serif;
						        }*/

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .share-button:hover {
        background-color: var(--accent-color);
        color: white;
    }

.related-articles {
    margin-top: 60px;
}

.related-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .related-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
    }

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-accent);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

    .tag:hover {
        background-color: var(--accent-color);
        color: white;
        cursor: pointer;
    }

@media (max-width: 768px) {
    .article-container {
        padding: 20px 15px;
    }

        .article-container h1 {
            font-size: 1.8rem;
        }

    .featured-image {
        height: 250px;
    }

    /* .article-content p:first-of-type::first-letter {
						        font-size: 2.5rem;
						    }*/
}
