/*--------------copyright by vicky start-------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
html{
font-size: 10px;
line-height: 1.8;
}
body {
    line-height: 1.5;
    letter-spacing: 2px;
     font-size: 1.6rem;
    font-family: 'Noto Sans TC', 'Inter', 'Raleway', sans-serif;
    overflow-x: hidden;
    color: #595959;
    background: #fff;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td {
    vertical-align: top;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: all .3s;
    box-sizing: border-box;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #303030;
}

img {
    max-width: 100%;
    image-rendering:-moz-crisp-edges;
    image-rendering:-o-crisp-edges;
    image-rendering:-webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode:nearest-neighbor;
}
::selection {
    background: rgba(204, 204, 204, 1);
}


/************************************************************************************************************************************************
************************************************************************************************************************************************
************************************************************************************************************************************************/
/****head001 start****/
header {
    z-index: 90;
    position: relative;
}

/*mibutton*/
.mibutton {
    position: fixed;
    top: 2em;
    right: 2em;
    z-index: 50;
    cursor: pointer;
    width: 40px;
    height: 30px;
    text-align: left;
    display: none;
}

.mibutton span {
    display: block;
    text-align: center;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    transition: .3s ease all;
}

.mibutton span:nth-child(2) {
    top: 10px;
}

.mibutton span:nth-child(3) {
    top: 20px;
}

.mibutton_ani span {
    opacity: 1;
    background: #fff;
}

.mibutton_ani span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

.mibutton_ani span:nth-child(2) {
    opacity: 0;
}

.mibutton_ani span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    top: 29px;
}

/*navbar*/
.navbar {
    background: rgb(255 255 255 / .85);
    padding: 2.4rem 2em;
    text-align: left;
    border-radius: 0;
    min-height: auto;
    margin: 0;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.navtop,
.intop {
    position: fixed;
    z-index: 30;
    opacity: 1;
    pointer-events: auto;    
    transition: .5s ease-in;
}

/*ilogo*/
.ilogo {
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    text-align: left;
}

.ilogo a {
    display: inline-block;
    transition: .3s ease all;
}

.ilogo a:hover {
    opacity: .7;
}

/*ibutton*/
.ibutton {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    width: 75%;
}

.ibutton ul {}

.ibutton li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3rem;
    letter-spacing: 3px;
    text-align: left;
    position: relative;
}

.ibutton li:before {
    content: '';
    background: #000;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: .5s all;
}

.ibutton li:hover:before {
    width: 100%;
}

.ibutton a {
    position: relative;
    transition: .2s ease all;
    color: #dddcdc;
    letter-spacing: 1px;
}

p.en {
    color: #63a099;
    font-size: 16px;
    position: relative;
}

p.en:before {
    content: '';
    background: #f3fcbd;
    width: 11px;
    max-width: 100%;
    min-height: 11px;
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    z-index: -1;
    border-radius: 100%;
}

p.ch {
    color: #2e625b;
    font-size: 20px;
    position: relative;
    font-weight: 500;
}

p.ch:before {
    content: '';
    background: #f3fcbd;
    width: 37px;
    max-width: 100%;
    min-height: 37px;
    position: absolute;
    top: -.5rem;
    left: -2.3rem;
    z-index: -1;
    border-radius: 100%;
}

.ibutton a:hover {
    opacity: .8;
}
@media (max-width:1180px){
	.navbar{
		    padding: 2.4rem 1em;
	}
	.ibutton li {
    margin: 0 1.5rem;
}
}
@media (max-width:1024px) {
    .ilogo {
        width: 25%;
    }

    .ibutton {
        width: 70%;
    }
}

@media (max-width:1080px) {
    img.ft001_logo {
        max-width: 22vw;
    }

    .mibutton {
        display: block;
        top: 1.5em;
    }

    .ilogo {
        width: 100%;
        text-align: left;
        padding: .3em 2em;
    }

    .ilogo a {
        display: inline-block;
        width: 200px;
    }

    .ibutton {
        width: 100%;
        text-align: center;
        display: none;
        padding-bottom: 1em;
    }

    .ibutton li {
    display: block;
    width: 17%;
    padding: 0;
    margin: 0 auto;
}

    .ibutton li a {
        padding: 1em;
        transition: .2s ease all;
        height: auto;
    }

    .ibutton li a:hover {
        background: #4c4c4c;
    }

    p.ch {
        font-size: 16px;
    }

    .ibutton a:hover p.en,
    .ibutton a:hover p.ch {
        transform: translateY(0);
    }

    .navbar {
        position: fixed;
        opacity: 1;
        pointer-events: auto;
        background: rgb(255 255 255 / .85);
    }
}
@media (max-width:834px){
	.ibutton li {
    width: 23%;
}
}
@media (max-width:768px){
	.ibutton li {
    width: 25%;
}
}
@media (max-width:600px) {
    .ilogo a {
        width: 160px;
    }

    .mibutton {
        top: 1.3em;
    }
    .ibutton li {
    width: 34%;
}
}

@media (max-width:500px) {
    .mibutton {
        right: 1em;
    }
    .ibutton li {
    width: 38%;
}

    .ibutton a {
        font-size: 16px;
    }

    .ilogo {
        padding: .3em 1em;
    }

}

@media (max-width:450px) {
    .navbar {
        padding: 1.4rem 0;
    }
    .ibutton li {
    width: 38%;
}
}
@media (max-width:414px){
	.ibutton li {
    width: 34%;
}
}
@media (max-width:390px){
	.ibutton li {
    width: 36%;
}
}
@media (max-width:360px){
	.ibutton li {
    width: 37%;
}
}
@media (max-width:350px) {
    .mibutton {
        top: 1em;
    }
}
@media (max-width:340px){
	.ibutton li {
    width: 40%;
}
}
@media (max-width:320px){
	.ibutton li {
    width: 42%;
}
}
@media (max-width:300px){
	.ibutton li {
    width: 46%;
}
}
/****head001 end****/
/***********************/
/***a001 start***/
.a001 {
    position: relative;
    background: url(../../images/a001_bg.jpg) top center no-repeat fixed;
    background-size: cover;
    padding: 9rem 0 7em;
}

.a001:before {
    content: '';
    background: rgba(183, 177, 169);
    position: absolute;
    top: 0;
    left: 0;
    width: 37.8%;
    height: 100%;
}

/*a001_top*/
.a001_top {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #fff;
    width: 1600px;
    margin: 0 auto;
    max-width: 90%;
}

/*a01_left*/
.a01_left {
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    width: 30%;
}

.a01_left img {}

.a01_left p {
    font-size: 36px;
    font-style: italic;
}

/*a01_right*/
.a01_right {
    display: inline-block;
    text-align: right;
    width: 67%;
    vertical-align: middle;
}

.a01_right p {
    font-size: 30px;
    font-weight: 700;
    border-bottom: solid 1px #fff;
    padding-bottom: .5em;
    margin-bottom: 1.5em;
    padding-right: 2em;
}

.a01_right span {
    display: inline-block;
    font-size: 20px;
    max-width: 100%;
    text-align: left;
    padding-right: 3em;
}

b.shape {
    position: relative;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: rgba(255, 255, 255, .8);
    width: 10px;
    height: 14px;
    display: inline-block;
    margin: 0 5px;
}

/*a001_btm*/
.a001_btm {
    position: relative;
    z-index: 3;
    text-align: right;
    padding: 2em 2em 0 1em;
    overflow-x: hidden;
}

.a001_btm img {
    padding-left: 1em;
    -webkit-filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, .8));
    filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, .8));
}

@media (max-width:1400px) {
    .a001:before {
        width: 45vw;
    }

    .a01_left p {
        white-space: nowrap;
    }
}

@media (max-width:1200px) {

    .a01_left,
    .a01_right {
        width: 100%;
    }

    .a001 {
        padding: 9em 0 4em;
    }

    .a001_btm img {
        width: 24vw;
    }
}

@media (max-width:990px) {
    .a001:before {
        width: 54vw;
    }

    .a001 {
        background-attachment: inherit;
        padding: 9em 0 2em;
        background-position-x: 30%;
    }

    .a01_left img {
        width: 35vw;
    }
}

@media (max-width:768px) {
    .a001:before {
        width: 100%;
        top: inherit;
        bottom: 0;
        height: 53%;
    }

    .a001 {
        padding: 8em 0 2em;
        background-position-x: 15%;
    }

    .a01_right {
        padding-top: 3em;
    }

    .a001_btm {
        padding: 2em 2em 0 1em;
    }

    .a01_right p {
        margin-bottom: 1em;
    }
}

