* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff8200;
    --title: #201E1E;
    --text: #201E1E;
    --bg_color: #F6FAFF;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: clamp(12px, 1.2vw, 16px);
}

.content {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.content .content {
    padding: 0;
}

.swiper_box {
    position: relative;
}

.swiper_content {
    max-width: 143rem;
    margin: 0 auto;
    position: relative;
    padding: 1.5rem;
    overflow: hidden;
}

li {
    list-style: none;
}

li.swiper-slide {
    height: auto;
}

a {
    color: inherit;
    cursor: pointer;
    font-size: inherit;
    text-decoration: none;
}

i,
em {
    font-style: normal;
}

input,
button,
textarea {
    border: none;
    outline: none;
    font-family: unset;
    color: var(--title);
}

select {
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: unset;
    color: var(--title);
}

textarea {
    resize: none;
}

button,
input[type="submit"] {
    cursor: pointer;
}

input[type="checkbox"] {
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

table {
    width: 100%;
    word-break: normal;
    border-collapse: collapse;
}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 3;
}

.between {
    justify-content: space-between;
}

.center {
    text-align: center;
}

.flex_start {
    justify-content: flex-start;
}

.flex_center {
    justify-content: center;
}

.flex_end {
    justify-content: flex-end;
}

.flex_top {
    align-items: flex-start;
}

.flex_middle {
    align-items: center;
}

.flex_bottom {
    align-items: flex-end;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

body {
    font-size: 1.6rem;
    word-break: break-word;
    color: var(--title);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Text",
        "Helvetica Neue",
        Inter,
        Roboto,
        Arial,
        sans-serif;
    background-color: var(--bg_color);
}

body.fixed {
    overflow: hidden;
    padding-right: 17px;
}

body [data-wpr-lazyrender] {
    content-visibility: unset;
}

.only_mobile {
    display: none;
}

.gap {
    gap: 3rem;
}

.grecaptcha-badge {
    visibility: hidden;
}

#fullscreen-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fullscreen-loader::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

.img.img_cv {
    overflow: hidden;
}

.img.img_cv img {
    object-fit: cover;
}

.img.img_ct img {
    object-fit: contain;
}

.img.img_ab {
    position: relative;
}

.img.img_ab img {
    position: absolute;
    left: 0;
    top: 0;
}

.img.img_aba {
    position: relative;
}

.img.img_aba::after {
    content: '';
    display: block;
    padding-bottom: var(--h);
}

.img.img_aba img {
    position: absolute;
    left: 0;
    top: 0;
}

.img img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s;
    aspect-ratio: inherit;
}

.img_bg {
    position: relative;
    z-index: 2;
}

.img_bg>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    pointer-events: none;
}

.icon.icon_ab {
    position: relative;
}

.icon.icon_ab img {
    position: absolute;
    left: 0;
    top: 0;
}

.icon img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.btn {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center; 
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 3.2rem;
    padding: 0 3rem;
    border-radius: 5px;
    min-width: 17.1rem;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn_w {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;
    color: #171717;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 5.2rem;
    padding: 0 3rem;
    min-width: 17.1rem;
}

.btn_w:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn_b {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--title);
    color: #fff;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 5.2rem;
    padding: 0 3rem;
}

.btn_b:hover {
    background-color: var(--primary);
}

.btn_line {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid rgba(23, 23, 23, 0.5);
    color: #171717;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 5.1rem;
    padding: 0 3.25rem;
    min-width: 16.9rem;
}

.btn_line:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn_font {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-size: 1.8rem;
    line-height: 3.6rem;
    text-transform: uppercase;
    color: #171717;
}

.btn_font::after {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    left: 0;
    position: absolute;
    bottom: 0;
    content: '';
    transition: all 0.3s;
}

.btn_font:hover {
    color: var(--primary);
}

.btn_font:hover::after {
    width: 0;
    left: unset;
    right: 0;
}

.swiper_btns {
    gap: 5.6rem;
    display: flex;
}

