/* * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea {
    -webkit-user-select: auto;

}


 */
body {
    font-family: Microsoft JhengHei;
}

* {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    /*  -webkit-transition: all 0s ease;
    transition: all 0s ease; */
}



html {
    font-size: 16px;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
i {
    padding: 0px;
    margin: 0px;
}

a {
    text-decoration: none;
}

body {
    min-width: 320px;
    min-height: 568px;
}



.mb-5pct {
    margin-bottom: 5%;
}


/* gotop */
a.goTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #004b7c;
    /* padding: 10px 13px; */
    text-decoration: none;
    z-index: 100;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

a.goTop i {
    color: #fff;
    font-size: 1rem;
}


/* gotop */


/* 
@media (min-width: 992px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1590px;
    }
} */


nav ul {
    -webkit-transition: all 0s ease;
    transition: all 0s ease;
}


@media (max-width: 1280px) {
    .header .container {
        /* max-width: 1280px; */
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    .header .container {
        max-width: 1360px;
    }
}

@media (min-width: 1600px) {
    .header .container {
        max-width: 1440px;
    }
}

@media (min-width: 1920px) {
    .header .container {
        max-width: 1590px;
    }
}

.header .container {
    padding: 0px;
}

/* header hright */
header{
    position: fixed;
    z-index: 100;
}
.nav {
    width: 100%;
    height: 160px;
    position: fixed;
    /* line-height: 65px; */
    text-align: center;
    z-index: 100;
}

.nav>div.container {
    background-color: rgba(255, 255, 255, .8);
    /* line-height: 160px; */
    padding: 0px 4.25rem;

        display:flex;
    align-items:center;
     justify-content:space-between;
}

/* header hright */


.nav div.logo {
    float: left;
    width: auto;
    /* height: auto; */
        height: 100%;
    -webkit-transition: all 0s ease;
    transition: all 0s ease;
}

.nav div.logo a {
    display: inline-block;
    height: 100%;
    padding-left: 1.2rem;

}

.nav div.logo img {
    width:200px;
    height: auto;
}


.nav div.main_list {
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    padding: 0;
    /* padding: 0px .7rem; */
    /* border-right: 1px solid #998675; */
}
/* 
.nav div.main_list ul li a>span.ch:after{
    content: "";
    height: 45px;
    width: 1px;
    background-color: #998675;
    display: inline-block;
    margin: 0px .7rem;
    position: relative;
    top: 25px;
}
 */

.nav div.main_list ul li a {
    text-decoration: none;
    color: #998675;
    font-size: 1.5rem;
    height: 100%;
    display: inline-block;
}
.nav div.main_list ul li a>span.ch {
    font-size: 1.5rem;
    padding: 0px .7rem;

}

.nav div.main_list ul li:not(:last-child) a>span.ch {
    border-right: 1px solid #998675;
}









.nav div.main_list ul li a:hover {
    color: #004b7c;
}

.nav div.main_list ul li a.active{
    color: #004b7c;
}

/* Home section */

.home {
    width: 100%;
    height: 100vh;
    /* background-image: url("../img/index_carousel_img_01.jpg"); */
    background-position: center top;
    background-size: cover;
}

.navTrigger {
    display: none;
}

.nav {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}





.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #004b7c;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.header .container.affix {
    background-color: #fff;
    height: 100px;
}




.imdexCarousel{
    position: relative;
}

.imdexCarousel .menuLink{
    position: absolute; 
    bottom: 2rem;  
    left:50%;  
    transform: translateX(-50%);
}
.menuLink .pdSpacing{
    padding: 0px 2rem;
}
.menuLink .pdSpacing>div{
    background-color: #fff;
    text-align: center;
    padding: 1rem;
}

.menuLink .pdSpacing>div i{
    font-size: 6.25rem;
    color: #0071c6;
}

.menuLink p.title{
    font-size: 1.25rem;
    color: #001e38;
}
.menuLink span.enTest{
    font-size: 1.125rem;
    color: #998675;
}

.navlinks span{
    font-size: 12px;
    display: block;
/*     position: absolute;
    width: 100%;
    top: 6rem;
    height: 1.65rem; */
    /* line-height: 1.65rem; */
    text-align: left;
/*     pointer-events: none; */
    -webkit-transition: all 0s ease;
    transition: all 0s ease;
}
.nav div.main_list ul li a {
    position: relative;
}

@media screen and (max-width:1280px) {
    .navTrigger {
        display: block;
    }


    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .nav div.show_list {
        height: auto;
        display: none;
        z-index: 300;
    }

    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100%;
        right: 0;
        left: 0;
        bottom: 0;
        /* background-color: #fff; */
        /* padding: 1rem 0px; */
        padding: 0px;
    }

    .nav div.main_list ul.white {
        background-color: #fff;
        -webkit-transition: all .8s ease;
        transition: all .8s ease;
    }


    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 1.5rem;
        padding: 5px;
    }

    .nav div.media_button {
        display: block;
    }

    .nav>div.container {
        padding: 0px;
        margin: 0px;
    }

    .nav div.main_list ul li {
        line-height: 2.5rem;
    }

    .nav div.main_list ul li a {
        line-height: 2.5rem;
    }
    /* header hright */
    .nav {
        height: 100px;
    }

    .nav>div.container {
        line-height: 100px;
    }

    /* header hright */

    .nav div.logo img {
        width: 35%;
    }
    .navlinks span{
        text-align: center;
            position: initial;
    }

    .nav>div.container{
            display: block;
    }
    .nav div.main_list ul li:not(:last-child) a>span.ch {
        border-right: none;
    }

}