@media (max-width:600px) {
    .a01_left img {
        width: 45vw;
    }

    .a01_left p {
        font-size: 45px;
    }

    .a001 {
        padding: 7em 0 3em;
        background-position-x: 42%;
    }

    .a01_right p {
        font-size: 25px;
        padding-right: 0;
    }

    .a01_right span {
        font-size: 18px;
        padding-right: 0;
    }

    .a001_btm img {
        width: 28vw;
    }

    .a01_right {
        padding-top: 2em;
    }

    .a001:before {
        height: 55%;
    }

    .a001_btm {
        padding: 2em 1em 0 1em;
    }
}

@media (max-width:450px) {
    .a01_left img {
        width: 55vw;
    }

    .a001 {
        padding: 7em 0 3em;
    }

    .a01_right p {
        font-size: 24px;
        text-align: left;
    }

    .a01_right p {
        margin-bottom: .5em;
    }

    .a001_btm img {
        padding-left: .5em;
    }

    .a001:before {
        height: 100%;
        background: rgb(183 177 169 / 100%);
    }
}

@media (max-width:380px) {
    .a01_right p {
        font-size: 20px;
    }

    .a001:before {
        height: 53%;
    }

    .a01_right span {
        font-size: 16px;
    }

    .a01_left p {
        font-size: 40px;
    }

    .a001_btm img {
        padding-left: .2em;
    }
}

@media (max-width:350px) {
    .a001:before {
        height: 50%;
    }

    .a01_right {
        padding-top: 1em;
    }

    .a001 {
        padding: 6em 0 1em;
    }

    .a01_left p {
        font-size: 35px;
    }

    .ilogo a {
        width: 110px;
    }
}

@media (max-width:310px) {
    .a001_btm img {
        width: 27vw;
    }
}

/***a001 end***/
/*****************************/
/***iab1 start***/
.iab1 {
    position: relative;
}

.iab1:before {
    content: '';
    background: #aabaa7;
    width: 100%;
    min-height: 1px;
    position: absolute;
    top: 1rem;
    left: 0;
}

.iab1 .iab1_top {
    width: 1248px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 10.2rem 10.6rem 0 0;
    display: flex;
    justify-content: space-between;
}

.iab1_top .iab1_title {
    width: 17%;
}

.title_ch {
    font-size: 36px;
    color: #2e625b;
    font-weight: bold;
    position: relative;
}

.title {
    position: relative;
}

.title:before {
    content: '';
    background: url(../../images/title_icon.png) top right no-repeat;
    background-size: contain;
    width: 148px;
    max-width: 100%;
    min-height: 93px;
    position: absolute;
    top: 6px;
    right: 0;
    z-index: -1;
}

.title_en {
    font-size: 36px;
    color: #63a099;
    font-family: 'Raleway';
}

.iab1_top .iab1_txt {
    width: 45%;
}

.iab1_top .iab1_txt p {
    font-size: 16px;
    color: #565757;
    text-align: justify;
    padding-bottom: 2.3rem;
}

.iab1 .iab1_bot {
    background: url(../../images/iab1_mask.png) top center, url(../../images/iab1_bg.jpg) top center fixed;
    background-repeat: no-repeat;
    background-size: contain, cover;
    width: 100%;
    min-height: 1080px;
}

@media screen and (max-width:1260px) {
    .iab1 .iab1_top {
        padding: 10.2rem 6rem 0 2rem;
    }
}

@media screen and (max-width:1120px) {
    .iab1_top .iab1_title {
        width: 20%;
    }
}

@media screen and (max-width:991px) {
    .iab1 .iab1_top {
        padding: 10.2rem 2rem 0 2rem;
    }

    .iab1_top .iab1_title {
        width: 23%;
    }

    .iab1_top .iab1_txt {
        width: 55%;
    }
}

@media screen and (max-width:768px) {
    .iab1_top .iab1_title {
        width: 28%;
    }

    .iab1_top .iab1_txt {
        width: 60%;
    }

    .iab1 .iab1_bot {
        background-attachment: inherit;
        min-height: 430px;
    }
}

@media screen and (max-width:650px) {
    .iab1_top .iab1_title {
        width: 31%;
    }

    .iab1 .iab1_bot {
        min-height: 360px;
    }
}

@media screen and (max-width:600px) {
    .iab1 .iab1_top {
        padding: 6rem 2rem 0 2rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .iab1_top .iab1_title {
        width: 36%;
    }

    .iab1_top .iab1_txt {
        width: 100%;
        margin: 2rem 0 0;
    }
}

@media screen and (max-width:530px) {
    .iab1_top .iab1_title {
        width: 40%;
    }

    .iab1 .iab1_bot {
        min-height: 300px;
    }
}

@media screen and (max-width:470px) {
    .iab1_top .iab1_title {
        width: 47%;
    }
}

@media screen and (max-width:414px) {
    .iab1_top .iab1_title {
        width: 53%;
    }

    .iab1 .iab1_bot {
        min-height: 240px;
    }
}

@media screen and (max-width:390px) {
    .iab1_top .iab1_title {
        width: 55%;
    }
    .iab1_title:before {
    right: auto;
    left: 5rem;
}

    .iab1 .iab1_bot {
        min-height: 220px;
    }
}

@media screen and (max-width:360px) {
    .iab1_top .iab1_title {
        width: 62%;
    }

    .iab1 .iab1_bot {
        min-height: 200px;
    }
}

@media screen and (max-width:330px) {
    .iab1 .iab1_top {
        padding: 6rem 1rem 0 1rem;
    }

    .iab1_top .iab1_title {
        width: 66%;
    }

    .iab1 .iab1_bot {
        min-height: 190px;
    }
}

@media screen and (max-width:310px) {
    .iab1_top .iab1_title {
        width: 70%;
    }
}

/***iab1 end***/
/***********************/
/***f_item01 start***/
.f_item01 .title:after {
    display: none;
}

.f_item01 {
    padding-bottom: 3em;
}

.f_item01 ul {
    width: 1100px;
    margin: 0 auto;
    max-width: 90%;
    text-align: center;
    color: #000;
}

.f_item01 li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 2em 1em 2em;
    position: relative;
}

.f_item01 li:before {
    content: '';
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 190px;
}

.f_item01 li:nth-of-type(3):before {
    display: none;
}

.f_item01 li span {
    display: block;
    text-align: center;
}

.f_item01 li b {
    line-height: 1;
    font-size: 48px;
    position: relative;
    font-weight: 400;
}

.f_item01 li p {}

.f_item01 li strong {
    display: block;
    color: #8f857a;
    font-size: 20px;
    font-weight: 400;
    padding: .2em 0;
}

@media (max-width:600px) {
    .f_item01 .title {
        padding: 3em 0 2em;
    }

    .f_item01 li {
        padding: 1em .5em;
    }
}

@media (max-width:500px) {
    .f_item01 li {
        padding: 0em .5em 1em;
        width: 100%;
    }

    .f_item01 li:before {
        top: inherit;
        right: 0;
        width: 100%;
        height: 1px;
        bottom: 0;
    }

    .f_item01 .title {
        padding: 2em 0 1em;
    }

    .f_item01 {
        padding-bottom: 1em;
    }

    .f_item01 li p {
        font-size: 16px;
    }

    .f_item01 li strong {
        font-size: 18px;
    }
}

/***f_item01 end***/
/***********************/
/***d001 start***/
.d001 {
    background: #ebf1f0;
    position: relative;
    overflow: hidden;
}

.d001 .d001lt_deco {
    padding: 0;
    position: relative;
}

.d001 .d001lt_deco:before {
    content: '';
    background: url(../../images/d001_deco02.png) top right no-repeat;
    background-size: contain;
    width: 478px;
    max-width: 100%;
    min-height: 374px;
    position: absolute;
    top: 0;
    right: 0;
}

.d001 .d001lt_deco:after {
    content: '';
    background: url(../../images/d001_deco01.png) bottom left no-repeat;
    background-size: contain;
    width: 412px;
    max-width: 100%;
    min-height: 485px;
    position: absolute;
    bottom: -18rem;
    left: 0;
}

/*d001_left*/
.d001_left {
    padding: 19rem 19.4rem 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.d001_left .logo {
    display: block;
    margin-bottom: 7.6rem;
}

.d001_left h6 {
    font-size: 18px;
    color: #565757;
    text-align: left;
    line-height: 2;
    font-weight: 400;
}

/***scroll***/
.scroll {
    margin-top: 19rem;
    position: relative;
    text-align: center;
    z-index: 5;
    animation: enter 1s infinite alternate;
}

@keyframes enter {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(15px);
    }
}


