/* browserslist: last 2 versions, > 1%, IE 9 */
@import "reset.css";
@import "fonts.css";

.w1400 {
    margin: 0 auto;
    width: 73.57%;
}

@media only screen and (max-width: 80rem) {
    .w1400 {
        width: 85%;
    }
}

@media only screen and (max-width: 68.75rem) {
    .w1400 {
        width: 90%;
    }
}

.w1600 {
    margin: 0 auto;
    width: 84.08%;
    max-width: 1400px;
}

.index .w1600 {
    max-width: 1600px;
}

.w1760 {
    margin: 0 auto;
    width: 92.5%;
}

.w1200 {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

header.header-active {
    background-color: var(--parmary-color);
    height: 5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    background: var(--parmary-color);
}

    header.header-active .header-container .logo.active {
        display: block;
    }

    header.header-active .header-container .logo.noActive {
        display: none;
    }

    header.header-active .header-container .header-right nav > .nav-item > a {
        color: #fff;
    }

        header.header-active .header-container .header-right nav > .nav-item > a::before {
            background-color: transparent;
        }

    header.header-active .header-container .header-right .toggle_btn span {
        background: #fff;
    }

header {
    position: fixed;
    top: 26px;
    width: 100%;
    height: 4.5rem;
    z-index: 100;
    transition: 0.3s ease-in-out;
    background: #117d4f;
}

@media only screen and (max-width: 37.5rem) {
    header {
        height: 5rem;
    }
}

header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1.25rem;
}

    header .header-container .logo {
        height: 70%;
        flex: auto;
    }

        header .header-container .logo.noActive {
            display: block;
        }

        header .header-container .logo.active {
            display: none;
        }

        header .header-container .logo img {
            height: 100%;
            margin: 0;
        }

    header .header-container .header-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        gap: 2rem;
    }

@media only screen and (max-width: 71rem) {
    header .header-container .header-right {
        gap: 0.9375rem;
        flex: auto;
        justify-content: flex-end;
    }
}

header .header-container .header-right nav {
    height: 100%;
    display: flex;
    font-size: 1.25rem;
    font-family: "NeueHaasDisplay-Roman", sans-serif;
}

@media only screen and (max-width: 71rem) {
    header .header-container .header-right nav {
        flex-flow: column;
        position: absolute;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        padding-top: 8.75rem;
        background-color: #fff;
        transform: translateX(100%);
        opacity: 0;
        transition: 0.3s all;
    }
}

header .header-container .header-right nav.active {
    transform: translateX(0);
    opacity: 1;
}

header .header-container .header-right nav > .nav-item {
    height: 100%;
    position: relative;
}

@media only screen and (max-width: 71rem) {
    header .header-container .header-right nav > .nav-item.active-mobile-sub {
        height: auto;
    }
}

@media only screen and (max-width: 71rem) {

    header .header-container .header-right nav > .nav-item {
        /* overflow: hidden; */
        transition: 0.3s ease;
        height: 4rem;
    }

        header .header-container .header-right nav > .nav-item.on {
            overflow: visible;
            transition: 0.3s ease;
            height: auto;
            display: block;
        }
}

header .header-container .header-right nav > .nav-item:hover .nav-drop-items {
    display: block;
}

header .header-container .header-right nav > .nav-item > a {
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    position: relative;
    padding: 0 2.5rem;
    font-size: 1.125rem;
    font-family: WixMadeforDisplay-Bold;
}

@media only screen and (max-width: 1699px) {
    header .header-container .header-right nav > .nav-item > a {
        padding: 0 1rem;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 71rem) {
    header .header-container .header-right nav > .nav-item > a {
        color: #000;
        padding: 0.8rem 0;
        font-size: 1.5rem;
        height: auto;
    }

    header.header-active .header-container .header-right nav > .nav-item > a {
        color: #333;
    }
}

header .header-container .header-right nav > .nav-item > a:hover::before {
    background-color: #fff;
}

@media only screen and (max-width: 71rem) {
    header .header-container .header-right nav > .nav-item > a:hover::before {
        background-color: transparent;
    }
}

header .header-container .header-right nav > .nav-item > a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    width: calc(100% - 3rem);
    background-color: transparent;
    transition: all 0.3s;
    margin: auto;
}

header .header-container .header-right nav > .nav-item .nav-drop-items {
    transition: 0.3s ease-in-out;
    display: none;
    position: absolute;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    white-space: nowrap;
}

@media only screen and (max-width: 71rem) {
    header .header-container .header-right nav > .nav-item .nav-drop-items {
        position: inherit;
        display: block;
        left: 0;
        transform: none;
        top: 0;
    }
}

header .header-container .header-right nav > .nav-item .nav-drop-items .nav-drop-item {
    padding: 0.625rem 1.25rem;
    font-size: 1.1rem;
    color: #000;
    transition: 0.3s ease;
    cursor: pointer;
    display: block;
}

@media only screen and (max-width: 71rem) {
    header .header-container .header-right nav > .nav-item .nav-drop-items .nav-drop-item {
        font-size: 1.5rem;
    }
}

header .header-container .header-right nav > .nav-item .nav-drop-items .nav-drop-item:hover {
    background-color: #2469c8;
    color: #fff;
}