.swiper_btns div {
    width: 2.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.swiper_btns div::after {
    content: '';
    display: block;
    padding-bottom: 62.1%;
    transition: all 0.3s;
    background: url(../img/arrow.svg) no-repeat center / contain;
    filter: contrast(0) brightness(0);
}

.swiper_btns div:hover::after {
    filter: unset;
}

.swiper_btns .btn_next::after {
    transform: rotate(180deg);
}

.swiper_btns .swiper-button-disabled {
    pointer-events: none;
    opacity: 0.6;
    filter: contrast(0) brightness(0);
}

.swiper_btns .swiper-button-lock {
    display: block;
    opacity: 0;
    pointer-events: none;
}

.swiper_btns.middle {
    width: 98%;
    max-width: 164.7rem;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50%, -50%);
    justify-content: space-between;
}

.swiper_btns.middle div {
    pointer-events: all;
}

.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
    pointer-events: none;
}

header .top>.flex {
    height: 6.666666666rem;
    padding: 2rem 2.25rem;
    box-shadow: 0px 1px 1px 0px #9D9BA733;
}

header .top>.flex .back {
    width: 26.67px;
    height: 26.67px;
    display: flex;
    object-fit: contain;
}

header .top>.flex .right {
    gap: 1.5rem;
}

header .top>.flex .right * {
    display: flex;
}

.v_list_item {
    border-radius: 16px;
    overflow: hidden;
    height: 15rem;
    margin-bottom: 16px;
    position: relative;
}

.v_list_item .img {
    position: relative;
}

.v_list_item .img::after {
    content: "";
    display: block;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, .5);
}