.themeBox {
     width: 100%;
    max-height: 630px;
    min-height: 400px;
    height: 30vw;
    background-position:  50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
   
}




.backgroundImg {
    width: 100%;
    /* padding-top: 35%; */
    max-height: 630px;
    min-height: 400px;
    height: 30vw;
    /* height: 100vh; */
    background-position: left 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;

}

.themeBox .htSpacing>div.row{
    height: 100%;
}
.themeBox .htSpacing>div.row>div.right{
    padding-left:5rem;
}
.themeBox .htSpacing>div.row>div.left{
    padding-right:5rem;
}
.themeBox .titleBox{
    margin-bottom: 4rem;
}

.themeBox h3{
    font-size: 3.4rem;
    font-weight: 700;
}

.themeBox h4{
    font-size: 1.75rem;
}

.themeBox p.majorContent{
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.themeBox p.minorContent{
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

a.moreInfor{
    text-decoration: none;
    display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    background-color: #ff4641;
    padding: .3rem .8rem;
}

.majorContent,.minorContent{
    color: #cccccc;
}

.majorContent.darkColor,
.minorContent.darkColor{
    color: #333333;
}

.managementColor{
    color: #c7b299;

}
.sportColor{
    color: #96ffff;
}

.merchandiseColor{
    color: #002042;
}

.gardeningColor{
    color: #ffff00;
}




.themeBox.recruit {
     width: 100%;
    max-height: 1080px;
    min-height: 400px;
    height: 55vw;
    background-position:  50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.recruit .titleBox{
    padding-top:4rem; 
}

.recruit p{
    color: #ccc;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.recruit .setInBox{
    text-align: center;
}
footer.footer img.fb{
    width: 25px;
    height: auto;
    margin-right: 7px;
    position: relative;
    top: -1px;
}
footer.footer{
    text-align: center;
    padding: 1rem 0px;
}

footer.footer a,footer.footer span,footer.footer p{
    text-decoration: none;
    color: #fff;
    padding: 0px 5px;
    line-height: 2rem;
    display: inline-block;
    font-size: 1.125rem;
    text-align: center;
}


/* lightbox-start*/

#wrapper {
    margin: 0 auto;
    padding: 50px 0;
    width: 800px;
    text-align: left;
}

.btnArea {
    padding-bottom: 1.5em;
    text-align: center;
}


#mdOverlay {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 97;
    background: #000;
    display: none;
    z-index: 100;
}

#mdWindow {

    top: 10%;
    left: 10%;
    width: 80vw;
    height: 80vh;
    position: fixed;
    z-index: 98;
    display: none;
    z-index: 110;
}