/*d001_right*/
.d001_right {
    padding: 0;
}

.d001_slider {
    line-height: 0;
}

.d001_s {
    background: #4e7671;
    text-align: left;
}
.d001_s a{
    display: block;
    color: #fff;
    transition: .5s all;
}
.d001_s a:hover{
    color: #f0be5a;
}
.d001_s div {
    padding: 0;
}

.d001_s div:nth-of-type(1) {
    padding: 6rem 4rem 4rem;
}

.d001_s div p {
    font-size: 58px;
    line-height: 1;
    font-family: 'raleway';
    font-weight: 500;
}

.d001_s div span:nth-of-type(1) {
    display: block;
    text-align: left;
    font-size: 24px;
    border-bottom: solid 1px #fff;
}

.d001_s div span:nth-of-type(2) {
    display: block;
    font-size: 14px;
    text-align: right;
    font-family: 'raleway';
}

.d001_s div:nth-of-type(2) {
    background: url(../../images/d001_img.jpg) center center no-repeat;
    background-size: cover;
    min-height: 390px;
}

@media (max-width:1550px) {
    .d001 .d001lt_deco:before {
        min-height: 290px;
    }

    .d001 .d001lt_deco:after {
        bottom: -22rem;
        min-height: 400px;
    }

    .d001_left {
        padding: 9rem 19.4rem 0;
    }

    .scroll {
        margin-top: 9rem;
    }
}

@media (max-width:1350px) {

    .d001_left {
        padding: 9rem 10.4rem 0;
    }
}

@media (max-width:1260px) {
    .d001 .d001lt_deco:before {
        min-height: 200px;
    }

    .d001_s div:nth-of-type(1) {
        padding: 2rem;
    }

    .d001_s div:nth-of-type(2) {
        min-height: 345px;
    }

}

@media (max-width:1199px) {
    .d001_left {
        padding: 6rem 10.4rem 7rem;
    }

    .d001_btm {
        padding: 6em 0 3em;
    }
}

@media (max-width:1120px) {
    .d001_left {
        padding: 4rem 10.4rem 3rem;
    }
}

@media (max-width:991px) {
    .d001_left {
        padding: 15rem 10.4rem 9rem;
    }

    .d001 .d001lt_deco:before {
        min-height: 300px;
    }

    .d001 .d001lt_deco:after {
        bottom: 0rem;
        min-height: 310px;
    }
}

@media (max-width:900px) {

    .d001_s div:nth-of-type(1) {
        padding: 1.5em;
    }
}

@media (max-width:660px) {

    .d001_s div p {
        font-size: 30px;
    }

    .d001_s div:nth-of-type(2) {
        min-height: 270px;
    }
}

@media (max-width:520px) {

    .d001_btm {
        padding: 5em 0 2em;
    }

    .d001_btm b {
        padding-right: 25vw;
    }

    .d001_s div:nth-of-type(1) {
        padding: 1em;
    }

    .d001_s div:nth-of-type(2) {
        min-height: 240px;
    }
}

@media (max-width:450px) {
    .d001 .d001lt_deco:before {
        min-height: 200px;
    }

    .d001 .d001lt_deco:after {
        min-height: 250px;
    }

    .d001_left {
        padding: 12rem 2rem 9rem;
    }

    .d001_left .logo {
        width: 50%;
        margin: 0 auto 4.6rem;
    }

    .d001_s div p {
        font-size: 25px;
        line-height: 1.5;
    }

    .d001_s div:nth-of-type(2) {
        min-height: 185px;
    }

    .d001_s div span:nth-of-type(1),
    .d001_s div span:nth-of-type(2) {
        font-size: 14px;
    }
}
@media (max-width:414px){
    .scroll {
    margin-top: 4rem;
}
}
@media (max-width:360px) {
    .d001_s div p {
        font-size: 20px;
    }
}

@media (max-width:350px) {}

/***d001 end***/
/*****************************/
/***inews start***/
.inews {
    text-align: center;
    padding: 10.6rem 0;
    position: relative;
}

.inews:before {
    content: '';
    background: #aabaa7;
    width: 100%;
    min-height: 1px;
    position: absolute;
    top: 6px;
    left: 0;
}

/*inews_title*/
.inews_title {
    width: 12.5%;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.inews_list {
    width: 1248px;
    margin: 0 auto;
    max-width: 100%;
    min-height: 300px;
}

.inews_list a {
    color: #fff;
}

.more {
    width: 315px;
    max-width: 100%;
    min-height: 70px;
    background: #2e625b;
    margin: 10rem auto 0;
    text-align: center;
    padding: 1.5rem 0;
}

.more p {
    font-size: 24px;
    color: #f0be59;
}

.more a {
    display: inline-block;
    color: #000;
    position: relative;
    letter-spacing: 1px;
    padding: 0 .5em;
}

.more a:before {
    content: '';
    background: #fff;
    width: 20px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s ease all;
}

.more a:hover:before {
    width: 100%;
}

@media screen and (max-width:1500px) {
    .inews_title {
        width: 16.5%;
    }
}

@media screen and (max-width:1400px) {
    .inews_title {
        width: 20%;
    }
}

@media screen and (max-width:991px) {
    .inews_title {
        width: 30%;
    }
}

@media screen and (max-width:768px) {
    .inews_title {
        width: 33%;
    }
}

@media screen and (max-width:650px) {
    .inews_title {
        width: 38%;
    }
}

@media screen and (max-width:550px) {
    .inews_title {
        width: 45%;
    }
}

@media screen and (max-width:450px) {
    .inews {
        padding: 5.6rem 0;
    }

    .inews_title {
        width: 55%;
    }
}

@media screen and (max-width:414px) {
    .inews_title {
        width: 65%;
    }
    .inews_title:before {
    left: 11rem;
}
}
@media screen and (max-width:390px){
    .inews_title:before {
    left: 10rem;
}
}
@media screen and (max-width:360px) {

    .inews_title {
        width: 70%;
    }

}

@media screen and (max-width:320px) {
    .inews_title {
        width: 75%;
    }

    .more {
        margin: 5rem auto 0;
        max-width: 90%;
    }
}

/***inews end***/
/*****************************/
/***footer***/
footer {
    background: url(../../images/ftbg.jpg) top left;
    position: relative;
    z-index: 10;
    padding-top: 7rem;
    overflow: hidden;
}

footer:before {
    content: '';
    background: url(../../images/ft_deco01.png) top left no-repeat;
    background-size: contain;
    width: 437px;
    max-width: 100%;
    min-height: 872px;
    position: absolute;
    top: -5.5rem;
    left: 0;
    z-index: -1;
}

footer:after {
    content: '';
    background: url(../../images/ft_deco02.png) top right no-repeat;
    background-size: contain;
    width: 437px;
    max-width: 100%;
    min-height: 872px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.ft_lin1 {
    background: #4e7671;
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.ft_lin2 {
    background: #4e7671;
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer .ft_inner {
    width: 1248px;
    max-width: 100%;
    margin: 0 auto;
}

footer .title {
    width: 38%;
    padding: 3.5rem 0 2rem;
    margin-bottom: 3.6rem;
}

footer .title .title_ch {
    display: inline-block;
}

footer .title .title_en {
    display: inline-block;
}

footer .deco {}

footer .deco span {
    font-size: 15px;
    color: #888888;
    padding-right: 1.2rem;
    display: inline-block;
}

.ftwrap {
    padding: 0 4.2rem 8rem 0;
    max-width: 1248px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}


/*ftlist*/
.ftlist {
    display: inline-block;
    vertical-align: top;
}

.ftlist:nth-of-type(1) {
    width: 56%;
    padding: 0;
    vertical-align: top;
}

.ftlist:nth-of-type(2) {
    width: 34%;
    vertical-align: top;
}

.ftinfo {
    text-align: left;
}

.ftinfo h6 {
    padding-bottom: 4.3rem;
}

.ftinfo ul {
    padding-top: .5em;
}

.ftinfo ul li {
    line-height: 1.8;
}

.ftinfo ul li span {
    position: relative;
    font-size: 16px;
    color: #2e625b;
    font-family: 'Noto Sans TC';
}

.ftinfo ul li span:nth-of-type(1) {
    display: inline-block;
    width: 6%;
    vertical-align: top;
    color: #64a19b;
    text-align: center;
}

.ftinfo ul li span:nth-of-type(2) {
    display: inline-block;
    width: 90%;
}

/*ft_link*/
.ft_link {
    margin-top: 4rem;
    max-width: 80%;
    display: flex;
    justify-content: space-between;

}

.ft_link a {
    transition: .3s ease all;
    display: inline-block;
}

.ft_link a:nth-of-type(1) {
    margin-bottom: 1rem;
}

.ft_link a:hover {
    opacity: .5;
}

/*website*/
.website {
    line-height: 2;
    margin-top: 4rem;
    text-align: center;
}

.website ul {
    border-top: 1px #719181 solid;
    padding: 1rem 0;
}

.website ul:last-of-type {
    border-bottom: 1px #719181 solid;
}

.website ul li {
    display: inline-block;
}

.website a {
    color: #719181;
    display: inline-block;
    margin-right: 2.5rem;
    font-size: 16px;
}

.website a span {
    font-size: 16px;
}

.website a:hover {
    color: #a6a95f;
}


.footer_bot {
    max-width: 1248px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 4.6rem;
}

/*share*/
.share {
    color: #c1d0be;
    font-size: 16px;
    display: inline-block;
    width: 24%;
    text-align: left;
    font-family: 'raleway';
}

.share a {
    font-size: 14px;
    display: inline-block;
    margin-right: 1rem;
}

.share a:hover {
    opacity: .7;
}


/*ftrt*/
.ftrt {
    color: #a7a7a7;
    font-size: 14px;
    display: inline-block;
    top: 0;
    right: 0;
    width: 75%;
    text-align: right;
    font-family: 'Noto Sans TC';
}

.ftrt a,
.ftrt a h1 {
    color: #aabaa7;
    display: inline-block;
    font-size: 14px;
}

.ftrt a:hover,
.ftrt a h1:hover {
    color: #a6a95f;
}


#gotop {
    position: fixed;
    bottom: 30rem;
    right: 1rem;
    z-index: 50;
    cursor: pointer;
    display: none;
    transition: .2s linear;
}

#gotop:hover {
    transform: translateY(-5px);
}


#btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
    cursor: pointer;
    display: none;
}
#btn a{
    transition: .2s linear;
    margin-bottom: .5rem;
    display: block;
}
#gotop img,
#btn img {
    transition: .3s cubic-bezier(0.25, 1, 0.5, 1);
}