header .header-container .header-right .get-started {
    background-color: #2469c8;
    border-radius: 0.3125rem;
    padding: 0.625rem;
    color: #fff;
    width: 8.125rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "NeueHaasDisplay-Roman", sans-serif;
    font-size: 1.125rem;
    transition: 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

    header .header-container .header-right .get-started:hover::before {
        left: 105%;
    }

    header .header-container .header-right .get-started::before {
        position: absolute;
        top: 0;
        left: -45px;
        width: 25px;
        height: 100%;
        background: #fff;
        content: "";
        opacity: 0.3;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

@media only screen and (max-width: 71rem) {
    header .header-container .header-right .get-started {
        display: none;
    }
}

header .header-container .header-right .toggle_btn {
    position: relative;
    display: none;
    width: 1.875rem;
    height: 1.875rem;
    z-index: 15;
}

@media only screen and (max-width: 71rem) {
    header .header-container .header-right .toggle_btn {
        display: block;
    }
}

header .header-container .header-right .toggle_btn.on span:first-child {
    background: #000;
    -webkit-transform: translate(0, 0.4375rem) rotate(45deg);
    -o-transform: translate(0, 0.4375rem) rotate(45deg);
    transform: translate(0, 0.4375rem) rotate(45deg);
    -ms-transform: translate(0, 0.4375rem) rotate(45deg);
}

header .header-container .header-right .toggle_btn.on span:nth-child(2) {
    background: #000;
    opacity: 0;
}

header .header-container .header-right .toggle_btn.on span:last-child {
    background: #000;
    bottom: 0.5625rem;
    -webkit-transform: translate(0, -0.1875rem) rotate(-45deg);
    -o-transform: translate(0, -0.1875rem) rotate(-45deg);
    transform: translate(0, -0.1875rem) rotate(-45deg);
    -ms-transform: translate(0, -0.1875rem) rotate(-45deg);
}

header .header-container .header-right .toggle_btn span {
    position: absolute;
    right: 0;
    width: 1.875rem;
    height: 0.125rem;
    background: #fff;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    header .header-container .header-right .toggle_btn span:first-child {
        top: 0.5rem;
    }

    header .header-container .header-right .toggle_btn span:nth-child(2) {
        top: 50%;
    }

    header .header-container .header-right .toggle_btn span:last-child {
        bottom: 0.375rem;
    }

footer {
    padding-top: 5%;
    background: #252525;
    ;
}

@media only screen and (max-width: 68.75rem) {
    footer {
        padding-top: 2.125rem;
    }
}

@media only screen and (max-width: 1000px) {
    footer {
        padding-top: 0;
    }
}

footer .footer-container .footer-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
}

@media only screen and (max-width: 68.75rem) {
    footer .footer-container .footer-items {
        flex-direction: column;
    }
}

footer .footer-container .footer-items .footer-item .footer-title {
    color: #fff;
    font-family: "NeueHaasDisplay-Medium", sans-serif;
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin-bottom: 0.625rem;
}

@media only screen and (max-width: 68.75rem) {
    footer .footer-container .footer-items .footer-item.link-items {
        display: none;
    }
}

footer .footer-container .footer-items .footer-item .footer-options > .link {
    display: block;
    font-size: 1rem;
    line-height: 2rem;
    font-family: "NeueHaasDisplay-Roman", sans-serif;
    color: rgb(255, 255, 255, 0.5);
    transition: all 0.5s;
}

    footer .footer-container .footer-items .footer-item .footer-options > .link:hover {
        color: #fff;
    }

footer .footer-container .footer-items .footer-item .footer-options > .contact-info {
    display: flex;
    align-items: first baseline;
    font-family: "NeueHaasDisplay-Roman", sans-serif;
}

@media only screen and (max-width: 68.75rem) {
    footer .footer-container .footer-items .footer-item .footer-options > .contact-info:not(:last-child) {
        margin-bottom: 0.5rem;
    }
}

footer .footer-container .footer-items .footer-item .footer-options > .contact-info > div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.3125rem;
    width: 2rem;
}

footer .footer-container .footer-items .footer-item .footer-options > .contact-info p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8rem;
    color: #666;
}

@media only screen and (max-width: 68.75rem) {
    footer .footer-container .footer-items .footer-item .footer-options > .contact-info p {
        font-size: 1.1rem;
    }
}

footer .footer-container .footer-items .footer-item .footer-options > .contact-info img {
    margin: 0;
}

footer .footer-container .footer-items .footer-item .footer-options.follow-us {
    display: flex;
}

    footer .footer-container .footer-items .footer-item .footer-options.follow-us > :not(:last-child) {
        margin-right: 0.625rem;
    }

footer .footer-container .copyright {
    margin-top: 2rem;
    padding-bottom: 1.875rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1rem;
    font-family: WixMadeforDisplay-Regular;
    color: #b9b9b9;
}

    footer .footer-container .copyright .copyright-text {
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
    }

@media only screen and (max-width: 68.75rem) {
    footer .footer-container .copyright {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
    }
}

footer .footer-container .copyright a {
    color: #b9b9b9;
}

footer .footicon ul {
    display: flex;
    align-items: center;
}

footer .footicon li {
    margin-left: 16px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255, 0.1);
    transition: all 0.5s;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

    footer .footicon li::after {
        content: '';
        width: 0;
        height: 0;
        background: var(--parmary-color);
        transform: translate(-50%, -50%);
        transition: all 0.5s;
        cursor: pointer;
        position: absolute;
        z-index: 1;
        border-radius: 100%;
        top: 50%;
        left: 50%;
    }

    footer .footicon li:hover::after {
        width: 100%;
        height: 100%;
    }

    footer .footicon li img {
        position: relative;
        z-index: 9;
    }

footer .copyright .copyright-tex {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1000px) {
    .footicon {
        margin-top: 15px;
    }

    footer .footicon li {
        margin-left: 0;
        margin-right: 16px;
    }

    footer .footer-container .copyright .copyright-text {
        flex-direction: column;
        align-items: flex-start;
    }
}



















/* banner */



main .banner {
    padding-top: calc(5rem + 10rem);
    background-image: url("https://www.mushroomsolar.com/img/glassToMetalSeals/banner-bg.png");
    background-size: cover;
    background-position: center center;
    padding-bottom: 11rem;
}