.v_list_item .tags {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 9;
    width: 75px;
    background-color: var(--primary);
    height: 23px;
    color: #fff;
    display: flex;
    border-radius: 11.5px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.v_list_item .tags small {
    font-size: 8px;
}

.v_list_item .title {
    position: absolute;
    left: 16px;
    color: #fff;
    bottom: 16px;
    z-index: 9;
}

.v_list_item .park_address {
    display: flex;
    align-items: center;

    gap: 3px;

}

.v_list_item .park_address span {
    font-size: 18px;
    overflow: hidden;
    /* 超出隐藏 */
    white-space: nowrap;
    /* 不换行 */
    text-overflow: ellipsis;
    /* 超出显示 ... */
    width: 22rem;
    display: block;
}

.v_list_item .park_address img {
    width: 24px;
}

.v_list_item .parking_title {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-left: 5px;
    margin-bottom: 8px;
}

.equipments {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.equipments .equipment_item {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 2px 2px 15px 0px #4225060F;

}

.equipments .equipment_item .flex {
    gap: 16px;
    padding-right: 16px;
}

.equipments .equipment_item .img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

.equipments .equipment_item .title {
    flex: 1;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.footer_fixed {
    position: fixed;
    width: 100%;
    bottom: 40px;
}

.report_problem_btn {
    border-radius: 16px;
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    min-height: 48px;
    background-color: #ff8200;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.report_problem_btn::before {
    content: url(../img/Info\ Circle.svg);
    display: block;
    height: 24px;
}

form input {
    width: 100%;
    height: 48px;
    font-weight: 500;
    border-radius: 16px;
    border: 0.5px solid #C0CCDA;
    color: #030303;
    font-size: 16px;
    padding: 14px 24px;
}

form textarea {
    border-radius: 16px;
    height: 128px;
    padding: 12px 24px;
    width: 100%;
    border: 0.5px solid #C0CCDA;
    font-size: 16px;
    font-weight: 500;
}

form textarea::placeholder {
    color: #C0CCDA;
}

form input::placeholder {
    color: #C0CCDA;
}

form input[type="submit"] {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 24px;
    color: #ffffff;
}

.theme_title {
    display: block;
    margin: 24px 0;
    font-size: 24px;
    font-weight: 500;
    color: #201E1E;
    border-left: 8px solid var(--primary);
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.image_addon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.image_addon .image_item {
    border-radius: 16px;
    overflow: hidden;
}

.image_addon .image_item.addimage {
    border: 2px dashed #C0CCDA;
    display: flex;
    align-items: center;
    justify-content: center;
}


.report_form,
.park_form {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.single_park .content {
    padding: 16px 30px;
}

.search_box {
    margin: 24px 0;
    background-color: #ffffff;
    height: 48px;
    border: #C0CCDA solid 1px;
    border-radius: 16px;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    justify-content: space-between;
}

.search_box .search_input {
    flex: 1;

}

.search_box .search_input input {
    font-size: 16px;
    font-weight: 500;
    height: 100%;
    width: 100%;
}

.search_box .search_input input::placeholder {
    color: #C0CCDA;
}

.search_box .img {
    width: 24px;
    height: 24px;
}

.single-equipment .theme_title {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 57px;
}

.single-equipment .theme_title span:last-child {
    font-size: 16px;
}

.equipment_actions .flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.equipment_actions .flex .eq_action {
    border-radius: 16px;
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    min-height: 48px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 20px 0px #3D21051A;
    gap: 8px;
}

.single-equipment {
    height: calc(100vh - 80px);
}

.eq_action.play::before {
    content: url(../img/Play2.svg);
    display: block;
    height: 24px;
}

.eq_action.paper::before {
    content: url(../img/Paper2.svg);
    display: block;
    height: 24px;
}

.equipment_swiper {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    height: auto;
}

.equipment_swiper .swiper-slide {
    height: auto;
}

.equipment_swiper .swiper-slide .img {
    width: 100%;
    height: auto;
}

.single-equipment .content {
    height: 100%;
}

.single-equipment .content>.flex {
    flex-direction: column;
    height: 100%;
    padding-bottom: 2rem;
    justify-content: space-between;
}

.swiper-pagination-bullet {
    width: 28px !important;
    border-radius: 5px !important;
    height: 8px !important;
    background-color: #C4C4C4 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

.single-equipment .content>.flex .img {
    border-radius: 16px;
}

.model {

    width: 100%;
}

.model .model_over {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 15;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.model.active .model_over {
    opacity: 1;
    visibility: visible;
}

.model .mode_content {
    background-color: #ffffff;
    position: fixed;
    bottom: -100%;
    left: 0;
    z-index: 16;
    width: 100%;
    transition: all .3s;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.model.active .mode_content {
    bottom: 0px;

}

.model .mode_content .content {
    padding: 30px;
}

.model .mode_content .content .btn {
    text-transform: capitalize;
    border-radius: 16px;
    width: 100%;
    margin-top: 30px;
    font-size: 16px;
    height: 48px;
    line-height: 48px;
}

.model .mode_content .mode_img_swiper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.model .mode_content .mode_img_swiper {
    border-radius: 16px;
}

.model .mode_content .sub_title {
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 24px;
}

.mode_full_text {
    position: relative;
    overflow: hidden;
}

.mode_full_text p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
}

.mode_full_text .swiper-slide {
    padding-bottom: 4rem;
}


.sider {
    position: relative;
}

.sider .sider_content {
    position: fixed;
    width: 270px;
    background-color: #ffffff;
    right: -100%;
    height: 100vh;
    top: 0;
    z-index: 25;
    transition: all .3s;
}

.sider.active .sider_content {
    right: 0;
}

.sider .sider_content .slder_list {
    overflow: auto;
    height: 100vh;
}

.sider .sider_content .slder_list>.flex {
    height: 80px;
    align-items: center;
    padding: 0 30px;
}

.sider .sider_content .slder_list>.flex .img:nth-child(1) {
    width: auto;
    height: 33px;
}

.sider .sider_content .slder_list>.flex .img:nth-child(2) {
    width: 24px;
    height: 24px;
}

.sider .sider_content .slder_list>ul>li>a {
    padding: 11.5px 30px;
    padding-right: 0px;
    display: block;
}

.sider .sider_content .slder_list>ul>li>ul {
    padding: 11.5px 30px;
    padding-top: 0;
    padding-right: 0px;
    display: block;
}

.sider .sider_content .slder_list>ul>li {
    border-bottom: #C0CCDA solid 1px;
}

.sider .sider_content .slder_list>ul>li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sider .sider_content .slder_list>ul>li ul li a {
    padding: 11.5px 30px;
    display: block;
    padding-right: 0px;
}

.sider .sider_content .slder_list ul li a {
    font-size: 15px;
    font-weight: 800;
}

.sider .sider_content .slder_list ul li a .flex {
    align-items: center;
}

.sider .sider_content .slder_list ul li a span {
    display: block;
    margin-left: 8px;
}

.sider .sider_over {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(0, 0, 0, .5);
    visibility: hidden;
    opacity: 0;
}

.sider.active .sider_over {
    visibility: visible;
    opacity: 1;
}
.page-template-learn .learn_box{
    padding-bottom: 128px;
}
.page-template-learn .footer_fixed{ 
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: var(--bg_color);
}