#gotop:hover img{
    transform: translateY(-10px);
}
#btn a:hover{
    transform:scale(.8);
}

#btn_mob{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    display: none;
}
#btn_mob a{
    width: 33.333%;
    display: inline-block;
    text-align: center;
}
#btn_mob a:nth-child(1){
    background: #d1a954;
}
#btn_mob a:nth-child(2){
    background: #639b9c;
}
#btn_mob a:nth-child(3){
    background: #81a96b;
}

@media (max-width:1180px) {
    .ftlist:nth-of-type(2) {
        width: 37%;
    }
}

@media screen and (max-width: 1160px) {
    footer .title {
        padding-left: 3rem;
    }
}
@media (max-width:1100px){
#gotop {
    bottom: 27rem;
}
	#gotop, #btn {
    width: 70px;
}
}
@media (max-width:1080px) {
    .ftlist:nth-of-type(2) {
        width: 40%;
    }
}

@media (max-width:991px) {
    footer:before {
        min-height: 650px;
        background-position: bottom left;
        top: auto;
        bottom: 0;
    }

    footer .title {
        width: 51%;
    }

    .ftwrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ftlist:nth-of-type(1) {
        width: 90%;
        margin-right: 0;
    }

    .ftlist:nth-of-type(2) {
        width: 60%;
        order: -1;
        margin-bottom: 5rem;
    }

    .footer_bot {
        padding: 0 1rem 4rem;
    }

    .website a {
        margin-right: 0.5rem;
    }

    .share {
        display: block;
        width: 70%;
        text-align: center;
        margin: 0 auto 1rem;
    }

    #gotop,
    #btn {
        width: 80px;
    }
}

@media (max-width:834px) {
    footer .title {
        width: 61%;
    }

    .ftlist:nth-of-type(2) {
        width: 70%;
    }
}

@media (max-width: 768px) {
    footer:after {
        min-height: 290px;
    }

    footer:before {
        min-height: 530px;
    }

    .ftwrap {
        padding: 5.2rem 2rem 0;
    }


    .ftlist:nth-of-type(1) {
        width: 100%;
    }

    .ftlist:nth-of-type(2) {
        width: 70%;
        margin: 0 auto;
        text-align: center;
        padding: 2rem 0;
        display: block;
    }


    .ftinfo ul {
        text-align: left;
        margin: 0 auto;
    }

    .website ul {
        text-align: center;
    }

    .website a {
        margin-right: 3rem;
    }

    .ft_link {
        text-align: center;
    }

    .website {
        text-align: left;
    }

    .footer_bot {
        padding: 3rem 1rem 4rem;
    }

    .share {
        width: 100%;
    }

    .ftrt {
        width: 100%;
        text-align: center;

    }

}

@media screen and (max-width: 576px) {
    footer:before {
        min-height: 330px;
    }

    footer:after {
        min-height: 240px;
    }

    footer .title {
        width: 88%;
    }

    .ft_link {
        max-width: 100%;
    }

    .ftlist:nth-of-type(2) {
        width: 90%;
    }
}

@media (max-width:450px) {
    footer {
        padding: 5rem 0 3rem;
    }

    .ftwrap {
        padding: 0rem 2rem 0;
    }

    footer .title {
        width: 98%;
    }

    .ft_link {
        margin-top: 2rem;
    }

    .website {
        margin-top: 2rem;
    }

    .ftlist:nth-of-type(2) {
        width: 100%;
    }
#gotop {
    bottom: 6rem;
    width: 60px;
}
#btn{
    display: none !important;
}
#btn_mob{
    display: flex;
}
}

@media (max-width: 414px) {
    footer:before {
        min-height: 200px;
    }

    footer:after {
        min-height: 150px;
    }
    footer .title {
    padding-left: 2rem;
}
footer .title:before {
   top: 4rem;
    right: auto;
    left: 8rem;
}

    .ft_link a {
        width: 40%;
        text-align: center;
    }

    .ftlist:nth-of-type(2) {
        width: 100%;
    }
    .website ul li {
    padding: 0 1rem;
}

    .website a {
        margin-right: 0;
    }
}
@media (max-width:390px){
    footer .title {
    width: 65%;
}
  footer .title:before {
    left: 7rem;
}
.ftwrap {
    padding: 0rem 1rem 0;
}
}
@media (max-width: 380px) {
    footer .title {
        width: 60%;
        padding: .2rem 0 0 2rem;
    }
}

@media (max-width:370px) {
    footer .title {
        width: 70%;
    }
}

@media (max-width:360px) {
 footer .title:before {
    top: 0rem;
}
    .ftwrap {
        padding: 0 1rem;
    }

    .ftinfo h6 {
        padding-bottom: 3.3rem;
    }
}

@media (max-width: 350px) {
    .ftwrap {
        padding: 0rem 1rem 0;
    }
}

@media (max-width:310px) {
    footer .title {
        width: 80%;
    }

    .website a {
        font-size: 14px;
    }
}

/**/
#about,
#pro {
    transform: translateY(-75px);
}

#con {
    transform: translateY(-78px);
}


@media (max-width:991px) {}

@media (max-width:768px) {
    #con {
        transform: translateY(-60px);
    }

}

@media (max-width:450px) {}




/***map***/


.map {
    position: relative;
    width: 675px;
    max-width: 100%;
    min-height: 540px;
    display: inline-block;
    vertical-align: top;
    border: 10px solid #a6a95f;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (max-width:991px) {
    .map {
        width: 100%;
    }

}

@media (max-width:450px) {
    .map {
        min-height: 400px;
    }
}

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

/***********************/
#svc2 {
    transform: translateY(-110px);
}

.space2 {
    transform: translateY(-10px);
}
@media (max-width:414px){
    #enter{
        transform: translateY(-80px);
    }
}

/***********************/
button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
    background: #cabaaa;
    border: solid 1px #303030;
    color: #303030;
    border-radius: 2px;
    font-weight: 400;
    transition: .2s linear;
    padding: 0em 1em;
    height: auto;
    line-height: 2;
    font-size: 16px;
    margin: 5px;
}

button:hover,
html input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
    background: #655749;
    color: #ffffff;
}

.table-responsive {
    border: 0;
    margin: 10px 0;
}

/***news*************************************************************************************************/
.news {
    width: 1200px;
    margin: 0 auto;
    max-width: 90%;
    padding: 6em 0 3em;
    color: #000;
    font-size: 16px;
}