@media only screen and (max-width: 54.6875rem) {
    main .banner {
        padding-bottom: 6.25rem;
    }
}

@media only screen and (max-width: 37.5rem) {
    main .banner {
        padding-top: 6rem;
        padding-bottom: 4.375rem;
    }
}

main .banner .banner-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

    main .banner .banner-container > * {
        width: 65%;
    }

@media only screen and (max-width: 54.6875rem) {
    main .banner .banner-container > * {
        width: 100%;
    }
}

main .banner .banner-container .banner-title {
    font-family: "NeueHaasDisplay-Medium", sans-serif;
    font-size: 3.2rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.4375rem;
}

@media only screen and (max-width: 54.6875rem) {
    main .banner .banner-container .banner-title {
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: 1rem;
    }
}

main .banner .banner-container .banner-subtitle {
    font-family: "NeueHaasDisplay-Roman", sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #fff;
    margin-bottom: 1.4375rem;
}

@media only screen and (max-width: 54.6875rem) {
    main .banner .banner-container .banner-subtitle {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 1rem;
    }
}

main .banner .banner-container .banner-feature {
    font-family: "NeueHaasDisplay-Medium", sans-serif;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.75rem;
    /* margin: 2% 0; */
}

    main .banner .banner-container .banner-feature .feature-text {
        position: relative;
        padding: 0 40px;
        max-width: 220px;
        display: inline-block;
        color: #e5d9be;
        text-align: center;
        margin: 3% 0;
        line-height: 1.2;
        height: 64px;
        vertical-align: bottom;
    }

    main .banner .banner-container .banner-feature .feature-text2 {
        font-size: 18px;
    }

    main .banner .banner-container .banner-feature .feature-text:after, main .banner .banner-container .banner-feature .feature-text:before {
        content: "";
        background: url(https://www.mushroomsolar.com/img/ry1.png) no-repeat;
        width: 80px;
        height: 80px;
        position: absolute;
        right: 0;
        top: -5px;
        background-size: cover;
    }

    main .banner .banner-container .banner-feature .feature-text:before {
        background: url(https://www.mushroomsolar.com/img/ry2.png) no-repeat;
        background-size: cover;
        left: 0;
    }

@media only screen and (max-width: 1459px) {
    main .banner .banner-container .banner-feature .feature-text {
        font-size: 16px;
        padding: 0px 35px;
        max-width: 200px;
    }

        main .banner .banner-container .banner-feature .feature-text:after, main .banner .banner-container .banner-feature .feature-text:before {
            width: 70px;
            height: 70px;
        }
}

@media only screen and (max-width: 54.6875rem) {
    main .banner .banner-container .banner-feature .feature-text { /* display: block; */ /* text-decoration: underline; */
        font-size: 15px;
        max-width: 160px;
        margin: 15px 0 20px;
        padding: 0px 28px;
    }

        main .banner .banner-container .banner-feature .feature-text:after, main .banner .banner-container .banner-feature .feature-text:before {
        }
}

main .banner .banner-container .banner-feature .delimiter {
    margin: 0 5px;
    opacity: 0;
    display: none;
}

@media only screen and (max-width: 54.6875rem) {
    main .banner .banner-container .banner-feature .delimiter {
        display: none;
    }
}

/*ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥css*/

.tyanniu {
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tyanniu2 {
    text-align: center;
    display: block;
}

    .tyanniu2 a {
    }

.tyanniu .start-project {
    font-family: "NeueHaasDisplay-Roman", sans-serif;
    display: inline-block;
    /* justify-content: flex-start; */
    /* align-items: center; */
    /* width: 13.375rem; */
    height: 3.125rem;
    background-color: #76bc28;
    border-radius: 624.9375rem;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 0.3125rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    padding: 0 60px 0 25px;
    text-align: center;
}


    .tyanniu .start-project::before {
        position: absolute;
        top: 0;
        left: -45px;
        width: 25px;
        height: 100%;
        background: #fff;
        content: "";
        opacity: 0.3;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
        -webkit-transform: skewX( -25deg);
        transform: skewX( -25deg);
    }

    .tyanniu .start-project span {
        /* margin-left: 1.875rem; */
        display: inline-block;
        line-height: 3.125rem;
        text-align: left;
        margin-right: 10%;
        width: 100%;
    }

    .tyanniu .start-project .start-icon {
        position: absolute;
        right: 0.3125rem;
        height: 80%;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .tyanniu .start-project:hover::before {
        left: 105%;
    }

.tyanniu .learn-more {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    font-family: "NeueHaasDisplay-Medium", sans-serif;
    margin-bottom: 0.3125rem;
    padding: 0 1.875rem;
    height: 3.125rem;
    border: 0.0625rem solid #76bc28;
    border-radius: 624.9375rem;
    color: #76bc28;
    min-width: 200px;
}

.tyanniu .learn-more2 {
    color: white;
    border-color: white;
}

.tyanniu .learn-more:hover {
    background-color: rgb(118 188 40);
    color: white;
}

@media screen and (max-width: 1459px) {
}

@media screen and (max-width: 970px) {

    .tyanniu {
    }

        .tyanniu .start-project {
            padding: 0 40px 0 20px;
            font-size: 15px;
            height: 36px;
            margin-bottom: 10px;
        }

            .tyanniu .start-project span {
                line-height: 36px;
            }

        .tyanniu .learn-more {
            min-width: auto;
            height: 36px;
            line-height: 36px;
            font-size: 15px;
        }
}



.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}


.tyheadh {
    text-align: center;
    margin-bottom: 60px;
}

.tyheaddb {
    margin-bottom: 0px;
}

.tyhead-bt {
    font-size: 3.375rem !important;
    font-family: 'WixMadeforDisplay-Bold';
}

.tyhead-des {
    color: #666666;
    font-size: 17px !important;
    margin-top: 20px !important;
    font-family: "NeueHaasDisplay-Roman", sans-serif !important;
}


@media screen and (max-width: 1459px) {


    .tyhead-bt {
        font-size: 46px !important;
        line-height: 1.3 !important;
    }
}

@media screen and (max-width: 1259px) {
    .tyhead-bt {
        font-size: 42px !important;
        line-height: 1.3 !important;
    }
}

@media screen and (max-width: 970px) {

    .w1600 {
        width: 100%;
        padding: 0 20px;
    }

    .tyhead-bt {
        font-size: 22px !important;
        line-height: 32px !important;
    }

        .tyhead-bt br {
            display: none;
        }

    .tyheadh {
        margin-bottom: 15px;
    }

    .popupBox .formBox .li {
        margin-top: 25px;
    }
}


/*index*/
.index-banner {
    height: 100vh;
    position: relative;
    background-position: center;
}

    .index-banner::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 54%);
    }

.banner-wc {
    padding-top: inherit;
    position: relative;
    padding-bottom: 0;
}


.banner-nc {
    width: 100%;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -45%);
}

