:root {
    --max: 1400px;
    --size14: 14px;
    --size16: 16px;
    --size18: 18px;
    --size20: 20px;
    --size24: 24px;
    --size30: 30px;
    --size36: 36px;
    --size40: 40px;
    --size46: 46px;
    --size50: 50px;
    --size56: 56px;
    --size60: 60px;

    --top20: 20px;
    --top30: 30px;
    --top40: 40px;
    --top50: 50px;
    --top60: 60px;
    --top80: 80px;
    --top100: 100px;
    --top120: 120px;
}

@font-face {
    font-family: "tt";
    src: url("../fonts/tt.otf") format("truetype");
}


.Hertre {
    width: 100%;
    z-index: 98;
    height: 80px;
    position: relative;
    background: rgba(255, 183, 74, 1);
}

.Hertre_cen {
    width: calc(100% - 120px);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 200px;
    overflow: hidden;

}

.Logo img {
    width: 100%;
    height: auto;
}

.Nav {
    width: max-content;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top50);
}

.Nav ul li {
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 80px;
    position: relative;
}

.Nav ul li.active {
    font-weight: 700;
}

.Souuo_box {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--top20);
}

.Souuo {
    width: 40px;
    height: 40px;
    position: relative;
}

.Souuo_souuo {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.Souuo_souuo button {
    width: 30px;
    height: auto;
    display: block;
    background: transparent;
    border: transparent;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.Souuo_souuo button svg {
    width: 100%;
    display: block;
    height: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.Souuo_active {
    width: 300px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(39, 86, 168, 0.15);
}


.Souuo_active button {
    opacity: 0.7;
    transform: translateY(-50%) scale(0.8);
    pointer-events: auto;
}

.Souuo_active button svg path {
    stroke: #000000;
}

.Souuo_active button:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.Souuo_souuo input {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: var(--size14);
    color: rgb(122, 122, 122);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.Souuo_souuo.Souuo_active input {
    padding: 0 50px 0 20px;
    width: 100%;
}

.Yonghu {
    width: 40px;
    height: 40px;
}

.Yonghu a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Yonghu a svg {
    width: 30px;
    height: auto;
}

.An {
    width: 30px;
    display: none;
}

.menu_button {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu_button:focus {
    outline: none;
}

.menu_button .line {
    fill: none;
    stroke: #000000;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_button .line1 {
    stroke-dasharray: 60 207;
}

.menu_button .line2 {
    stroke-dasharray: 60 60;
}

.menu_button .line3 {
    stroke-dasharray: 60 207;
}

.menu_button.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.menu_button.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.menu_button.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.Banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.Banner img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
}

.Banner_text {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5vw;
    color: rgba(255, 255, 255, 1);
    font-family: 'tt';
    line-height: 1;
}


.User {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.User_logo {
    width: 100px;
    position: absolute;
    top: var(--top30);
    left: var(--top30);
}

.User_logo img {
    width: 100%;
    height: auto;
}

.User_bei {
    width: 60%;
    height: 100%;
}

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

.User_max {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 25px 8vw;
}

.User_box {
    width: 100%;
}

.User_box>img {
    width: 200px;
    height: auto;
    margin: auto;
}

.User_box>a {
    font-size: var(--size18);
    color: rgba(22, 119, 255, 1);
    line-height: 1;
    text-align: center;
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

.User_qie {
    width: 100%;
    margin-top: var(--top40);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--top60);
}

.User_qie button {
    width: max-content;
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
    position: relative;
}

.User_qie button::after {
    content: "";
    width: 0%;
    height: 6px;
    background: rgba(255, 183, 74, 1);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
    transition: all 0.3s;
}

.User_qie button.active {
    font-weight: 700;
}

.User_qie button.active::after {
    width: 115%;
}

.User_form {
    width: 100%;
    margin-top: var(--top40);
}

.User_list {
    width: 100%;
}

.User_list form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.User_item {
    width: 100%;
    position: relative;
}

.User_item input {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(214, 214, 214, 1);
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
    padding-left: 50px;
}

.User_item svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.User_list form>button {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 183, 74, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    margin-top: var(--top20);
}

.User_index {
    width: var(--max);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5vw;
}

.User_left {
    width: 400px;
    background: rgba(244, 244, 244, 1);
    border-radius: var(--top20);
    padding: var(--top50);
    padding-bottom: var(--top100);
}

.User_img {
    width: 150px;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    background: #ffffff;
    padding: 10px;
    position: relative;
    margin: auto;
}

.User_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

#file {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}

.User_left>p {
    text-align: center;
    font-size: var(--size20);
    color: rgba(32, 32, 32, 1);
    margin-top: var(--top20);
    font-weight: 600;
}

.User_xin {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.User_xin a {
    width: 100%;
    line-height: 70px;
    text-align: center;
    background: rgba(255, 255, 255, 1);
    border-radius: var(--top20);
    font-size: var(--size20);
    color: rgba(32, 32, 32, 1);
}

.User_xin a.active {
    background: rgba(255, 183, 74, 1);
    color: rgba(255, 255, 255, 1);
}

.User_right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.User_right_top {
    width: 100%;
}

.User_right_top>h2 {
    font-size: var(--size24);
    color: rgba(32, 32, 32, 1);
    border-bottom: 1px solid rgba(151, 151, 151, 1);
    padding-bottom: 10px;
}

.User_right_top ul {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.User_right_top ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.User_right_top ul li svg {
    width: 20px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.User_right_top ul li p {
    flex: 1;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
}

.User_right_top ul li input {
    display: none;
    flex: 1;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
}

.User_right>button {
    width: max-content;
    padding: 0 var(--top60);
    height: 60px;
    text-align: center;
    background: rgba(255, 183, 74, 1);
    color: rgba(255, 255, 255, 1);
    border-radius: var(--top20);
    font-size: var(--size20);
    cursor: pointer;
    margin-top: 50px;
}

.Slider_verify {
    width: 100%;
    height: 50px;
    position: relative;
    border-radius: 6px;
    background: rgba(246, 246, 246, 1);
    overflow: hidden;
}

.Slider_verify * {
    transition: auto;
}

.Slider_verify_track {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 183, 74, 1);
    transition: background-color .22s ease;
}

.Slider_verify_text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 50px;
    text-align: center;
    font-size: 12px;
    color: rgba(119, 119, 119, 1);
    transition: color .22s ease, letter-spacing .22s ease;
}

.Slider_verify_thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 214, 214, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.Slider_verify_thumb svg {
    width: 16px;
    height: auto;
}

.Slider_verify.success .Slider_verify_track {
    width: 100% !important;
    background: #d7f5d7;
}

.Slider_verify.success .Slider_verify_thumb {
    background: #31b057;
    border-color: #31b057;
    box-shadow: 0 2px 10px rgba(49, 176, 87, .25);
    transform: scale(0.97);
}

.Slider_verify.success .Slider_verify_thumb svg path {
    stroke: #ffffff;
}

.Slider_verify.success .Slider_verify_text {
    color: #2f9950;
    letter-spacing: .2px;
}

.Lianxi {
    width: var(--max);
    margin: var(--top80) auto;
}

.Lianxi>h2{
    text-align: center;
    font-size: var(--size46);
    color: rgba(255, 183, 74, 1);
    font-weight: 700;
}

.Lianxi ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top60);
}

.Lianxi ul li {
    width: 100%;
    background: rgba(242, 242, 242, 1);
    padding: var(--top30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--top20);
}

.Lianxi ul li svg {
    width: 30px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

.Lianxi ul li p {
    font-size: var(--size24);
    color: rgba(51, 51, 51, 1);
}

.Lianxi form {
    width: 100%;
    margin-top: var(--top60);
    display: flex;
    flex-wrap: wrap;
    gap: var(--top30) var(--top60);
}

.Lianxi_form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.Lianxi_form:nth-child(-n+2) {
    width: calc(50% - var(--top60) / 2);
}

.Lianxi_form p {
    width: 120px;
    font-size: var(--size20);
    color: rgba(6, 4, 3, 1);
    font-weight: 500;
    line-height: 60px;
}

.Lianxi_form input {
    flex: 1;
    height: 60px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(211, 211, 211, 1);
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
    padding: 0 15px;
}

.Lianxi_form textarea {
    flex: 1;
    height: 320px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(211, 211, 211, 1);
    font-size: var(--size16);
    color: rgba(170, 170, 170, 1);
    padding: 15px;
    resize: none;
}

.Lianxi_form button {
    width: 300px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 183, 74, 1);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    cursor: pointer;
}

.Xinwen {
    width: var(--max);
    margin: var(--top80) auto;
}

.Xinwen ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top30);
}

.Xinwen ul li {
    width: 100%;
}

.Xinwen ul li img {
    width: 100%;
    aspect-ratio: 450 / 320;
    object-fit: cover;
    border-radius: var(--top20);
}

.Xinwen ul li h2 {
    font-size: var(--size20);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Xinwen ul li p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.Xinwen ul li a {
    width: max-content;
    line-height: 44px;
    border-radius: 12px;
    background: rgba(255, 183, 74, 1);
    padding: 0 20px;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top20);
    display: block;
}

.loading {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 183, 74, 1);
    line-height: 56px;
    border-radius: 12px;
    margin: auto;
    margin-top: var(--top60);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    padding: 0 var(--top100);
    cursor: pointer;
}

.loading svg {
    width: 20px;
    height: auto;
    color: #005BD6;
    animation: spinner-rotate 1s linear infinite;
}

@keyframes spinner-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.Show {
    width: var(--max);
    overflow: hidden;
    margin: var(--top80) auto;
}

.Show>h2 {
    font-size: var(--size24);
    color: #222222;
}

.Show>p {
    font-size: var(--size14);
    color: #888888;
    margin-top: 10px;
}

.Show_text {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: var(--top30) 0;
    margin-top: var(--top30);
    font-size: var(--size14);
    color: #222222;
    line-height: 2;
}

.Show_text * {
    max-width: 100%;
}

.Prev {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.Prev a {
    width: 100%;
    display: block;
    font-size: var(--size14);
    color: #000000;
}

.pagination {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--top60);
    gap: 5px;
}

.pagination .page-item {
    font-size: 12px;
    padding: 8px 10px;
    color: rgb(165, 165, 165);
    border: 1px solid rgb(165, 165, 165);
    line-height: 1;
}

.pagination .page-item.active {
    background: rgb(56, 88, 174);
    border: 1px solid rgb(56, 88, 174);
    color: #fff;
}

.Guanyu {
    width: var(--max);
    margin: var(--top80) auto;
}

.Guanyu>h2 {
    font-size: var(--size36);
    color: rgba(9, 9, 9, 1);
    font-weight: 700;
}

.Guanyu_text {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    font-size: var(--size18);
    color: #222222;
    line-height: 2;
}

.Guanyu_text * {
    max-width: 100%;
}

.Boke {
    width: var(--max);
    margin: var(--top80) auto;
}

.Boke_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Boke_top form {
    width: 600px;
    height: 60px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 183, 74, 1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-left: var(--top20);
}

.Boke_top form svg {
    width: 20px;
    height: auto;
}

.Boke_top form input {
    flex: 1;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Boke_top form button {
    width: 150px;
    height: 100%;
    border-radius: 35px;
    background: rgba(252, 204, 5, 1);
    cursor: pointer;
    font-size: var(--size20);
    color: rgba(23, 26, 31, 1);
}

.Boke_top>button {
    width: 190px;
    height: 60px;
    border-radius: 35px;
    background: rgba(252, 204, 5, 1);
    cursor: pointer;
    font-size: var(--size20);
    color: rgba(23, 26, 31, 1);
}

.Boke_release_modal {
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    display: none;
    transition: auto;
}

.tox-silver-sink *,
.Boke_release_modal * {
    transition: auto !important;
}

.Boke_release_dialog {
    width: var(--max);
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Boke_release_dialog h3 {
    font-size: var(--size30);
    color: rgba(23, 26, 31, 1);
    font-weight: 700;
}

.Boke_release_dialog form {
    width: 100%;
    margin-top: var(--top30);
}

.Boke_release_form {
    width: 100%;
    max-height: 70vh;
    overflow: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.Boke_release_field {
    width: 100%;
}

.Boke_release_field p {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    margin-bottom: 10px;
}

.Boke_release_field input,
.Boke_release_field textarea {
    width: 100%;
    border: 1px solid rgba(228, 228, 228, 1);
    border-radius: 6px;
    padding: 12px;
    font-size: var(--size14);
    color: rgba(51, 51, 51, 1);
}

.Boke_release_field textarea {
    min-height: 120px;
    resize: none;
}

.Boke_release_actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: var(--top30);
}

.Boke_release_actions button {
    min-width: 100px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
    font-size: var(--size16);
    color: rgba(23, 26, 31, 1);
}

#bokeReleaseCancel {
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #333;
}

#bokeReleaseSubmit {
    border: none;
    background: rgba(252, 204, 5, 1);
    color: rgba(23, 26, 31, 1);
}

.tox-tinymce-aux,
.tox-silver-sink,
body>.tox-tinymce-aux,
body>.tox-silver-sink {
    z-index: 2147483601 !important;
}

.tox .tox-menu,
.tox .tox-collection {
    z-index: 2147483602 !important;
}

.tox .tox-dialog__wrapper {
    z-index: 2147483603 !important;
}

.Boke ul {
    width: 100%;
    margin-top: var(--top60);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.Boke ul li {
    width: 100%;
    border: 1px solid rgba(227, 230, 236, 1);
    border-radius: var(--top20);
    padding: var(--top30);
}

.Boke_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Boke_top h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
}

.Boke_top span {
    font-size: var(--size16);
    color: rgba(151, 151, 151, 1);
}

.Boke ul li p {
    font-size: var(--size16);
    color: rgba(19, 20, 21, 1);
    line-height: 1.8;
    margin-top: 10px;
}

.Boke_content {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.Boke_content a {
    font-size: var(--size20);
    color: rgba(85, 114, 255, 1);
    line-height: 1;
}

.Boke_shuju {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 var(--top60);
}

.Boke_shuju_item {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: var(--size20);
    color: rgba(151, 151, 151, 1);
    line-height: 1;
}

.Boke_shuju_item svg {
    width: 20px;
    aspect-ratio: 4 / 4;
    object-fit: contain;
}

#bokeLikeBtn {
    cursor: pointer;
}

.boke_comment_likeBtn {
    cursor: pointer;
}

.Boke_show {
    width: var(--max);
    margin: var(--top80) auto;
}

.Boke_show>h2 {
    font-size: var(--size36);
    color: rgba(51, 51, 51, 1);
}

.Boke_text {
    width: 100%;
    font-size: var(--size16);
    color: rgba(19, 20, 21, 1);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: var(--top50);
}

.Boke_text * {
    max-width: 100%;
}

.Boke_content p {
    font-size: 15px;
    color: rgba(151, 151, 151, 1);
}


.Boke_show form {
    width: 100%;
    height: 46px;
    border-radius: 35px;
    background: rgba(244, 244, 244, 1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-left: var(--top20);
    margin-top: var(--top50);
}

.Boke_show form svg {
    width: 20px;
    height: auto;
}

.Boke_show form input {
    flex: 1;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Boke_show form button {
    width: 130px;
    height: 100%;
    border-radius: 35px;
    background: rgba(252, 204, 5, 1);
    cursor: pointer;
    font-size: var(--size18);
    color: rgba(23, 26, 31, 1);
}

.Boke_comment {
    width: 100%;
    margin-top: var(--top50);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top40);
}

.Boke_comment>p {
    text-align: center;
    font-size: var(--size20);
    color: red;
}

.Boke_comment_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top30);
}