.newslist {
    min-height: 300px;
    text-align: center;
}

.newslist table .h1,
.newslist table .h2,
.newslist table .h3,
.newslist table .h4,
.newslist table .h5,
.newslist table .h6,
.newslist table h1,
.newslist table h2,
.newslist table h3,
.newslist table h4,
.newslist table h5,
.newslist table h6 {
    line-height: normal;
}

/***newslist_rwd***/
.newslist_rwd {
    padding-bottom: 1em;
    text-align: center;
    padding: 0em 1em 1em;
}

.newslist_rwd a {
    position: relative;
    transition: .3s ease all;
    line-height: 1.5;
    color: #000;
    text-align: center;
}

/*npic*/
.npic {
    position: relative;
    width: 250px;
    min-height: 250px;
    transition: .3s ease all;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    clip-path: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
}

.npicimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
}

.newslist_rwd a:hover .npic {
    transform: translateY(-5px);
}

/*ntitle*/
.ntitle {
    text-align: left;
    position: relative;
    margin: 1em 0 .5em 0;
    width: 100%;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}

.inews .ntitle p {
    color: #565757;
}

.ntitle p {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #000;
    font-size: 18px;
    margin: 0em 0 0em;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.3;
}

.ntitle p a {
    display: inline-block;
}

.ntitle p a:nth-of-type(1) {
    display: block;
    overflow: hidden;
}

.ntitle span {
    text-align: left;
    padding: 0 3px;
    font-size: 16px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: .2s ease all;
}

.ntitle b {
    color: #adadad;
    font-weight: 500;
    font-size: 12px;
    padding: 0;
}

.newslist_rwd a:hover .ntitle span {
    color: #d0771c;
}
.tableimg iframe {
    width: 60%;
    min-height: 500px;
}
/*page_num*/
.page_num {
    padding: 1em 0;
}

.page_num a {
    display: inline-block;
}

.inews .page_num {
    display: none;
}

@media(max-width:1080px) {
   .tableimg iframe {
    width: 80%;
}
    .npic {
        min-height: 250px;
        width: 250px;
    }
}

@media(max-width:600px) {
    .npic {
        min-height: 200px;
        width: 200px;
    }

    .newslist_rwd {
        text-align: left;
        padding: 0em .5em 1em;
    }

    .news {
        padding: 3em 0 1em;
    }
	.tableimg iframe {
    width: 95%;
    min-height: 400px;
}
}

@media(max-width:500px) {
    .npic {
        min-height: 160px;
        width: 160px;
    }

    .ntitle p {
        font-size: 16px;
    }

    .ntitle {
        margin: .2em 0;
    }

    .news {
        padding: 2em 0 1em;
    }
}
@media (max-width:414px){
    .newslist_rwd {
        width: 49%;
    }
	.tableimg iframe {
    width: 100%;
    min-height: 280px;
}
}
@media(max-width:380px) {
    .npic {
        min-height: 140px;
        width: 140px;
    }
	.tableimg iframe {
    min-height: 260px;
}
}

@media(max-width:350px) {
    .npic {
        min-height: 120px;
        width: 120px;
    }
}

/***inbanner***/
.inbanner {
  position: relative;
  background: url(../../images/in_deco03.png) top center no-repeat, #fff;
  width: 100%;

}
.inbanner:before{
	content: '';
	background: url(../../images/in_deco01.png) top left no-repeat;
	background-size: contain;
	width: 342px;
	max-width: 100%;
	min-height: 867px;
	position: absolute;
	top: 0;
	left: 0;
}

.inbanner:after{
	content: '';
	background: url(../../images/in_deco02.png) top right no-repeat;
	background-size: contain;
	width: 348px;
	max-width: 100%;
	min-height: 609px;
	position: absolute;
	top: 29rem;
	right: 0;
}
.inner{
	padding-top: 20rem;
	    position: relative;
    z-index: 1;
}
.intitle{
	width: 1248px;
	max-width: 100%;
	margin: 0 auto 9.4rem;	
	position: relative;
}
.intitle:before{
	content: '';
	background: url(../../images/title_icon.png) top left no-repeat;
	background-size: contain;
	width: 148px;
	max-width: 100%;
	min-height: 93px;
	position: absolute;
	top: 0;
	left: 5rem;
	z-index: 0;
}

@media screen and (max-width:1240px){
	
.inbanner:before {
    min-height: 780px;
}
.inbanner:after {
    min-height: 470px;
}
.inner {
    padding: 20rem 0 0 0;
}
}
@media screen and (max-width:1080px){
	.inner {
    padding: 17rem 0 0 0;
}
}
@media screen and (max-width:991px){
	.inbanner:before {
    min-height: 600px;
}
.inbanner:after {
    min-height: 300px;
    top: 48rem;
}
.inner {
    padding: 15rem 0 0 0;
}
.intitle {
    margin: 0 auto 12.4rem;
}
}
@media screen and (max-width:650px){
	.inbanner {
    background-position: top 1rem center;
}
.inbanner:before {
    min-height: 530px;
}
}
@media screen and (max-width:576px){
	.inner {
    padding: 13rem 0 0 0;
}
.intitle {
    margin: 0 auto 15.4rem;
}
}
@media screen and (max-width:450px){
	.inbanner {
    background-position: top 20rem center;
    background-size: contain;
}
.inbanner:before {
    min-height: 420px;
}
.inbanner:after {
    min-height: 250px;
    top: 35rem;
}
.intitle {
    margin: 0 auto 9.4rem;
        padding: 0 0 0 2rem;
}
}
@media screen and (max-width:414px){
	.intitle {
    margin: 0 auto 7.4rem;
}
.intitle:before {
    left: 7rem;
        top: .5rem;
}
}
@media screen and (max-width:390px){}
@media screen and (max-width:360px){}
@media screen and (max-width:350px){
	.inner {
    padding: 10rem 0 0 0;
}
.intitle {
    margin: 0 auto 8.4rem;
}
}
@media screen and (max-width:450px){}
@media screen and (max-width:414px){}
@media screen and (max-width:390px){}
@media screen and (max-width:384px){}
@media screen and (max-width:360px){}
@media screen and (max-width:340px){}
@media screen and (max-width:320px){}
/***service*************************************************************************************************/

/*service1*/
.service1{}
.service1 .svc11{
	width: 612px;
	max-width: 100%;
	margin: 0 auto 8rem;
}

.service1 .svc11 ul{}
.service1 .svc11 ul li{
	display: inline-block;
	width: 49%;
	text-align: center;
}
.service1 .svc11 img{
	padding-bottom: 4rem;
}
.service1 .svc11 p{
	font-size: 24px;
	color: #63a099;
}
.service1 .svc11 li:nth-of-type(2) p{
	color: #76a261;
}


@media (max-width:450px){
	.service1 .svc11 img {
    padding-bottom: 2rem;
}
}
@media (max-width:414px){
	.service1 .svc11 {
    margin: 0 auto 7rem;
}
}
@media (max-width:350px){
	.service1 .svc11 img {
    padding-bottom: 1rem;
}
	.service1 .svc11 p {
    font-size: 20px;
}
}

@media (max-width:330px){
	.service1 .svc11 {
    text-align: center;
}
	.service1 .svc11 ul li {
    width: 46%;
}
}
@media (max-width:320px){
	.service1 .svc11 p {
    font-size: 17px;
}
}


/*svc12*/
.service1 .svc12{
    width: 550px;
    max-width: 100%;
    margin: 0 auto 12rem;
}
.svc12 .svc12_title{
    font-size: 24px;
    padding-bottom: 2rem;
    font-weight: bold;
}
.svc12 .svc12_inner{}
.svc12 .svc12_inner ul{}
.svc12 .svc12_inner ul li{
    display: inline-block;
    font-size: 18px;
    width: 45%;
    padding-bottom: 1rem;
}

@media screen and (max-width:600px){
    .service1 .svc12 {
    padding: 0 2rem;
    margin: 0 auto 5rem;
}
}
@media screen and (max-width:490px){
    .svc12 .svc12_inner ul li {
    width: 49%;
}
}
@media screen and (max-width:440px){
    .svc12 .svc12_inner ul li {
    width: 100%;
}
}
@media screen and (max-width:330px){
    .svc12 .svc12_title {
    font-size: 20px;
}
}

/*service2*/
.service2{
	width: 1248px;
	max-width: 100%;
	margin: 8rem auto 5rem;
	display: flex;
	justify-content: space-between;
}
.service2 .svc2_lt{
	width: 54%;
}

.service2 .svc2_rt{
	width: 41%;
	padding-top: 4.9rem;
}