.banner-nc2 {
}

/* main .section-1 .section1-container .section-1-content .section-1-title, main .section-2 .section2-container .section2-text .section2-title, main .section-3 .section3-container .section3-title, main .section-4 .section4-container .section4-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-6 .section6-right .section6-form .form-title, main .section-6 .section6-left .faq-container .faq-top-title {
font-family: "NeueHaasDisplay-Medium", sans-serif;
}

main .section-2 .drop-items .drop-item .drop-digit {
font-family: "NeueHaasDisplay-Medium", sans-serif;
}

main .section-3 .section3-container .section3-features .section3-feature > :not(:last-child) {
font-family: "NeueHaasDisplay-Medium", sans-serif;
}

main .section-3 .section3-container .section3-features .section3-feature .feature-title {
font-family: "NeueHaasDisplay-Medium", sans-serif;
} */


.tyfize16 {
}

.tyfize18 {
}

.index-banner:before {
    display: none;
}

@media screen and (max-width: 1459px) {

    header .header-container .header-right {
        gap: 1rem;
    }

    header {
        height: 5rem;
    }

    .banner .about-us .banner-left .title {
        margin-bottom: 1.5rem;
        font-size: 3.7rem;
    }

    .banner .about-us .banner-left h3 {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 1259px) {

    header .header-container .header-right {
        gap: 1rem;
    }

        header .header-container .header-right nav > .nav-item > a {
            padding: 0 1.5rem;
        }

    header {
        height: 80px;
    }

    .banner .about-us .banner-left .title, main .banner .banner-container .banner-title {
        font-size: 42px;
    }

    .banner .about-us .banner-left p br {
        display: none;
    }

    main .section-1 .section1-container .section-1-content .section-1-title, main .section-2 .section2-container .section2-text .section2-title, main .section-3 .section3-container .section3-title, main .section-4 .section4-container .section4-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-6 .section6-right .section6-form .form-title, main .section-6 .section6-left .faq-container .faq-top-title, .tyfize1 {
        font-size: 42px;
        font-family: "NeueHaasDisplay-Medium", sans-serif;
    }

    main .section-2 .drop-items .drop-item .drop-digit {
        font-size: 46px;
        font-family: "NeueHaasDisplay-Medium", sans-serif;
    }

    main .section-3 .section3-container .section3-features .section3-feature > :not(:last-child) {
        margin-right: 30px;
        font-family: "NeueHaasDisplay-Medium", sans-serif;
    }

    main .section-3 .section3-container .section3-features .section3-feature .feature-title {
        font-size: 24px;
        font-family: "NeueHaasDisplay-Medium", sans-serif;
    }

    .tyfize16 {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .tyfize18 {
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media screen and (max-width: 1259px) {

    .banner .about-us .banner-left .title, main .banner .banner-container .banner-title, main .section-1 .section1-container .digit-block .digit {
        font-size: 38px;
        line-height: 1.3;
    }

    main .section-1 .section1-container .section-1-content .section-1-title, main .section-2 .section2-container .section2-text .section2-title, main .section-3 .section3-container .section3-title, main .section-4 .section4-container .section4-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-6 .section6-right .section6-form .form-title, main .section-6 .section6-left .faq-container .faq-top-title {
        font-size: 38px;
    }

    main .section-2 .drop-items .drop-item .drop-digit {
        font-size: 42px;
    }

    .tyfize16 {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .tyfize18 {
        font-size: 17px !important;
        line-height: 26px !important;
    }
}

@media screen and (max-width: 970px) {

    main .section-1 .section1-container .digit-block .digit {
        font-size: 30px;
    }


    .banner .about-us .banner-left .title, main .banner .banner-container .banner-title {
        font-size: 32px;
        line-height: 1.3 !important;
    }

    main .section-1 .section1-container .section-1-content .section-1-title, main .section-2 .section2-container .section2-text .section2-title, main .section-3 .section3-container .section3-title, main .section-4 .section4-container .section4-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-5 .swiper-wrapper .swiper-slide .section5-left .section5-title, main .section-6 .section6-right .section6-form .form-title, main .section-6 .section6-left .faq-container .faq-top-title {
        font-size: 26px;
        line-height: 1.2;
    }

    main .section-2 .drop-items .drop-item .drop-digit {
        font-size: 30px;
    }

    .banner .about-us .banner-left h3, main .section-1 .section1-container .section1-swiper .swiper-container .swiper-wrapper .swiper-slide .product-description .product-description-text, main .section-1 .section1-container .section1-swiper .swiper-container .swiper-wrapper .swiper-slide .product-name, main .section-4 .section4-container .section4-swiper .swiper-container .swiper-wrapper .swiper-slide .product-name {
        font-size: 18px;
        line-height: 26px;
    }

    .banner .about-us .banner-left p, main .section-1 .section1-container .section-1-content .section-1-description, main .section-2 .section2-container .section2-text .section2-description, main .section-3 .section3-container .section3-features .section3-feature .feature-description, main .section-4 .section4-container .section4-swiper .swiper-container .swiper-wrapper .swiper-slide .product-descriptions .product-description span {
        font-size: 15px;
        line-height: 20px;
    }



    main .section-3 .section3-container .section3-features .section3-feature .feature-title {
        font-size: 18px;
        line-height: 24px;
        font-family: "NeueHaasDisplay-Medium", sans-serif;
    }

    main .section-3 .section3-container .section3-features .section3-feature > :not(:last-child) {
        margin-right: 20px;
    }


    .banner .about-us .banner-right {
        visibility: inherit !important;
        /* display: none; */
        /* width: 75%; */
        position: absolute;
        /* left: 7%; */
        bottom: -60%;
        z-index: -1;
        opacity: 0.5;
        display: block;
    }

    main .section-1 .section1-container .section1-swiper .swiper-container .swiper-wrapper .swiper-slide .action-button {
        width: 130px;
        height: 32px;
    }
}



/* scrollbar */
.scrollbar::-webkit-scrollbar {
    width: 2px;
    height: 2px
}

.scrollbar::-webkit-scrollbar-button:vertical {
    display: none;
}

.scrollbar::-webkit-scrollbar-track {
    background: rgb(157 142 142 / 28%);
}

.scrollbar::-webkit-scrollbar-corner {
    background-color: #ffffff;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: white;
}

    .scrollbar::-webkit-scrollbar-thumb:vertical:hover {
        background-color: #024498;
    }

    .scrollbar::-webkit-scrollbar-thumb:vertical:active {
        background-color: #024498;
    }

@media screen and (max-width: 767px) {
    .scrollbar::-webkit-scrollbar {
        width: 2px;
        height: 2px
    }
}



.yzqh {
    position: relative;
    cursor: pointer;
}

    .yzqh .yzqh-cont {
        display: none;
    }

    .yzqh:hover .yzqh-cont {
        background-color: white;
        z-index: 999;
        padding: 25px 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0.63rem;
        position: absolute;
        min-width: 210px;
        left: 50%;
        transform: translateX(-50%);
    }

    .yzqh.on .yzqh-cont {
        display: block;
        background-color: #f9f9f9;
        z-index: 999;
        padding: 30px 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0.63rem;
        position: absolute;
        min-width: 210px;
        left: 50%;
        transform: translateX(-50%);
    }

@media only screen and (max-width: 71rem) {
    .yzqh .yzqh-cont {
        display: none;
    }

    .yzqh:hover .yzqh-cont {
        display: block;
        background-color: #fff;
        z-index: 999;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0.63rem;
        position: relative;
        min-width: 210px;
        left: 0;
        transform: translateY(0);
    }

    .yzqh.on .yzqh-cont {
        display: block;
        background-color: #fff;
        z-index: 999;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0.63rem;
        position: relative;
        min-width: 210px;
        left: 0;
        transform: translateY(0);
    }
}


.yzqh-cont a {
    width: 100%;
    padding: 10px;
    font-size: 1.125rem;
    color: black;
    display: block;
    line-height: 1.5;
    /* border-bottom: #f2f2f2 1px solid; */
    transition: all 0.5s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.63rem;
}

    .yzqh-cont a span {
        flex: 1;
        font-family: WixMadeforDisplay-Regular;
    }

    .yzqh-cont a:hover {
        color: #fff;
        background: #117d4f;
    }

.yzqh-cont .menuicon {
    width: 3.8rem;
    height: 3.8rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.63rem;
    margin-right: 15px;
    display: none;
}

.yzqh-cont .arrow {
    background: url(../image/menu-arr.png) no-repeat right center;
    width: 30px;
    height: 30px;
}

.yzqh-cont a:hover .arrow {
    background: url(../image/wmenu-arr.png) no-repeat right center;
}

@media screen and (max-width: 71rem) {



    .yzqh-cont .yzqh-des2 {
        float: none;
        width: 100%;
    }

        .yzqh-cont .yzqh-des2 h5 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .yzqh-cont .yzqh-des2 a {
            padding-left: 30px;
            margin-bottom: 10px;
        }

            .yzqh-cont .yzqh-des2 a img {
                width: 20px;
                margin-right: 3px;
            }

            .yzqh-cont .yzqh-des2 a p {
                font-size: 16px;
                vertical-align: bottom;
            }

    header .header-container .header-right nav > .nav-item > a {
        font-size: 16px;
        font-family: "NeueHaasDisplay-Medium", sans-serif;
        text-align: left;
        width: 100%;
        display: block;
        border-bottom: 1px solid #9e9e9e52;
        padding: 5px 10px;
        /* border-left: 3px solid #333; */
        /* border-top: 1px solid #9e9e9e52; */
        margin-bottom: 10px;
    }

    header .header-container .header-right nav > .nav-item {
        height: auto;
        padding: 0 25px;
        margin-bottom: 20px;
    }
}



.popupBox .formBox {
    position: relative;
    padding: 0.6rem 0 1.85rem 0;
    overflow: hidden;
}

    .popupBox .formBox .list {
        position: relative;
        width: 90%;
        margin: 0 auto;
        padding: 0.75rem 3rem;
        background-color: #ffffff;
        -webkit-box-shadow: 0px 0px 84px 0px rgba(204, 204, 204, 0.58);
        box-shadow: 0px 0px 84px 0px rgba(204, 204, 204, 0.58);
        border-radius: 10px;
    }

        .popupBox .formBox .list::after {
            content: "";
            position: absolute;
            width: 9.39rem;
            height: 13.27rem;
            right: -5.8rem;
            bottom: -8.25rem;
            background: url(https://www.mushroomsolar.com/images/pro-bgm2.png) no-repeat center;
            background-size: cover;
            z-index: -1;
        }

    .popupBox .formBox .ul {
        margin-top: 35px;
    }

    .popupBox .formBox .liBox {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .popupBox .formBox .li {
        position: relative;
        width: 100%;
        margin-top: 25px;
    }

        .popupBox .formBox .li:last-child {
            margin-right: 0px;
        }

        .popupBox .formBox .li input, .popupBox .formBox .li textarea {
            position: relative;
            display: block;
            padding: 15px 20px;
            width: 100%;
            height: 56px;
            background-color: #f7f7f7;
            color: #222;
            overflow: hidden;
            border-radius: 6px;
        }

        .popupBox .formBox .li textarea {
            height: 168px;
        }

    .popupBox .formBox .sub {
        width: auto;
        margin-top: 35px;
        padding: 10px 30px;
        line-height: 1;
        background-color: #117d4f;
        color: white;
        font-size: 18px;
        cursor: pointer;
        border-radius: 8px;
    }

    .popupBox .formBox .more span {
        background: transparent;
    }

    .popupBox .formBox .more::after {
        display: none;
        width: 0;
    }

    .popupBox .formBox .sub:hover {
        background-color: #1bb228;
    }


    .popupBox .formBox label.error {
        padding: 0 20px;
        color: #f00;
    }

    .popupBox .formBox .placeholder {
        position: absolute;
        top: 0px;
        left: 0;
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        color: #666666;
    }

        .popupBox .formBox .placeholder::after {
            content: "*";
            color: #f5af27;
        }

.popcont {
    position: relative;
    padding: 0.5rem 0.7rem;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 3px 87px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 3px 87px 0px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    overflow: hidden;
}

.popupBox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    z-index: 999;
    display: none;
}

    .popupBox.on {
        display: block;
    }

    .popupBox .poplist {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .popupBox .poplist .ul {
            margin-top: 0px;
            padding: 0 .6rem;
        }

    .popupBox .close {
        position: absolute;
        top: -3%;
        right: 19%;
        z-index: 9999;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: #fff;
        text-align: center;
        cursor: pointer;
        background: #117d4f;
        border-radius: 50%;
        font-size: 16px;
        transition: all 0.6s;
    }

    .popupBox .popcont {
        margin: 0 auto;
        width: 60%;
        padding: 0.5rem 0 0.6rem 0;
        background: #fff;
        border-radius: 15px;
        padding: 5%;
    }

        .popupBox .popcont .popcont_tit {
            position: absolute;
            top: 50%;
            left: 50%;
            padding: 15%;
            width: 100%;
            color: #fff;
            text-align: center;
            font-weight: 700;
            font-size: 0.48rem;
            line-height: 1.25;
            transform: translate(-50%, -50%);
        }

    .popupBox .shadow {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        display: none;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.5;
    }

    .popupBox::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }



@media screen and (max-width:1279px) {
    .popupBox .popcont {
        width: 70%;
    }

    .popupBox .formBox .li input {
        height: 42px;
    }

    .qhjsdy p {
    }

    .popupBox .formBox .li textarea {
        height: 140px;
    }

    .popupBox .close {
        right: 13.5%;
    }
}

@media screen and (max-width:1151px) {
    .popupBox .popcont {
        padding: 25px 15px;
        width: 95%;
    }

    .popupBox .formBox .li textarea {
        height: 120px;
    }

    .popupBox .formBox .placeholder {
        font-size: 15px;
        padding: 10px 15px;
    }

    .popupBox .formBox .sub {
        margin-top: 20px;
        padding: 6px 10px;
        font-size: 16px;
        height: 40px;
    }

    .popupBox .close {
        right: 3.5%;
    }

    .banner-nc2 {
        top: 35%;
    }

    /* .index-banner::before {
display: block;
} */
}


.newslist {
    padding: 4% 0;
}

    .newslist ul {
        max-width: 1200px;
        margin: auto;
    }

    .newslist li {
        width: 31.333%;
        float: left;
        margin-right: 3%;
        margin-bottom: 3%;
        border-radius: 0;
        border: 0;
        box-shadow: 0 0 20px 0 #ddd;
    }

        .newslist li:nth-child(3n) {
            margin-right: 0;
        }

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

        .newslist .img img {
            width: 100%;
            display: block;
            transition: all .5s;
        }

        .newslist .img .time {
            position: absolute;
            top: 50%;
            left: 0;
            background-color: #2469c8;
            padding: 10px 15px;
            color: white;
            font-size: 15px;
            padding-left: 30px;
            background: url(https://www.mushroomsolar.com/img/n0.png) no-repeat 8px 11px;
            background-color: #2469c8;
            background-size: 16px;
        }



    .newslist .des {
        padding: 30px;
    }

        .newslist .des h5 {
            font-size: 18px;
            font-family: "NeueHaasDisplay-Medium", sans-serif;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .newslist .des p {
            font-size: 16px;
            color: #666666;
            line-height: 1.3;
        }

        .newslist .des label {
            color: #2469c8;
            font-family: "NeueHaasDisplay-Medium";
            margin-top: 20px;
            display: block;
            font-size: 15px;
            cursor: pointer;
        }

    .newslist li:hover {
        background-color: #2469c8;
    }

        .newslist li:hover .des h5 {
            color: white;
        }

        .newslist li:hover .des p {
            color: white;
        }

        .newslist li:hover .des label {
            color: white;
        }

        .newslist li:hover .img img {
            transform: scale(1.05);
        }


@media screen and (max-width:1459px) {
    .newslist .des {
        padding: 25px;
    }
}

@media screen and (max-width:970px) {
    .newslist {
        padding: 50px 0;
    }

        .newslist li {
            width: 100%;
            margin: auto;
            margin-bottom: 20px;
        }

        .newslist .des h5 {
        }

        .newslist .des p {
        }

        .newslist .des {
            padding: 20px;
        }
}


.newsdt {
    padding: 4% 0;
}

.xqks {
    max-width: 1200px;
    margin: auto;
}

.xqks1 {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #9e9e9e3b;
}

.xqks2 {
}

.xqks1 h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: "NeueHaasDisplay-Medium" !important;
    line-height: 1.3;
}

.xqks1 .fbz {
    margin-bottom: 15px;
}

    .xqks1 .fbz .time {
        font-size: 15px;
    }

.xqks2 h2 {
    font-size: 28px;
    margin-top: 20px;
    color: #2469c8;
}

.xqks2 h3 {
    font-size: 22px;
    margin-bottom: 10px;
    /* margin-top: 15px; */
}

.xqks2 h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.xqks2 a {
    color: #2469c8;
    font-weight: bold;
    text-decoration: revert;
}

.xqks2 p {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 15px;
}

.xqks2 img {
    margin-top: 10px;
    margin-bottom: 10px;
}

.xqks2 table {
    width: 100%;
}

    .xqks2 table tr {
    }

    .xqks2 table td {
        border: 1px solid rgb(158 158 158 / 93%) !important;
    }

    .xqks2 p, .xqks2 span, .xqks2 a, .xqks2 table td {
        font-family: 'NeueHaasDisplay-Roman' !important;
    }


.xqks2 h1, .xqks2 h2, .xqks2 h3, .xqks2 h5 {
    font-family: "NeueHaasDisplay-Medium" !important;
    line-height: 1.5;
}

@media screen and (max-width:970px) {
    .newsdt {
        padding: 50px 0;
    }

    .xqks1 h1 {
        font-size: 30px;
    }

    .xqks2 h2 {
        font-size: 26px;
    }

    .xqks2 h3 {
        font-size: 20px;
    }

    .xqks2 h5 {
        font-size: 17px;
    }

    .xqks2 a {
    }

    .xqks2 p {
        font-size: 15px;
    }
}

.searchbox {
    /* width: 100px; */
    height: 100%;
}

    .searchbox .search-hov {
        position: absolute;
        width: 100vw;
        height: 200px;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }

    .searchbox .search {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .searchbox .search-cont {
        height: 56px;
        border-radius: 6px;
        border: 1px solid #117d4f;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .searchbox .search-cont input {
            height: 100%;
            min-width: 400px;
            padding: 0 20px;
            font-size: 16px;
        }

        .searchbox .search-cont button {
            height: 100%;
            width: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #117d4f;
            color: #fff;
            font-size: 18px;
            padding: 0 30px;
            cursor: pointer;
        }

    .searchbox .search-hov {
        display: none;
    }

    .searchbox.on .search-hov {
        display: flex;
    }

.section-9 {
    position: relative;
    z-index: 50;
}
/* ÃƒÂ©Ã…Â¡Ã‚ÂÃƒÂ¨Ã¢â‚¬â€Ã‚ÂÃƒÂ§Ã‚Â¤Ã‚Â¾ÃƒÂ¥Ã‚ÂªÃ¢â‚¬â„¢ */
footer .footicon ul {
    display: none;
}


.qh {
    position: relative;
}

.qhjsdy {
    position: absolute;
    height: 100%;
    left: 0;
    width: 25%;
    z-index: 999;
    text-align: center;
    background-color: #ff9800;
    border-top-left-radius: 6px;
    /* border-top-right-radius: 24px; */
    /* border-bottom-right-radius: 24px; */
    border-bottom-left-radius: 6px;
    cursor: pointer;
}

.qhjsdy2 {
    background-color: #ff980000;
    border-radius: 0;
    border-right: 1px solid rgb(158 158 158 / 61%);
    width: 20%;
    height: auto;
}

.qhjsdy p {
    color: white;
    line-height: 3;
    height: 100%;
    font-size: 18px;
    font-family: 'WixMadeforDisplay-Bold';
}

.qhjsdy2 p {
    line-height: 2;
    color: #ff9800;
    text-align: left;
}

.qhjsdy ul {
    background-color: white;
    padding: 15px;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    box-sizing: border-box;
    position: absolute;
    width: 240px;
    left: 0;
    z-index: 999;
    bottom: 50px;
    max-height: 200px;
    overflow-x: auto;
    display: none;
}

    .qhjsdy ul.on {
        display: block;
    }

    .qhjsdy ul li {
        font-size: 15px;
        margin-bottom: 10px;
        text-align: left;
        color: #666666;
        background-color: rgb(158 158 158 / 8%);
    }

        .qhjsdy ul li:hover {
        }

            .qhjsdy ul li:hover span {
                color: white;
                background-color: #673ab7;
            }

        .qhjsdy ul li span {
            /* margin: 0 3px; */
            background-color: #9e9e9e;
            padding: 5px;
            width: 50px;
            text-align: center;
            display: inline-block;
            margin-right: 5px;
            color: white;
        }

.qh input {
    padding-left: 28% !Important;
}



/*ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚ÂÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬ÂÃƒÆ’Ã‚Â¦Ãƒâ€¦Ã¢â‚¬â„¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÆ’Ã‚Â©ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢Ãƒâ€šÃ‚Â®css*/

#hktxt {
    font-size: 14px;
}

#hkyz {
    margin-bottom: 5%;
    opacity: 1;
    filter: Alpha(opacity=100);
    transition: opacity 2s;
    margin-top: 3%;
}

    #hkyz:hover {
        opacity: 0.7;
        filter: Alpha(opacity=0);
    }

.wrap {
    width: 380px;
    height: 32px;
    background-color: #e8e8e8; /* margin: 56px auto; */
    text-align: center;
    line-height: 32px; /*border-radius: 7px;*/
    position: relative;
    padding-bottom: 0px;
    margin: auto;
    cursor: pointer;
}

.rect {
    position: relative;
    width: 354px;
    height: 100%;
}

.rec {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00b894;
}

.silde {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #ccc; /* background: url(/static/sxadmin/images/gou.png) no-repeat center; */ /* background-size: 28px; */
    border: 1px solid #dddddd;
}

.hkyztc {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9999;
    left: 0;
    background-color: #0000001c;
    display: none;
}

    .hkyztc.on {
        display: block;
    }

.input-more, .sjxs p {
    overflow: hidden;
}

    .input-more::before, .sjxs p::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: -120%;
        overflow: hidden;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .5)50%, rgba(255, 255, 255, 0)100%);
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, .5)), color-stop(100%, rgba(255, 255, 255, 0)));
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .9)40%,rgba(255, 255, 255, .9)60%, rgba(255, 255, 255, 0)100%);
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .5)50%, rgba(255, 255, 255, 0)100%);
        -webkit-transform: skewX(-25deg);
        -moz-transform: skewX(-25deg);
        transform: skewX(-25deg);
        -webkit-animation: movemove 1.5s ease-in-out infinite;
        -moz-animation: movemove 1.5s ease-in-out infinite;
        animation: movemove 1.5s ease-in-out infinite;
    }