.Boke_comment_item>img {
    width: 70px;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    object-fit: cover;
}

.Boke_comment_content {
    flex: 1;
}

.Boke_comment_title {
    width: 100%;
    height: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Boke_comment_title>h2 {
    flex: 1;
    font-size: var(--size24);
    color: rgba(19, 20, 21, 1);
    font-weight: 700;
}

.Boke_comment_title>h2 span {
    font-weight: 400;
    color: rgb(82, 82, 82);
}

.Boke_comment_title>p {
    font-size: var(--size16);
    color: rgba(151, 151, 151, 1);
}

.Boke_comment_content>p {
    font-size: var(--size14);
    color: rgba(19, 20, 21, 1);
    line-height: 2;
}

.Boke_comment_content .Boke_shuju {
    width: 100%;
    margin-top: 10px;
    justify-content: flex-end;
}


.Boke_shuju button {
    width: 80px;
    height: 36px;
    border-radius: 20px;
    background: rgba(252, 204, 5, 1);
    cursor: pointer;
    font-size: var(--size16);
    color: rgba(23, 26, 31, 1);
}

.boke_reply_slot {
    width: 100%;
    ;
}

.boke_reply_slot form {
    margin-top: 20px;
}

.Boke_comment_reply_erji form {
    background: #ffffff;
}

.Boke_comment_reply {
    background: rgba(244, 244, 244, 1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.Boke_comment_reply>img {
    width: 50px;
}

.Boke_comment_reply .Boke_comment_title {
    height: 50px;
}


.Shares {
    width: 100%;
}

.Shares>h2 {
    font-size: var(--size24);
    color: rgba(32, 32, 32, 1);
    border-bottom: 1px solid rgba(151, 151, 151, 1);
    padding-bottom: 10px;
}

.Shares .Boke {
    width: 100%;
    margin: 0;
    margin-top: var(--top30);
}

.Comment {
    width: 100%;
}

.Comment>h2 {
    font-size: var(--size24);
    color: rgba(32, 32, 32, 1);
    border-bottom: 1px solid rgba(151, 151, 151, 1);
    padding-bottom: 10px;
}

.Comment ul {
    width: 100%;
    margin-top: var(--top30);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--top20);
}

.Comment ul li {
    width: 100%;
}

.Comment_top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Comment_top h2 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(32, 32, 32, 1);
}


.Comment_top span {
    font-size: var(--size16);
    color: rgba(151, 151, 151, 1);
}

.Comment_text {
    width: 100%;
    margin-top: var(--top20);
    background: rgba(244, 244, 244, 1);
    border-radius: var(--top20);
    padding: var(--top20) var(--top30);
}

.Comment_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Comment_title h2 {
    flex: 1;
    font-size: var(--size24);
    color: rgba(19, 20, 21, 1);
}


.Comment_title span {
    font-size: var(--size16);
    color: rgba(151, 151, 151, 1);
}

.Comment_text p {
    font-size: var(--size14);
    color: rgba(19, 20, 21, 1);
    line-height: 1.8;
    margin-top: 10px;
}

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 183, 74, 1);
}