.svc2_rt .svc2_title{
	position: relative;
	margin-bottom: 6rem;
}
.svc2_rt .svc2_title:before{
	content: '';
	background: url(../../images/title_icon.png) top left no-repeat;
	background-size: contain;
	width: 148px;
	max-width: 100%;
	min-height: 93px;
	position: absolute;
	bottom: 3rem;
	left: 4rem;
}
.svc2_title .title_en{
	position: relative;
	padding-bottom: 2rem;
}
.svc2_title .title_en:before{
	content: '';
	background: #2e625b;
	width: 30%;
	min-height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.svc21{
	width: 506px;
	max-width: 100%;
	display: flex;
	    justify-content: space-between;
	    align-items: center;
	    margin-bottom: 4.3rem;
}
.svc21 .svc21_lt{
	width: 58%;
}
.svc21 .svc21_lt h3{
	color: #f7e799;
	font-size: 24px;
	background: #2e625b;
	text-align: center;
	padding: 1.2rem 0;
	border-radius: 50px;
	margin-bottom: 1.7rem;
}
.svc21 .svc21_lt h2{
	font-size: 36px;
	color: #2e625b;
	font-weight: bold;
	text-align: center;
}
.svc21 .svc21_rt{}

.svc2_rt .svc2_bot{

}
.svc2_rt .svc2_bot p{
	font-size: 24px;
	color: #63a099;
	display: inline-block;
}
.svc2_rt .svc2_bot p:nth-child(1){
border-right: 1px #63a099 solid;
padding-right: 1rem;
}
.svc2_rt .svc2_bot p:nth-child(2){
padding-left: 1rem;
}
@media (max-width:1240px){
	.service2{
		padding: 0 2rem;
	}
	.service2 .svc2_rt {
    width: 43%;
}
}
@media (max-width:1180px){
	.service2 .svc2_rt {
    width: 45%;
}
}
@media (max-width:1130px){
	.svc2_rt .svc2_bot {
    text-align: center;
}
.svc2_rt .svc2_bot p{
	display: block;
}
.svc2_rt .svc2_bot p:nth-child(1){
border-right: none;
padding-right: 0;
}
.svc2_rt .svc2_bot p:nth-child(2){
padding-left: 0;
}
}
@media (max-width:991px){
	.service2 {
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.service2 .svc2_lt {
    width: 85%;
    text-align: center;
}
.service2 .svc2_rt {
    width: 60%;
    order: -1;
    padding: 0;
    margin-bottom: 3rem;
}
.svc2_rt .svc2_bot p{
	display: inline-block;
}
.svc2_rt .svc2_bot p:nth-child(1){
border-right: 1px #63a099 solid;
padding-right: 1rem;
}
.svc2_rt .svc2_bot p:nth-child(2){
padding-left: 1rem;
}
}
@media (max-width:834px){
.service2 .svc2_lt {
    width: 100%;
}
	.service2 .svc2_rt {
    width: 85%;
}
}
@media (max-width:650px){
	.service2 .svc2_rt {
    width: 100%;
}
}
@media (max-width:450px){
	.svc21 .svc21_lt h3 {
    font-size: 20px;
}
.svc21 .svc21_lt h2 {
    font-size: 25px;
    text-align: left;
}
.svc2_rt .svc2_bot p {
    font-size: 17px;
}
}
@media (max-width:414px){
	.service2 {
    margin: 0 auto 4rem;
}
	.svc21 {
    justify-content: center;
    flex-wrap: wrap;
        margin-bottom: 2rem;
}
.svc21 .svc21_lt {
    width: 90%;
    margin-bottom: 3rem;
}
.svc21 .svc21_lt h3 {
    font-size: 24px;
}
.svc21 .svc21_lt h2 {
    font-size: 36px;
    text-align: center;
}
.svc2_rt .svc2_title:before {
    left: 5rem;
}
}

@media (max-width:390px){
	.svc2_rt .svc2_bot p{
	display: block;
}
.svc2_rt .svc2_bot p:nth-child(1){
border-right: none;
padding-right: 0;
}
.svc2_rt .svc2_bot p:nth-child(2){
padding-left: 0;
}
}
@media (max-width:384px){}
@media (max-width:360px){
	.svc21 .svc21_lt {
    width: 100%;
}
}
@media (max-width:330px){
	.service2 {
    padding: 0 1rem;
}
	.svc2_title .title_en {
    line-height: 1.2;
}
	.svc2_rt .svc2_title:before {
    bottom: 7rem;
    left: 5rem;
}
}
@media (max-width:300px){
	.svc21 .svc21_lt h3 {
    font-size: 20px;
}
.svc21 .svc21_lt h2 {
    font-size: 30px;
}
}

/*service3*/
.service3{
	background: url(../../images/svc3_bg.jpg) top left;
	width: 100%;
	min-height: 900px;
	padding: 5.9rem 0 5rem;
}

.service3 .svc3{
	width: 1036px;
	max-width: 100%;
	margin: 0 auto;
}

.svc3 .svc3_title{
	width: 19%;
	margin: 0 auto;
	text-align: center;
	padding: 5.6rem 0 0 0;
	position: relative;
	z-index: 0;

}
.svc3 .svc3_title:before{
	content: '';
	background: url(../../images/svc3_deco01.png) top left no-repeat;
	background-size: contain;
	width: 93px;
	max-width: 100%;
	min-height: 92px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index:-1;
}
.svc3 .svc3_title h3{
	font-size: 30px;
	color: #2e625b;
	font-weight: bold;
	padding-bottom: 1.3rem;
	position: relative;
}
.svc3 .svc3_title h3:before{
	content: '';
	background: #2e625b;
	width: 80%;
	min-height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.svc3 .svc3_title h4{
	font-size: 20px;
	color: #63a099;
	padding-top: 1.4rem;
	font-family: 'Raleway';
}


/*svc31*/
.svc3 .svc31{
	width: 1036px;
	max-width: 100%;
	margin: 8.2rem auto 7rem;
	display: flex;
	    justify-content: space-between;
}
.svc31 .svc31_inner{
	position: relative;
	width: 20%;
	border: 1px #f0be59 solid;
	padding: 5rem;
	border-radius: 100px;
}
.svc31 .svc31_inner h5{
	font-size: 20px;
	color: #565757;
	text-align: center;
}
.svc31 .svc31_inner number{
	position: absolute;
	width: 76px;
	max-width: 100%;
	min-height: 76px;
	color: #fff;
	background: #2e625b;
	top: -4rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-size: 33px;
	font-family: 'Inter';
	border-radius: 100%;
	    padding: 1.5rem;
	    text-align: center;
}


/*svc32*/
.svc3 .svc32{
	width: 824px;
	max-width: 100%;
	margin: 0 auto;
	background: #fff;
	border-radius: 100px;
	padding: 2.5rem 10.6rem;
	text-align: center;
	-webkit-filter: drop-shadow(2px 2px 7px rgba(175, 195,149, 0.32));
filter: drop-shadow(2px 2px 7px rgba(175, 195,149, 0.32));
}
.svc32 .svc32_title{}
.svc32 .svc32_title h3{
	font-size: 30px;
	color: #2e625b;
	font-weight: bold;
	padding: 1rem 0 1.5rem;
	position: relative;
	letter-spacing: 1px;
}
.svc32 .svc32_title h3:before{
	content: '';
	background: #2e625b;
	width: 24%;
	min-height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.svc32 .svc32_title h4{
	font-size: 20px;
	color: #63a099;
	font-family: 'Raleway';
	padding-top: 1.5rem;
	letter-spacing: 0px;
}

.svc32 .svc32_inner{
	margin-bottom: 3.3rem;
}
.svc32 .svc32_inner ul{
	display: flex;
	    justify-content: space-between;
}
.svc32 .svc32_inner ul li{
	width: 48%;
}
.svc32 .svc32_inner h2{
	font-size: 24px;
	color: #f7f6ef;
	background: #67a5a5;
	border-radius: 100px;
	width: 47%;
	margin: 0 auto 1.3rem;
	text-align: center;
	padding: .9rem 0;
	font-weight: 500;
	letter-spacing: 1px;
}
.svc32 .svc32_inner li:nth-of-type(2) h2{
	background: #518352;
}
.svc32 .svc32_inner p{
	font-size: 18px;
	color: #565757;
	letter-spacing: 0px;
}
.svc32 .svc32_txt{
	margin-top: 2.7rem;
}
.svc32 .svc32_txt p{
	color: #86b371;
}

@media screen and (max-width:1240px){
	.svc31 .svc31_inner {
    width: 23%;
}
}
@media screen and (max-width:991px){
	.svc3 .svc3_title {
    width: 30%;
}
}
@media screen and (max-width:820px){
	.svc31 .svc31_inner {
    padding: 5rem 2rem;
}
}
@media screen and (max-width:730px){
	.svc3 .svc32 {
    padding: 2.5rem 5.6rem;
}
}
@media screen and (max-width:630px){
.svc3 .svc3_title {
    width: 45%;
}
	.svc3 .svc32 {
    padding: 2.5rem 1rem;
}
}
@media screen and (max-width:576px){
	.svc3 .svc31 {
    margin: 8.2rem auto 5rem;
}
}
@media screen and (max-width:560px){
	.svc3 .svc31 {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.svc31 .svc31_inner {
    width: 40%;
        padding: 6rem 4rem;
    margin: 0 1rem 8rem 1rem;
}
.svc31 .svc31_inner:nth-child(3), .svc31 .svc31_inner:nth-child(4){
	margin: 0 1rem 2rem 1rem;
}
}
@media screen and (max-width:450px){
	.svc3 .svc32 {
    border-radius: 60px;
}
	.svc32 .svc32_inner {
    margin-bottom: 0;
}
	.svc32 .svc32_inner ul {
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.svc32 .svc32_inner ul li {
    width: 75%;
        margin: 2rem 0;
}
.svc32 .svc32_txt p {
    font-size: 15px;
}
}
@media screen and (max-width:414px){
	.service3 {
    padding: 4rem 0 5rem;
}
	.svc3 .svc3_title {
    width: 70%;
}
.svc3 .svc31 {
    margin: 8.2rem auto 2rem;
}
.svc31 .svc31_inner {
    padding: 5rem 3rem;
    margin: 0 1rem 6rem 1rem;
}
.svc32 .svc32_title h3:before {
    width: 40%;
}
.svc32 .svc32_inner ul li {
    width: 85%;
}
}
@media screen and (max-width:390px){
	.svc32 .svc32_title h3:before {
    width: 50%;
}
}
@media screen and (max-width:360px){
	.svc3 .svc3_title {
    width: 80%;
}
	.svc31 .svc31_inner {
    padding: 5rem 1rem;
    width: 44%;
}
.svc31 .svc31_inner number {
    max-width: 45%;
    min-height: 60px;
    padding: 1rem;
}
.svc32 .svc32_inner ul li {
    width: 100%;
}
}
@media screen and (max-width:330px){
.svc3 .svc3_title {
    width: 90%;
}
.svc32 .svc32_title h3:before {
    width: 60%;
}
.svc3 .svc31 {
    margin: 6.2rem auto 2rem;
}
	.svc31 .svc31_inner {
    width: 41%;
}
.svc31 .svc31_inner number {
    max-width: 45%;
    padding: 0.5rem;
    top: -3rem;
}
}
@media screen and (max-width:300px){
	.svc31 .svc31_inner number {
    max-width: 50%;
}
}

/*service4*/
.service4{
	padding: 6.4rem 0 4.7rem;
}
.svc4{
	width: 612px;
	max-width: 100%;
	margin: 0 auto;

}
.svc4 .svc4_title{
	width: 32%;
	margin: 0 auto 4rem;
	text-align: center;
	padding: 5.6rem 0 0 0;
	position: relative;
	z-index: 0;

}
.svc4 .svc4_title:before{
	content: '';
	background: url(../../images/svc3_deco01.png) top left no-repeat;
	background-size: contain;
	width: 93px;
	max-width: 100%;
	min-height: 92px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index:-1;
}
.svc4 .svc4_title h3{
	font-size: 30px;
	color: #2e625b;
	font-weight: bold;
	padding-bottom: 1.3rem;
	position: relative;
}
.svc4 .svc4_title h3:before{
	content: '';
	background: #2e625b;
	width: 80%;
	min-height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.svc4 .svc4_title h4{
	font-size: 20px;
	color: #63a099;
	padding-top: 1.4rem;
	font-family: 'Raleway';
}
.svc4 .svc4_title p{
	font-size: 18px;
	color: #86b371;
	font-weight: 500;
	margin-top: 1.8rem;
}

.svc4 .svc4_inner{
	width: 95%;
	margin: 0 auto;
}
.svc4 .svc4_inner ul{}
.svc4 .svc4_inner ul li{
	
	margin: 2.3rem 0;
}
.svc4_inner .svc4_wrap{	
	border: 3px #649f97 solid;
	border-radius: 100px;
	display: flex;
	    align-items: center;
	    overflow: hidden;
	    margin-bottom: 2.3rem;
}
.svc4_inner .svc4_wrap number{
background: #649f97 ;
padding:.8rem 2.6rem;
font-family: 'Inter';
}
.svc4_inner .svc4_wrap number span{
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	text-transform:uppercase;
}
.svc4_inner .svc4_wrap number p{
	display: inline-block;
	font-size: 36px;
	color: #ffffff;
	vertical-align: middle;
}
.svc4_wrap .svc4_txt{
	padding: 1.8rem 0 1.8rem 3.4rem;
	width: 60%;
}
.svc4_wrap .svc4_txt p{
	font-size: 16px;
}
.svc4_inner .svc4_deco{
	text-align: center;
}

@media screen and (max-width:560px){
	.svc4 .svc4_title {
    width: 40%;
}
}
@media screen and (max-width:450px){
	.svc4 .svc4_title {
    width: 50%;
}
}
@media screen and (max-width:414px){
.service4 {
    padding: 4rem 0 2.7rem;
}
.svc4 .svc4_inner ul li {
    margin: 1.3rem 0;
}
	.svc4_inner .svc4_wrap {
    margin-bottom: 1.3rem;
}
}
@media screen and (max-width:390px){
	.svc4_inner .svc4_wrap number {
    padding: 0 1rem 0 1.6rem;
}
.svc4_wrap .svc4_txt {
    padding: 0 0 0 2rem;
}
}
@media screen and (max-width:360px){
	.svc4 .svc4_title {
    width: 60%;
}
}
@media screen and (max-width:330px){
	.svc4_inner .svc4_wrap number p {
    font-size: 30px;
}
}
@media screen and (max-width:310px){
	.svc4 .svc4_title {
    width: 70%;
}
.svc4_inner .svc4_wrap number p {
    font-size: 27px;
}
}

/*service5*/
.service5{
	background: url(../../images/svc5_bg1.jpg) top center fixed;
	background-size: cover;
	width: 100%;
	min-height: 727px;
	padding: 21.3rem 0;
}

.service5 .svc5{
	width: 1084px;
	max-width: 100%;
	margin: 0 auto;
	background: #fff;
}

.svc5 .svc5_inner{
	width: 615px;
	max-width: 100%;
	margin: 0 auto;
	padding: 4.4rem 0 3rem;
}

.svc5_inner .svc5_txt1{
	background: #2e625b;
	padding: 1rem 4.6rem;
	border-radius: 100px;
	margin-bottom: 3rem;
}
.svc5_inner .svc5_txt1 p{
	font-size: 24px;
	color: #fff;
	text-align: center;
}
.svc5_inner .svc5_txt2{
	background: url(../../images/svc5_bg2.png) top center no-repeat;
	background-size: contain;
	width: 408px;
	max-width: 100%;
	min-height: 130px;
	margin: 0 auto;
	text-align: center;
	padding: 1.9rem 0;
}
.svc5_inner .svc5_txt2 p{
	font-size: 16px;
	color: #649f97;
}
.svc5_inner .svc5_tel{
	text-align: center;
	margin-top: 1.2rem;
}
.svc5_inner .svc5_tel i{
	display: inline-block;
	font-size: 30px;
	color: #649f97;
}
.svc5_inner .svc5_tel p{
	display: inline-block;
	font-size: 36px;
	color: #649f97;
	font-family: 'Inter';
	font-weight: 500;
}
@media screen and (max-width:1080px){
	.service5 .svc5{
		width: 95%;
	}
}
@media screen and (max-width:768px){
	.service5 {
    background-attachment: inherit;
    min-height: 610px;
    padding: 15rem 0;
}
}
@media screen and (max-width:650px){
	.service5 {
    min-height: 500px;
    padding: 10rem 0;
}
.svc5 .svc5_inner {
    padding: 4.4rem 1rem 3rem;
}
}
@media screen and (max-width:630px){
	.svc5_txt1 font{
		display: block;
	}
}
@media screen and (max-width:576px){
	.service5 {
    min-height: 450px;
    padding: 5rem 0;
}
}
@media screen and (max-width:414px){
	.service5 {
    min-height: auto;
}
	.svc5_inner .svc5_txt1 {
    padding: 1rem;
}
}
@media screen and (max-width:360px){
	.svc5_inner .svc5_txt2 {
    background-size: cover;
}
}
@media screen and (max-width:350px){
	
.svc5_inner .svc5_txt1 p {
    font-size: 20px;
}
.svc5_inner .svc5_txt2 {
    padding: 1.2rem 0;
}
.svc5_inner .svc5_tel p {
    font-size: 30px;
}
}
@media screen and (max-width:320px){
	.svc5_inner .svc5_txt2 p {
    font-size: 14px;
}
.svc5_inner .svc5_tel {
    margin-top: 0;
}
.svc5_inner .svc5_tel i {
    font-size: 23px;
}
}
@media screen and (max-width:300px){
	.svc5_inner .svc5_tel i {
    font-size: 21px;
}
.svc5_inner .svc5_tel p {
    font-size: 28px;
}
}

/***advantages*************************************************************************************************/
.advantages1{
	background: url(../../images/adv_bg.png) bottom center no-repeat;
	background-size: contain;
	width: 100%;
	padding: 0 0 66rem 0;
}
.advantages1 .adv11{
	width: 448px;
	max-width: 100%;
	margin: 0 auto;
}

.adv11 .adv11_title{
	width: 60%;
	margin: 0 auto 5.5rem;
	text-align: center;
	padding: 5.6rem 0 0 0;
	position: relative;
	z-index: 0;

}
.adv11 .adv11_title:before{
	content: '';
	background: url(../../images/svc3_deco01.png) top left no-repeat;
	background-size: contain;
	width: 93px;
	max-width: 100%;
	min-height: 92px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index:-1;
}
.adv11 .adv11_title h3{
	font-size: 30px;
	color: #2e625b;
	font-weight: bold;
	padding-bottom: 1.3rem;
	position: relative;
}
.adv11 .adv11_title h3:before{
	content: '';
	background: #2e625b;
	width: 50%;
	min-height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.adv11 .adv11_title h4{
	font-size: 20px;
	color: #63a099;
	padding-top: 1.4rem;
	font-family: 'Raleway';
	letter-spacing: 1px;
}

.adv11 .adv11_inner{
	display: flex;
	justify-content: space-between;
}
.adv11_inner .adv11_lt{
	width: 33%;
}
.adv11_inner .adv11_lt img{}
.adv11_inner .adv11_rt{
	width: 53%;
	padding-top: 1.3rem;
}
.adv11_inner .adv11_rt ul{}
.adv11_inner .adv11_rt ul li{
	
}
.adv11_inner .adv11_rt ul li:not(:last-of-type){
	margin-bottom: 13.7rem;
}
.adv11_inner .adv11_rt h2{
	font-size: 20px;
	margin-bottom: 1.6rem;
	font-weight: 500;
}
.adv11_inner .adv11_rt p{
	font-size: 16px;
	color: #565757;
	text-align: justify;
	letter-spacing: 1px;
}
@media screen and (max-width:1366px){
	.advantages1 {
    padding: 0 0 46rem 0;
}
}
@media screen and (max-width:991px){
	.advantages1 {
    padding: 0 0 36rem 0;
}
}
@media screen and (max-width:834px){
	.advantages1 {
    padding: 0 0 28rem 0;
}
}
@media screen and (max-width:1440px){}
@media screen and (max-width:650px){
	.advantages1 {
    padding: 0 0 24rem 0;
}
}
@media screen and (max-width:450px){
	.advantages1 {
    padding: 0 0 19rem 0;
}
	.adv11 .adv11_inner{
		padding: 0 2rem;
	}
	.adv11_inner .adv11_rt ul li:not(:last-of-type) {
    margin-bottom: 12.7rem;
}
}
@media screen and (max-width:414px){
	.adv11 .adv11_title {
    width: 70%;
}
	.adv11_inner .adv11_rt ul li:not(:last-of-type) {
    margin-bottom: 8.7rem;
}
}
@media screen and (max-width:390px){
.advantages1 {
    padding: 0 0 16rem 0;
}
.adv11_inner .adv11_rt {
    padding-top: 1rem;
}
.adv11_inner .adv11_rt h2 {
    margin-bottom: 1rem;
}
}
@media screen and (max-width:360px){
	.adv11 .adv11_title {
    width: 90%;
}
	.adv11_inner .adv11_rt {
    width: 60%;
}
.adv11_inner .adv11_rt ul li:not(:last-of-type) {
    margin-bottom: 6.7rem;
}
}
@media screen and (max-width:340px){
	.adv11 .adv11_inner {
    padding: 0 1rem;
}
}
@media screen and (max-width:330px){
.advantages1 {
    padding: 0 0 14rem 0;
}
.adv11 .adv11_title {
    width: 95%;
}
	.adv11_inner .adv11_rt ul li:not(:last-of-type) {
    margin-bottom: 5.7rem;
}
}
@media screen and (max-width:310px){
	.adv11_inner .adv11_lt {
    width: 35%;
}
.adv11_inner .adv11_rt {
    width: 61%;
}
.adv11_inner .adv11_rt ul li:not(:last-of-type) {
    margin-bottom: 6.2rem;
}
}
@media screen and (max-width:300px){
	.adv11_inner .adv11_rt ul li:not(:last-of-type) {
    margin-bottom: 5.5rem;
}
	.adv11_inner .adv11_rt h2 {
    font-size: 19px;
}
}

/*adv12*/
.adv12{
	width: 1400px;
	max-width: 100%;
	margin: 8.2rem auto 7rem;
}
.adv12 .adv12_title{
    width: 19%;
    margin: 0 auto;
    text-align: center;
    padding: 5.6rem 0 10rem 0;
    position: relative;
    z-index: 0;

}
.adv12 .adv12_title:before{
    content: '';
    background: url(../../images/svc3_deco01.png) top left no-repeat;
    background-size: contain;
    width: 93px;
    max-width: 100%;
    min-height: 92px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index:-1;
}
.adv12 .adv12_title h3{
    font-size: 30px;
    color: #2e625b;
    font-weight: bold;
    padding-bottom: 1.3rem;
    position: relative;
}
.adv12 .adv12_title h3:before{
    content: '';
    background: #2e625b;
    width: 80%;
    min-height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.adv12 .adv12_title h4{
    font-size: 20px;
    color: #63a099;
    padding-top: 1.4rem;
    font-family: 'Raleway';
}
.adv12 .adv12_bot{
    display: flex;
        justify-content: space-between;
}
.adv12_bot .adv12_inner{
	position: relative;
	width: 24%;
	border: 1px #f0be59 solid;
	padding: 5rem 2rem 2rem 2rem;
    border-radius: 20px;
}
.adv12_bot .adv12_inner h5{
	font-size: 17px;
	color: #565757;
	text-align: center;
    line-height: 1.5;
}
.adv12_bot .adv12_inner number{
	position: absolute;
	width: 76px;
	max-width: 100%;
	min-height: 76px;
	color: #fff;
	background: #2e625b;
	top: -4rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-size: 33px;
	font-family: 'Inter';
	border-radius: 100%;
	    padding: 1.5rem;
	    text-align: center;
}
.adv12_bot .adv12_inner a{
	color:#00F;
	transition:.5s all;
}
.adv12_bot .adv12_inner a:hover{
	color:#86b370;
}
@media screen and (max-width:1100px){
	.adv12 .adv12_title {
    width: 22%;
}
.adv12 .adv12_bot {
    flex-wrap: wrap;
        justify-content: space-around;
    padding: 0 2rem;
}
.adv12_bot .adv12_inner {
    width: 45%;
    margin-bottom: 5rem;
}
}
@media screen and (max-width:768px){
	.adv12 {
    margin: 8.2rem auto 3rem;
}
}
@media screen and (max-width:576px){
	.adv12 {
    margin: 8.2rem auto 0;
}
.adv12 .adv12_title {
    width: 40%;
}
}

@media screen and (max-width:500px){
	.adv12_bot .adv12_inner {
    width: 100%;
}
}
@media screen and (max-width:414px){
	.adv12 .adv12_title {
    width: 50%;
}

}
@media screen and (max-width:390px){
	.adv12 .adv12_title {
    padding: 5.6rem 0 8rem 0;
}
}
@media screen and (max-width:360px){
.adv12 .adv12_title {
    width: 60%;
}
.adv12_bot .adv12_inner:nth-child(4){
    margin-bottom: 1rem;
}
}