:root {
    --max: 1200px;
    --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;
}

body {
    background: rgba(220, 220, 220, 1);
  
}

.Hertre {
    width: 100%;
    z-index: 999;
    position: relative;
    background: #fff;
}

.Hertre_cen {
    width: var(--max);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.Logo {
    width: 120px;
    overflow: hidden;

}

.Logo img {
    width: 100%;
    height: auto;
}

.Nav {
    width: max-content;
    margin-left: auto;
}

.Nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Nav ul li {
    font-size: var(--size18);
    color: #666666;
    text-align: center;
    line-height: 80px;
    position: relative;
    padding: 0 15px;
}

.Nav ul li a {
    position: relative;
    z-index: 5;
}

.Nav ul li svg {
    width: 16px;
    height: 16px;
    fill: #030000;
    display: none;
}


.Nav ul li.active {
    color: #ffffff
}

.Nav ul li:hover {
    color: #ffffff;
}

.Nav ul li::after {
    content: "";
    width: 0%;
    height: 100%;
    background: rgba(35, 25, 21, 1);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.Nav ul li.active::after {
    width: 100%;
}

.Nav ul li:hover::after {
    width: 100%;
}

.Nav_item {
    width: max-content;
    display: none;
    background: #000000;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 20px 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px 5px #00000010;
    border-radius: 5px;
}

.Nav_item a {
    color: #ffffff;
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Nav_item a:hover {
    color: #ffffff;
}

.Nav_item a.active {
    color: #ffffff;
}


.Lang {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 1;
    gap: 6px;
    position: relative;
    margin: 0px 20px;
}

.Lang_item {
    width: max-content;
    display: none;
    background: #000000;
    position: absolute;
    overflow: hidden;
    top: 100%;
    transition: auto;
    padding: 10px 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px 5px #00000010;
    border-radius: 5px;
}

.Lang_item a {
    color: rgb(255, 255, 255);
    display: block;
    line-height: 2.5;
    font-size: var(--size14);
}

.Lang_item a:hover {
    color: rgb(255, 255, 255);
}

.Lang_item a.active {
    color: rgb(255, 255, 255);
}

.You {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.You a {
    width: 18px;
    height: 18px;
}

.You a img {
    width: 100%;
    height: 100%;
}

.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: 150px;
    object-fit: cover;
}

.Banner_text {
    width: var(--max);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Banner_text p {
    text-align: center;
    line-height: 1;
    font-size: var(--size60);
    color: rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.Banner_text h2 {
    text-align: center;
    font-size: var(--size36);
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    font-weight: 900;
}

.Max {
    width: var(--max);
    margin: var(--top60) auto;
}

.Main {
    width: var(--max);
    overflow: hidden;
    margin: -20px auto 20px;
    background: rgba(255, 255, 255, 1);
    border-top: 6px solid rgba(107, 0, 0, 1);
    position: relative;
    z-index: 5;
}

.Lianxi {
    width: 100%;
    padding: var(--top100);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top50);
}

.Lianxi_text {
    width: 48%;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 1.7;
    font-weight: 600;
}

.Lianxi form {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
}

.Lianxi form input {
    width: 100%;
    height: 48px;
    border-radius: 2px;
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(236, 236, 236, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
}

.Lianxi form textarea {
    width: 100%;
    height: 260px;
    border-radius: 2px;
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(236, 236, 236, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 15px var(--top20);
    resize: none;
}

.Lianxi form button {
    width: 154px;
    height: 50px;
    opacity: 1;
    background: rgba(139, 7, 0, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    cursor: pointer;
}

.Fenlei {
    width: 100%;
    overflow: hidden;
    background: rgba(249, 249, 249, 1);
}

.Fenlei ul {
    width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Fenlei ul li {
    width: max-content;
    font-size: var(--size20);
    color: rgba(102, 102, 102, 1);
    line-height: 1;
    border-left: 2px solid rgba(102, 102, 102, 1);
    padding: 0 var(--top20);
}

.Fenlei ul li:nth-child(1) {
    border: transparent;
}

.Fenlei ul li.active {
    color: rgba(107, 0, 0, 1);
    font-weight: 600;
}

.Xinwen {
    width: 100%;
    padding: var(--top50);
}

.Xinwen ul {
    width: 100%;
}

.Xinwen ul li {
    width: 100%;
    border-top: 1px solid rgba(232, 232, 232, 1);
    padding: var(--top30) 0;
}

.Xinwen_title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.Xinwen_title h2 {
    flex: 1;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    font-size: 600;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding-left: var(--top30);
    position: relative;
}

.Xinwen_title h2::after {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(191, 191, 191, 1);
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.Xinwen_title span {
    width: max-content;
    display: block;
    font-size: var(--size16);
    color: rgba(153, 153, 153, 1);
    line-height: 1;
    font-weight: 400;
}

.Xinwen ul li p {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    padding-left: var(--top30);
    margin-top: var(--top20);
}

.Xinwen ul li:hover .Xinwen_title h2 {
    color: rgba(254, 0, 0, 1);
}

.Show {
    width: 100%;
    padding: var(--top50);
}

.Show>h2 {
    font-size: var(--size24);
    text-align: center;
    color: #222222;
}

.Show>p {
    font-size: var(--size14);
    color: #888888;
    text-align: center;
    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 img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.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(--top50);
    gap: 10px;
}

.pagination .page-item {
    font-size: var(--size16);
    color: rgb(165, 165, 165);
    line-height: 1;
}

.pagination .page-item.active {
    color: rgba(254, 0, 0, 1);
}

.Zhichi_xin{
     width: 100%;
    padding: var(--top50);
}


.Zhichi_xin ul{
    width: 100%;
    display: grid;
    grid-auto-columns: 1fr;
    gap: 30px;
}

.Zhichi_xin ul li{
    width: 100%;
    border-top: 1px solid #000000;
    padding-top: 30px;
    
}
.Zhichi_xin ul li:nth-child(1){
    border: none;
    padding: 0;
}
.Zhichi_xin ul li h2 {
    font-size: var(--size18);
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
}
.Zhichi_xin ul li p {
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    line-height: 2;
    margin-top: 15px;
}
.Zhichi {
    width: 100%;
    padding: var(--top50);
}

.Zhichi>p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    line-height: 1.6;
    text-indent: 2em;
}

.Zhichi ul {
    width: 100%;
    margin-top: var(--top30);
}

.Zhichi ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(237, 237, 237, 1);
    padding: 15px var(--top20);
    gap: 15px;
}

.Zhichi ul li h2 {
    flex: 1;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
}

.Zhichi ul li a {
    width: max-content;
    display: block;
    text-align: right;
    font-size: var(--size14);
    color: rgba(0, 0, 0, 1);
}

.Zhichi ul li:nth-child(1),
.Zhichi ul li:hover {
    background: rgba(243, 243, 243, 1);
}

.Zhichi ul li a:hover {
    color: rgba(254, 0, 0, 1);
}

.Gunyu {
    width: 100%;
    padding: var(--top50);
}

.Gunyu_text {
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    line-height: 1.8;
}

.Gunyu>img {
    float: right;
    width: 40%;
    height: auto;
    margin-left: var(--top20);
    margin-bottom: var(--top20);
}

.Yeji {
    width: 100%;
    padding: var(--top50);
}

.Yeji ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--top30) 5vw;
}

.Yeji ul li {
    width: 100%;
}

.Yeji ul li img {
    width: 100%;
    aspect-ratio: 450/ 240;
    object-fit: cover;
}

.Yeji ul li h2 {
    font-size: var(--size24);
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.Yeji ul li p {
    font-size: var(--size16);
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
}

.Yeji ul li span {
    display: block;
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    margin-top: 5px;
}

.Yeji ul li:hover h2 {
    color: rgba(254, 0, 0, 1);
}

.Chanpin {
    width: 100%;
    padding: var(--top50);
}

.Chanpin ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--top20);
}

.Chanpin ul li {
    width: 100%;
}

.Chanpin_img {
    width: 100%;
    aspect-ratio: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.Chanpin_img img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.Chanpin ul li>h2 {
    text-align: center;
    font-size: var(--size20);
    color: rgba(0, 0, 0, 1);
    margin-top: var(--top20);
}

.Chanpin ul li>p {
    text-align: center;
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    margin-top: 5px;
}

.Chanpin_an {
    width: 35px;
    height: 35px;
    background: rgba(17, 17, 17, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}


.Chanpin_button {
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
}

.Chanpin_button:focus {
    outline: none;
}

.Chanpin_button .line {
    fill: none;
    stroke: #ffffff;
    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);
}

.Chanpin_button .line1 {
    stroke-dasharray: 60 207;
}

.Chanpin_button .line2 {
    stroke-dasharray: 60 60;
}

.Chanpin_button .line3 {
    stroke-dasharray: 60 207;
}

.Chanpin_button.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.Chanpin_button.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.Chanpin_button.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}


.Chanpin_tan {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(243, 243, 243, 1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    display: none;
    transition: auto;
    z-index: 995;
}

.Chanpin_tan>h2 {
    background: rgba(17, 17, 17, 1);
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    padding: 0 var(--top20);
    line-height: 60px;
}

.Chanpin_text {
    width: 100%;
    height: calc(100% - 60px);
    padding: var(--top20);
    padding-right: 0px;
}

.Chanpin_cen {
    width: 100%;
    height: 50%;
    overflow: auto;
    padding-right: var(--top20);
}

.Chanpin_text img{
    width: 100%;
    height: calc(50% - 20px);
    margin-top: 20px;
}

.Chanpin_cen::-webkit-scrollbar {
    width: 4px;
}

.Chanpin_cen::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #000000;
}

.Chanpin_cen::-webkit-scrollbar-track {
    border-radius: 0;
    background: #999999;
}

.Chanpin_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 0;
}

.Chanpin_list h2 {
    flex: 1;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Chanpin_list h2 {
    flex: 1;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Chanpin_list p {
    width: max-content;
    font-size: var(--size16);
    color: rgba(51, 51, 51, 1);
}

.Footer {
    width: 100%;
    overflow: hidden;
    background: rgba(51, 51, 51, 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_ul {
    width: max-content;
}

.Footer_ul h2 {
    font-size: var(--size20);
    color: rgba(255, 255, 255, 1);
    margin-bottom: var(--top30);
}

.Footer_ul a {
    display: block;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.Footer_lian {
    width: 40%;
    padding-top: var(--top60);
}

.Footer_lian p {
    width: 100%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.Beian {
    width: 100%;
    overflow: hidden;
    background: rgba(139, 7, 0, 1);
}

.Beian_max {
    width: var(--max);
    overflow: hidden;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.Beian_max p {
    font-size: var(--size14);
    color: rgba(255, 255, 255, 1);
}

.Swiper {
    width: 100%;
    overflow: hidden;
    background: #e4e4e4;
}

.Swiper_max {
    width: var(--max);
    margin: var(--top100) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: var(--top50);
}

.Swiper_max img {
    width: 52%;
}

.Swiper_text {
    flex: 1;
}

.Swiper_text p {
    font-size: var(--size16);
    color: rgba(35, 25, 21, 1);
}

.Swiper_text h2 {
    font-size: var(--size36);
    color: rgba(35, 25, 21, 1);
    margin-top: 10px;
    font-weight: 900;
}

.Swiper_text a {
    width: max-content;
    display: block;
    line-height: 36px;
    background: rgba(139, 7, 0, 1);
    padding: 0 var(--top40);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top50);
}

.pager1 {
    bottom: var(--top30);
}

.pager1 .zhenshangyin-pager-bullets-bullet {
    width: 40px;
    height: 5px;
    opacity: 1;
    background: rgba(0, 0, 0, 1);
    border-radius: 0px;
}

.pager1 .zhenshangyin-pager-bullets-bullet.active{
    background: rgba(139, 7, 0, 1);
}

.Chanpinin{
    width: var(--max);
    margin: var(--top60) auto;
}
.Chanpinin_top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--top30);
}
.Chanpinin_left{
    flex: 1;
}
.Chanpinin_left p{
    font-size: 4vw;
    color: rgba(153, 153, 153, 0.14);
    font-weight: 900;
    line-height: 1;
    padding-left: 10px;
}
.Chanpinin_left h2{
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-weight: 900;
    margin-top: calc(0px - calc(var(--size30) / 2));
}

.Chanpinin_top ul{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
}

.Chanpinin_top ul li{
    width: max-content;
    line-height: 40px;
    padding: 0 15px;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.Chanpinin_top ul li.active{
    background: rgba(139, 7, 0, 1);
    color: rgba(255, 255, 255, 1);
}
.Bai{
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}
.Chanpinin_max{
    width: 100%;
    margin-top: var(--top50);
}

.Chanpinin_max .Chanpin{
    width: 100%;
    padding: 0;
    display: none;
    transition: auto;
}
.Chanpinin_max .Chanpin:nth-child(1){
    display: block;
}

.Xinlian{
    width: var(--max);
    margin: var(--top80) auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--top40);
}
.Xinlian_xin{
    width: 50%;
}

.Xinlian_fen ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: var(--top30);
}

.Xinlian_fen ul li{
    width: max-content;
    line-height: 40px;
    padding: 0 15px;
    font-size: var(--size16);
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.Xinlian_fen ul li.active{
    background: rgba(139, 7, 0, 1);
    color: rgba(255, 255, 255, 1);
}

.Xinlian_list{
    width: 100%;
    margin-top: var(--top30);
}

.Xinlian_list .Xinwen{
    width: 100%;
    padding: 0;
    display: none;
    transition: auto;
}
.Xinlian_list .Xinwen:nth-child(1){
    display: block;
}
.Xinlian_lian{
    flex: 1;
}
.Xinlian_text p{
    font-size: 4vw;
    color: rgba(153, 153, 153, 0.14);
    font-weight: 900;
    line-height: 1;
    padding-left: 10px;
}
.Xinlian_text h2{
    font-size: var(--size30);
    color: rgba(51, 51, 51, 1);
    line-height: 1;
    font-weight: 900;
    margin-top: calc(0px - calc(var(--size30) / 2));
}
.Xinlian_lian form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--top20);
    margin-top: var(--top100);
}

.Xinlian_lian form input {
    width: 100%;
    height: 48px;
    border-radius: 2px;
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(236, 236, 236, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 0 var(--top20);
}

.Xinlian_lian form textarea {
    width: 100%;
    height: 260px;
    border-radius: 2px;
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(236, 236, 236, 1);
    font-size: var(--size14);
    color: rgba(153, 153, 153, 1);
    padding: 15px var(--top20);
    resize: none;
}

.Xinlian_lian form button {
    width: 154px;
    height: 50px;
    opacity: 1;
    background: rgba(139, 7, 0, 1);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    cursor: pointer;
}

.Guanyuin{
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.Guanyuin_max{
    width: var(--max);
    margin: var(--top80) auto;
    background: rgba(35, 25, 21, 0.6);
    padding: var(--top40);   
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; 
}
.Guanyuin_max p{
    width: 100%;
    font-size: 4vw;
    color: rgba(255, 255, 255, 0.14);
    font-weight: 900;
    line-height: 1;
    padding-left: 10px;
}
.Guanyuin_max h2{
    width: 100%;
    font-size: var(--size30);
    color: rgb(255, 255, 255);
    line-height: 1;
    font-weight: 900;
    margin-top: calc(0px - calc(var(--size30) / 2));
}

.Guanyuin_text{
    width: 100%;
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    line-height: 1.8;
    margin-top: var(--top40);
    padding-left: var(--top100);
}

.Guanyuin_max a{
    width: max-content;
    display: block;
    line-height: 36px;
    background: rgba(139, 7, 0, 1);
    padding: 0 var(--top40);
    font-size: var(--size16);
    color: rgba(255, 255, 255, 1);
    margin-top: var(--top50);
}