html,
body {
    position: relative;
    margin: 0;
    padding: 0;    
    height: auto;
    width: 100%;
    min-width: 320px;
    border: none;
    background: #fff;
    color: #333;
    padding-right: 0 !important; 
    background: #282727;
}

* {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Arial, Helvetica, "微軟正黑體", sans-serif;
}

a {
    outline: none;
    behavior: expression(this.onFocus=this.blur());
    text-decoration: none;
    display: inline-block;
}

a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

a:focus {
    outline: none;
}

img {
    width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

.text-justify {
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
    -webkit-text-align-last: justify;
    -webkit-text-size-adjust: none;
}

.text-bold {
    font-weight: bold;
}

.text-lg {
    font-size: 1.25rem;
}

.text-lg2 {
    font-size: 2.25rem !important;
}

.row-no-padding {
    margin-left: 0;
    margin-right: 0;
}

.margin-left-5 {
    margin-left: 5px;
}

.hidden {
    display: none;
}

.clear:after,
.clear:before {
    display: table;
    content: " ";
}

.clear:after {
    clear: both;
}

input:-webkit-autofill {
    -webkit-animation: autofill-fix 1s infinite!important;
    -webkit-text-fill-color: #333;
    -webkit-transition: background-color 50000s ease-in-out 0s!important;
    transition: background-color 50000s ease-in-out 0s!important;
    background-color: transparent!important;
    background-image: none !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset!important;
}

[role=button], a, area, button, input:not([type=range]), label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

input[type=tel], input[type=number], input[type=password], input[type=text], textarea {
    -webkit-appearance: none;
}

input[type=button], 
button:focus,
.btn.btn-info:focus,
.btn.btn-default:focus,
.btn.btn-success:focus,
.btn.btn-primary:focus {
    border-width: 0;
    outline: 0;
}

.btn-default {
    background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
    background-color: #ececec;
}

.btn-default:hover {
    background-image: linear-gradient(to bottom,#e0e0e0 0,#e0e0e0 100%);
    background-color: #e0e0e0;
}

.cutsom-checkbox {
    position: relative;
    /*margin-bottom: 15px;*/
    cursor: pointer;
    margin-left: 1px;
}

    .cutsom-checkbox label {
        font-weight: bolder;
        position: relative;
    }

.cutsom-checkbox input[type="checkbox"] {
    margin: 0;
    opacity: 0;
}

.cutsom-checkbox input[type="checkbox"] + label {
    padding-left: 34px;
}

.cutsom-checkbox input[type="checkbox"] + label::before {
    border-color: #dddddd;
    border-radius: 4px;
    border-style: solid;
    border-width: 2px;
    content: "";
    cursor: pointer;
    display: inline-block;
    height: 25px;
    left: 5px;
    position: absolute;
    transition: 0.3s linear all;
    width: 25px;
}

.cutsom-checkbox input[type="checkbox"] + label::after {
    content: "";
    transform: scale(0);
    transition: 0.3s linear all;
}

.cutsom-checkbox input[type="checkbox"] + label:hover::before {
    background-color: #ede0e0;
    transition: 0.3s linear all;
}

.cutsom-checkbox input[type="checkbox"]:checked + label::before {
    border-color: #3bb6b6;
    border-style: dotted;
    transition: 0.3s linear all;
}

.cutsom-checkbox input[type="checkbox"]:checked + label::after {
    color: #3bb6b6;
    content: "\f00c";
    cursor: pointer;
    font-family: 'FontAwesome';
    left: 8px;
    position: absolute;
    top: 0px;
    transform: scale(1.5);
    transition: 0.3s linear all;
}

.custom-checkbox-style-2 input[type="checkbox"] + label::before {
    border-color: #3bb6b6;
    background-color: #ffffff;
    border-radius: 0;
}

.custom-checkbox-style-2 input[type="checkbox"]:checked + label::before {
    background-color: #fbebeb;
    border-style: solid;
    border-color: #fbebeb;
}

.custom-checkbox-style-3 input[type="checkbox"] + label::before {
    border-color: #3bb6b6;
    background-color: #3bb6b6;
    border-radius: 0;
    transform: scale(1);
}

.custom-checkbox-style-3 input[type="checkbox"] + label::after {
    transform: scale(2);
    opacity: 0;
}

.custom-checkbox-style-3 input[type="checkbox"]:checked + label::before {
    background-color: #fbebeb;
    border-style: solid;
    transform: scale(1.2);
    border-color: #fbebeb;
}

.custom-checkbox-style-3 input[type="checkbox"]:checked + label:after {
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 1199px) {
    .cutsom-checkbox input[type="checkbox"] + label {
        padding-left: 30px;
    }
    .cutsom-checkbox input[type="checkbox"] + label::before {
        left: 1px;
    }
    .cutsom-checkbox input[type="checkbox"]:checked + label::after {
        left: 5px;
    }
}

@media (max-width: 991px) {
    .cutsom-checkbox input[type="checkbox"] + label {
        padding-left: 24px;
    }
    .cutsom-checkbox input[type="checkbox"] + label::before {
        left: -4px;
    }
    .cutsom-checkbox input[type="checkbox"]:checked + label::after {
        left: 0;
    }
}

@media (max-width: 991px) {
    .cutsom-checkbox {
        margin-left: 0;
    }
}

.same-height {
    display: inline-block;
    float: none;
    vertical-align: top;
}


/*================== color ====================*/
.clr-01 {
    color: #046a38 !important;
}

.clr-02 {
    color: #fff !important;
}

.clr-03 {
    color: #84754e !important;
}

.clr-04 {
    color: #7fd2da !important;
}

.clr-05 {
    color: #e49cc7 !important;
}

.clr-06 {
    color: #f4ba85 !important;
}

.clr-07 {
    color: #e5532f !important;
}

.clr-08 {
    color: #ffb850 !important;
}

.clr-09 {
    color: #ff6c6c !important;
}

.clr-10 {
    color: #ff9e6e !important;
} 

.clr-bg-01 {
    background: #60a7b1 !important;
}

.clr-bg-02 {
    background: #b89fca !important;
}

.clr-bg-03 {
    background: #f7d36b !important;
}

.clr-bg-04 {
    background: #7fd2da !important;
}

.clr-bg-05 {
    background: #e49cc7 !important;
}

.clr-bg-06 {
    background: #f4ba85 !important;
}

.clr-bg-07 {
    background: #fbf6e9 !important;
}

.clr-bg-08 {
    background: #ffb850 !important;
}

.clr-bg-09 {
    background: #ff6c6c !important;
}

.clr-bg-10 {
    background: #ff9e6e !important;
}


/*================== button ===================*/
.btn-bg {
    border-radius: 30px;
    padding: 8px 40px;    
    border-width: 0px;
    background-color: #fcd520;
    box-shadow: 0 5px #eba704;
    color: #117b36;
    font-weight: bolder;
}

.btn-red {
    background-color: #f08587 !important;
    box-shadow: 0 5px #c35759;
    color: #fff;
}

.btn-blue {
    background-color: #2ec7e7;
    box-shadow: 0 5px #018bae;
    color: #fff;
}

.btn-yellow {
    background-color: #fcd520;
    box-shadow: 0 5px #eba704;
    color: #117b36;
}

.btn-yellow:hover {
    background-color: #fce020;
}


/*================== nav ======================*/
nav {
    background: rgba(20, 143, 63, 1);
    width: 100%;
    padding: 0;
    height: 100px;
    position: static;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.5);
}

.inner nav {
    background: #fff;
    box-shadow: 0px 0px 12px 3px rgba(220, 221, 220, 0.55);
}

.main-nav {
    width: 98%;
    margin: 0 auto;
}

.logo {
    position: relative;
    z-index: 9999;
}

.logo h1 {
    font-size: 0;
    margin: 0;
}

.logo a {
    display: inline-block;
    width: 175px;
    height: 50px;
    /*line-height: 50px;*/
    margin-top: -20px;
}

.menu-wrapper {
    background-color: rgba(255,255,255,1);
    border-radius: 25px;
    border: 2px solid #1a8601;
    margin-top: 25px;
}

nav ul {
    padding: 0 25px;
    margin: 0;
    height: 50px;
    line-height: 50px;
}

nav ul li {
    list-style: none;     
    display: inline-block;
    color: #1a8601;
}

nav ul li + li {
    margin-left: 20px;
}

nav ul li a {
    display: inline-block;
    /*height: 50px;*/
    color: #1a8601;
    font-size: 1rem;
    font-weight: 600;
}

nav ul li a:focus,
nav ul li a:hover {
    color: #333;
}

.open-button {
    width: 30px;
    height: 30px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    position: absolute;
    cursor: pointer;
    border-bottom: 0;
    top: 13px;
    right: 8px;
    z-index: 9999;
    border-bottom: 0;
}

@media (min-width: 768px) {
    .open-button {
        display: none;
    }
}

.open-button:hover {
    border-bottom: 0;
}

.open-button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.inner .open-button span {
    background: #1a8601;
}

.open-button span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

.open-button span:nth-child(2) {
    top: 10px;
    transform-origin: left center;
}

.open-button span:nth-child(3) {
    top: 20px;
    transform-origin: left center;
}

.open-button.open span:nth-child(1) {
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

.open-button.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.open-button.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
    left: 8px;
}

@media (max-width: 767px) {
    .main-nav {
        width: 96%;
        margin: 0px auto;
    }
    .menu {
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        min-height: 100%;
        height: 100%;
        /*background: rgba(26, 134, 1, 0.94);*/
        margin: 0;
        /*position: fixed;*/
        /*display: none;*/
        /*opacity: 0;*/
        transform: scale(1.5);
        transition: all 0.5s ease;
    }
    .menu.open {
        display: block;
        opacity: 1;
        transform: scale(1);
        transition: all 0.5s ease;
    }
    .menu-wrapper {
        width: 100%;
        height: 100%;
        display: table;
        table-layout: fixed;
        margin-top: 0;
        background-color: rgba(255,255,255,0);
        border: 0px solid #1a8601;
        border-radius: 0px;
    }
    .menu ul {
        display: table-cell;
        vertical-align: middle;
        margin: 0;
        padding: 0;
    }
    .menu ul li {
        display: block;
        width: 160px;
        margin-right: 0;
        margin: 20px auto;
    }    
    /*nav ul li a {
        display: inline-block;
        height: 60px;
        line-height: 60px;
        font-size: 26px;
        color: #fff;        
    }*/
    nav ul li a:focus,
    nav ul li a:hover {
        color: #fff;
    }    
    .hvr-underline-reveal {
        display: block;
    }
    .open-button.open span {
        background: #fff;
    }    
}


/* ================== header =====================*/
.kv {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.home-kv {
    padding-top: 110px;
    text-align: center;
}

.inner-kv {
    padding-top: 50px;
    text-align: center;
    background: #d2f1fd;
}

.home-kv-slogan h2 {
    font-size: 0;
    width: 45%;
    position: absolute;
    top: 90px;
    left: 20%;
    margin: 0;
}

.inner-kv-slogan {
    width: 65%;
    position: absolute;
    top: 50px;
    left: 0;
    font-size: 0;
}

.inner-kv-slogan h2 {
    font-size: 0;
    margin: 0;
}

.home-kv-txt p {
    font-size: 3vw;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4%;
    margin: 0;   
}

.home-kv-pic-l {
    width: 25%;
    position: absolute;
    left: 2%;
    bottom: 3%;
}

.home-kv-pic-r {
    width: 21%;
    position: absolute;
    right: 6%;
    bottom: 3%;
}

.inner-kv-pic-r1 {
    width: 25%;
    position: absolute;
    right: 3%;
    bottom: 0;
}

.inner-kv-pic-r2 {
    width: 45%;
    position: absolute;
    right: 3%;
    bottom: 0;
}

.inner-kv-evaluate-step {
    position: absolute;
    left: 4%;
    bottom: 20%;
    width: 50%;
}

.inner-kv-evaluate-step h3 {
    margin: 0;
}

.message-kv {
    background:#b6e9fb;
    padding-top: 0px;
}

@media (max-width: 1600px) {
    .message-kv {
        padding-top: 10px;
    }
}

@media (max-width: 1199px) {
    .inner-kv-evaluate-step {
        width: 55%;
    }
    .message-kv {
        padding-top: 15px;
    }
    .message-kv .inner-kv-pic img {
        width: 110%;
    }
}

@media (max-width: 1024px) {
    .message-kv {
        padding-top: 20px;
    }
}

@media (max-width: 991px) {
    .home-kv {
        padding-top: 120px; 
    }
    .home-kv-slogan h2 {
        width: 50%;
        top: 100px;
        left: 16%;
    }
    .home-kv-txt p {
        font-size: 3.2vw;
        bottom: 3%;
    }
    .inner-kv-slogan {
        width: 75%;
    }
    .evaluate-kv {
        padding-top: 100px;
    }
    .inner-kv-evaluate-step {
        width: 65%;
        bottom: 17%;
    }
    .message-kv {
        padding-top: 30px;
    }
    .message-kv .inner-kv-pic img {
        width: 120%;
    }
}

@media (max-width: 767px) {
    .home-kv {
        padding-top: 100px;
    } 
    .home-kv-slogan h2 {
        width: 55%;
        top: 76px;
        left: 12%;
    }
    .home-kv-txt p {
        font-size: 3.5vw;
        bottom: 2%;
    } 
    .inner-kv {
        padding-top: 80px;
    }    
    .inner-kv-slogan {
        width: 90%;
    }
    .evaluate-kv {
        padding-top: 120px;
    }
    .inner-kv-evaluate-step {
        width: 71%;
        left: 2%;
        bottom: 14%;
    }
    .evaluate-kv .inner-kv-pic-r1 {
        right: 0;
        bottom: 2%;
    }
    .message-kv {
        padding-top: 10px;
    }
    .message-kv .inner-kv-pic img {
        width: 160%;
    }
}

@media (max-width: 575px) {
    .home-kv-slogan h2 {
        width: 65%;
        top: 70px;
        left: 11%;
    } 
    .home-kv-txt p {
        font-size: 3.6vw;
        bottom: 2%;
    }
    .inner-kv-slogan {
        width: 96%;
    }
    .inner-kv-evaluate-step {
        width: 96%;
        left: 2%;
        bottom: 12%;
    }    
    .evaluate-kv .inner-kv-pic-r1 {
        display: none;
    }
    .message-kv {
        padding-top: 5px;
    }
    .message-kv .inner-kv-pic img {
        width: 200%;
    }
}

@media (max-width: 490px) {
    .home-kv-slogan h2 {
        width: 70%;
        top: 70px;
        left: 5%;
    } 
    .evaluate-kv {
        padding-top: 110px;
    }
    .message-kv {
        padding-top: 15px;
    }
    .message-kv .inner-kv-pic img {
        width: 220%;
    }
}


/*================== main ========================*/
.main {
    background: -moz-linear-gradient(top,#148f3f 0%,#107734 100%);
    background: -webkit-linear-gradient(top,#148f3f 0%,#107734 100%);
    background: linear-gradient(to bottom,#148f3f 0%,#107734 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#148f3f',endColorstr='#107734',GradientType=0)
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 50px;
}

.wrapper {
    background: url(../images/main-bg.png) top center repeat;
    background-size: 100%;   
}

.wrap {
    position: relative;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 3.5px 6.062px 10px 0px rgba(12, 98, 42, 0.7);
    padding: 20px;
    text-align: center;
}

.wrap01 {
    background-color: rgba(255, 255, 255, 1);
}

.wrap02 {
    border-radius: 5px 5px 25px 25px;
    background-color: rgb(255, 255, 255, 0.2);
    background: #308d50;
}

.wrap03 {
    background-color: rgb(255, 255, 255, 0.2);
    background: #308d50;
}

.wrap-plr01 {
    padding: 20px 140px;
}

.wrap-plr02 {
    padding: 20px 60px;
}

.wrap-plr03 {
    padding: 20px 100px;
}

.wrap-plr04 {
    padding: 20px 60px;
}

.wrap-plr05 {
    padding: 20px 15px;
}

.wrap-plr06 {
    padding: 20px 40px;
}

.main-title {
    position: relative;
}

.sub-con {
    font-size: 1.25rem;
    line-height: 1.5;
}

.main-title h3 {
    font-size: 2.2rem;
    font-weight: bolder;
    text-align: center;
    margin-top: 0.625rem; 
    margin-bottom: 1.4rem;
}

a.cover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}

a.anchor {
    display: block;
    height: 70px;
}

a.link {
    color: #000
}

a.link {
    display: inline;
    cursor: pointer;
    color: #0c7ab9;
    text-decoration: underline;
}

a.link:hover {
    color: #0f99e8;
}

@media (max-width: 1199px) {
    .wrap-plr03 {
        padding: 20px 80px;
    }
    .wrap-plr06 {
        padding: 20px 30px;
    }    
}

@media (max-width: 991px) {
    .wrap-plr01 {
        padding: 20px 70px;
    }
    .wrap-plr03 {
        padding: 20px 60px;
    }
    .wrap-plr04 {
        padding: 20px 30px;
    }
    .main-title h3 {
        font-size: 1.9rem;
    }
    .sub-con {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .wrap {
        width: 96%;
        margin-left: auto;
        margin-right: auto;      
    }
    .wrap-plr04 {
        width: 100%;
        padding: 15px;
    } 
    .wrap-plr06 {
        width: 100%;
    }
    a.anchor {
        height: 50px;
    }
    .sub-con {
        text-align: left;
        text-align: justify;
        text-justify: inter-ideograph;
        -ms-text-justify: inter-ideograph;
        -webkit-text-align-last: justify;
        -webkit-text-size-adjust: none;
    }
}

@media (max-width: 575px) {
    .main {
        padding-top: 20px;
    }
    .wrap {
        padding: 15px; 
    }
    .wrap-plr01 {
        padding: 20px 40px;
    }
    .wrap-plr02 {
        padding: 20px 40px;
    }
    .wrap-plr03 {
        padding: 20px 40px;
    }
    .main-title h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 425px) {
    .wrap-plr01 {
        padding: 20px 30px;
    }
    .wrap-plr02 {
        padding: 20px 30px;
    }
    .wrap-plr03 {
        padding: 20px 17px;
    }    
}

@media (max-width: 320px) {
    .wrap-plr01 .main-title,
    .wrap-plr03 .main-title {
        margin-bottom: 1rem;
    }    
}


/*================== service =====================*/
.service {
    margin-bottom: 30px;
}

.service-item {
    position: relative;
    border-radius: 25px;
    background-color: #f08587;
    box-shadow: 0px 5px 25px 0px rgba(0, 75, 27, 0.65);
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
}

.service-item.item02 {
    background-color: #2ec7e7;
}

.service-item-title h3 {
    font-size: 0;
    margin: 0;
}

.service-item-title img {
    width: 95%;
}

.service-item-txt p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #000;
    margin: 1.25rem 0 0 0;
}

@media (max-width: 1199px) {
    .service-item-txt p {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .service-item {
        padding: 20px 10px;
    }
    .service-item-title img {
        width: 90%;
    }
    .service-item-txt p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .service {
        margin-bottom: 0px;
    }
    .service-item {
        display: table;
        width: 96%;
        margin: 0 auto;
        margin-bottom: 30px;
        padding: 10px;
    }
    .service-item-title, 
    .service-item-txt {
        display: table-cell;
    }
    .service-item-title {
        width: 40%;
        text-align: right;
    }
    .service-item-txt {
        width: 60%;
        vertical-align: top;
    }
    .service-item-txt p {
        font-size: 3.6vw;
        text-align: left;
        margin-top: 25%;
        margin-left: 5%;
    }
}

@media (max-width: 575px) {
    .service-item {
         margin-bottom: 20px;
    }
}


/*================== hotnews =====================*/
.home .hotnews-list .table thead {
    display: none;
}

.hotnews-list {
    font-size: 1.25rem;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
}

.hotnews-list .table {
    margin-bottom: 1rem;
}

.hotnews-list .table thead > tr > th {
    text-align: center;
    background-color: #42ae24;
    border-bottom: 0rem solid #ddd;
    color: #fff;
    position: relative;
}

.hotnews-list .table thead > tr > th:first-child:after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 60%;
    background: #fff;
    position: absolute;
    top: 20%;
    right: 0;
}

.hotnews-list .table > tbody > tr:first-child > td {
    border-top: 0rem solid #ddd;
}

.hotnews-list .table tbody > tr > td {
    text-align: left;
    padding: 0;
}

.hotnews-list .table tbody > tr > td:first-child {
    color: #bbb;
    width: 110px;
}

.hotnews-list .hotnews-date {
    padding: 14px 7px 14px 0px;
}

.hotnews-list .hotnews-title p {
    margin: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

.hotnews-list .hotnews-title a {
    display: block;
    width: 100%;
    color: #333;
    padding: 14px 20px 14px 7px;
    position: relative;
}

.hotnews-list .hotnews-title a:after {
    display: inline-block;
    font-family: 'FontAwesome'; 
    font-weight: 500;
    font-size: 2.2rem;
    color: #42ae24;
    content: "\f105";
    position: absolute;
    top: 2px;
    right: 0px;
}

.hotnews-more {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.25rem;
    font-weight: bolder;
    color: #046a38;
}

.hotnews-more a {
    color: #046a38;
    padding: 5px;
}

.hotnews-more a i {
    font-size: 1rem;
    font-weight: 400;
    display: inline-block;
    border-radius: 5px;
    margin-left: 5px;
    border: 3px solid #046a38;
    padding: 1px 2px;
    vertical-align: text-bottom;
}

.hotnews-search {
    display: inline-block;
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 1.25rem;
    border: 1px solid #b7b6b6;
    border-radius: 25px;
    padding: 5px 15px;
}

.hotnews-search .input-label {
    display: none;
}

.hotnews-search input {
    border-width: 0px;
    font-weight: bolder;
}

.hotnews-search input:focus {
    outline: 0;
} 

.hotnews-search input::placeholder {
    font-weight: normal;
}

.hotnews-search input[type="button"] {
    width: 35px;
    height: 35px;
    background: url(../images/icon-search.png) 0 0 no-repeat #fff;
    background-size: contain;
    white-space: nowrap;
    text-indent: 100000rem;
}

@media (max-width: 991px) {
    .hotnews .main-title h3 {
        margin-bottom: 0.825rem;
    }
    .hotnews-list {
        font-size: 1.15rem;
    }
    .hotnews-list .table tbody > tr > td:first-child {
        width: 100px;
    }
    .hotnews-list .hotnews-title a:after {
        font-size: 2rem;
        top: 4px;
    }
    .hotnews-more {
        top: 26px;
    }
    .hotnews-search {
        display: block;
        position: relative;
        top: 0; 
        right: 0;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
        padding: 5px 0;
    }
    .hotnews-search input[type="text"] {
        width: calc(100% - 75px);
    }
}

@media (max-width: 575px) {
    .hotnews .main-title h3 {
        padding-left: 10px;
    }
    .hotnews-list {
        font-size: 1rem;
    }
    .hotnews-list .table thead {
        display: none;
    }
    .hotnews-list .table tbody td {
        display: block;
        border-top: 0rem solid #ddd;
    }
    .hotnews-list .table > tbody > tr {
        border-top: 0.063rem solid #ddd;
    }
    .hotnews-list .table > tbody > tr:first-child {
        border-top: 0rem solid #ddd;
    }
    .hotnews-list .hotnews-title a:after {
        font-size: 1.5rem;
        top: 6px;
    }
    .hotnews-list .hotnews-date {
        padding: 10px 0px 5px 0px;
    }
    .hotnews-list .hotnews-title a {
        padding: 0px 20px 10px 0px;
    }
    .hotnews-list .hotnews-title a:after {
        top: -9px;
    }
    .hotnews-more {
        font-size: 1rem;
        top: 20px;
        right: 20px;
        background: #046a38;
        border-radius: 6px;
        color: #fff;
    }
    .hotnews-more a {
        color: #fff;
        padding: 4px 4px 4px 8px;
    }
    .hotnews-more a i {
        font-size: 0.5rem;
        border: 2px solid #046a38;
        padding: 1px 2px;
        border-radius: 3PX;
        margin-left: 0px;
    }
    .hotnews-search {
        font-size: 1.15rem;
    }
}

@media (max-width: 320px) {
    .main-title h3 {
        margin-bottom: 0.4rem; 
    }
    .hotnews-more {
        position: relative;
        top: 0; 
        right: 0;
        text-align: center;
    }
}


/*================== product =====================*/
.prod{
    position: relative;
    min-height: 375px;
}

.prod + .prod:after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 100%;
    background: #0d642b;
    position: absolute;
    top: 0;
    left: 0;
}

.product-item-title h4 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #e7e525;
}

.product-item-title{
    margin-top: 0.5rem;
}

.product-item-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-item-btn button {
    font-size: 1.15rem;
}

@media (max-width: 1199px) {
    .prod{
        min-height: 320px;
    }
    .product-item-title h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .prod{
        min-height: 260px;
    }
    .product-item-title h4 {
        font-size: 1.1rem;
    }
    .product-item-btn button {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .prod{
        min-height: 0px;
    }
    .product-item-title h4 {
        font-size: 1.1rem;
    }
    .product-item-btn {
        position: relative;
        margin-bottom: 30px;
    }
}


/*================== morelinks =================*/
.morelinks-item-pic {
    margin-top: 15px;
    margin-bottom: 15px;
}

.morelinks-item-pic h4 {
    font-size: 0;
}

@media (max-width: 991px) {
    .morelinks .wrap .row{
        margin-right: 0.06rem;
        margin-left: 0.06rem;
    }
}


/*================== evaluate ==================*/
.evaluate .main-title:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.7rem;
    z-index: 1;
    border-bottom: 1px solid #c1a88b;
}

.evaluate .main-title h3 {
    display: inline-block;
    background: #fbf6e9;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.form-con {
    text-align: left;
    font-size: 1.25rem;
}

.form-con .form-group {
    margin-bottom: 1.5rem;
    position: relative; 
}

.form-con .form-group .form-control-calc {
    padding-left: 3.6rem;
}

.form-con .btn-bg {
    min-width: 180px;
}

.icon {
    display: inline-block;
    width: 22px;
    position: absolute; 
    top: 6px;
    left: 18px;
}

.icon-code01 {
    width: 30px;
    left: 15px;
}

.captcha img {
    display: inline-block;
    width: 120px;
    margin-right: 10px;
}

.captcha a {
    color: #333;
}

.captcha a span i {
    margin-right: 5px;
}

.evaluate-pic {
    width: 35%;
    position: absolute;
    bottom: 0;
    left: -16%;
}

.evaluate-pic02 {
    width: 35%;
    top: 4%;
    left: -21%;
}

.info {
    padding-top: 20px;
    font-size: 1.15rem;
    color: #fff;
}

.info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 8%;
}

.info ul li {
    position: relative;
}

.info ul li:before {
    display: inline-block;
    content: "※";
    position: absolute;
    top: 0;
    left: -16px;
}

.info ul li + li {
    margin-top: 10px;
}

    .info ul li a {
        display: inline;
        cursor: pointer;
        color: #ffff00 !important;
        text-decoration: underline !important;
    }

.info ul li a:hover {
    color: #fce020;
}

.note {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.note ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 4%;
}

.note ul li {
    position: relative;
}

.note ul.list-num li {
    counter-increment: item;
    padding-left: 12px;
    padding-top: 1px;
}

.note ul li:before {
    display: inline-block;
    content: "※";
    position: absolute;
    top: 0;
    left: -16px;
}

.note ul.list-num li:before {
    content: counter(item);
    width: 25px;
    height: 25px;
    line-height: 25px;
    display: block;
    color: #fff;
    background: #ada48d;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
}

.note ul li + li {
    margin-top: 10px;
}

.note ul li a {
    display: inline;
    cursor: pointer;
    color: #0c7ab9;
    text-decoration: underline;
}

.note ul li a:hover {
    color: #0f99e8;
}

.survey {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.survey ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 1%;
}

.survey ul li {
    position: relative;
}

.survey ul.list-num li {
    counter-increment: item;
    padding-left: 35px;
}

.survey ul li:before {
    display: inline-block;
    content: "※";
    position: absolute;
    top: 4px;
    left: -16px;
    z-index: 2;
}

.survey ul.list-num li:before {
    content: counter(item);
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    color: #fff;
    background: #ada48d;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
}

.survey ul li + li {
    margin-top: 10px;
}

.survey ul.list-txt li{
    padding-left: 0px;
}

.survey ul.list-txt li:before {
    display: none;
}

.survey ol.survey-list-num {
    list-style: none;
    padding: 0 0 0 50px;
    margin: 0;
}

.survey-num {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: absolute;
    top: 4px;
    left: -50px;
    z-index: 2;
    color: #fff;
    background: #ada48d;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
}

.survey-title {
    position: relative;
    background-color: #1abc9c;
    color: #fff;
    border-radius: 4px;    
    margin-bottom: 3px;
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
    -webkit-text-align-last: justify;
    -webkit-text-size-adjust: none;
}

.survey-title:before {
    display: block;
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #1abc9c transparent transparent;
}

.survey-title label {
    display: block;
    padding: 8px 15px;
    margin-bottom: 0;
}

.survey-item select.form-control {
    padding: 0 1.8rem 0 0.625rem;
}

.survey-item-list {
    float: left;
}

.survey-item-list + .survey-item-list {
    margin-left: 5px;
}

.my-address button {
    width: 136px;
    font-size: 1.125rem;
}

.my-address button img {
    width: 23px;
    margin-left: 6px;
    vertical-align: middle;
}

.county {
    width: 140px;
}

.area {
    width: 220px;
}

.full-address {
    width: calc(100% - 511px);
}

.select-wrap {
    position: relative;
    z-index: 1;
}

.select-wrap:after {
    display: inline-block;    
    font-family: 'FontAwesome';
    /*content: "\f078";*/
    content: "";
    position: absolute;
    top: 8px;
    right: 5px;    
    z-index: 2;
    background: #fff;
    color: #1abc9c;
}

.select-wrap select {
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    background: url(../images/icon-arrowdown.png) center right no-repeat #fff;
    background-size: 25px;
}

.select-wrap select::-ms-expand { 
  display: none; 
}

.result-box {
    background: #fff;
    padding: 20px 20px;
    margin-top: 60px;
    font-size: 1.25rem;
}

.result-box-title {
    text-align: center;
    margin-top: -38px;
    margin-bottom: 15px;
}

.result-box-title h4 {
    display: inline-block;
    width: 200px;
    margin: 0 auto;
    background: #4eb798;
    border-radius: 6px;
    font-size: 1.35rem;
    font-weight: bolder;
    color: #fff;
    padding: 10px;
}

.result-box-content .total {
    font-size: 1.375rem;
    margin-bottom: 20px;
}

.result-box-content .price {
    display: inline-block;
    font-size: 2.375rem;
    color: #e5532f;
    margin: 0 6px;
}

.plan .col-xs-6 {
    padding-left: 10px;
    padding-right: 10px;
}

.plan-item {
    margin: 0 auto;
    background-color: #79a8b2;
    color: #79a8b2;    
    width: 100%;
    padding-bottom: 100%;
    border-radius: 100%;
    position: relative;    
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 20px;
    z-index: 1;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}        
.plan-item-content {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 8%;
    top: 8%;    
}
.plan-item-pic {
    width: 40%;
    margin: 0 auto;
    padding-top: 8%;
}

.plan-item-title h5 {
    font-size: 100%;
    font-weight: bolder;
    margin-bottom: 0;
    text-decoration: underline;
}

.plan-item-txt {
    font-size: 174%;
    font-weight: bolder;
}

.plan-item-txt2 {
    font-size: 160%;
    font-weight: bolder;
}

.plan-note {
    font-size: 1rem;
    padding: 20px;
}

.plan-note h4 {
    font-size: 1.25rem;
    font-weight: bolder;
}

.plan-note h4 img {
    width: 30px;
    vertical-align: text-bottom;
    margin-right: 6px;
}

.month, .record {
    text-align: left;
    padding: 0 20px;
}

.month {
    margin-top: 1.5rem;
}

.month-form .control-label {
    text-align: left;
    font-size: 1.3rem!important;
    padding-right: 0;
}

.month-form .form-control {
    color: #1a8601;
    font-weight: bolder;
    padding-right: 38px;
    font-size: 1.3rem;
    text-align: right;
}

.month-form .item01 .form-control {
    padding-right: 58px;
}

.month-form .form-control::placeholder {
    font-weight: normal;
}

.input-box {
    position: relative;
}

.input-box-unit {
    display: inline-block;
    width: 40px;
    position: absolute;
    top: 11px;
    right: 30px;
    font-size: 1.125rem; 
    color: #666;
    text-align: right;
}

.slider-box {
    padding-right: 30px;
    padding-top: 5px;
}

.noUi-connect {
    background: #6ab15a;
}

.noUi-handle {
    border: 1px solid #ccc;
    box-shadow: inset 0 0 0px #FFF, inset 0 0px 0px #EBEBEB, 0 0px 0px 0px #BBB;
}

.noUi-handle:focus {
    outline: 0;
    border: 2px solid #1a8601;
    border-radius: 3px;
}

.noUi-handle:after, .noUi-handle:before {
    background: #ccc;
}

.noUi-target {
    background: #f0f0f0;
    border-radius: 4px;
    border: 1px solid #fff;
    box-shadow: inset 0 0px 0px #F0F0F0, 0 0px 0px 0px #BBB;
}

.range {
    margin-top: 6px;
    font-size: 0.938rem;
    color: #aaa;
}

.range .min {
    float: left;
}

.range .max {
    float: right;
}

.msg-area .row {
    border-radius: 15px;
    background-color: #dedbd9;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
    margin-right: -4px;
}

.msg-area-pic img {
    width: 95%;
}

.msg-area-txt {
    padding-left: 0;
    padding-right: 0;
}

.msg-area-txt .total {
    margin-bottom: 0;
}

.month .note {
    margin-bottom: 20px;
}

.month .note ul {
    margin: 0 0 0 15px;
}

.record-note {
    padding: 20px 0px 0px 0px;
    text-align: center;
}

.record .msg-area-txt .form-group {
    margin-bottom: 0;
}

.record .msg-area-txt .form-group label {
    margin-bottom: 5px;
}

.record-note .total {
    margin-bottom: 30px;
}

.record-note i {
    display: inline-block;
    width: 30px;
    vertical-align: baseline;
    margin-right: 10px;
    transform: translateY(-3px);
}

.record-note span {
    margin-left: 20px;
}

.result-none {
    text-align: center;
}

.result-none .result-none-pic img {
    width: 40%;
    margin-top: 1%;
    margin-bottom: 5%;
}

@media (max-width: 1199px) {
    .evaluate-pic {
        width: 41%;
        left: -20%;
    }
    .evaluate-pic02 {
        width: 40%;
        left: -25%;
        top: 4%;
    }
    .info ul {
        margin: 0 0 0 5%;
    }
    .survey-item-list {
        margin-bottom: 4px;
    }
    .survey-item-list.full-address {
        float: none;
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .survey-item-list.county, 
    .survey-item-list.area {
        width: calc((100% - 146px) / 2);
    }
    .plan .col-xs-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .plan-item-title h5 {
        font-size: 96%;
    }
    .plan-item-txt {
        font-size: 140%;
    }
    .plan-item-txt2 {
        font-size: 125%;
    }
}

@media (max-width: 991px) {
    .evaluate .container {
        width: 98%;
    }  
    .form-con {
        font-size: 1.15rem;
    }
    .form-con .btn-bg {
        font-size: 1.25rem;
    }
    .evaluate-pic {
        width: 44%;
        left: -26%;
    }
    .evaluate-pic02 {
        width: 38%;
        left: -24%;
    }
    .info {
        font-size: 1rem;
    }
    .info ul {
        margin: 0 0 0 4%;
    }
    .note {
        font-size: 1rem;
    }
    .note ul.list-num li {
        padding-left: 10px;
    }
    .note ul.list-num li:before {
        width: 23px;
        height: 23px;
        line-height: 23px;
    }
    .plan .col-xs-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .slider-box {
        padding-top: 12px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 975px) {
    .plan-item-title h5 {
        font-size: 90%;
    }
    .plan-item-txt {
        font-size: 130%;
    }
    .plan-item-txt2 {
        font-size: 120%;
    }
}

@media (max-width: 925px) {
    .plan .col-xs-6 {
        padding-left: 4px;
        padding-right: 4px;
    }
    .plan-item-txt {
        font-size: 120%;
    }
    .plan-item-txt2 {
        font-size: 105%;
    }
}

@media (max-width: 908px) {
    .evaluate-pic02 {
        width: 36%;
    }

}

@media (max-width: 875px) {
    .plan-item-pic {
        width: 38%;
    }
    .plan-item-title h5 {
        font-size: 85%;
    }
    .plan-item-txt {
        font-size: 120%;
    }
    .plan-item-txt2 {
        font-size: 110%;
    }
}

@media (max-width: 850px) {
    .plan-item-txt {
        font-size: 110%;
    }
    .plan-item-txt2 {
        font-size: 100%;
    }
}

@media (max-width: 805px) {
    .plan-item-title h5 {
        margin-top: 0.4rem;
        font-size: 80%;
    }
    .plan-item-txt {
        font-size: 105%;
    }
    .plan-item-txt2 {
        font-size: 95%;
    }
}

@media (max-width: 767px) {
    .evaluate .wrap {
        width: 100%;
    }
    .evaluate-pic {
        display: none;
    }
    .info ul {
        margin: 0 0 0 2%;
    }
    .survey {
        font-size: 1.15rem;
    }
    .survey-title:before {
        border-width: 0;
    }
    .survey ul {
        margin: 0;
    }
    .survey ul.list-num li {
        padding-left: 0;
    }    
    .survey ul.list-num li:before {
        content: counter(item);
        width: 25px;
        height: 25px;
        line-height: 25px;
        top: 7px;
        left: 5px;
    }
    .survey ol.survey-list-num {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .survey-num {
        width: 25px;
        height: 25px;
        line-height: 25px;
        top: 8px;
        left: 5px;
    }
    .survey-title label {
        padding: 8px 6px 8px 31px;
    }
    .survey-item .form-control {
        padding: .625rem 0.75rem;
    }
    .survey-item-list.my-address {
        float: none;
        display: block;
        width: 100%;
    }
    .survey-item-list.my-address button {
        width: 100%;
        text-align: center;
    }
    .survey-item-list.county, 
    .survey-item-list.area {
        width: calc((100% - 5px) / 2);
    }
    .survey-item-list.county {
        margin-left: 0;
    }
    .plan .col-xs-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .plan-item-title h5 {
        font-size: 110%;
    }
    .plan-item-txt {
        font-size: 200%;
    }
    .plan-item-txt2 {
        font-size: 180%;
    }
    .msg-area {
        text-align: center;
    }
    .record .msg-area-txt .input-group {
        display: inline-block;
        width: 100%;
    }
        .record .msg-area-txt .input-group .form-control,
        .record .msg-area-txt .input-group-append {
            display: table;
            width: 100%;
        }
    .record .msg-area-txt .input-group .form-control {
        margin-bottom: 15px;
        border-radius: .375rem;
    }
    .record .msg-area-txt .input-group-append {
        text-align: center;
    }
        .record .msg-area-txt .input-group-append .btn {
            border-radius: .25rem;
            width: 100%;
            text-align: center;
        }    
}

@media (max-width: 720px) {
    .plan-item-txt {
        font-size: 190%;
    }
    .plan-item-txt2 {
        font-size: 170%;
    }
}

@media (max-width: 695px) {
    .plan-item-txt {
        font-size: 180%;
    }
    .plan-item-txt2 {
        font-size: 160%;
    }
}

@media (max-width: 679px) {
    .plan-item-title h5 {
        font-size: 100%;
    }
    .plan-item-txt {
        font-size: 170%;
    }
    .plan-item-txt2 {
        font-size: 150%;
    }
}

@media (max-width: 649px) {
    .plan-item-txt {
        font-size: 160%;
    }
    .plan-item-txt2 {
        font-size: 150%;
    }
}

@media (max-width: 619px) {
    .plan-item-title h5 {
        font-size: 95%;
    }
    .plan-item-txt {
        font-size: 155%;
    }
    .plan-item-txt2 {
        font-size: 145%;
    }
}

@media (max-width: 605px) {
    .plan-item-txt {
        font-size: 145%;
    }
    .plan-item-txt2 {
        font-size: 135%;
    }
}

@media (max-width: 592px) {
    .record-note i {
        margin-right: 3px;
    }
    .record-note span {
        margin-left: 5px;
    }
}

@media (max-width: 575px) {
    .evaluate .main-title:after {
        bottom: 1.6rem;
    }
    .form-con {
        font-size: 1rem;
    }
    .note {
        font-size: 0.938rem;
    }
    .note ul.list-num li {
        padding-left: 7px;
    }
    .note ul.list-num li:before {
        width: 21px;
        height: 21px;
        line-height: 21px;
    }
    .survey-item-list.county, 
    .survey-item-list.area {
        float: none;
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .result-box-title h4 {
        font-size: 1.25rem;
    }
    .result-box-content .total {
        font-size: 1.25rem;
    }
    .month-form .control-label {
        font-size: 1.188rem !important;
    }
}

@media (max-width: 545px) {
    .plan-item-txt {
        font-size: 130%;
    }
    .plan-item-txt2 {
        font-size: 125%;
    }
}

@media (max-width: 515px) {
    .result-box {
        padding: 20px 15px;
    }
    .plan .col-xs-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .plan-note {
        padding: 0;
    }
    .month, .record {
        padding: 0;
    }
    .msg-area .row {
        padding: 20px 15px;
    }
}

@media (max-width: 485px) {
    .plan {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media (max-width: 460px) {
    .plan-item-title h5 {
        font-size: 88%;
    }
    .plan-item-txt {
        font-size: 120%;
    }
    .plan-item-txt2 {
        font-size: 115%;
    }
}

@media (max-width: 435px) {
    .plan-item-txt {
        font-size: 110%;
    }
    .plan-item-txt2 {
        font-size: 106%;
    }
}

@media (max-width: 415px) {
    .captcha img {
        margin-right: 5px;
    }
    .plan-item-pic {
        width: 32%;
    }
    .plan-item-title h5 {
        font-size: 85%;
        margin-top: 5px;
    }
    .plan-item-txt {
        font-size: 105%;
    }
    .plan-item-txt2 {
        font-size: 100%;
    }
    .plan-note {
        font-size: 0.938rem;
    }
    .plan-note h4 {
        font-size: 1.063rem;
    }
}

@media (max-width: 397px) {
    .captcha a span {
        font-size: 0.95rem;
    }
    .captcha a span i {
        margin-right: 2px;
    }
    .plan-item-txt {
        font-size: 102%;
    }
    .plan-item-txt2 {
        font-size: 98%;
    }
    .result-box-content .price {
        font-size: 1.9rem;
    }
}

@media (max-width: 379px) {
    .plan-item-title h5 {
        font-size: 80%;
        margin-top: 3px;
    }
    .plan-item-txt {
        font-size: 100%;
    }
    .plan-item-txt2 {
        font-size: 90%;
    }
}

@media (max-width: 375px) {
    .result-box-content .total {
        font-size: 1.2rem;
    }
    .result-box-content .price {
        margin: 0 1px;
    }
    .plan-item-title h5 {
        font-size: 75%;
    }
}

@media (max-width: 360px) {
    .captcha img {
        width: 130px;
    }
    .captcha a span {
        display: block;
        margin-top: 10px;
    }
    .captcha a span i {
        margin-right: 5px;
    }
    .result-box-content .total {
        font-size: 1.15rem;
    }
    .result-box-content .price {
        font-size: 1.6rem;
    }
    .plan-item-pic {
        width: 30%;
    }
    .month-form .form-control {
        font-size: 1.125rem;
    }
}

@media (max-width: 348px) {
    .result-box-content .price {
        margin: 0;
    }
    .plan-item-title h5 {
        font-size: 70%;
        margin-top: 2px;
    }
    .plan-item-txt {
        font-size: 85%;
    }
    .plan-item-txt2 {
        font-size: 77%;
    }
}

@media (max-width: 320px) {
    .evaluate .main-title:after {
        bottom: 0.6rem;
    }
    .result-box-content .total {
        font-size: 1.1rem;
    }
}


/*================== modal ===================*/
.modal-open{
    padding-right: 0 !important;
}

.modal-content {
    color: #333;
    font-size: 0.938rem;
    line-height: 1.4;
}

.modal-header {
    background-color: #1a8601;
    color: #fff;
    text-align: center;
}

.modal-header .close {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 0 #fff;
    opacity: 1;
    margin-top: 3px;
}

.modal-title {
    font-size: 1.25rem;
}

.modal-body h4 {
    color: #046a38;
    line-height: 1.4;
}

.modal-footer {
    border-top: 0rem solid #e5e5e5;
    padding-top: 0;
    padding-bottom: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .modal-lg {
        width: 90%;
        max-width: inherit;
    }
}

@media (max-width: 767px) {
    .modal-lg {
        width: 95.5%;
    }
}

@media (max-width: 397px) {
    .modal-lg {
        width: 94.5%;
    }    
}


/*============ Multiple select checkbox ============*/
.mutliSelect-dropdown dd,
.mutliSelect-dropdown dt {
    margin: 0px;
    padding: 0px;
}

.mutliSelect-dropdown ul {
    margin: -1px 0 0 0;
}

.mutliSelect-dropdown dd {
    position: relative;
}

.mutliSelect-dropdown a,
.mutliSelect-dropdown a:visited {
    color: #858585;
    text-decoration: none;
    outline: none;
    font-size: 1.125rem;
}

.mutliSelect-dropdown dt a.form-control {
    display: block;
    height: auto;
    min-height: 2.875rem;
    overflow: hidden;
    width: 100%;
    font-size: 1.125rem;
    font-weight: 500;
    background: url(../images/icon-arrowdown.png) center right no-repeat #fff;
    background-size: 25px;
    padding-left: 13px;
    padding-right: 28px;
}

.multiSel {
    color: #555;
    padding: 0;
    margin: 0;
}

.mutliSelect-dropdown dt a span,
.multiSel span {
    cursor: pointer;
    display: inline-block;
    padding: 0 3px 0px 0;
}

.mutliSelect-dropdown dd ul {
    background-color: #fff;
    border: 0px solid #333;
    color: #555;
    display: none;
    left: 0px;
    padding: 15px 15px;
    width: 100%;
    margin: 0 auto;
    list-style: none;
    overflow: auto;
    margin-top: 0px;
    box-shadow: inset 0 .063rem .063rem rgba(0,0,0,.075),0 0 .5rem rgba(102,175,233,.6)
}

.mutliSelect-dropdown dd ul li + li {
    margin-top: 12px; 
}

.mutliSelect-dropdown dd ul li label {
    display: block;
    font-size: 1.125rem; 
    font-weight: normal; 
    text-indent: -18px;
    margin-left: 18px;
}

.mutliSelect-dropdown dd ul li label input {
    margin-right: 6px;  
}

.mutliSelect-dropdown span.value {
    display: none;
}

.mutliSelect-dropdown dd ul li:hover {
    background-color: #eee;
}

.mutliSelect-dropdown dd ul li a {
    padding: 5px;
    display: block;
}

.mutliSelect-dropdown dd ul li a:hover {
    background-color: #fff;
}

.checkbox-lg {
    width: 20px; 
    height: 20px; 
    vertical-align: text-bottom;
}


/*================== contact ===================*/
.contact-con {
    width: 90%;
    margin: 0 auto;
    font-size: 1.25rem;
}

.contact-item {
    display: table;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 6px;
}

.contact-item-pic, .contact-item-txt {
    display: table-cell;
    padding: 15px;
    vertical-align: middle;
}

.contact-item-pic {
    width: 35%;
}

.contact-item-txt {
    width: 65%;
    background: #eee;
    border-radius: 0px 6px 6px 0px;
    text-align: left;
}

.contact-item-txt h4 {
    font-size: 1.35rem;
    font-weight: bold;
}

.contact-item-txt .txt01 {
    margin-left: 5px;
}

.contact-item-pic img {
    width: 90%;
}

.contact-item-btn {
    text-align: right;
}

@media (max-width: 991px) {
    .contact-con {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .contact-con {
        width: 100%;
    }
}

@media (max-width: 605px) {
    .contact-item {
        display: block;
        background: #fff !important;
        margin-bottom: 35px;
    }
    .contact-item.item03 {
        margin-bottom: 25px;
    }
    .contact-item-pic, .contact-item-txt {
        display: block;
        width: 100%;
        text-align: center;
        background: #fff;
        padding: 0;
    }
    .contact-item-pic img {
        width: 65%;
    }
    .contact-item-txt {
        border-radius: 0px 0px 6px 6px;
    }
    .contact-item-txt .txt01 {
        display: block;
        margin-left: 0px;
    }
    .contact-item-txt h4 {
        font-size: 1.3rem;
    }
    .contact-item-btn {
        text-align: center;
    }
}


/*================== sitemap ===================*/
.sitemap-con {
    font-size: 1.15rem;
}

.sitemap-item {
    margin-bottom: 30px;
}

.sitemap-item-title {
    padding: 10px 10px 1px 10px;
    border-radius: 6px;
}

.sitemap-item-title h4 {
    font-size: 1.25rem;
    font-weight: bolder;
    color: #fff;
}

.sitemap-item-title img {
    width: 20%;
}

.sitemap-con .row {
    display: table;
    width: 100%;
}

.sitemap-item-list ul {
    list-style: none;
    padding-left: 0;
}

.sitemap-item-list ul li {
    margin-top: 8px;
}

.sitemap-item-list ul li a {
    display: block;
    padding: 10px;
    color: #333;
    border-radius: 6px;
    background: #eee;
    border-radius: 6px;
    transition: 0.5s;
}

.sitemap-item-list ul li a:hover {
    background: #dcdcdc;
}

@media (max-width: 1199px) {
    .sitemap-item-title img {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .sitemap .wrap {
        width: 100%;
        padding: 10px 5px;
    }
    .sitemap-con {
        font-size: 1.063rem;
    }
    .sitemap-con .same-height {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sitemap-item-title h4 {
        font-size: 1.15rem;
    }
    .sitemap-item-title img {
        width: 45px;
    }
}

@media (max-width: 429px) {
    .sitemap-con .same-height {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sitemap-con {
        font-size: 1rem;
    }
}


/*================== message ===================*/
.message {
    font-size: 1.25rem;
    line-height: 1.6;
}

.message .main-title h3 {
    font-size: 1.35rem;
    text-align: left;
    margin-bottom: 0.625rem;
}

.message-txt {
    text-align: left;
    margin-bottom: 20px;
}

.message-card-item {
    border-radius: 6px;
    background: #eee;
    padding: 30px 30px 40px 30px;
    margin-bottom: 30px;    
    position: relative;
}

.message-card-item-txt {
    color: #fff;
}

.message-card-item-pic img {
    width: 90%;
}

.message-pic {
    width: 100px;
    position: absolute;
    top: -105px;
    left: 2%;
}

.inner-main-message {
    overflow:visible;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .message-pic {
        width: 90px;
        top: -95px;
        left: 3%;
    }
}

@media (max-width: 575px) {
    .message-pic {
        width: 80px;
        top: -80px;
        left: 2%;
    }
}

@media (max-width: 358px) {
    .message-card-item {
        padding: 20px 20px 30px 20px;
    }
}


/*================== error =====================*/
.error-nav .logo  {
    display: inline-block;
    width: 175px;
    line-height: 50px;
    padding-top: 6px;
}

.inner-main-error {
    overflow: visible;
    padding-top: 10px;
}

.error {
    font-size: 1.875rem;
    line-height: 1.6;
    color:#fff;
}

.error .main-title h3 {
    font-size: 1.875rem;
    text-align: left;
    margin-bottom: 0.625rem;
    margin-top: 2rem;
}

.error-txt {
    margin-bottom: 2.5rem;
}

.error-btn {
    margin-bottom: 3.5rem;
}

.error-pic {
    width: 180px;
    position: absolute;
    top: -160px;
    left: calc(50% - 90px);
}

@media (max-width: 1290px) {
    .error-pic {
        top: -145px;
    }
}

@media (max-width: 991px) {
    .error, .error .main-title h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 890px) {
    .error .main-title h3 {
        margin-top: 3.5rem;
    }
    .error-pic {
        width: 170px;
        top: -120px;
        left: calc(50% - 85px);
    }
}

@media (max-width: 767px) {
    .error-btn {
        margin-bottom: 0rem;
    }
    .error-pic {
        width: 150px;
        top: -100px;
        left: calc(50% - 75px);
    }
}

@media (max-width: 320px) {
    .error-pic {
        width: 120px;
        top: -80px;
        left: calc(50% - 60px);
    }
}


/*================== apply online =====================*/
.apply-online-nav .logo  {
    display: inline-block;
    width: 175px;
    line-height: 50px;
    padding-top: 6px;
}

.inner-main-apply-online {
    overflow: visible;
    padding-top: 10px;
}

.apply-online {
    font-size: 2rem;
    line-height: 1.6;
    color:#fff;
}

.apply-online-txt {
    margin-top: 2rem;
    margin-bottom: 5rem;
    text-align: center;
}

.apply-online-txt p {
    display: inline-block;
    margin: 0;
}

.apply-online-txt p br {
    display: none;
}

.apply-online-pic {
    width: 160px;
    position: absolute;
    top: -190px;
    left: calc(50% - 80px);
}

.slide-icons {
    display: inline-block;
    font-size: 2.4rem;
}

.slide-icons i {
    -webkit-animation: arrow-animation 1.5s infinite;
    -moz-animation: arrow-animation 1.5s infinite;
    margin-left: -3px;
}

.slide-icons i:first-child {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    margin-left: 5px;
    opacity: 0.15;
}

.slide-icons i+i {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    opacity: 0.5;
}

.slide-icons i+i+i {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    opacity: 1;
}

@-webkit-keyframes arrow-animation {
    0% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes arrow-animation {
    0% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes arrow-animation {
    0% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes arrow-animation {
    0% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/*@media (max-width: 1290px) {
    .apply-online-txt {
        margin-top: 4.5rem;
    }
    .apply-online-pic {
        top: -145px;
    }
}*/

@media (max-width: 890px) {
    /*.apply-online .main-title h3 {
        margin-top: 3.5rem;
    }
    .apply-online-txt {
        margin-top: 6.5rem;
    }
    .apply-online-pic {
        width: 170px;
        top: -120px;
        left: calc(50% - 85px);
    }*/
}

@media (max-width: 767px) {
    .apply-online-pic {
        width: 150px;
        top: -200px;
        left: calc(50% - 75px);
    }
    /*.apply-online-txt {
        margin-top: 4.5rem;
    }*/
}

@media (max-width: 600px) {
    .apply-online {
        font-size: 1.5rem;
    }    
    .apply-online-pic {
        width: 130px;
        top: -170px;
        left: calc(50% - 65px);
    }
    .slide-icons {
        font-size: 2rem;
    }
}

@media (max-width: 466px) {
    .apply-online-txt p {
        display: inline;
    }
    .apply-online-txt p br {
        display: block;
    }
}

@media (max-width: 355px) {
    .apply-online {
        font-size: 1.35rem;
    }
    .apply-online-pic {
        width: 120px;
        top: -160px;
        left: calc(50% - 60px);
    }
    
}

@media (max-width: 326px) {
    .apply-online {
        font-size: 1.25rem;
    }
    /*.apply-online-pic {
        width: 110px;
        top: -140px;
        left: calc(50% - 50px);
    }*/
}


/*================== fat footer ================*/
.fat-footer {
    background: #107734;
    text-align: left;
}

.fat-footer h3{
    display: inline-block;
    font-size: 1.15rem;
    margin: 0;
}

.fat-footer .btn {
    font-size: 1.15rem;
    padding: 8px 17px 8px 20px;
    border-width: 0rem;
    border-radius: 10px 10px 0 0;
    background: #045f33;
    color: #fff;
}

.fat-footer .btn:hover, 
.fat-footer .btn:focus, 
.fat-footer .btn.focus {
    color: #fff;
    outline: 0;
    box-shadow: inset 0 0.188rem 0.313rem rgba(0, 0, 0, 0);
}

.fat-footer .btn i {
    margin-left: 5px;
}

#fat-footer-content {
    background: #fff;
}

#fat-footer-content .container {
    padding-top: 10px;
    padding-bottom: 10px;
}

#fat-footer-content .row {
    display: table;
    width: 100%;
}

#fat-footer-content .ft {
    display: inline-block;
    float: none;
    vertical-align: top;
}

.fat-footer-item-title {
    border-bottom: 1px solid #046a38;
    color: #046a38;
}

.fat-footer-item-title h4 {
    font-weight: 600;
    text-align: left;
}

.fat-footer-item-list ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    padding-top: 5px;
}

.fat-footer-item-list li {
   padding: 5px 0;
}

.fat-footer-item-list li a {
    color: #333;
}

.fat-footer-item-list li a:hover {
    color: #1a8601;
}

@media (max-width: 575px) {
    .fat-footer h3{
        font-size: 1rem;
    }
    .fat-footer .btn {
        font-size: 1rem;
    }
}


/*================== footer ====================*/
footer {
    background: #333;
    color: #fff;
    line-height: 1.6;
}

footer p{
        margin-bottom: 0; 
}

footer a,
footer a:focus {
    color: #fff;
}

footer a:hover {
    color: #fcd520;
}

.footer-block2 {
    background: #282727;
}

.footer-content {
    padding: 10px 20px;
    font-size: smaller;
}

.footer-txt-l {
    float: left;
}

.footer-txt-r {
    float: right;
}

.footer-txt-l span {
    margin-left: 20px;
}

.company-info {
    display: inline-block;
    vertical-align: top;
}

.company-info + .company-info {
    margin-left: 30px;
}

.company-info i {
    margin-right: 2px;
}

.company-name {
    font-size: 1.05rem;
}

.social-share img {
    width: 24px;
    margin-right: 3px;
    vertical-align: middle;
}

.social-share a:hover,
.social-share a:focus {
    color: #fff;
}

.social-share-fb, 
.social-share-line {
    display: inline-block;
}

.social-share-fb {
    background: #1877f2;
    border-radius: 5px;
    padding: 3px 8px;
    margin-right: 10px;
}

.social-share-line {
    background: #00b900;
    border-radius: 5px;
    padding: 3px 8px;
}

@media (max-width: 1095px) {
    .footer-block2 .footer-txt-l,
    .footer-block2 .footer-txt-r {
        float: none;
    }
}

@media (max-width: 935px) {
    .footer-block1 .footer-txt-l,
    .footer-block1 .footer-txt-r {
        float: none;
    }

    .footer-block1 .footer-txt-l {
        margin-bottom: 10px;
    }
}

@media (max-width: 787px) {
    .footer-block2 .footer-txt-l span {
        display: block; 
        margin-left: 0;      
    }
}

@media (max-width: 767px) {
    .company-info:nth-child(1) {
        display: block;
    }
    .company-info:nth-child(2) {
        margin-left: 0;
    }
}

@media (max-width: 633px) {
    .company-info:nth-child(2) {
        display: block;
    }
    .company-info:nth-child(3) {
        margin-left: 0;
    }
}

@media (max-width: 349px) {
    footer {
        font-size: 0.8125rem;
    }
}


/*================== gotop =====================*/
.gotop {
    display: none;
    position: fixed;
    right: 2px;
    bottom: 40px;
    z-index: 99;
}

.btn-gotop {
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding-top: 8px;
    padding-right: 1px;
    border-radius: 50%;
}


/*================== loading =====================*/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #148f3f;
    width: 100%;
    height: 100%;
}

#loader .load {
    position: absolute;
    top: calc(50% - 30px);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid #128038;
    border-top: 5px solid #e7e525;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loader .logo {
    display: inline-block;
    width: 200px;
    position: absolute;
    top: calc(50% - 130px);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

#loader .txt {
    display: inline-block;
    position: absolute;
    top: calc(50% - 80px);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 0;
    color: #148f3f;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    background: #fff;
    width: 200px;
    border-radius: 30px;
}


* {
    max-height: 999999px;
}