.Footer_max {
    width: var(--max);
    overflow: hidden;
    margin: var(--top60) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.Footer_logo {
    width: 120px;
    margin: auto;
}

.Footer_logo img {
    width: 100%;
    height: auto;
}

.Footer_nav {
    width: 100%;
    margin-top: var(--top50);
}

.Footer_nav ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.Footer_nav ul li {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    font-weight: 500;
}

.Footer_contact {
    width: 100%;
    margin-top: var(--top30);
    padding-top: var(--top30);
    border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.Footer_contact ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.Footer_contact ul li {
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
    font-weight: 500;
}

.Chanpin {
    width: var(--max);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top50);
}

.Chanpin_left {
    width: 290px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Chanpin_ltem {
    width: 100%;
    background: rgba(248, 248, 248, 1);
    padding: var(--top20);
}

.Chanpin_ltem_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.Chanpin_ltem_title h2 {
    flex: 1;
    font-size: var(--size18);
    color: rgba(51, 51, 51, 1);
    line-height: 1.2;
}

.Chanpin_ltem_title svg {
    width: 14px;
    height: auto;
    display: block;
    transition: transform 0.25s ease;
}

.Chanpin_ltem_content {
    width: 100%;
    margin-top: 25px;
    display: none;
    transition: auto;
}

.Chanpin_ltem.active .Chanpin_ltem_content {
    display: block;
}

.Chanpin_ltem.active .Chanpin_ltem_title svg {
    transform: rotate(180deg);
}

.Chanpin_ltem_content ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.Chanpin_ltem_content ul li {
    width: 100%;
    font-size: var(--size16);
    color: rgba(119, 119, 119, 1);
}

.Chanpin_ltem_content ul li.active {
    color: rgba(51, 51, 51, 1);
}

.Chanpin_text {
    flex: 1;
}

.Chanpin_text>h2 {
    font-size: var(--size36);
    color: rgba(9, 9, 9, 1);
    font-weight: 700;
}

.Chanpin_content {
    width: 100%;
    overflow: hidden;
    margin-top: var(--top30);
    font-size: var(--size18);
    color: #222222;
    line-height: 2;
}

.Chanpin_content * {
    max-width: 100%;
}

.Swiper_banner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(236, 232, 228, 1);
}

.Swiper_max {
    flex: 1;
}

.Swiper_max img {
    width: 100%;
    height: auto;
}

.prev,
.next {
    width: 70px;
    height: 70px;
    background: rgba(4, 0, 0, 0.2);
    position: static;
    inset: 0;
    transform: translate(0%, 0%);
    background: transparent;
    margin: 0 var(--top50);
}

.prev svg,
.next svg{
    width: 100%;
}

.Guanyu_index {
    width: var(--max);
    margin: var(--top80) auto;
}

.Guanyu_index>h2 {
    font-size: var(--size36);
    color: rgba(9, 9, 9, 1);
    font-weight: 700;
}

.Guanyu_index p {
    width: 100%;
    margin-top: var(--top30);
    font-size: var(--size18);
    color: #222222;
    line-height: 2;
}

.Guanyu_index a {
    width: max-content;
    line-height: 56px;
    border-radius: 12px;
    padding: 0 var(--top100);
    background: rgba(255, 183, 74, 1);
    cursor: pointer;
    font-size: var(--size18);
    color: rgba(23, 26, 31, 1);
    display: block;
    margin-top: var(--top30);
}

.Chanpin_index{
    width: 100%;
}

.Chanpin_index img{
    width: 100%;
    height: auto;
}

.Boke_index{
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.Boke_index_max{
    width: var(--max);
    margin: 7vw auto 16vw;
}

.Boke_index_max>h2 {
    font-size: var(--size36);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.Boke_index_max p {
    width: 520px;
    max-width: 100%;
    margin-top: var(--top30);
    font-size: var(--size18);
    color: rgba(255, 255, 255, 1);
    line-height: 2;
}

.Boke_index_max a {
    width: max-content;
    line-height: 44px;
    border-radius: 12px;
    padding: 0 2%;
    background: rgba(255, 183, 74, 1);
    cursor: pointer;
    font-size: var(--size16);
    color:rgba(255, 255, 255, 1);
    display: block;
    margin-top: var(--top30);
}

.Xinwen>h2{
    text-align: center;
    font-size: var(--size46);
    color: rgba(255, 183, 74, 1);
    font-weight: 700;
    margin-bottom: var(--top60);
}