@charset "utf-8";

:root {
    --color-bg: #f5f7fa;
    --color-text: #30352f;
    --color-muted: #6f776e;
    --color-primary: #87c122;
    --color-primary-dark: #5f9211;
    --color-primary-soft: #edf6dc;
    --color-secondary: #ff6b5e;
    --color-blue: #4f7ee8;
    --color-forest: #173522;
    --surface: #ffffff;
    --line: #dfe5dd;
    --shadow: 0 18px 44px rgba(41, 70, 32, .11);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    overflow-x: hidden;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.mw3_rq {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mw3_mk {
    padding: 108px 0;
}

.mw3_zt_bt {
    font-weight: 800;
}

.mw3_kp {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.mw3_an {
    display: inline-flex;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.mw3_an:hover {
    transform: translateY(-2px);
}

.mw3_an_zs {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 10px 24px rgba(95, 146, 17, .22);
}

.mw3_an_zs:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 12px 28px rgba(95, 146, 17, .3);
}

.mw3_an_cs {
    border-color: #cbd6c6;
    color: var(--color-text);
    background: #fff;
}

.mw3_an_cs:hover {
    border-color: var(--color-primary);
}

.mw3_an_qs {
    color: var(--color-forest);
    background: #fff;
}

.mw3_an_bk {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
    background: transparent;
}

.mw3_db_tz {
    display: flex;
    min-height: 36px;
    padding: 7px 20px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    background: var(--color-forest);
    font-size: 12px;
}

.mw3_db_tz span,
.mw3_db_tz a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mw3_db_tz a {
    color: #b8e466;
    font-weight: 700;
}

.mw3_wz_tb {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(223, 229, 221, .9);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
}

.mw3_dh_rq {
    display: flex;
    height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.mw3_pp {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: none;
}

.mw3_pp img {
    width: 44px;
    height: 44px;
    border: 1px solid #d9e2d5;
    border-radius: 50%;
    object-fit: cover;
}

.mw3_ppmc {
    color: var(--color-forest);
    font-size: 20px;
    line-height: 1;
}

.mw3_dh_lj {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mw3_dh_lj a {
    position: relative;
    color: #50574f;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.mw3_dh_lj a::after {
    position: absolute;
    right: 0;
    bottom: -11px;
    left: 0;
    height: 2px;
    background: var(--color-primary);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}

.mw3_dh_lj a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.mw3_dh_cz {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}

.mw3_dh_cz .mw3_an {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 22px;
    font-size: 14px;
}

.mw3_cd_qh {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
}

.mw3_sp {
    position: relative;
    overflow: hidden;
    background: var(--color-primary-soft);
}

.mw3_sp_nr {
    display: grid;
    min-height: 600px;
    padding: 44px 0 90px;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
    align-items: center;
    gap: 72px;
}

.mw3_sp_wa {
    position: relative;
    z-index: 3;
}

.mw3_mbs,
.mw3_mk_xbt {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .6px;
}

.mw3_mbs {
    margin-bottom: 18px;
    padding: 7px 11px;
    border: 1px solid #cce1a7;
    border-radius: 5px;
    background: rgba(255, 255, 255, .55);
}

.mw3_sp_bt {
    margin-bottom: 8px;
    color: var(--color-forest);
    font-size: clamp(54px, 5.2vw, 76px);
    line-height: 1.08;
    letter-spacing: 0;
}

.mw3_sp_kh {
    margin-bottom: 24px;
    color: #52723e;
    font-size: 25px;
    font-weight: 700;
}

.mw3_sp_ms {
    max-width: 620px;
    margin-bottom: 30px;
    color: #596355;
    font-size: 16px;
    line-height: 1.9;
}

.mw3_sp_cz {
    display: flex;
    margin-bottom: 27px;
    flex-wrap: wrap;
    gap: 12px;
}

.mw3_sp_cz .mw3_an {
    min-height: 56px;
    padding: 0 26px;
    font-size: 16px;
}

.mw3_sp_bz {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #5b6658;
    font-size: 13px;
}

.mw3_sp_bz span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mw3_sp_bz i {
    color: var(--color-primary-dark);
    font-size: 17px;
}

.mw3_sp_sj {
    position: relative;
    height: 480px;
}

.mw3_sp_xz {
    position: absolute;
    border-radius: 50%;
}

.mw3_sp_xz_1 {
    top: 26px;
    right: 0;
    width: 420px;
    height: 420px;
    background: #cfe9a4;
}

.mw3_sp_xz_2 {
    right: 54px;
    bottom: 4px;
    width: 118px;
    height: 118px;
    border: 22px solid var(--color-secondary);
    opacity: .85;
}

.mw3_sj {
    position: absolute;
    overflow: hidden;
    border: 8px solid #253126;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 45px rgba(35, 67, 28, .2);
}

.mw3_sj::before {
    position: absolute;
    top: 7px;
    left: 50%;
    z-index: 2;
    width: 64px;
    height: 13px;
    border-radius: 0 0 8px 8px;
    background: #253126;
    content: "";
    transform: translateX(-50%);
}

.mw3_sj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw3_sj_h {
    top: 72px;
    left: 8px;
    width: 236px;
    height: 414px;
    opacity: .8;
    transform: rotate(-8deg);
}

.mw3_sj_q {
    top: 8px;
    right: 42px;
    z-index: 2;
    width: 264px;
    height: 464px;
    transform: rotate(4deg);
}

.mw3_fd_bq {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 178px;
    padding: 12px 14px;
    border: 1px solid #d8e0d4;
    border-radius: 8px;
    align-items: center;
    gap: 11px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(35, 67, 28, .15);
}

.mw3_fd_bq > i {
    display: flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-primary);
    font-size: 19px;
}

.mw3_fd_bq strong,
.mw3_fd_bq span {
    display: block;
    line-height: 1.35;
}

.mw3_fd_bq strong {
    color: var(--color-forest);
    font-size: 15px;
}

.mw3_fd_bq span {
    color: var(--color-muted);
    font-size: 11px;
}

.mw3_fd_bq_s {
    top: 73px;
    right: -22px;
}

.mw3_fd_bq_x {
    bottom: 30px;
    left: 17px;
}

.mw3_fd_bq_x > i {
    background: var(--color-secondary);
}

.mw3_sp_tj {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    border-top: 1px solid rgba(104, 145, 44, .18);
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(10px);
}

.mw3_sp_tj .mw3_rq {
    display: grid;
    height: 82px;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.mw3_sp_tj .mw3_rq > div {
    display: flex;
    min-width: 0;
    padding: 0 34px;
    border-right: 1px solid #d9e4d3;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.mw3_sp_tj .mw3_rq > div:last-child {
    border-right: 0;
}

.mw3_sp_tj strong {
    color: var(--color-forest);
    font-size: 24px;
}

.mw3_sp_tj span {
    color: var(--color-muted);
    font-size: 12px;
    white-space: nowrap;
}

.mw3_mk_tb {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.mw3_mk_xbt {
    margin-bottom: 12px;
}

.mw3_mk_bt {
    color: var(--color-forest);
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 0;
}

.mw3_mk_ms {
    max-width: 650px;
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: 15px;
}

.mw3_cpzs {
    background: #fff;
}

.mw3_cp_wg {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.mw3_cp_x {
    min-width: 0;
}

.mw3_cp_tp {
    position: relative;
    aspect-ratio: 262 / 460;
    overflow: hidden;
    border: 1px solid #d5ded1;
    border-radius: 8px;
    background: #f6f8f5;
    box-shadow: 0 16px 34px rgba(38, 62, 32, .1);
}

.mw3_cp_tp::after {
    position: absolute;
    inset: 0;
    border: 5px solid rgba(255, 255, 255, .38);
    border-radius: 7px;
    content: "";
    pointer-events: none;
}

.mw3_cp_tp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.mw3_cp_x:hover .mw3_cp_tp img {
    transform: scale(1.025);
}

.mw3_cp_x figcaption {
    display: grid;
    padding-top: 17px;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 10px;
}

.mw3_cp_x figcaption > span {
    display: flex;
    width: 34px;
    height: 34px;
    border: 1px solid #cde0b8;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    font-size: 11px;
    font-weight: 800;
}

.mw3_cp_x figcaption strong,
.mw3_cp_x figcaption small {
    display: block;
}

.mw3_cp_x figcaption strong {
    margin-bottom: 2px;
    font-size: 16px;
}

.mw3_cp_x figcaption small {
    color: var(--color-muted);
    font-size: 12px;
}

.mw3_gnts {
    background: var(--color-bg);
}

.mw3_gnts_bj {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: start;
    gap: 70px;
}

.mw3_gnts_js {
    position: sticky;
    top: 112px;
}

.mw3_gnts_js .mw3_mk_ms {
    margin: 18px 0 26px;
}

.mw3_wa_lj {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-primary-dark);
    font-size: 14px;
    font-weight: 800;
}

.mw3_gnts_wg {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mw3_gn_kp {
    display: grid;
    min-height: 198px;
    padding: 26px;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mw3_gn_kp:hover {
    border-color: #bdcfb7;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.mw3_gn_tb {
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    font-size: 23px;
}

.mw3_gn_kp:nth-child(2) .mw3_gn_tb,
.mw3_gn_kp:nth-child(5) .mw3_gn_tb {
    color: #d94e43;
    background: #fff0ee;
}

.mw3_gn_kp:nth-child(3) .mw3_gn_tb,
.mw3_gn_kp:nth-child(6) .mw3_gn_tb {
    color: #3868cc;
    background: #edf2ff;
}

.mw3_gn_kp > div:last-child > span {
    color: #abb3a8;
    font-size: 11px;
    font-weight: 800;
}

.mw3_gn_kp h3 {
    margin: 4px 0 8px;
    font-size: 18px;
}

.mw3_gn_kp p {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.8;
}

.mw3_sylc {
    color: #fff;
    background: var(--color-forest);
}

.mw3_mk_tb_qs .mw3_mk_xbt {
    color: #b8e466;
}

.mw3_mk_tb_qs .mw3_mk_bt {
    color: #fff;
}

.mw3_mk_tb_qs .mw3_mk_ms {
    color: #a9b8aa;
}

.mw3_sjz {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.mw3_sjz::before {
    position: absolute;
    top: 30px;
    right: 12.5%;
    left: 12.5%;
    height: 1px;
    background: #45634e;
    content: "";
}

.mw3_sjz_x {
    position: relative;
    padding: 0 12px;
}

.mw3_sjz_bj {
    position: relative;
    z-index: 1;
    display: flex;
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border: 7px solid var(--color-forest);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    background: #a8dd4c;
    box-shadow: 0 0 0 1px #4f6c56;
    font-size: 12px;
    font-weight: 900;
}

.mw3_sjz_nr {
    min-height: 205px;
    padding: 25px;
    border: 1px solid #3b5844;
    border-radius: 8px;
    background: #1e402a;
}

.mw3_sjz_nr > i {
    display: flex;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    color: #c7ed7e;
    background: #2b5035;
    font-size: 20px;
}

.mw3_sjz_nr h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.mw3_sjz_nr p {
    color: #abc0ae;
    font-size: 13px;
    line-height: 1.8;
}

.mw3_cjwt {
    background: #fff;
}

.mw3_cjwt_bj {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(500px, 1.28fr);
    align-items: start;
    gap: 90px;
}

.mw3_cjwt_js {
    position: relative;
    padding-bottom: 178px;
}

.mw3_cjwt_js .mw3_mk_ms {
    margin: 18px 0 0;
}

.mw3_cjwt_js img {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.mw3_cjwt_js::after {
    position: absolute;
    bottom: 15px;
    left: 132px;
    width: 74px;
    height: 74px;
    border: 16px solid #dff1c2;
    border-radius: 50%;
    content: "";
}

.mw3_cjwt_lb {
    border-top: 1px solid var(--line);
}

.mw3_cjwt_x {
    border-bottom: 1px solid var(--line);
}

.mw3_cjwt_x button {
    display: flex;
    width: 100%;
    min-height: 78px;
    padding: 20px 0;
    border: 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
}

.mw3_cjwt_x button i {
    display: flex;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    flex: none;
}

.mw3_cjwt_x.is-open button {
    color: var(--color-primary-dark);
}

.mw3_cjwt_x.is-open button i {
    border-color: var(--color-primary);
    color: #fff;
    background: var(--color-primary);
}

.mw3_cjwt_da {
    padding: 0 62px 25px 0;
}

.mw3_cjwt_da p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.9;
}

.mw3_yhpj {
    background: var(--color-bg);
}

.mw3_yh_wg {
    column-count: 3;
    column-gap: 18px;
}

.mw3_pj_kp {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    padding: 25px;
    break-inside: avoid;
    box-shadow: 0 8px 26px rgba(46, 70, 39, .05);
}

.mw3_pj_kp:nth-child(2),
.mw3_pj_kp:nth-child(5) {
    padding-bottom: 38px;
}

.mw3_pj_kp:nth-child(3),
.mw3_pj_kp:nth-child(6) {
    padding-top: 34px;
}

.mw3_kp_db {
    display: grid;
    margin-bottom: 18px;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 11px;
}

.mw3_tx {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
}

.mw3_pj_kp:nth-child(2n) .mw3_tx {
    background: var(--color-secondary);
}

.mw3_pj_kp:nth-child(3n) .mw3_tx {
    background: var(--color-blue);
}

.mw3_kp_db strong,
.mw3_kp_db small {
    display: block;
}

.mw3_kp_db strong {
    font-size: 14px;
}

.mw3_kp_db small {
    color: var(--color-muted);
    font-size: 11px;
}

.mw3_xx {
    color: #f1ad28;
    font-size: 11px;
    letter-spacing: 1px;
}

.mw3_pj_kp > p {
    color: #566055;
    font-size: 14px;
    line-height: 1.9;
}

.mw3_pj_kp time {
    display: block;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #edf0eb;
    color: #9aa198;
    font-size: 11px;
}

.mw3_xz_q {
    padding: 62px 0;
    color: #fff;
    background: var(--color-primary);
}

.mw3_xz_nr {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    align-items: center;
    gap: 26px;
}

.mw3_xz_nr > img {
    width: 92px;
    height: 92px;
    border: 5px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    object-fit: cover;
}

.mw3_xz_wa > span {
    display: block;
    color: #315c0c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.mw3_xz_bt {
    margin: 3px 0;
    font-size: 30px;
    line-height: 1.35;
}

.mw3_xz_wa p {
    color: #3d690e;
    font-size: 14px;
}

.mw3_xz_cz {
    display: flex;
    gap: 10px;
}

.mw3_wz_db {
    padding: 62px 0 26px;
    color: #9bab9d;
    background: #142b1c;
}

.mw3_wb_wg {
    display: grid;
    margin-bottom: 48px;
    grid-template-columns: 1.5fr .7fr .7fr 1fr;
    gap: 50px;
}

.mw3_wb_pp .mw3_ppmc {
    color: #fff;
}

.mw3_wb_pp p {
    max-width: 290px;
    margin-top: 17px;
    color: #7f9282;
    font-size: 13px;
}

.mw3_wb_l h4 {
    margin-bottom: 17px;
    color: #fff;
    font-size: 14px;
}

.mw3_wb_lj {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mw3_wb_lj a {
    color: #849887;
    font-size: 13px;
}

.mw3_wb_lj a:hover {
    color: #b8e466;
}

.mw3_wb_xx {
    padding: 20px;
    border: 1px solid #2b4934;
    border-radius: 8px;
}

.mw3_wb_xx span,
.mw3_wb_xx strong,
.mw3_wb_xx small {
    display: block;
}

.mw3_wb_xx span,
.mw3_wb_xx small {
    color: #78907d;
    font-size: 11px;
}

.mw3_wb_xx strong {
    margin: 5px 0;
    color: #b8e466;
    font-size: 20px;
}

.mw3_wb_db {
    display: flex;
    padding-top: 24px;
    border-top: 1px solid #28432f;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #708574;
    font-size: 12px;
}

.mw3_wb_db a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #9eb2a1;
    white-space: nowrap;
}

@media (max-width: 1050px) {
    .mw3_dh_lj {
        gap: 18px;
    }

    .mw3_sp_nr {
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: 30px;
    }

    .mw3_sj_q {
        right: 20px;
    }

    .mw3_fd_bq_s {
        right: -6px;
    }

    .mw3_gnts_bj {
        grid-template-columns: 285px minmax(0, 1fr);
        gap: 42px;
    }

    .mw3_gn_kp {
        padding: 22px;
    }

    .mw3_cjwt_bj {
        gap: 55px;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 88px;
    }

    .mw3_dh_lj {
        position: fixed;
        top: 110px;
        right: 0;
        left: 0;
        display: none;
        padding: 18px 20px 24px;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: 0 18px 30px rgba(30, 56, 24, .12);
    }

    .mw3_dh_lj.is-open {
        display: flex;
    }

    .mw3_dh_lj a {
        padding: 12px 4px;
    }

    .mw3_dh_lj a::after {
        display: none;
    }

    .mw3_cd_qh {
        display: flex;
    }

    .mw3_sp_nr {
        padding-top: 58px;
        grid-template-columns: 1fr;
    }

    .mw3_sp_wa {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .mw3_sp_ms {
        margin-right: auto;
        margin-left: auto;
    }

    .mw3_sp_cz,
    .mw3_sp_bz {
        justify-content: center;
    }

    .mw3_sp_sj {
        width: min(510px, 100%);
        margin: 0 auto;
    }

    .mw3_cp_wg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }

    .mw3_gnts_bj {
        grid-template-columns: 1fr;
    }

    .mw3_gnts_js {
        position: static;
        max-width: 620px;
    }

    .mw3_sjz {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 14px;
    }

    .mw3_sjz::before {
        display: none;
    }

    .mw3_cjwt_bj {
        grid-template-columns: 1fr;
    }

    .mw3_cjwt_js {
        max-width: 620px;
    }

    .mw3_yh_wg {
        column-count: 2;
    }

    .mw3_xz_nr {
        grid-template-columns: 80px 1fr;
    }

    .mw3_xz_nr > img {
        width: 80px;
        height: 80px;
    }

    .mw3_xz_cz {
        grid-column: 2;
    }

    .mw3_wb_wg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .mw3_rq {
        width: min(100% - 30px, 1180px);
    }

    .mw3_mk {
        padding: 72px 0;
    }

    .mw3_db_tz {
        min-height: 34px;
        padding-right: 12px;
        padding-left: 12px;
        gap: 10px;
        font-size: 10px;
    }

    .mw3_dh_rq {
        height: 66px;
    }

    .mw3_pp img {
        width: 39px;
        height: 39px;
    }

    .mw3_ppmc {
        font-size: 18px;
    }

    .mw3_dh_cz > .mw3_an {
        display: none;
    }

    .mw3_dh_lj {
        top: 100px;
    }

    .mw3_sp_nr {
        min-height: 0;
        padding: 46px 0 94px;
    }

    .mw3_sp_bt {
        font-size: 46px;
    }

    .mw3_sp_kh {
        font-size: 20px;
    }

    .mw3_sp_ms {
        font-size: 14px;
        line-height: 1.85;
    }

    .mw3_sp_cz {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mw3_sp_cz .mw3_an {
        width: 100%;
    }

    .mw3_sp_bz {
        gap: 10px 14px;
    }

    .mw3_sp_sj {
        height: 450px;
        margin-top: 16px;
    }

    .mw3_sp_xz_1 {
        top: 25px;
        right: 50%;
        width: 320px;
        height: 320px;
        transform: translateX(50%);
    }

    .mw3_sj_h {
        top: 65px;
        left: 5px;
        width: 190px;
        height: 334px;
    }

    .mw3_sj_q {
        right: 12px;
        width: 212px;
        height: 372px;
    }

    .mw3_fd_bq {
        min-width: 148px;
        padding: 9px 10px;
    }

    .mw3_fd_bq_s {
        top: 49px;
        right: -3px;
    }

    .mw3_fd_bq_x {
        bottom: 13px;
        left: -2px;
    }

    .mw3_sp_tj .mw3_rq {
        height: 72px;
    }

    .mw3_sp_tj .mw3_rq > div {
        padding: 0 5px;
        align-items: center;
        flex-direction: column;
        gap: 0;
    }

    .mw3_sp_tj strong {
        font-size: 18px;
    }

    .mw3_sp_tj span {
        font-size: 9px;
    }

    .mw3_mk_tb {
        margin-bottom: 36px;
        text-align: left;
    }

    .mw3_mk_bt {
        font-size: 30px;
    }

    .mw3_mk_ms {
        margin: 13px 0 0;
        font-size: 14px;
    }

    .mw3_cp_wg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 12px;
    }

    .mw3_cp_x figcaption {
        grid-template-columns: 28px 1fr;
        gap: 7px;
    }

    .mw3_cp_x figcaption > span {
        width: 28px;
        height: 28px;
    }

    .mw3_cp_x figcaption strong {
        font-size: 14px;
    }

    .mw3_cp_x figcaption small {
        display: none;
    }

    .mw3_gnts_bj {
        gap: 38px;
    }

    .mw3_gnts_wg {
        grid-template-columns: 1fr;
    }

    .mw3_gn_kp {
        min-height: 0;
    }

    .mw3_sjz {
        display: block;
    }

    .mw3_sjz_x {
        display: grid;
        padding: 0 0 22px;
        grid-template-columns: 50px 1fr;
        gap: 14px;
    }

    .mw3_sjz_x:not(:last-child)::after {
        position: absolute;
        top: 50px;
        bottom: 0;
        left: 24px;
        width: 1px;
        background: #45634e;
        content: "";
    }

    .mw3_sjz_bj {
        width: 50px;
        height: 50px;
        margin: 0;
    }

    .mw3_sjz_nr {
        min-height: 0;
        padding: 21px;
    }

    .mw3_cjwt_bj {
        gap: 30px;
    }

    .mw3_cjwt_js {
        padding-bottom: 0;
    }

    .mw3_cjwt_js img,
    .mw3_cjwt_js::after {
        display: none;
    }

    .mw3_cjwt_x button {
        min-height: 72px;
        gap: 14px;
        font-size: 15px;
    }

    .mw3_cjwt_da {
        padding-right: 0;
    }

    .mw3_yh_wg {
        column-count: 1;
    }

    .mw3_pj_kp:nth-child(n) {
        padding: 23px;
    }

    .mw3_xz_q {
        padding: 46px 0;
    }

    .mw3_xz_nr {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .mw3_xz_bt {
        font-size: 26px;
    }

    .mw3_xz_cz {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .mw3_wb_wg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }

    .mw3_wb_pp,
    .mw3_wb_xx {
        grid-column: 1 / -1;
    }

    .mw3_wb_db {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}

/*投诉按钮，严禁改动！！！*/
.report-floating {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: #2aa0ea;
    color: #fff;
}

.report-floating i {
    font-size: 18px;
    line-height: 1;
}