@keyframes movemove {
    0% {
        left: -120%
    }

    100% {
        left: 120%;
    }
}

@-moz-keyframes movemove /* Firefox */
{
    0% {
        left: -120%
    }

    100% {
        left: 120%;
    }
}

@-webkit-keyframes movemove /* Safari ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢Ãƒâ€¦Ã¢â‚¬â„¢ Chrome */
{
    0% {
        left: -120%
    }

    100% {
        left: 120%;
    }
}

@-o-keyframes movemove /* Opera */
{
    0% {
        left: -120%
    }

    100% {
        left: 120%;
    }
}

.hkyztc h5 {
    font-size: 24px;
    text-align: center;
}

.hkyztc-cont {
    width: 500px;
    background: white;
    height: 200px;
    z-index: 9999;
    box-shadow: rgb(126 119 119) 0px 2px 15px;
    border-radius: 8px;
    margin: auto;
    margin-top: 12%;
    padding: 1.5% 0%;
}


.hkyztc .gb {
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    color: #009688;
    text-decoration: underline;
}

.pcxs {
}

.sjxs {
    display: none;
}

@media screen and (max-width: 970px) {
    .hkyztc {
    }

    .hkyztc-cont {
        width: 90%;
        margin-top: 45%;
        padding: 15px 0%;
    }

    .pcxs {
        display: none;
    }

    .sjxs {
        display: block;
        text-align: center;
        margin: 15px 0px 20px;
    }

        .sjxs p {
            text-align: center;
            display: inline-block;
            background-color: #009688;
            color: white;
            padding: 8px 15px;
            font-size: 16px;
            border-radius: 9px;
            position: relative;
        }
}