#mdWindow > .mdClose {
    top: 0px;
    right: 0px;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    color: #fff;
    font-size: 1.5rem;
    background: #ff4641;
    position: absolute;
    z-index: 99;
    cursor: pointer;
    text-align: center;
}


#modalInclude {
    display: none;
}

#contWrap {
    width: 100%;
    height: 100%;
}

#modalWrapper h2 {
    margin-bottom: 20px;
    padding: 20px 0;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    border-bottom: #333 1px dotted;
}

#modalWrapper p {
    padding-bottom: 2em;
    font-size: 1em;
}

 body.overflow-hidden{
    overflow: hidden;
 }


@media (max-width: 576px) {
    #mdWindow {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 98;
        display: none;
        z-index: 110;
    }
    
}






/* lightbox-end*/


/* ///////////////////////////////////////////////////////////////////////////////// */
/* article editor start */

.bannerBox .banner{
    width: 100%;
    max-height: 500px;
    min-height: 300px;
    height: 25vw;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* titleBox */

.articleEditorBox .titleBox{
    text-align: center;
}

.articleEditorBox .titleBox h3.chText{
    color: #002042;
    font-size: 2.75rem;
    display: inline-block;
    position: relative;
}
.articleEditorBox .titleBox h3.enText{
    color: #cccccc;
    font-size: 1.375rem;
}


.articleEditorBox .titleBox h3.chText:before,
.articleEditorBox .titleBox h3.chText:after {
    content: '';       
    position: absolute;       
    top: 50%;
    background: #002042;       
    width: 80px;
    height: 2px;
}
.articleEditorBox .titleBox h3.chText:before{
    left: -100px;        
}
.articleEditorBox .titleBox h3.chText:after {
    right: -100px;
}

/* RWD-style-strat///////////////////////////////////////////////////////////////////////////////// */
/* p,
h1,
h2,
h3,
h4,
h5,
h6,
i {
    padding: 0px;
    margin: 0px;
}

a {
    text-decoration: none;
} */


.articleEditorBox .dp_none{
    display: none !important;
}

.articleEditorBox .no_mb_spacing{
    margin-bottom: 0px !important;
}
/* .articleEditorBox .no_content{
    display: none !important;
}
 */
.articleEditorBox img{
    width: 100%;
    height: auto;
}

.editor_mtSpacing{
    margin-top: 5rem;
} 
.editor_mbSpacing{
    margin-bottom: 5rem;
} 


/* article box content */

.articleEditorBox .articleBox  h4{
    font-size: 1.5rem;
    color: #4d4d4d;
    font-weight: 600;
    text-align: justify;
    word-wrap:break-word;
    line-height: 2.25rem;
}


.articleEditorBox .articleBox  h4.titleMbSpacing{
    margin-bottom: 1.5rem;
}


.articleEditorBox .articleBox  p{
    font-size: 1.125rem;
    color: #777;
    text-align: justify;
    word-wrap:break-word;
    line-height: 1.875rem;
    margin-bottom: 1.5rem;
}

.articleEditorBox .articleBox{
    margin-bottom: 5rem;
}


/* img box content */
.articleEditorBox .articleBox .textBox{
    padding: .6rem;
}
.articleEditorBox .articleBox .imgBox h4{
    font-size: 1.25rem;
    color: #4d4d4d;
    font-weight: 600;
    text-align: justify;
    word-wrap:break-word;
    line-height: 1.75rem;
}
.articleEditorBox .articleBox  .imgBox h4.titleMbSpacing{
    margin-bottom: .3rem;
}
.articleEditorBox .articleBox .imgBox p{
    font-size: 1rem;
    color: #777;
    text-align: justify;
    word-wrap:break-word;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;

}

@media (max-width: 767px) {
    .editor_mtSpacing{
        margin-top: 2rem;
    } 
    .editor_mbSpacing{
        margin-bottom: 2rem;
    } 
    .articleEditorBox .articleBox {
        margin-bottom: 2.5rem;
    }
    .articleEditorBox .articleBox  h4.titleMbSpacing{
        margin-bottom: 0rem;
    }
}



/* RWD-style-end///////////////////////////////////////////////////////////////////////////////// */

.bannerTitleBox{
    text-align: center;
    margin-bottom: 2rem;

}
.bannerTitleBox h2{
    font-size: 5rem;
    color: #fff;
    font-weight: 900;
    text-shadow: black 0.15rem 0.15rem 0.6rem;
    margin-bottom: 1rem;
}
.bannerTitleBox p{
    font-size: 2.25rem;
    color: #fff;
    background-color: #004786;
    opacity: .7;
    padding: .2rem .8rem;
    display: inline-block;
}
@media (max-width: 767px) {
    .bannerTitleBox h2{
        font-size: 3rem;
    }
    .bannerTitleBox p{
        font-size: 1.35rem;
    }
}
.merchandisingBox{
    overflow: hidden;
}

.merchandisingBox h3{
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    color: #998675;
}
.merchandisingBox h3 span{
    font-size: 3.875rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}
.merchandisingBox>div{
    margin-top: 5rem;
}

.merchandisingBox .poolDeviceBox h3 span{
    color: #29abe2;
    border-bottom: 10px solid;
    border-image: url("../img/list_border_bottom_01.png") 9;
    border-image-repeat: repeat;
}
.merchandisingBox .focusBox {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
.merchandisingBox .focusBox span{
    font-size: 2rem;
    line-height: 2.5rem;
    width: 8.25rem;
    height: 8.25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.merchandisingBox .poolDeviceBox .focusBox span{
    border: 1px solid #6accef;
    color:#6accef; 
}

.merchandisingBox .waterQualityBox .focusBox span{
    border: 1px solid #22b573;
    color:#22b573; 
}
.merchandisingBox  .disinfectionEquipment .focusBox span{
    border: 1px solid #645091;
    color:#645091; 
}


@media (max-width: 414px) {
    .merchandisingBox .focusBox span{
        width: 75px;
        height:75px;
    }
}


.merchandisingBox .mbSpacing{
    margin-bottom: 4rem;
}


.merchandisingBox p{
    font-size: 1.65rem;
    text-align: center;
    color: #777777;
}


.merchandisingBox .bgImgOneToOne {
    width: 100%;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}
.merchandisingBox .bgImgTwoToOne {
    width: 100%;
    padding-bottom: 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}


.merchandisingBox .container-fluid {
    padding: 0px;
}
.merchandisingBox .container{
    position: relative;
}
.poolDeviceBox>.container:before{
    content:url("../img/water_ripple_01.png");
    width: auto;
    height: auto;
    position: absolute;
    left: -390px;
    top: -50px;
    /* transform: translate(-25%, 25%); */
    pointer-events: none;
    /* z-index: 200; */
}


.merchandisingBox .waterQualityBox h3 span{
    color: #22b573;
    border-bottom: 10px solid;
    border-image: url("../img/list_border_bottom_02.png") 9;
    border-image-repeat: repeat;
}

.waterQualityBox>.container:before{
    content:url("../img/water_ripple_01.png");
    width: auto;
    height: auto;
    position: absolute;
    right: -390px;
    top: -50px;
    /* transform: translate(-25%, 25%); */
    pointer-events: none;
    /* z-index: 200; */
}


.merchandisingBox .disinfectionEquipment h3 span{
    color: #645091;
    border-bottom: 10px solid;
    border-image: url("../img/list_border_bottom_03.png") 9;
    border-image-repeat: repeat;
}

.disinfectionEquipment>.container:before{
    content:url("../img/water_ripple_01.png");
    width: auto;
    height: auto;
    position: absolute;
    left: -390px;
    top: -50px;
    /* transform: translate(-25%, 25%); */
    pointer-events: none;
    /* z-index: 200; */
}


@media (max-width: 767px) {
    .merchandisingBox>div {
    margin-top: 2rem;
    }
    .articleEditorBox.contactUsBox .titleBox{
    margin-bottom: 2rem;
    }

}





.contactUsBox{
    background-color: #332a26;
    padding: 5rem 0px;
}

.contactUsBox.articleEditorBox .titleBox h3.chText{
    color: #c7b299;
}
.contactUsBox.articleEditorBox .titleBox h3.chText:before, .contactUsBox.articleEditorBox .titleBox h3.chText:after{
    background: #c7b299;
}

.articleEditorBox.contactUsBox .titleBox{
    margin-bottom: 4rem;
}

.articleEditorBox.contactUsBox p{
    text-align: center;
    font-size: 1.65rem;
    color: #cccccc;
    margin-bottom: 2rem;
}


/* form-start //////////////////////////////// */

/* 表格文字切齊 */

.formBox .formJustify {
    text-align: justify;
    width: 85%;
    height: 1.6rem;
    font-size: 1rem;
    padding-right: .7rem;
}

.formBox .formJustify::after {
    content: "";
    display: inline-block;
    width: 100%;
}
/* 表格文字切齊 */




.formBox label {
    /* background-color: #fff; */
    /* padding: 20px 0px; */
    font-size: 16px;
    color: #000000;
}

.formBox input.form-control ,textarea.form-control {
    background-color: #fff;
    border: none;
    border-radius: 0rem;
    padding: 1.2rem .8rem;
    font-size: 1rem;
    color: #4d4d4d;
    border: none;
    /* margin-left: 10px; */
}

.formBox .form-group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding-left: 10px;
}



.formBox input,
.formBox button,
.formBox select,
.formBox textarea {
    outline: none
}

.formBox button.submitBtn {
    background-color: #c6b299;
    color: #000;
    font-size: 1rem;
    margin: 0px auto;
    display: block;
    padding: 1rem 2.5rem;
    border-radius: 0rem;
    font-weight: 700;
    margin-bottom: 4rem;
}



@media (min-width: 1240px) {
    .formBox .experienceBox label.left{
        -ms-flex: 0 0 12.25%;
        flex: 0 0 12.25%;
        max-width: 12.25%;

    }
    .formBox .experienceBox div.right{
        -ms-flex: 0 0 87.75%;
        flex: 0 0 87.75%;
        max-width: 87.75%;

    }
}




@media (min-width: 766px) {
    .formBox .experienceBox label.left{
        -ms-flex: 0 0 12.25%;
        flex: 0 0 12.25%;
        max-width: 12.25%;

    }
    .formBox .experienceBox div.right{
        -ms-flex: 0 0 87.75%;
        flex: 0 0 87.75%;
        max-width: 87.75%;

    }
}


/* 下拉 */
.formBox .select-wrap {
    width: 100%;
  position: relative;
  display: inline-block;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.formBox .select {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
/*   height: 50px; */
  background-color: white;
}
.formBox .select::-webkit-input-placeholder {
  color: #a7a7a7;
  font-family: Exo2;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
.formBox .select:-ms-input-placeholder {
  color: #a7a7a7;
  font-family: Exo2;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
.formBox .select::-ms-input-placeholder {
  color: #a7a7a7;
  font-family: Exo2;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
.formBox .select::placeholder {
  color: #a7a7a7;
  font-family: Exo2;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
.formBox .select.opened .select-trigger:after {
  margin-top: 3px;
  -webkit-transform: rotate(-135deg) translateY(-50%);
          transform: rotate(-135deg) translateY(-50%);
}
.formBox .select.opened .options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  z-index: 50;
}
.formBox .select.selected .select-trigger {
  color: #000;
}

.formBox .select-trigger {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
/*   height: 50px; */
    padding: 1.2rem .8rem;
  background-color: white;
  cursor: pointer;
  color: #a7a7a7;
    font-size: 1rem;
  font-weight: 400;
}
.formBox .select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

.formBox .options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0px;
  right: 0px;
  min-width: 100%;

  padding: 1rem 0px;
  font-size: 1rem;
  margin: 5px 0;
  background: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
    box-shadow: 0px 3px 3px rgba(136, 139, 145, 0.2);
}

.formBox .option {
  position: relative;
  display: block;
  padding: 5px 20px;
  color: #a7a7a7;
  font-size: 1rem;
  font-weight: 400;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.formBox .option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.formBox .option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.formBox .option:hover {
  color: #666;
}



.articleEditorBox.contactUsBox .formBox{
    margin: 0px;
}


/* input:focus */
.form-control:focus{
    box-shadow: none;
}


/* form-end //////////////////////////////// */

/* iframe style ///////////////// */
.scroll-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}
.scroll-wrapper::-webkit-scrollbar {
    width: 3px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #eee;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #888;
}

.demo-iframe-holder {
  /* position: fixed;  */
  position: absolute; 
  right: 0; 
  bottom: 0; 
  left: 0;
  top: 0;
}
 
.demo-iframe-holder iframe {
  height: 100%;
  width: 100%;
}

/* ////////////////////////////////// */




.gardeningImg{
    width: 100%;
    height: 50vw;
    max-height: 640px;
    min-height: 250px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

    .merchandisingBox.gardeningBox h3 {
        text-align: left;
        margin-bottom: 1rem;
    }
    .merchandisingBox.gardeningBox p {
        text-align: left;
    }
    .merchandisingBox.gardeningBox ul li {
        font-size: 1.65rem;
        color: #777777;
    }


    @media (min-width: 768px) {
        .merchandisingBox.gardeningBox .contentBox{
            height: 100%;
            width: 570px;
            padding-left: 4rem;
            display: flex;
            align-items:center;
        }
        .merchandisingBox .poolDeviceBox  .titleBox{
            display: flex;
            justify-content: center;
        }
        .merchandisingBox .poolDeviceBox  .titleBox h3{
            display: inline-block;
        }
        .merchandisingBox .poolDeviceBox  .titleBox>div{
            display: inline-block;
        }
 
    }
    @media (max-width: 767px) {
        .merchandisingBox.gardeningBox .contentBox {
            width: 100%;
            padding:2rem; 
        }
    }

    .merchandisingBox .poolDeviceBox  .titleBox h3 span{
        color: #645091;
        border-image: url("../img/list_border_bottom_03.png") 9;
    }
    .merchandisingBox .poolDeviceBox  .titleBox{
        padding-bottom: 2rem;
    }
    .processBox a{
        text-decoration: none;
        width: 12rem;
        height: 12rem;
        display: block;
        border: 1px solid #645091;
        border-radius: 50%;
        display: flex;
        align-items:center;
        justify-content:center;
        text-align: center;

    }
    .processBox i{
        font-size: 4.5rem;
        color: #645091;
    }

    .my-container{
            max-width: 1140px;
            margin-right: auto;
            margin-left: auto;
            padding: 0px 2rem;
    }

    .processBox a:hover{
        background-color: #645091;
    }
.processBox a:hover p, .processBox a:hover i{
    color: #fff;
}


@media (max-width: 767px) {
    .processBox a{
        margin: 0px auto;
        margin-bottom: 2rem;
    }
}
@media (max-width: 576px) {
    .processBox a{
        width: 9rem;
        height: 9rem;
    }
}

.gardeningBox .contentBox{
    position: relative;
}
.gardeningBox .contentBox.imgRight:before {
    content: url("../img/water_ripple_01.png");
    width: auto;
    height: auto;
    position: absolute;
    right: -390px;
    top: 30%;
    pointer-events: none;
}

.gardeningBox .contentBox.imgLeft:before {
    content: url("../img/water_ripple_01.png");
    width: auto;
    height: auto;
    position: absolute;
    left: -390px;
    top: 30%;
    pointer-events: none;
}