﻿.w1200 {
    width: 1200px;
    margin: 0px auto 40px;
    text-align: left;
    overflow: hidden;
    position: relative;
}
.f_link h2 {
    border-bottom: 1px solid rgb(237, 239, 243);
    margin: 40px 0 20px 0;
    padding-bottom: 20px;
}
.f_link ul li {float:left;margin-right: 20px; margin-bottom: 10px;}
.f_link ul li a {color:#2d2f3a;font-size:14px;}
.footer {
    border-top: 1px solid rgb(144, 144, 150);
}
.navbtm {
    width: 1312px;
}
.navbtm dl {
    float: left;
    width: 210px;
    margin: 40px 118px 40px 0px;
}
.navbtm dl dt {
    color: rgb(45, 47, 58);
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 16px;
}
.navbtm dl dd {
    font-size: 14px;
    line-height: 26px;
    float: left;
    min-width: 80px;
    color: rgb(144, 144, 150);
}
.navbtm dl dd a {
    color: rgb(144, 144, 150);
}
.gybtm {
    width: 1348px;
}
.gybtm ul {
    float: left;
    margin-right: 160px;
}
.gybtm ul li {
    font-size: 14px;
    line-height: 26px;
}
.gybtm ul li a {
    color: rgb(144, 144, 150);
}
.navbtm dl dd a:hover {
    color: rgb(25, 181, 0);
}
.foot {
    background: rgb(244, 247, 252);
    height: 65px;
    line-height: 65px;
    color: rgb(45, 47, 58);
    font-size: 14px;
}
.foot .copyright {
    float: left;
}
.foot .beian {
    float: right;
}
.foot .beian a {
    color: #2d2f3a;
}
.clearfix::after {
    content: ".";
    display: block;
    height: 0px;
    font-size: 0px;
    clear: both;
    visibility: hidden;
}


 
.lxwm-page {
    background: var(--bg);
    min-height: 60vh;
    padding: 48px 0 64px;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
 
.lxwm-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.lxwm-header {
    text-align: center;
    margin-bottom: 48px;
}
 
.lxwm-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 10px;
    letter-spacing: 1px;
}
 
.lxwm-header h1 span {
    color: var(--green);
}
 
.lxwm-header p {
    font-size: 15px;
    color: var(--text-sub);
    margin: 0;
}
 
.lxwm-divider {
    width: 48px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin: 14px auto 0;
}

.lxwm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
 
.lxwm-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: box-shadow 0.25s, transform 0.22s, border-color 0.22s;
    position: relative;
    overflow: hidden;
}
 
.lxwm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.28s ease;
    border-radius: var(--radius) var(--radius) 0 0;
}
 
.lxwm-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--green-mid);
}
 
.lxwm-card:hover::before {
    transform: scaleX(1);
}
 
.lxwm-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.22s;
}
 
.lxwm-card:hover .icon-wrap {
    background: var(--green-mid);
}
 
.lxwm-card .icon-wrap svg,.lxwm-card .icon-wrap .fonts {
    width: 28px;
    height: 28px;
    font-size: 28px;
    color: var(--green);
    fill: var(--green);
}
 
.lxwm-card .card-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
 
.lxwm-card .card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    word-break: break-all;
    line-height: 1.4;
}
 
.lxwm-card a.card-value,
.lxwm-card a.card-btn {
    color: var(--green);
    text-decoration: none;
    transition: color 0.18s;
}
 
.lxwm-card a.card-value:hover,
.lxwm-card a.card-btn:hover {
    color: var(--green-dark);
    text-decoration: underline;
}
 
.lxwm-card .card-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
}

.lxwm-card .card-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
 
.card-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    background: var(--green-light);
    color: var(--green-dark);
    text-decoration: none;
    border: 1px solid var(--green-mid);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
 
.card-btn-pill:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 2px 10px rgba(25,181,0,0.25);
    text-decoration: none;
}
 
.card-btn-pill .fonts {
    width: 13px;
    height: 13px;
    font-size: 14px;
    color: currentColor;
    fill: currentColor;
}
.lxwm-qr-row {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
 
.lxwm-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
 
.lxwm-qr-item .qr-box {
    width: 120px;
    height: 120px;
    background: var(--green-light);
    border-radius: 10px;
    border: 2px dashed var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.22s;
}
 
.lxwm-qr-item:hover .qr-box {
    border-color: var(--green);
}
 
.lxwm-qr-item .qr-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.lxwm-qr-item .qr-placeholder {
    text-align: center;
    color: var(--green);
}
 
.lxwm-qr-item .qr-placeholder svg {
    width: 40px; height: 40px; fill: var(--green); opacity: 0.5;
}
 
.lxwm-qr-item .qr-label {
    font-size: 14px;
    color: var(--text-sub);
    font-weight: 500;
    text-align: center;
}
 
.lxwm-qr-item .qr-tip {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}
 
.lxwm-qr-divider {
    width: 1px;
    height: 100px;
    background: var(--border);
}

.lxwm-addr {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    padding: 28px 36px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: box-shadow 0.22s;
    margin-bottom: 0;
}
 
.lxwm-addr:hover {
    box-shadow: var(--shadow-hover);
}
 
.lxwm-addr .addr-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.lxwm-addr .addr-icon .fonts {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: var(--green);
    fill: var(--green);
}
 
.lxwm-addr .addr-content {
    flex: 1;
}
 
.lxwm-addr .addr-content .addr-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}
 
.lxwm-addr .addr-content .addr-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.6;
}
 
.lxwm-addr .addr-content .addr-text span {
    color: var(--green);
}
#lxwm-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(25,181,0,0.92);
    color: #fff;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 9999;
    white-space: nowrap;
}
 
#lxwm-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}