.formBox .form_li {
    position: relative;
    margin-right: 15px;
    width: 14%;
    min-width: 16.7rem;
    margin-top: 15px;
}

.zsjm input {
    width: 100%;
    height: 100%;
}

.cont1 .right .inputbox textarea {
    border-bottom: 1px solid #ececec;
    margin-bottom: 30px;
    height: 120px;
    overflow-x: auto;
}

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

    .tbanniu p {
        border: none;
        max-width: 100%;
        vertical-align: middle;
        display: block;
        margin: 0 auto;
        color: white;
        padding: 5px 10px;
        font-size: 15px;
        cursor: pointer;
        border-radius: 4px;
        background-color: white;
        color: #117d4f;
        border: 1px solid white;
    }

        .tbanniu p:hover {
            color: white;
            border: 1px solid white;
            background-color: #ff000000;
        }

@media screen and (max-width: 970px) {
    .formBox .form_li {
        width: 100%;
    }

    .popupBox .formBox .li {
        margin-top: 15px;
    }

    .tyhead-des {
        font-size: 15px !important;
        line-height: 20px;
        margin-top: 10px !important;
    }

    .qhjsdy p {
        line-height: 2.4;
    }
}


.lxtl {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: #117d4f;
    height: 26px;
    z-index: 999;
}

    .lxtl ul {
        color: white;
    }

        .lxtl ul li {
            float: right;
            /* margin-left: 20px; */
            font-size: 15px;
            /* line-height: 32px; */
            margin-top: 8px;
            background: url(../image/co-icon2.png) no-repeat 0px -1px;
            padding-left: 24px;
            background-size: 20px;
        }

            .lxtl ul li:hover {
                /* text-decoration: underline; */
            }

            .lxtl ul li.yx {
                background: url(../image/co-icon3.png) no-repeat 0px -1px;
                padding-left: 24px;
                background-size: 20px;
                margin-left: 10px;
            }

            .lxtl ul li.dh {
                padding-right: 10px;
                border-right: 1px solid white;
            }

@media screen and (max-width: 970px) {

    .lxtl {
        display: none;
    }

    header {
        top: 0px;
    }
}
