/*--------------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', 'Ubuntu', sans-serif;
    overflow-x: hidden;
    color: #595959;
    background: url(../../images/pattern.jpg);
}

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(171, 215, 215, 1);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin: 0px 0 5px 0;
    background: rgba(229, 229, 229, 1);
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: rgba(64, 157, 195, .8);
}

/************************************************************************************************************************************************
************************************************************************************************************************************************
************************************************************************************************************************************************/
/****head 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: #000;
}

.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(229 229 229 / .9);
    padding: 1.2rem 13rem 2.1rem;
    text-align: center;
    border-radius: 0;
    min-height: auto;
    margin: 0;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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: 30%;
    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: 70%;
}

.ibutton ul {}

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

.ibutton li:before {
    content: '';
    background: url(../../images/menu_deco.png);
    width: 35px;
    height: 31px;
    position: absolute;
    top: .5rem;
    left: 0;
    z-index: 1;
    transition: .5s all;
}


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

p.en {
    color: #49a9d2;
    font-size: 16px;
    position: relative;
    font-weight: 300;
    letter-spacing: 0px;
}


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


.ibutton a:hover {
    opacity: .8;
}

@media (max-width:1850px) {
    .navbar {
        padding: 1.2rem 5rem 2.1rem;
    }

    .ilogo {
        width: 20%;
    }
}

@media (max-width:1690px) {
    .navbar {
        padding: 1.2rem 2rem 2.1rem;
    }

    .ibutton {
        width: 80%;
    }

    .ibutton li {
        padding: 0 1rem 0 5.2rem;
    }
}

@media (max-width:1280px) {
    .ibutton li {
        padding: 0 1rem 0 3.5rem;
    }
}

@media (max-width:1150px) {
    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: 18%;
        margin: 0 auto;
        padding: 0 1rem 2rem 5.5rem;
    }

    .ibutton li a {
        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;
        display: block;
    }
}

@media (max-width:960px) {
    .ibutton li {
        width: 28%;
    }
}

@media (max-width:834px) {
    .ibutton li {
        width: 30%;
    }
}

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

@media (max-width:600px) {
    .ilogo a {
        width: 160px;
    }

    .mibutton {
        top: 1.3em;
    }

    .ibutton li {
        width: 40%;
    }
}

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

    .ibutton {
        padding: 2rem 0;
    }

    .ibutton li {
        width: 50%;
    }

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

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

}

@media (max-width:450px) {
    .navbar {
        padding: 1.4rem 0;
    }
}

@media (max-width:350px) {
    .ibutton li {
        width: 60%;
    }
}

@media (max-width:300px) {
    .ibutton li {
        width: 70%;
    }
}

/****head end****/
/***********************/
/***dex start***/
.dex {
    background: url(../../images/dex_bg01.png) top center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 1080px;
    position: relative;
    z-index: 0;

}

.dex:before {
    content: '';
    background: url(../../images/wordmap.png) top center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 1079px;
    position: absolute;
    top: 0;
    left: 0;
}

.dex:after {
    content: '';
    background: url(../../images/dex_deco01.png) top left no-repeat;
    background-size: cover;
    width: 1847px;
    max-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

}

.dex .dex_inner {
    width: 504px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 14.8rem;
}

.dex_inner .dex_logo {
    text-align: center;
}

.dex_inner .dex_re {
    text-align: center;
    margin-top: 8rem;
}

.dex_inner .dex_logo {}

.dex_inner .dex_txt {
    display: flex;
    flex-wrap: wrap;
}

.reveal-text,
.reveal-text::after {
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-duration: 5000ms;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
    box-shadow: 5px 8px 2px rgba(0, 0, 0, 0.7);
}

.reveal-text {
    animation-delay: 0;
    animation-duration: 5000ms;
    animation-iterations: 1;
    position: relative;
    animation-name: clip-text;
    color: #3a687c;
    white-space: nowrap;
    cursor: default;
    background: #fff;
    margin-top: 2rem;
    font-size: 18px;
    padding: 0 1rem;
}

.reveal-text::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3d95ba;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: text-revealer;
}

.reveal-text:nth-of-type(2) {
    animation-delay: 2s;
}

.reveal-text2 {
    animation-delay: 2s;
    width: 75%;
}

@keyframes clip-text {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}


@keyframes text-revealer {

    0%,
    50% {
        transform-origin: 0 50%;
    }

    60%,
    100% {
        transform-origin: 100% 50%;
    }


    60% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

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

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

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

@media screen and (max-width:768px) {
    .dex {
        min-height: 900px;
    }

    .dex:before {
        min-height: 900px;
        background-position: top 9rem left -46rem;
    }

    .dex:after {
        background-position-x: -37rem;
    }
}

@media screen and (max-width:650px) {
    .dex:before {
        background-position: top 9rem left -52rem;
    }

    .dex:after {
        background-position-x: -44rem;
    }
}

@media screen and (max-width:576px) {
    .dex:before {
        background-position: top 9rem left -56rem;
    }

    .dex:after {
        background-position-x: -47rem;
    }
}

@media screen and (max-width:500px) {
    .dex .dex_inner {
        padding: 14rem 2rem 3rem;
    }
}

@media screen and (max-width:480px) {
    .dex_txt {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .reveal-text {
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-lr;
        margin: 2rem;
        height: 25%;
        padding: 2rem 1rem 0;
    }

    .reveal-text2 {
        width: auto;
        order: -1;
        margin: 2rem 2rem 0 0;
        height: 35%;
    }
    .reveal-text3 {
        order: 1;
    }

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

@media screen and (max-width:450px) {
    .dex {
        min-height: 830px;
    }

    .dex:before {
        min-height: 100%;
        background-position: top -4rem left -71rem;
    }

    .dex:after {
        background-position-x: -69rem;
    }

    .reveal-text {
        height: 40%;
    }

    .reveal-text2 {
        height: 50%;
    }

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

@media screen and (max-width:414px) {
    .dex:before {
        background-position: top -8rem left -64.5rem;
    }

    .dex:after {
        background-position-x: -63rem;
    }

    .dex .dex_inner {
        padding: 11rem 2rem 3rem;
    }

    .dex_inner .dex_re {
        margin-top: 3rem;
    }

    .reveal-text {
        height: 40%;
    }

    .reveal-text2 {
        height: 50%;
    }
}

@media screen and (max-width:393px) {
    .dex:before {
        background-position: top -8rem left -64rem;
    }

    .dex:after {
        background-position-x: -30rem;
    }

    .dex_txt {
        width: 65%;
        margin: 0 auto;
    }

    .reveal-text {
        margin: 2rem 1rem;
    }

    .reveal-text2 {
        height: 60%;
    }

    .scroll {
        margin-top: 1rem;
    }

}

@media screen and (max-width:390px) {
    .dex:before {
        background-position: top -8rem left -64rem;
    }
}

@media screen and (max-width:330px) {
    .dex:before {
        background-position: top -9rem left -62rem;
    }
}

@media screen and (max-width:310px) {
    .dex:before {
        background-position: top -10rem left -61rem;
    }
}

@media screen and (max-width:300px) {
    .dex:before {
        background-position: top -10rem left -60rem;
    }
}

/****dex end****/
/***********************
/***iabout**********************************************************************************/

/*iabout1*/
.iabout1 {
    position: relative;
    background: url(../../images/iabt1_bg01.png) top center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 426px;
    z-index: 0;
}

.iabout1:before {
    content: '';
    background: url(../../images/iabt1_deco01.png) top left;
    background-size: cover;
    width: 1847px;
    max-width: 100%;
    min-height: 1046px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.iabout1:after {
    content: '';
    background: url(../../images/iabt1_deco02.png) top left;
    background-size: cover;
    width: 204px;
    max-width: 100%;
    min-height: 430px;
    position: absolute;
    top: -10rem;
    left: 0;
    z-index: -1;
}

.iabt11 {
    width: 1560px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 0 13.2rem;
    display: flex;
    justify-content: space-between;
}

.iabt11 .iabt11_lt {
    padding-top: 5.8rem;
    width: 35%;
}

.iabt11_lt .iabt11_title {}

.iabt11_title .iabtte_ch {
    padding-left: 5.4rem;
}

.iabt11_title .iabtte_ch h2 {
    font-size: 30px;
    color: #364349;
    font-weight: bold;
}

.iabt11_title .iabtte_en {}

.iabt11_title .iabtte_en img {
    display: inline-block;
    padding-right: 1.5rem;
}

.iabt11_title .iabtte_en h3 {
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    color: #6ac4e6;
    text-transform: uppercase;
    font-family: 'Ubuntu';
}

.iabt11_lt .iabt11_txt {
    padding-top: 7rem;
}

.iabt11_lt .iabt11_txt p {
    font-size: 16px;
    font-weight: 400;
    color: #3a687c;
    line-height: 1.8;
    text-align: justify;
    text-indent: 3.5rem;
    letter-spacing: .5px;
}

.iabt11 .iabt11_rt {}

.iabt11 .iabt11_rt img {}

@media screen and (max-width:1300px) {
    .iabt11 {
        padding: 0 2rem;
    }
}

@media screen and (max-width:1150px) {
    .iabt11 .iabt11_rt {
        width: 55%;
    }

    .iabt11 .iabt11_lt {
        width: 40%;
    }
}

@media screen and (max-width:991px) {
    .iabt11 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .iabt11 .iabt11_lt {
        width: 50%;
    }

    .iabt11 .iabt11_rt {
        width: 90%;
        padding-top: 5rem;
        text-align: center;
    }
}

@media screen and (max-width:834px) {
    .iabt11 .iabt11_lt {
        width: 60%;
    }
}

@media screen and (max-width:768px) {
    .iabtout1:before {
        background-size: contain;
        background-repeat: no-repeat;
    }

    .iabtout1:after {
        background-size: 70%;
        background-repeat: no-repeat;
        top: -5rem;
    }
}

@media screen and (max-width:680px) {
    .iabt11 .iabt11_lt {
        width: 75%;
    }
}

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

    .iabout1:after {
        background-size: 20%;
        background-repeat: no-repeat;
        top: 6rem;
        min-height: 90px;
    }

    .iabt11 .iabt11_lt {
        width: 85%;
    }

}

@media screen and (max-width:450px) {
    .iabt11 .iabt11_lt {
        width: 100%;
    }

    .iabt11 .iabt11_rt {
        width: 100%;
    }
}

@media screen and (max-width:414px) {
    .iabout1:after {
        background-position-x: -2rem;
    }

    .iabt11_title .iabtte_ch {
        padding-left: 2.4rem;
    }

    .iabt11_title .iabtte_en img {
        width: 50%;
    }

    .iabt11_lt .iabt11_txt {
        padding-top: 5rem;
    }
}

@media screen and (max-width:393px) {
    .iabt11_title .iabtte_ch {
        padding-left: 1.4rem;
    }
}

@media screen and (max-width:360px) {
    .iabt11_title .iabtte_ch {
        padding-left: 1rem;
    }
}

@media screen and (max-width:330px) {
    .iabt11_title .iabtte_ch {
        padding-left: 0;
    }
}

@media screen and (max-width:300px) {
    .iabt11_title .iabtte_en img {
        width: 60%;
    }
}

/*iab12*/
.iabt12 {
    width: 1500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 0 10rem;
}

.iabt12 .iabt12_title {
    width: 288px;
    max-width: 100%;
    margin: 0 auto 6rem;
    text-align: center;
}

.iabt12_title .iabtte_ch {}

.iabt12_title .iabtte_ch h2 {
    font-size: 30px;
    color: #364349;
    font-weight: bold;
}

.iabt12_title .iabtte_en {}

.iabt12_title .iabtte_en img {}

.iabt12_title .iabtte_en h3 {
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    color: #6ac4e6;
    text-transform: uppercase;
    font-family: 'Ubuntu';
}

.iabt12 .iabt12_inner {}

/*medal */

.iabt12_inner .medal {
    position: relative;
}

.medal .med_title {
    text-align: center;
    margin: 0 auto;
}

.container {
    width: 1450px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 3em 0;
}

.slick-slide {
    margin: 0px 15px;
}

.slick-slide img {}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-slider h3 {
    margin-top: 2rem;
    color: #2f5260;
    font-size: 18px;
    text-align: center;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    margin: 0 auto;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

@media screen and (max-width:450px) {
    .slick-initialized .slick-slide {
        text-align: center;
    }
}

@media screen and (max-width:414px) {
    .iabt12 {
        padding: 3rem 0 2rem;
    }
}

/*iabout2*/
.iabout2 {
    width: 95%;
    margin: 0 0 9rem auto;
    background: url(../../images/iabt2_bg.jpg) top right;
    min-height: 1080px;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 5% 100%, 0 93%, 0 5%);
    position: relative;
    padding: 12.3rem 0 9rem;
}

.iabout2:before {
    content: '';
    background: url(../../images/iabt2_deco01.png) top left no-repeat;
    background-size: contain;
    width: 191px;
    max-width: 100%;
    min-height: 386px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.iabout2:after {
    content: '';
    background: url(../../images/iabt2_deco02.png) bottom right no-repeat;
    background-size: contain;
    width: 203px;
    max-width: 100%;
    min-height: 216px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.iabout2 .iabt2 {
    width: 1344px;
    max-width: 100%;
    margin: 0 auto;
}

.iabt2 .iabt2_title {}

.iabt2_title .iabt2_ch {
    padding-left: 5.4rem;
}

.iabt2_title .iabt2_ch h2 {
    font-size: 30px;
    color: #364349;
    font-weight: bold;
}

.iabt2_title .iabt2_en {}

.iabt2_title .iabt2_en img {
    display: inline-block;
    padding-right: 1.5rem;
}

.iabt2_title .iabt2_en h3 {
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    color: #6ac4e6;
    text-transform: uppercase;
    font-family: 'Ubuntu';
}

.iabt2 .iabt2_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.iabt2_inner .iabt2_lt {
    width: 44%;
}

.iabt2_inner .iabt2_lt img {}

.iabt2_inner .iabt2_lt img:nth-child(1) {
    padding: 2.9rem 0 2.1rem;
}

.iabt2_inner .iabt2_lt p {
    color: #2f5260;
    font-weight: 500;
    font-size: 18px;
    margin-top: .9rem;
}

.iabt2_inner .iabt2_rt {
    width: 51%;
    position: relative;
    top: -4.1rem;
}

.iabt2_inner .iabt2_rt img {}

.iabt2_inner .iabt2_rt p {
    color: #2f5260;
    font-weight: 500;
    font-size: 18px;
    margin-top: .9rem;
}

.iabt2_inner .iabt2_cen {
    position: absolute;
    bottom: -18rem;
    left: 4rem;
    right: 0;
    margin: auto;
    text-align: left;
    width: 30%;
}

.iabt2_inner .iabt2_cen img {}

.iabt2_inner .iabt2_cen p {
    color: #2f5260;
    font-weight: 500;
    font-size: 18px;
    margin-top: .9rem;
}

@media screen and (max-width:1800px) {
    .iabout2:before {
        background-size: 80%;
    }
}

@media screen and (max-width:1720px) {
    .iabout2:before {
        background-size: 60%;
    }
}

@media screen and (max-width:1650px) {
    .iabout2:before {
        background-size: 40%;
        min-height: 156px;
        top: 5rem;
    }
}

@media screen and (max-width:1420px) {
    .iabout2 .iabt2 {
        padding: 0 2rem;
    }
}

@media screen and (max-width:1230px) {
    .iabt2_inner .iabt2_cen {
        bottom: -18rem;
        width: 40%;
        left: 20rem;
    }
}

@media screen and (max-width:991px) {
    .iabt2 .iabt2_inner {
        justify-content: center;
        flex-wrap: wrap;
    }

    .iabt2 .iabt2_title {
        width: 65%;
        margin: 0 auto;
    }

    .iabt2_inner .iabt2_lt {
        width: 65%;
    }

    .iabt2_inner .iabt2_rt {
        width: 65%;
        top: 0;
        order: -1;
        margin-top: 5rem;
    }

    .iabt2_inner .iabt2_cen {
        bottom: 0;
        width: 65%;
        left: 0;
        position: relative;
        margin-top: 5rem;
    }
}

@media screen and (max-width:834px) {
    .iabout2 {
        clip-path: polygon(7% 0, 100% 0, 100% 100%, 7% 100%, 0 97%, 0 3%);
    }
}

@media screen and (max-width:768px) {
    .iabout2:after {
        background-size: 50%;
        min-height: 116px;
    }

    .iabt2 .iabt2_title {
        width: 85%;
    }

    .iabt2_inner .iabt2_lt {
        width: 85%;
    }

    .iabt2_inner .iabt2_rt {
        width: 85%;
    }

    .iabt2_inner .iabt2_cen {
        width: 85%;
    }
}

@media screen and (max-width:450px) {
    .iabout2 {
        width: 100%;
        padding: 7.3rem 0 9rem;
    }

    .iabt2 .iabt2_title {
        width: 100%;
    }

    .iabt2_inner .iabt2_lt {
        width: 100%;
    }

    .iabt2_inner .iabt2_rt {
        width: 100%;
    }

    .iabt2_inner .iabt2_cen {
        width: 100%;
    }
}

@media screen and (max-width:414px) {
    .iabout2 {
        padding: 4rem 0 6rem;
    }

    .iabout2:before {
        background-size: 11%;
        min-height: 45px;
        top: 7rem;
    }

    .iabout2:after {
        background-size: 30%;
        min-height: 76px;
    }

    .iabt2_title .iabt2_ch {
        padding-left: 2.4rem;
    }

    .iabt2_title .iabt2_en img {
        width: 50%;
    }

    .iabt2_inner .iabt2_rt {
        margin-top: 3rem;
    }

    .iabt2_inner .iabt2_cen {
        margin-top: 3rem;
    }
}

@media screen and (max-width:393px) {
    .iabt2_title .iabt2_ch {
        padding-left: 1.4rem;
    }
}

@media screen and (max-width:360px) {
    .iabt2_title .iabt2_ch {
        padding-left: 1rem;
    }
}

@media screen and (max-width:330px) {
    .iabt2_title .iabt2_ch {
        padding-left: 0;
    }
}

@media screen and (max-width:300px) {
    .iabt2_title .iabt2_en img {
        width: 60%;
    }
}


/*****************************/
/***inews start***/
.inews {
    width: 1560px;
    max-width: 100%;
    margin: 13rem auto 8rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.inews .inews_title {
    width: 24%;
    text-align: center;
}

.inews_title .inews_ch {}

.inews_title .inews_ch h2 {
    font-size: 30px;
    color: #364349;
    font-weight: bold;
}

.inews_title .inews_en {}

.inews_title .inews_en img {}

.inews_title .inews_en h3 {
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    color: #6ac4e6;
    text-transform: uppercase;
    font-family: 'Ubuntu';
}

.inews .inews_inner {
    width: 75%;
    display: flex;
    justify-content: space-between;
}

.inews_inner .newslist_rwd {
    position: relative;
    width: 49%;
    display: inline-block;
}

.newslist_rwd .ntitle,
.newslist_rwd .npic,
.newslist_rwd a,
.newslist_rwd a .ntitle,
.newslist_rwd a .npic {
    transition: .5s all;
}

.newslist_rwd:hover .ntitle,
.newslist_rwd:hover .npic,
.newslist_rwd a:hover .ntitle,
.newslist_rwd a:hover,
.newslist_rwd a:hover .npic {
    transform: translateY(-10px);
}

.newslist_rwd .ntitle {
    padding: 3.2rem 12rem 3.7rem 3.7rem;
    width: 337px;
    max-width: 100%;
    min-height: 199px;
    position: relative;

}

.newslist_rwd .ntitle:before {
    content: '';
    background: url(../../images/ntitle_bg.png) top left no-repeat;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.ntitle span {
    color: #7da5b5;
    font-size: 12px;
    font-weight: 400;
}

.ntitle h2 {
    font-size: 18px;
    color: #3a687c;
    font-weight: 500;
    padding-top: .3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ntitle h2 a:nth-child(1) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.ntitle .news_more {
    margin: 4.5rem .7rem 0;
}

.ntitle .news_more img {
    display: inline-block;
    vertical-align: middle;
}

.ntitle .news_more .news_lin {
    width: 20%;
    background: #426472;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
}

.ntitle .news_more p {
    color: #7da5b5;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
}

/*npic*/
.npic {
    position: absolute;
    width: 280px;
    min-height: 198px;
    transition: .3s ease all;
    display: inline-block;
    vertical-align: top;
    top: -5rem;
    right: 6rem;
    z-index: 1;
}

.npic:before {
    content: '';
    background: url(../../images/news_deco02.png) top center no-repeat;
    width: 40px;
    max-width: 100%;
    min-height: 54px;
    position: absolute;
    bottom: -4rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.npicimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
}

/*page_num*/
.page_num {
    padding: 1em 0;
    width: 100%;
}

.page_num a {
    display: inline-block;
}

.inews .page_num {
    display: none;
}

.ripple2 {
    margin-bottom: 5rem;
}

.ripple3 {
    width: 100%;
    text-align: center;
}

.date {
    margin-top: 3rem;
    text-align: right;
}

.back {
    margin-top: 3rem;
    text-align: right;
}

@media screen and (max-width:1500px) {
    .npic {
        top: -5rem;
        right: 4rem;
    }
}

@media screen and (max-width:1450px) {
    .inews_inner .newslist_rwd {
        width: 48%;
    }

    .npic {
        right: 0rem;
    }
}

@media screen and (max-width:1380px) {
    .inews {
        justify-content: center;
        flex-wrap: wrap;
        margin: 8rem auto 8rem;
    }

    .inews .inews_inner {
        width: 95%;
        margin-top: 10rem;
    }

    .inews_inner .newslist_rwd {
        width: 49%;
    }

    .npic {
        right: 12rem;
    }
}

@media screen and (max-width:1300px) {
    .npic {
        right: 8rem;
    }
}

@media screen and (max-width:1230px) {
    .npic {
        right: 5rem;
    }
}

@media screen and (max-width:1160px) {
    .npic {
        right: 1rem;
    }
}

@media screen and (max-width:1090px) {
    .npic {
        right: 0;
    }
}

@media screen and (max-width:1050px) {
    .inews .inews_inner {
        justify-content: center;
        flex-wrap: wrap;
        margin: 5rem auto 0;
    }

    .inews_inner .newslist_rwd {
        width: 60%;
        margin-top: 8rem;
    }

    .npic {
        right: 7rem;
    }
}

@media screen and (max-width:991px) {
    .npic {
        right: 3rem;
    }
}

@media screen and (max-width:900px) {
    .npic {
        right: -4rem;
    }
}

@media screen and (max-width:800px) {
    .npic {
        right: -8rem;
    }
}

@media screen and (max-width:720px) {
    .inews_inner .newslist_rwd {
        width: 80%;
    }

    .npic {
        right: 1rem;
    }
}

@media screen and (max-width:660px) {
    .npic {
        right: -4rem;
    }
}

@media screen and (max-width:600px) {
    .inews .inews_title {
        width: 60%;
    }

    .inews_inner .newslist_rwd {
        width: 90%;
    }

    .npic {
        right: -1rem;
    }
}

@media screen and (max-width:576px) {
    .inews_inner .newslist_rwd {
        width: 100%;
    }

    .npic {
        right: 1rem;
    }
}

@media screen and (max-width:530px) {
    .inews .inews_inner {
        margin: 0 auto;
    }

    .inews_inner .newslist_rwd {
        text-align: center;
        margin-top: 3rem;
    }

    .npic {
        right: 0;
        left: 0;
        top: 3rem;
        margin: 0 auto;
        position: relative;
    }

    .npic:before {
        display: none;
    }

    .newslist_rwd a .ntitle {
        margin: 0 auto;
        text-align: left;
        padding: 3.2rem 3.7rem 3.7rem 3.7rem;
    }
}

@media screen and (max-width:414px) {
    .inews .inews_title {
        width: 90%;
    }

    .npic {
        width: 90%;
    }
}

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

    .inews .inews_inner {
        width: 100%;
    }

    .newslist_rwd .ntitle:before {
        background-size: contain;
    }
}

@media screen and (max-width:330px) {
    .inews_inner .newslist_rwd {
        margin-top: 8rem;
    }

    .ntitle .news_more {
        margin: 2.5rem 0.7rem 0;
    }
}

@media screen and (max-width:310px) {
    .npic {
        width: 100%;
    }
}

/***news*************************************************************************************************/

.news_inner {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 6em 0 3em;
    position: relative;
}

.news_inner .newslist_rwd {
    position: relative;
    width: 49%;
    display: inline-block;
    margin-bottom: 10rem;
}

.news_inner .newslist_rwd .npic {
    position: absolute;
    width: 280px;
    min-height: 198px;
    transition: .3s ease all;
    display: inline-block;
    vertical-align: top;
    top: -5rem;
    right: 8rem;
    z-index: 1;
}

.news_inner .newslist_rwd .npic:before {
    background: url(../../images/news_deco03.png) top center no-repeat;
}

@media screen and (max-width:1200px) {
    .news_inner {
        padding: 6em 2rem 3rem 2rem;
    }

    .news_inner .newslist_rwd .npic {
        right: 4rem;
        width: 50%;
    }
}

@media screen and (max-width:1080px) {
    .news_inner .newslist_rwd .npic {
        right: 2rem;
    }
}

@media screen and (max-width:991px) {
    .news_inner {
        text-align: center;
    }

    .news_inner .newslist_rwd {
        width: 70%;
        margin: 0 auto 10rem;
    }

    .news_inner .newslist_rwd .npic {
        right: 4rem;
    }

    .news_inner .newslist_rwd a .ntitle {
        width: 70%;
        padding: 3.2rem 18rem 3.7rem 2.7rem;
        text-align: left;
    }

    .news_inner .newslist_rwd .ntitle:before {
        background-size: contain;
    }
}

@media screen and (max-width:830px) {
    .news_inner .newslist_rwd .npic {
        right: -2rem;
        width: 60%;
    }

    .news_inner .newslist_rwd a .ntitle {
        padding: 3.2rem 15rem 3.7rem 2.7rem;
    }
}

@media screen and (max-width:770px) {
    .news_inner .newslist_rwd {
        width: 90%;
    }

    .news_inner .newslist_rwd a .ntitle {
        padding: 3.2rem 19rem 3.7rem 2.7rem;
    }

    .news_inner .newslist_rwd .npic {
        right: 4rem;
        width: 50%;
    }
}

@media screen and (max-width:640px) {
    .news_inner .newslist_rwd .npic {
        right: 0rem;
    }

    .news_inner .newslist_rwd a .ntitle {
        padding: 3.2rem 13rem 3.7rem 2.7rem;
    }
}

@media screen and (max-width:540px) {
    .news_inner .newslist_rwd a .ntitle {
        padding: 3.2rem 10rem 3.7rem 2.7rem;
    }
}

@media screen and (max-width:530px) {
    .news_inner .newslist_rwd {
        margin: 0 auto 3rem;
    }

    .news_inner .newslist_rwd .npic {
        position: relative;
        width: 80%;
        top: 3rem;
    }

    .news_inner .newslist_rwd a .ntitle {
        padding: 3.2rem 8rem 3.7rem 2.7rem;
        width: 80%;
    }
}

@media screen and (max-width:450px) {
    .news_inner .newslist_rwd .npic {
        width: 90%;
    }

    .news_inner .newslist_rwd a .ntitle {
        padding: 3.2rem 3rem 3.7rem 3rem;
        width: 90%;
    }
}

@media screen and (max-width:393px) {
    .news_inner .newslist_rwd .npic {
        width: 100%;
    }

    .news_inner .newslist_rwd a .ntitle {
        padding: 3.2rem 3rem 3.7rem 3rem;
        width: 100%;
    }

    .news_inner .newslist_rwd .ntitle .news_more {
        margin: 3.5rem 0.7rem 0;
    }
}

@media screen and (max-width:340px) {
    .news_inner .newslist_rwd {
        margin: 0 auto 7rem;
    }

    .news_inner .newslist_rwd a .ntitle {
        padding: 2.2rem 2rem 3.7rem 2rem;
    }

    .news_inner .newslist_rwd .ntitle .news_more {
        margin: 1.5rem 0.7rem 0;
    }
}

@media screen and (max-width:300px) {
    .news_inner .newslist_rwd {
        margin: 0 auto 4rem;
    }
}

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

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

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

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

/***********************/
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;
}























/***inews end***/
/*****************************/
/***map***/
.map_inner {
    width: 100%;
}

.map_inner .map_lin {
    line-height: 0;
}

.map {
    position: relative;
    width: 100%;
    min-height: 619px;
    display: inline-block;
    vertical-align: top;
}

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

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

@media screen and (max-width:414px) {
    .map {
        min-height: 300px;
    }
}

@media screen and (max-width:360px) {
    .map {
        min-height: 250px;
    }
}


/***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: 143px;
    max-width: 100%;
    min-height: 354px;
    position: absolute;
    top: 0;
    left: 0;
}


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



.ftwrap {
    padding: 1.6rem 0 3.8rem 3.4rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


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

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

.ftlist:nth-of-type(1) h6 {
    margin-bottom: 4rem;
}

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

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

.ftinfo {
    text-align: left;
}

.ftinfo .ft_logo {
    padding-bottom: 4rem;
}

.ftinfo ul {}

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

.ftinfo ul li span {
    position: relative;
    font-size: 16px;
    color: #ebebd9;
    font-weight: 400;
}

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

.ftinfo ul li span:nth-of-type(2) {
    display: inline-block;
    width: 20%;
    vertical-align: top;
    text-align: justify;
    text-align-last: justify;
}

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

.ftlist .ftlist_br {
    display: block;
}


/*ft_link*/
.ft_link {
    display: flex;
    justify-content: center;
}

.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;
    display: flex;
}

.website ul {
    display: inline-block;
    padding-left: 2.2rem;
    position: relative;
}

.website ul:before {
    content: '';
    background: #7da5b5;
    width: 2px;
    height: 2px;
    position: absolute;
    top: 11px;
    left: 1px;
    border-radius: 50%;
}

.website ul:after {
    content: '';
    background: #7da5b5;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 27px;
    left: 2px;
}

.website ul:nth-child(4) {
    padding-left: 3rem;
}

.website ul:nth-child(4):before {
    display: none;
}

.website ul:nth-child(4) li:before {
    content: '';
    background: #7da5b5;
    width: 2px;
    height: 2px;
    position: absolute;
    top: 14px;
    left: -10px;
    border-radius: 50%;
}

.website ul li {
    text-align: left;
    position: relative;

}

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

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

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


.footer_bot {
    width: 1560px;
    max-width: 100%;
    margin: 0 auto 3rem;
}

/*share*/
.share {
    color: #ebebd9;
    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: #ebebd9;
    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: #ebebd9;
    display: inline-block;
    font-size: 14px;
}

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


#gotop {
    position: fixed;
    bottom: 31rem;
    right: 4rem;
    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: #ccca6c;
}

#btn_mob a:nth-child(2) {
    background: #6ca2c2;
}

#btn_mob a:nth-child(3) {
    background: #8bc672;
}

@media screen and (max-width:1560px) {
    footer:before {
        background-size: 50%;
        min-height: 154px;
    }

    .footer_bot {
        padding: 0 2rem;
    }
}
@media screen and (max-width:1366px){
    .ftinfo ul li span:nth-of-type(2) {
    width: 24%;
}
.website {
    flex-wrap: wrap;
    justify-content: center;
}
.website ul {
    padding-left: 1.2rem;
    width: 40%;
    margin-bottom: 4rem;
}
}
@media screen and (max-width:1330px) {
    .ftwrap {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .ftlist:nth-of-type(3) {
        width: 100%;
        margin: 0 auto;
    }

    .footer_bot {
        margin: 2rem auto 3rem;
    }

    .website {
        justify-content: center;
    }
    .website ul {
    width: 20%;
}
}

@media screen and (max-width:1150px) {
    .ftlist:nth-of-type(1) {
        width: 60%;
    }
}
@media screen and (max-width:1020px){
    .website ul {
    width: 25%;

}
}
@media screen and (max-width:991px) {
    .share {
        width: 100%;
        text-align: center;
    }

    .ftrt {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width:820px){
    .website ul {
    width: auto;
}
}
@media screen and (max-width:768px) {
    .ftwrap {
        padding: 1.6rem 2rem 0;
    }

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

    .ftlist:nth-of-type(2) {
        width: 100%;
        margin-top: 5rem;
    }

    .footer_bot {
        margin: 6rem auto 3rem;
    }
}

@media screen and (max-width:650px) {
    .website {
        flex-wrap: wrap;
    }

    .website ul {
        width: 50%;
        margin-bottom: 6rem;
    }
}

@media screen and (max-width:450px) {
    footer {
        padding-top: 4rem;
    }

    .ftinfo ul li span:nth-of-type(2) {
        width: 25%;
    }

    .website ul {
        width: 50%;
    }

    #gotop {
        bottom: 6rem;
        width: 60px;
        right: 0;
        text-align: center;
    }

    #btn {
        display: none !important;
    }

    #btn_mob {
        display: flex;
    }
}

@media screen and (max-width:414px) {
    footer:before {
        background-size: 35%;
        min-height: 110px;
    }

    .ftwrap {
        padding: 1.6rem 1rem 0;
    }
    .website a {
    margin-right: 0.5rem;
}

    .footer_bot {
        margin: 0rem auto 7rem;
    }
}

@media screen and (max-width:393px) {
    footer {
        padding-top: 4rem;
    }

    .ftinfo ul li span:nth-of-type(1) {
        width: 4%;
    }

    .fa-solid,
    .fas {
        font-size: 13px;
    }

    .ftinfo ul li span:nth-of-type(2) {
        width: 26%;
    }

    .ftinfo ul li span:nth-of-type(3) {
        width: 66%;
        letter-spacing: 0px;
    }

    .ftlist .ftlist_br {
        display: inline-block;
    }

    .website ul {
        width: 60%;
    }
}

@media screen and (max-width:360px) {
    .ftinfo ul li span:nth-of-type(2) {
        width: 30%;
    }

    .ftinfo ul li span:nth-of-type(3) {
        width: 62%;
    }
}

@media screen and (max-width:350px) {
    .website ul {
        width: 80%;
    }
}

@media screen and (max-width:330px) {
    .ftinfo ul li span:nth-of-type(2) {
        width: 34%;
    }

    .ftinfo ul li span:nth-of-type(3) {
        width: 55%;
    }
}

@media screen and (max-width:300px) {
    .ftwrap {
        padding: 1.6rem 1rem 0;
    }

    .ftinfo ul li span:nth-of-type(2) {
        width: 38%;
    }

    .ftinfo ul li span:nth-of-type(3) {
        width: 50%;
    }
}

/*******************************************************************/
/******banner start***********/
.banner {
    width: 100%;
    position: relative;
    min-height: 692px;
    padding-top: 2rem;
}

.banner:before {
    content: '';
    background: url(../../images/ban_deco01.png) bottom left no-repeat;
    background-size: contain;
    width: 177px;
    max-width: 100%;
    min-height: 430px;
    position: absolute;
    bottom: -5rem;
    left: 0;
}

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

.banner .ban_inner {
    width: 90.5%;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: space-between;
}

.ban_inner .ban_lt {
    width: 22%;
    padding: 9rem 5.4rem 0 0;
}

.ban_lt .ban_logo {
    margin-bottom: 16.5rem;
}

.ban_lt .ban_title {
    text-align: center;
}

.ban_title .ban_ch {}

.ban_title .ban_ch h2 {
    color: #364349;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 1px;
}

.ban_title .ban_lin {}

.ban_title .ban_en {}

.ban_title .ban_en h3 {
    color: #6ac4e6;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Ubuntu';
    letter-spacing: 0;
}

.ban_inner .ban_rt {
    padding-right: 2.3rem;
    position: relative;
}

.ban_inner .ban_rt:before {
    content: '';
    background: url(../../images/ban_txt.png) bottom right no-repeat;
    background-size: contain;
    width: 565px;
    max-width: 100%;
    min-height: 229px;
    position: absolute;
    bottom: -2rem;
    right: 1rem;
}

@media screen and (max-width:1500px) {
    .banner:before {
        background-size: 30%;
        min-height: 140px;
        bottom: 15rem;
    }

    .banner .ban_inner {
        width: 95%;
    }

}

@media screen and (max-width:1430px) {
    .banner {
        min-height: 650px;
    }

    .banner:before {
        background-size: 10%;
        min-height: 50px;
        bottom: 15rem;
    }

    .banner .ban_inner {
        width: 99%;
    }

}

@media screen and (max-width:1366px) {
    .banner {
        min-height: 570px;
    }

    .banner:before {
        background-size: 10%;
        min-height: 50px;
        bottom: 11rem;
    }

    .banner:after {
        background-size: 70%;
        min-height: 110px;
    }

    .ban_inner .ban_lt {
        width: 30%;
        padding: 9rem 5.4rem 0 0;
    }

    .ban_lt .ban_logo {
        margin-bottom: 9.5rem;
    }
}

@media screen and (max-width:1200px) {
    .banner {
        min-height: 530px;
    }
}

@media screen and (max-width:1180px) {
    .banner {
        padding: 2rem 0 5rem;
        min-height: auto;
    }

    .banner:before {
        background-size: 100%;
        min-height: 420px;
        bottom: auto;
        top: 22rem;
    }

    .banner .ban_inner {
        width: 95%;
        flex-wrap: wrap;
        margin: 0 auto;
        justify-content: center;
    }

    .ban_inner .ban_lt {
        width: 80%;
        padding: 9rem 0 6rem;
        text-align: center;
    }

    .ban_inner .ban_rt {
        width: 80%;
        padding: 0;
    }
}

@media screen and (max-width:991px) {
    .banner {
        padding: 10rem 0 5rem;
    }

    .banner:before {
        top: 34rem;
    }

    .banner:after {
        top: 10rem;
    }

    .banner .ban_inner {
        width: 100%;
    }

    .ban_inner .ban_lt {
        width: 100%;
    }

    .ban_inner .ban_rt {
        width: 100%;
        padding: 0 2rem;
    }
}

@media screen and (max-width:650px) {
    .banner:before {
        top: 36rem;
        background-size: 70%;
        min-height: 290px;
    }

    .ban_inner .ban_lt {
        padding: 5rem 0 6rem;
    }

    .ban_inner .ban_rt:before {
        background-size: 70%;
        min-height: 160px;
    }
}

@media screen and (max-width:450px) {
    .banner:before {
        top: 36rem;
        background-size: 50%;
        min-height: 210px;
    }

    .banner:after {
        top: 8.5rem;
        background-size: 50%;
        min-height: 74px;
    }

    .ban_lt .ban_logo {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width:414px) {
    .banner {
        padding: 10rem 0 3rem;
    }

    .banner:before {
        background-size: 40%;
        min-height: 165px;
        top: 28rem;
    }

    .ban_inner .ban_lt {
        padding: 3rem 0 6rem;
    }

    .ban_lt .ban_logo {
        width: 50%;
        margin: 0 auto 4rem;
    }

    .ban_title .ban_ch h2 {
        font-size: 30px;
    }

    .ban_title .ban_lin {
        width: 50%;
        margin: 0 auto;
    }

    .ban_title .ban_en h3 {
        font-size: 20px;
    }

    .ban_inner .ban_rt:before {
        background-size: 60%;
        min-height: 100px;
        bottom: -1rem;
    }
}

@media screen and (max-width:393px) {
    .banner {
        padding: 8rem 0 3rem;
    }

    .banner:before {
        top: 25rem;
    }

    .ban_inner .ban_lt {
        padding: 3rem 0 3rem;
    }
}

@media screen and (max-width:360px) {
    .banner:before {
        background-size: 30%;
        min-height: 120px;
        top: 26rem;
    }

    .banner:after {
        background-size: 40%;
        min-height: 57px;
    }

    .ban_inner .ban_lt {
        padding: 3rem 0 3rem;
    }
}

@media screen and (max-width:330px) {
    .banner:before {
        top: 25rem;
    }

    .ban_title .ban_ch h2 {
        font-size: 25px;
    }

    .ban_title .ban_en h3 {
        font-size: 15px;
    }
}

@media screen and (max-width:300px) {
    .banner:before {
        top: 24rem;
    }
}

/******banner end*************/
/****************************************************************************************************/
/******recycle start***********/

/*recbtn*/
.recbtn {
    width: 1560px;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recbtn .recbtn_lt {}

.recbtn .recbtn_rt {
    width: 75%;
    padding: 1.5rem 0 1.8rem;
    position: relative;
}

.recbtn .recbtn_rt:before {
    content: '';
    background: #7da5b5;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.recbtn .recbtn_rt ul {}

.recbtn .recbtn_rt ul li {
    display: inline-block;
    width: 24%;
}

.recbtn .recbtn_rt a {
    transition: .5s all;
    display: block;
}

.recbtn .recbtn_rt a:hover {
    opacity: .8;
    transform: translateY(-5px);
}

.recbtn .recbtn_rt a img {
    display: inline-block;
    vertical-align: middle;
}

.recbtn .recbtn_rt a h2 {
    display: inline-block;
    color: #49a9d2;
    font-size: 20px;
    font-weight: 500;
    vertical-align: middle;
    line-height: 1.5;
    letter-spacing: 1px;
}

.rec_inner {}



/*recycle1*/
.recycle1 {}

.recycle1 .rec1 {
    width: 1740px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rec1 .rec_lt {
    background: url(../../images/rec1lt_bg.png) top left no-repeat;
    background-size: cover;
    width: 552px;
    max-width: 100%;
    min-height: 564px;
    padding: 11rem 10rem 5rem 18rem;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;

}

.rec1 .rec_lt:before {
    content: '';
    background: url(../../images/rec1lt_en.png) bottom left no-repeat;
    background-size: contain;
    width: 112px;
    max-width: 100%;
    min-height: 462px;
    position: absolute;
    bottom: 4rem;
    left: 2.5rem;
    mix-blend-mode: multiply;
}

.rec1 .rec_lt:after {
    content: '';
    background: url(../../images/rec1lt_no.png) top right no-repeat;
    background-size: contain;
    width: 159px;
    max-width: 100%;
    min-height: 152px;
    position: absolute;
    top: 7rem;
    right: 6rem;
}

.rec_lt h3 {
    font-size: 24px;
    color: #49a9d2;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 0px;
}

.rec_lt img {
    margin-bottom: 1rem;
}

.rec_lt p {
    font-size: 16px;
    color: #557887;
    text-align: justify;
}


.rec1 .rec_rt {
    width: 67%;
    padding-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.rec_rt .rec_set {
    padding: 2rem 0;
    position: relative;
    width: 372px;
    max-width: 100%;
    min-height: 448px;
    margin: 0 1.2rem 2.3rem;
}

.rec_rt .rec_set:before {
    content: '';
    background: rgba(199, 219, 225, .75);
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(38px 0, 334px 0, 100% 38px, 100% 410px, 334px 100%, 38px 100%, 0 410px, 0 38px);
}

.rec_rt .rec_set:after {
    content: '';
    background: url(../../images/recrt_deco02.png) bottom right no-repeat;
    background-size: contain;
    width: 21px;
    max-width: 100%;
    min-height: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.rec_rt .rec_set:nth-child(3n+1) {
    margin: 0 1.2rem 2.3rem 0;
}

.rec_rt .rec_set:nth-child(3n) {
    margin: 0 0 2.3rem 1.2rem;
}

.rec_set img {
    padding: 0 2rem;
    text-align: center;
}

.rec_set .rec_txt {
    padding: 0px 1.9rem 0 4.4rem;
    margin: 1.2rem 2rem 0 0;
    overflow-y: scroll;
    height: 160px;
    position: relative;
    text-align: left;
}

.rec_set .rec_txt:before {
    content: '';
    background: url(../../images/recrt_deco01.png) top left no-repeat;
    background-size: contain;
    width: 35px;
    max-width: 100%;
    min-height: 9px;
    position: absolute;
    top: 8px;
    left: 0;
}

.rec_set .rec_txt h4 {
    font-size: 20px;
    color: #2f5260;
    font-weight: 500;
    margin-bottom: 1rem;
}

.rec_set .rec_txt p {
    font-size: 16px;
    color: #557887;
    text-align: justify;
    letter-spacing: 1px;
}

@media screen and (max-width:1730px) {
    .rec1 .rec_rt {
        width: 70%;
    }

    .rec_rt .rec_set {
        width: 31%;
    }

    .rec_rt .rec_set:before {
        clip-path: polygon(38px 0, 325px 0, 100% 38px, 100% 410px, 325px 100%, 38px 100%, 0 410px, 0 38px);
    }

    .rec_rt .rec_set:after {
        bottom: 5px;
        right: -2px;
    }
}

@media screen and (max-width:1630px) {
    .rec_rt .rec_set:before {
        clip-path: polygon(38px 0, 300px 0, 100% 38px, 100% 408px, 300px 100%, 38px 100%, 0 420px, 0 38px);
    }
}

@media screen and (max-width:1530px) {
    .rec_rt .rec_set:before {
        clip-path: polygon(38px 0, 275px 0, 100% 38px, 100% 410px, 270px 100%, 38px 100%, 0 410px, 0 38px);
    }
}

@media screen and (max-width:1450px) {
    .rec1 .rec_rt {
        width: 60%;
    }

    .rec_rt .rec_set {
        width: 40%;
        margin: 0 2.4rem 2.3rem 0;
    }

    .rec_rt .rec_set:nth-child(3n+1) {
        margin: 0 2.4rem 2.3rem 0;
    }

    .rec_rt .rec_set:nth-child(3n) {
        margin: 0 2.4rem 2.3rem 0;
    }

    .rec_rt .rec_set:before {
        clip-path: polygon(38px 0, 330px 0, 100% 38px, 100% 410px, 328px 100%, 38px 100%, 0 410px, 0 38px);
    }
}

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

    .rec_rt .rec_set:before {
        clip-path: polygon(38px 0, 280px 0, 100% 41px, 100% 410px, 280px 100%, 38px 100%, 0 410px, 0 38px);
    }
}

@media screen and (max-width:1300px) {
    .recbtn {
        flex-wrap: wrap;
        padding: 0 2rem;
    }

    .recbtn .recbtn_lt {
        width: 60%;
    }

    .recbtn .recbtn_rt {
        width: 100%;
    }
}

@media screen and (max-width:1260px) {
    .rec_rt .rec_set {
        width: 46%;
    }

    .rec_rt .rec_set:before {
        clip-path: polygon(38px 0, 290px 0, 100% 41px, 100% 410px, 290px 100%, 38px 100%, 0 410px, 0 41px);
    }
}

@media screen and (max-width:1120px) {
    .rec1 .rec_lt {
        padding: 8rem 7rem 5rem 14rem;
    }

    .rec1 .rec_lt:before {
        background-size: 80%;
        min-height: 382px;
        bottom: 13rem;
    }

    .rec1 .rec_rt {
        width: 80%;
    }

    .rec_rt .rec_set {
        min-height: auto;
    }

    .rec_rt .rec_set:before {
        clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
    }

    .rec_set .rec_txt {
        height: 200px;
    }
}

@media screen and (max-width:1050px) {
    .recbtn .recbtn_rt ul li {
        width: 45%;
        margin-bottom: 2rem;
    }

    .recycle1 .rec1 {
        flex-wrap: wrap;
    }

    .rec1 .rec_lt {
        position: relative;
        top: 0;
    }

    .rec1 .rec_rt {
        width: 100%;
        justify-content: center;
    }

    .rec_rt .rec_set {
        width: 46%;
        margin: 0 1rem 2.3rem 1rem;
        text-align: center;
    }

    .rec_rt .rec_set:nth-child(3n+1) {
        margin: 0 1rem 2.3rem 2rem;
    }

    .rec_rt .rec_set:nth-child(3n) {
        margin: 0 1rem 2.3rem 2rem;
    }

    .rec_rt .rec_set:nth-child(odd) {
        margin: 0 1rem 2.3rem 0;
    }
}

@media screen and (max-width:768px) {
    .rec1 .rec_lt:before {
        background-size: 90%;
        min-height: 430px;
        bottom: 6rem;
        left: 1.5rem;
    }

    .rec_rt .rec_set:before {
        clip-path: polygon(7% 0, 93% 0, 100% 7%, 100% 93%, 93% 100%, 7% 100%, 0 93%, 0 7%);
    }

    .rec_rt .rec_set:nth-child(odd) {
        margin: 0 1rem 2.3rem 0;
    }

    .rec_rt .rec_set:nth-child(even) {
        margin: 0 0 2.3rem 1rem;
    }
}

@media screen and (max-width:590px) {
    .rec1 .rec_lt:before {
        background-size: 80%;
        min-height: 380px;
        bottom: 11rem;
    }

    .recbtn .recbtn_rt ul li {
        width: 49%;
    }

    .recbtn .recbtn_rt a img {
        width: 20%;
    }

}

@media screen and (max-width:480px) {
    .recbtn .recbtn_rt a img {
        width: 15%;
    }

    .rec1 .rec_lt {
        min-height: 495px;
    }

    .rec1 .rec_lt:before {
        bottom: 5rem;
    }
}

@media screen and (max-width:450px) {
    .recbtn .recbtn_rt ul li {
        width: 100%;
    }

    .recbtn .recbtn_rt a img {
        margin-right: 1rem;
    }

    .rec1 .rec_lt {
        padding: 6rem 7rem 5rem 10rem;
        min-height: 455px;
    }

    .rec1 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 12rem;
    }

    .rec1 .rec_lt:after {
        background-size: 70%;
        min-height: 112px;
    }

    .rec_rt .rec_set {
        width: 95%;
        margin: 0 auto 1rem;
    }

    .rec_rt .rec_set:after {
        bottom: 0px;
        right: 0px;
    }

    .rec_rt .rec_set:nth-child(odd) {
        margin: 0 auto 1rem;
    }

    .rec_rt .rec_set:nth-child(even) {
        margin: 0 auto 1rem;
    }
}

@media screen and (max-width:414px) {
    .rec1 .rec_lt {
        min-height: auto;
        padding: 5rem 7rem 7rem 10rem;
    }

    .rec1 .rec_lt:before {
        bottom: 5rem;
        background-size: 70%;
        min-height: 340px;
        left: 0.5rem;
    }

    .rec1 .rec_lt:after {
        background-size: 60%;
        min-height: 95px;
        top: 5rem;
        right: 5rem;
    }

    .rec_lt p {
        font-size: 13px;
    }
}

@media screen and (max-width:393px) {
    .rec1 .rec_lt:after {
        right: 2rem;
    }
}

@media screen and (max-width:360px) {
    .rec1 .rec_lt {
        padding: 5rem 6rem 5rem 10rem;
    }

    .rec1 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 6rem;
    }
}

@media screen and (max-width:350px) {
    .rec1 .rec_lt {
        padding: 5rem 3rem 4rem 10rem;
    }

    .rec1 .rec_rt {
        padding-top: 2rem;
    }

    .rec_set .rec_txt h4 {
        font-size: 18px;
    }

    .rec_set .rec_txt p {
        font-size: 14px;
    }
}

@media screen and (max-width:320px) {
    .rec1 .rec_lt {
        padding: 5rem 2rem 4rem 10rem;
    }

    .rec1 .rec_lt:before {
        bottom: 5rem;
    }

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

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

    .rec_set .rec_txt h4 {
        font-size: 15px;
    }

    .rec_set .rec_txt p {
        font-size: 13px;
    }
}

/*recycle2*/
.recycle2 {
    width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 0;
}

.recycle2 .rec2 {
    width: 1740px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rec2 .rec_lt {
    background: url(../../images/rec2lt_bg.png) top left no-repeat;
    background-size: cover;
    width: 552px;
    max-width: 100%;
    min-height: 564px;
    padding: 11rem 10rem 5rem 18rem;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;

}

.rec2 .rec_lt:before {
    content: '';
    background: url(../../images/rec2lt_en.png) bottom left no-repeat;
    background-size: contain;
    width: 112px;
    max-width: 100%;
    min-height: 462px;
    position: absolute;
    bottom: 4rem;
    left: 2.5rem;
    mix-blend-mode: multiply;
}

.rec2 .rec_lt:after {
    content: '';
    background: url(../../images/rec2lt_no.png) top right no-repeat;
    background-size: contain;
    width: 204px;
    max-width: 100%;
    min-height: 152px;
    position: absolute;
    top: 7rem;
    right: 6rem;
}

.rec2 .rec_rt {
    width: 67%;
    padding-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.rec2 .rec_rt .rec_set:before {
    background: rgba(255, 255, 255, .75);
}

.rec2 .rec_set .rec_txt h4 {
    color: #49a9d2;
}

.rec2 .rec_set .rec_txt p {
    color: #557887;
}

.rec2 .rec_rt .rec_set:after {
    background: url(../../images/recrt_deco03.png) bottom right no-repeat;
}

.recycle2.showbg {
    background: #cbe3d6;
    transition: .5s ease all;
}

@media screen and (max-width:1730px) {
    .rec2 .rec_rt {
        width: 70%;
    }
}

@media screen and (max-width: 1120px) {
    .rec2 .rec_lt:before {
        background-size: 80%;
        min-height: 382px;
        bottom: 13rem;
    }
}

@media screen and (max-width:1050px) {
    .recycle2 .rec2 {
        flex-wrap: wrap;
    }

    .rec2 .rec_lt {
        position: relative;
        top: 0;
    }

    .rec2 .rec_rt {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .rec2 .rec_lt:before {
        background-size: 90%;
        min-height: 430px;
        bottom: 6rem;
        left: 1.5rem;
    }
}

@media screen and (max-width:590px) {
    .rec2 .rec_lt:before {
        background-size: 80%;
        min-height: 380px;
        bottom: 11rem;
    }
}

@media screen and (max-width:480px) {
    .rec2 .rec_lt {
        min-height: 495px;
    }

    .rec2 .rec_lt:before {
        bottom: 5rem;
    }
}

@media screen and (max-width:450px) {
    .rec2 .rec_lt {
        padding: 6rem 7rem 5rem 10rem;
        min-height: 455px;
    }

    .rec2 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 12rem;
    }

    .rec2 .rec_lt:after {
        background-size: 70%;
        min-height: 112px;
    }
}

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

    .rec2 .rec_lt:before {
        bottom: 5rem;
        background-size: 70%;
        min-height: 340px;
        left: 0.5rem;
    }

    .rec2 .rec_lt:after {
        background-size: 60%;
        min-height: 95px;
        top: 5rem;
        right: 5rem;
    }
}

@media screen and (max-width:393px) {
    .rec2 .rec_lt {
        padding: 6rem 3rem 5rem 10rem;
        min-height: 420px;
    }

    .rec2 .rec_lt:after {
        right: 2rem;
    }
}

@media screen and (max-width:380px) {
    .rec2 .rec_lt {
        padding: 6rem 2rem 5rem 10rem;
        min-height: 410px;
    }

    .rec2 .rec_lt:before {
        bottom: 4rem;
    }
}

@media screen and (max-width:360px) {
    .rec2 .rec_lt {
        min-height: 390px;
    }

    .rec2 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 6rem;
    }
}

@media screen and (max-width:350px) {
    .rec2 .rec_lt {
        padding: 7rem 2rem 4rem 10rem;
        min-height: 380px;
    }
}

@media screen and (max-width:330px) {
    .rec2 .rec_lt {
        min-height: 353px;
        padding: 7rem 2rem 4rem 8rem;
    }

    .rec2 .rec_lt:before {
        bottom: 3rem;
    }
}

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

@media screen and (max-width:300px) {
    .rec2 .rec_lt {
        min-height: 323px;
    }

    .rec2 .rec_lt:before {
        bottom: 4rem;
        background-size: 50%;
        min-height: 240px;
    }
}


/*recycle3*/
.recycle3 {
    padding: 0 0 4.5rem 0;
}

.recycle3 .rec3 {
    width: 1740px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rec3 .rec_lt {
    background: url(../../images/rec3lt_bg.png) top left no-repeat;
    background-size: cover;
    width: 552px;
    max-width: 100%;
    min-height: 564px;
    padding: 11rem 5rem 5rem 18rem;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;

}

.rec3 .rec_lt:before {
    content: '';
    background: url(../../images/rec3lt_en.png) bottom left no-repeat;
    background-size: contain;
    width: 112px;
    max-width: 100%;
    min-height: 462px;
    position: absolute;
    bottom: 4rem;
    left: 2.5rem;
    mix-blend-mode: multiply;
}

.rec3 .rec_lt:after {
    content: '';
    background: url(../../images/rec3lt_no.png) top right no-repeat;
    background-size: contain;
    width: 204px;
    max-width: 100%;
    min-height: 152px;
    position: absolute;
    top: 7rem;
    right: 6rem;
}

.rec3 .rec_rt {
    width: 67%;
    padding-top: 4rem;
    display: flex;
    justify-content: flex-start
}

.rec_rt .rec3_wrap {
    position: relative;
    width: 528px;
    max-width: 100%;
    min-height: 644px;
    padding: 5.4rem 4.4rem 0;
    background: url(../../images/recrt_deco02.png) bottom right no-repeat;
}

.rec_rt .rec3_wrap:before {
    content: '';
    background: #d3e2e6;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(5% 0, 95% 0, 100% 5%, 100% 95%, 93% 100%, 5% 100%, 0 95%, 0 5%);

}

.rec_rt .rec3_wrap:after {
    content: '';
    background: url(../../images/rec3_deco02.png) top left no-repeat;
    background-size: contain;
    width: 23px;
    max-width: 100%;
    min-height: 572px;
    position: absolute;
    top: 37px;
    left: 1px;
}

.rec3_wrap .rec3_title {
    background: url(../../images/rec3_deco01.png) center left no-repeat;
    background-size: contain;
    text-align: center;
    margin: 0 auto;
}

.rec3_title h3 {
    font-size: 20px;
    color: #49a9d2;
    font-weight: 500;
    vertical-align: middle;

}

.rec3_wrap .rec3_txt {
    margin-left: 1rem;
    padding: 2.7rem 0 0 1.5rem;

}

.rec3_wrap .rec3_txt ul {
    list-style-type: "Ⓞ";
    color: #557887;
    font-size: 18px;
}

.rec3_wrap .rec3_txt ul li {
    padding: 0 0 1.3rem 1.5rem;
}

.rec3_wrap .rec3_txt ul li p {
    font-size: 16px;
    color: #557887;
    font-weight: 500;
    letter-spacing: 1px;

}

.rec_rt .rec3_img {
    position: relative;
    width: 55%;
    min-height: 644px;
    padding: 3.5rem 3rem;
}

.rec_rt .rec3_img:before {
    content: '';
    background: #a8cddb;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(5% 0, 95% 0, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0 95%, 0 5%);
}

@media screen and (max-width:1730px) {
    .rec3 .rec_rt {
        width: 70%;
    }
}

@media screen and (max-width: 1120px) {
    .rec3 .rec_lt:before {
        background-size: 80%;
        min-height: 382px;
        bottom: 13rem;
    }
}

@media screen and (max-width:1050px) {
    .recycle3 .rec3 {
        flex-wrap: wrap;
    }

    .rec3 .rec_lt {
        position: relative;
        top: 0;
    }

    .rec3 .rec_rt {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .rec3 .rec_lt:before {
        background-size: 90%;
        min-height: 430px;
        bottom: 6rem;
        left: 1.5rem;
    }

    .rec3 .rec_rt {
        flex-wrap: wrap;
    }

    .rec_rt .rec3_wrap {
        width: 95%;
        margin: 0 auto;
    }

    .rec_rt .rec3_img {
        width: 95%;
        margin: 0 auto;
        text-align: center;
    }
}

@media screen and (max-width:590px) {
    .rec3 .rec_lt:before {
        background-size: 80%;
        min-height: 380px;
        bottom: 11rem;
    }
}

@media screen and (max-width:576px) {
    .rec_rt .rec3_wrap {
        min-height: auto;
        padding: 5.4rem 4.4rem 5rem;
    }

    .rec_rt .rec3_img {
        min-height: auto;
    }
}

@media screen and (max-width:480px) {
    .rec3 .rec_lt {
        min-height: 495px;
    }

    .rec3 .rec_lt:before {
        bottom: 5rem;
    }
}

@media screen and (max-width:450px) {
    .rec3 .rec_lt {
        padding: 6rem 7rem 5rem 10rem;
        min-height: 455px;
    }

    .rec3 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 12rem;
    }

    .rec3 .rec_lt:after {
        background-size: 70%;
        min-height: 112px;
    }
}

@media screen and (max-width:414px) {
    .rec3 .rec_lt {
        padding: 6rem 2rem 5rem 10rem;
        min-height: 420px;
    }

    .rec3 .rec_lt:before {
        bottom: 5rem;
        background-size: 70%;
        min-height: 340px;
        left: 0.5rem;
    }

    .rec3 .rec_lt:after {
        background-size: 60%;
        min-height: 95px;
        top: 5rem;
        right: 5rem;
    }

    .rec_rt .rec3_wrap {
        padding: 5.4rem 3rem 2rem;
    }

    .rec_rt .rec3_wrap:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }

    .rec3_wrap .rec3_title {
        background-size: 130%;
        background-position: center left -5rem;
    }

    .rec_rt .rec3_img:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }
}

@media screen and (max-width:393px) {
    .rec3 .rec_lt:after {
        right: 2rem;
    }
}

@media screen and (max-width:380px) {
    .rec3 .rec_lt {
        min-height: 410px;
    }

    .rec3 .rec_lt:before {
        bottom: 4rem;
    }
}

@media screen and (max-width:360px) {
    .rec3 .rec_lt {
        min-height: 390px;
    }

    .rec3 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 6rem;
    }

    .rec3_wrap .rec3_title {
        background-size: 150%;
        background-position: center left -7rem;
    }
}

@media screen and (max-width:350px) {
    .rec3 .rec_lt {
        padding: 7rem 2rem 4rem 10rem;
        min-height: 380px;
    }
}

@media screen and (max-width:330px) {
    .rec3 .rec_lt {
        min-height: 353px;
        padding: 7rem 2rem 4rem 8rem;
    }

    .rec3 .rec_lt:before {
        bottom: 3rem;
    }

    .rec3_wrap .rec3_title {
        background-position: center left -7rem;
    }
}

@media screen and (max-width:300px) {
    .rec3 .rec_lt {
        min-height: 323px;
    }

    .rec3 .rec_lt:before {
        bottom: 4rem;
        background-size: 50%;
        min-height: 240px;
    }

    .rec_rt .rec3_wrap {
        padding: 5.4rem 1rem 1rem 3rem;
    }

    .rec_rt .rec3_wrap:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 98%, 97% 100%, 3% 100%, 0 98%, 0 3%);
    }

    .rec3_wrap .rec3_txt ul li {
        padding: 0 0 1.3rem 0.5rem;
    }
}

/*recycle4*/
.recycle4 {
    padding-bottom: 6rem;
    width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 0;
}

.recycle4.showbg {
    background: #cbe3d6;
    transition: .5s ease all;
}


.recycle4 .rec4 {
    width: 1740px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rec4 .rec_lt {
    background: url(../../images/rec4lt_bg.png) top left no-repeat;
    background-size: cover;
    width: 552px;
    max-width: 100%;
    min-height: 704px;
    padding: 11rem 11rem 5rem 18rem;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;

}

.rec4 .rec_lt:before {
    content: '';
    background: url(../../images/rec4lt_en.png) top left no-repeat;
    background-size: contain;
    width: 112px;
    max-width: 100%;
    min-height: 462px;
    position: absolute;
    top: 6rem;
    left: 2.5rem;
    mix-blend-mode: color-burn;
}

.rec4 .rec_lt:after {
    content: '';
    background: url(../../images/rec4lt_no.png) top right no-repeat;
    background-size: contain;
    width: 204px;
    max-width: 100%;
    min-height: 152px;
    position: absolute;
    top: 7rem;
    right: 6rem;
}

.rec4 .rec_lt h3 {
    color: #49a9d2;
    margin-bottom: 4rem;
}

.rec4 .rec_lt p {
    color: #557887;
    text-indent: 3rem;
    padding-bottom: 2rem;
}


.rec4 .rec_rt {
    width: 67%;
    margin-top: 4rem;
    background: url(../../images/recrt_deco03.png) bottom right no-repeat;
    position: relative;
    padding: 6.3rem 7.1rem 3.9rem;
}

.rec4 .rec_rt:before {
    content: '';
    background: #ecf4f1;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(3% 0, 97% 0, 100% 4%, 100% 96%, 97% 100%, 3% 100%, 0 97%, 0 4%);
    z-index: -1;
}

.rec4 .rec_rt:after {
    content: '';
    background: url(../../images/recrt_deco01.png) top left no-repeat;
    width: 35px;
    max-width: 100%;
    min-height: 9px;
    position: absolute;
    top: 5rem;
    left: 0;
}

.rec_rt .rec4_top {
    background: #d3e7dd;
    clip-path: polygon(3% 0, 97% 0, 100% 10%, 100% 90%, 97% 100%, 3% 100%, 0 90%, 0 10%);
    padding: 4rem 14.5rem;
    margin-bottom: 5rem;
}

.rec4_top ul {}

.rec4_top ul li {
    display: inline-block;
    width: 24%;
    text-align: center;
    position: relative;
}

.rec4_top ul li:not(:last-child):before {
    content: '';
    background: url(../../images/rec4_deco01.png) top left no-repeat;
    width: 16px;
    min-height: 3px;
    position: absolute;
    top: 35%;
    bottom: 0;
    right: -1rem;
    margin: 0 auto;
}

.rec4_top ul li img {}

.rec4_top ul li p {
    font-size: 18px;
    color: #49a9d2;
    font-weight: 500;
}

.rec_rt .rec4_cen {}

.rec4_cen .rec4cen_title {}

.rec4_cen .rec4cen_title h4 {
    vertical-align: middle;
    font-size: 24px;
    color: #49a9d2;
    font-weight: bold;
}

.rec4_cen .rec4cen_title h4 img {
    vertical-align: middle;
    padding-left: .5rem;
}

.rec4_cen .rec4cen_wrap {
    margin-top: 3.3rem;
}

.rec4cen_wrap ul {
    min-height: 273px;
    display: flex;
    justify-content: space-between;
}

.rec4cen_wrap ul li {
    width: 16%;
    position: relative;
}

.rec4cen_wrap ul li:not(:last-child):before {
    content: '';
    background: url(../../images/rec4_deco02.png) top right no-repeat;
    width: 17px;
    max-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    right: -4rem;
}

.rec4cen_wrap ul li img {
    padding-bottom: 1rem;
}

.rec4cen_wrap ul li p {
    font-size: 16px;
    color: #7da5b5;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 1.8;
}

.rec_rt .rec4_bot {
    margin-top: 4rem;
}

.rec4_bot a {
    display: block;
    width: 30%;
    margin: 0 auto;
}

.rec4_bot a .rec4_more {
    background: #8dd3c6;
    padding: 2rem 6rem;
    text-align: center;
    clip-path: polygon(5% 0, 95% 0, 100% 20%, 100% 80%, 95% 100%, 5% 100%, 0 80%, 0 20%);
    transition: .5s all;
}

.rec4_bot a .rec4_more p {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    transition: .5s all;
}

.rec4_more i {
    padding-left: 1rem;
}

.rec4_bot a:hover .rec4_more {
    background: #81d2c7;
}

.rec4_bot a:hover .rec4_more p {
    color: #3a687c;
}



@media screen and (max-width:1730px) {
    .rec4 .rec_rt {
        width: 70%;
    }

}

@media screen and (max-width:1630px) {
    .rec_rt .rec4_top {
        padding: 4rem 6.5rem;
    }

    .rec4_bot a {
        width: 40%;
    }
}

@media screen and (max-width:1460px) {
    .rec_rt .rec4_top {
        padding: 4rem 2rem;
    }

    .rec4 .rec_rt {
        padding: 6.3rem 4rem 3.9rem;
    }
}

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

@media screen and (max-width:1310px) {
    .rec4 .rec_rt {
        padding: 6.3rem 2rem
    }

    .rec4_bot a {
        width: 50%;
    }
}

@media screen and (max-width:1250px) {
    .rec4 .rec_rt:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }

    .rec_rt .rec4_top {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }

    .rec4_top ul li {
        width: 45%;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width:1120px) {
    .rec4 .rec_lt {
        padding: 8rem 7rem 5rem 14rem;
    }

    .rec4 .rec_lt:before {
        background-size: 80%;
        min-height: 382px;
    }

    .rec4 .rec_rt {
        width: 80%;
    }
}

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

    .recycle4 .rec4 {
        flex-wrap: wrap;
    }

    .rec4 .rec_lt {
        position: relative;
        top: 0;
    }

    .rec4 .rec_rt {
        width: 95%;
        margin: 4rem auto 0;
        justify-content: center;
    }

    .rec_rt .rec4_top {
        clip-path: polygon(3% 0, 97% 0, 100% 7%, 100% 93%, 97% 100%, 3% 100%, 0 93%, 0 7%);
    }

    .rec4_top ul li {
        width: 24%;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width:768px) {
    .rec4 .rec_lt:before {
        background-size: 90%;
        min-height: 430px;
        left: 1.5rem;
    }
}

@media screen and (max-width:740px) {
    .rec4_top ul li {
        width: 45%;
    }

}

@media screen and (max-width:590px) {
    .rec4 .rec_lt:before {
        background-size: 80%;
        min-height: 380px;
    }

    .rec4 .rec_rt {
        padding: 8rem 3rem 5rem;
    }

    .rec4 .rec_rt:after {
        top: 6rem;
        left: 0;
    }

    .rec4cen_wrap ul {
        flex-wrap: wrap;
        min-height: auto;
    }

    .rec4cen_wrap ul li {
        width: 45%;
        padding-right: 4rem;
    }

    .rec4cen_wrap ul li:not(:last-child) {
        min-height: 290px;
    }

    .rec4cen_wrap ul li:not(:last-child):before {
        right: 0;
    }

    .rec4_bot a {
        width: 70%;
    }
}

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

    .rec4 .rec_lt {
        min-height: 495px;
    }

}

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

    .rec4 .rec_lt {
        padding: 6rem 7rem 5rem 10rem;
        min-height: 455px;
    }

    .rec4 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
    }

    .rec4 .rec_lt:after {
        background-size: 70%;
        min-height: 112px;
    }

    .rec4 .rec_rt {
        padding: 8rem 2rem 5rem;
    }

    .rec4 .rec_rt:before {
        clip-path: polygon(3% 0, 97% 0, 100% 1%, 100% 98%, 97% 100%, 3% 100%, 0 99%, 0 1%);
    }

    .rec_rt .rec4_top {
        padding: 3rem 1rem 1rem;
        clip-path: polygon(0% 0, 100% 0, 100% 0%, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0);

    }

    .rec4_top ul li {
        margin-bottom: 3rem;
    }

    .rec4cen_wrap ul li {
        width: 48%;
    }
}

@media screen and (max-width:414px) {
    .rec4 .rec_lt {
        padding: 6rem 4rem 5rem 10rem;
        min-height: 420px;
    }

    .rec4 .rec_lt:before {
        background-size: 70%;
        min-height: 340px;
        left: 0.5rem;
    }

    .rec4 .rec_lt:after {
        background-size: 60%;
        min-height: 95px;
        top: 5rem;
        right: 5rem;
    }

    .rec4_bot a .rec4_more {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width:393px) {
    .rec4 .rec_lt {
        padding: 6rem 2rem 3rem 9rem;
        min-height: 380px;
    }

    .rec4 .rec_lt:after {
        right: 2rem;
    }

    .rec4_top ul li {
        width: 49%;
        text-align: center;
    }

    .rec4_top ul li:not(:last-child):before {
        right: -1rem;
    }

    .rec4_top ul li:nth-of-type(2):before {
        display: none;
    }
}

@media screen and (max-width:370px) {
    .rec4_top ul li {
        width: 48%;
    }

    .rec4_top ul li p {
        font-size: 15px;
    }
}

@media screen and (max-width:360px) {
    .rec4 .rec_lt {
        padding: 6rem 1rem 0rem 8rem;
    }

    .rec4 .rec_lt:before {
        background-size: 60%;
        min-height: 290px;
    }

    .rec4 .rec_rt {
        padding: 6rem 2rem 5rem;
    }

    .rec4 .rec_rt:after {
        top: 4rem;
    }

    .rec4_bot a {
        width: 80%;
    }
}

@media screen and (max-width:350px) {
    .rec4 .rec_lt {
        padding: 5rem 0rem 0rem 7rem;
    }

    .rec4 .rec_lt:before {
        background-size: 50%;
        min-height: 240px;
    }
}

@media screen and (max-width:340px) {
    .rec4 .rec_lt {
        padding: 5rem 0rem 0rem 6rem;
    }

    .rec4 .rec_lt:before {
        background-size: 40%;
        min-height: 200px;
    }
}

@media screen and (max-width:320px) {
    .rec4 .rec_lt {
        padding: 5rem 1rem 1rem 5rem;
    }

    .rec4 .rec_lt p {
        padding-bottom: 0rem;
    }

    .rec4_top ul li p {
        font-size: 13px;
    }

    .rec4_top ul li:not(:last-child):before {
        right: -1.5rem;
        background-size: 60%;
    }
}

@media screen and (max-width:310px) {
    .rec4 .rec_lt {
        padding: 5rem 1rem 1rem 2rem;
    }
}

/******recycle end*************/
/****************************************************************************************************/
/******wasteremoval start***********/
/*wrbtn*/
.wrbtn {
    width: 1560px;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrbtn .wrbtn_lt {}

.wrbtn .wrbtn_rt {
    width: 75%;
    padding: 1.5rem 0 1.8rem;
    position: relative;
}

.wrbtn .wrbtn_rt:before {
    content: '';
    background: #7da5b5;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.wrbtn .wrbtn_rt ul {}

.wrbtn .wrbtn_rt ul li {
    display: inline-block;
    width: 24%;
}

.wrbtn .wrbtn_rt a {
    transition: .5s all;
    display: block;
}

.wrbtn .wrbtn_rt a:hover {
    opacity: .8;
    transform: translateY(-5px);
}

.wrbtn .wrbtn_rt a img {
    display: inline-block;
    vertical-align: middle;
}

.wrbtn .wrbtn_rt a h2 {
    display: inline-block;
    color: #49a9d2;
    font-size: 20px;
    font-weight: 500;
    vertical-align: middle;
    line-height: 1.5;
    letter-spacing: 1px;

}

.wr_inner {}

/****************************************************************************************************/
/******wasteremoval start***********/

/*wasteremoval1*/
.wasteremoval1 {}

.wasteremoval1 .wr1 {
    width: 1740px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wr1 .wr_lt {
    background: url(../../images/rec1lt_bg.png) top left no-repeat;
    background-size: cover;
    width: 552px;
    max-width: 100%;
    min-height: 564px;
    padding: 11rem 10rem 5rem 18rem;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;

}

.wr1 .wr_lt:before {
    content: '';
    background: url(../../images/rec1lt_en.png) bottom left no-repeat;
    background-size: contain;
    width: 112px;
    max-width: 100%;
    min-height: 462px;
    position: absolute;
    bottom: 4rem;
    left: 2.5rem;
    mix-blend-mode: multiply;
}

.wr1 .wr_lt:after {
    content: '';
    background: url(../../images/rec1lt_no.png) top right no-repeat;
    background-size: contain;
    width: 159px;
    max-width: 100%;
    min-height: 152px;
    position: absolute;
    top: 7rem;
    right: 6rem;
}

.wr_lt h3 {
    font-size: 24px;
    color: #49a9d2;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 0px;
}

.wr_lt img {
    margin-bottom: 1rem;
}

.wr_lt p {
    font-size: 16px;
    color: #557887;
    text-align: justify;
    text-indent: 3rem;
}


.wr1 .wr_rt {
    width: 67%;
    padding-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}


/*wr11*/
.wr_rt .wr11 {
    position: relative;
    padding: 2rem;
    background: url(../../images/recrt_deco02.png) bottom right no-repeat;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.6rem;
}

.wr11:before {
    content: '';
    background: #c7dbe1;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(3% 0, 97% 0, 100% 10%, 100% 90%, 97% 100%, 3% 100%, 0 90%, 0 10%);
    z-index: -1;
}

.wr11 .wr11_lt {
    width: 30%;
    padding: 2rem 2rem 0 2rem;
}

.wr11_lt .wr11_title {
    margin-bottom: 2rem;
}

.wr11_lt .wr11_title h4 {
    font-size: 20px;
    color: #2f5260;
    font-weight: 500;
    display: inline-block;
    width: 70%;
}

.wr11_lt .wr11_title img {
    display: inline-block;
}

.wr11_lt .wr11_txt {}

.wr11_lt .wr11_txt p {
    font-size: 16px;
    color: #557887;
    font-weight: 400;
    text-align: justify;

}

.wr11 .wr11_rt {
    width: 66%;
}

.wr11 .wr11_rt img {}


/*wr12*/
.wr_rt .wr12 {
    position: relative;
    padding: 2rem;
    background: url(../../images/recrt_deco02.png) bottom right no-repeat;
    margin-bottom: 2.6rem;
    width: 100%;
}

.wr12:before {
    content: '';
    background: #c7dbe1;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(3% 0, 97% 0, 100% 10%, 100% 90%, 97% 100%, 3% 100%, 0 90%, 0 10%);
    z-index: -1;
}

.wr12 .wr12_top {
    padding: 2rem 2rem 0 2rem;
    margin-bottom: 3rem;
}

.wr12_top .wr12_title {
    margin-bottom: 2rem;
}

.wr12_top .wr12_title h4 {
    font-size: 20px;
    color: #2f5260;
    font-weight: 500;
    display: inline-block;
    width: 19.2%;
}

.wr12_top .wr12_title img {
    display: inline-block;
}

.wr12_top .wr12_txt {}

.wr12_top .wr12_txt p {
    font-size: 16px;
    color: #557887;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 1px;
}

.wr12 .wr12_inner {}

.wr12 .wr12_inner ul {}

.wr12 .wr12_inner ul li {
    display: inline-block;
    width: 19%;
    text-align: center;
    position: relative;
}

.wr12 .wr12_inner ul li:not(:last-child):before {
    content: '';
    background: url(../../images/wr12_deco.png) top left no-repeat;
    width: 16px;
    min-height: 3px;
    position: absolute;
    top: 45%;
    bottom: 0;
    right: -1rem;
    margin: 0 auto;

}

.wr12 .wr12_inner ul li img {}

.wr12 .wr12_inner ul li p {
    font-size: 18px;
    color: #49a9d2;
    font-weight: 500;
}



/*wr13*/
.wr_rt .wr13 {
    position: relative;
    padding: 2rem;
    background: url(../../images/recrt_deco02.png) bottom right no-repeat;
    margin-bottom: 2.6rem;
    width: 100%;
}

.wr13:before {
    content: '';
    background: #c7dbe1;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(3% 0, 97% 0, 100% 10%, 100% 90%, 97% 100%, 3% 100%, 0 90%, 0 10%);
    z-index: -1;
}

.wr13 .wr13_top {
    padding: 2rem 2rem 0 2rem;
    margin-bottom: 3rem;
}

.wr13_top .wr13_title {
    margin-bottom: 2rem;
}

.wr13_top .wr13_title h4 {
    font-size: 20px;
    color: #2f5260;
    font-weight: 500;
    display: inline-block;
    width: 19.2%;
}

.wr13_top .wr13_title img {
    display: inline-block;
}

.wr13 .wr13_inner {}

.wr13 .wr13_inner ul {
    display: flex;
    justify-content: space-between;
}

.wr13 .wr13_inner ul li {
    width: 30.333%;
}

.wr13 .wr13_inner ul li img {}

.wr13 .wr13_inner ul li dl {
    padding: 1rem 3.8rem 0 2rem;
}

.wr13 .wr13_inner ul li dl dt {
    font-size: 20px;
    color: #2f5260;
    font-weight: 500;
    padding-bottom: 1.5rem;
}

.wr13 .wr13_inner ul li dl dd {
    font-size: 16px;
    color: #557887;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 1.8;
}





@media screen and (max-width:1730px) {
    .wr1 .wr_rt {
        width: 70%;
    }


}

@media screen and (max-width:1650px) {
    .wr11 .wr11_lt {
        width: 40%;
    }

    .wr12_top .wr12_title h4 {
        width: 25%;
    }

    .wr13_top .wr13_title h4 {
        width: 25%;
    }
}

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

@media screen and (max-width:1450px) {
    .wr1 .wr_rt {
        width: 60%;
    }

    .wr11 .wr11_lt {
        width: 50%;
    }

    .wr12_top .wr12_title h4 {
        width: 28.5%;
    }

    .wr13_top .wr13_title h4 {
        width: 28.5%;
    }
}

@media screen and (max-width:1340px) {
    .wr11 .wr11_lt {
        width: 60%;
    }

    .wr12_top .wr12_title h4 {
        width: 31.5%;
    }

    .wr13_top .wr13_title h4 {
        width: 31.5%;
    }

}

@media screen and (max-width:1300px) {
    .wrbtn {
        flex-wrap: wrap;
        padding: 0 2rem;
    }

    .wrbtn .wrbtn_lt {
        width: 60%;
    }

    .wrbtn .wrbtn_rt {
        width: 100%;
    }
}

@media screen and (max-width:1260px) {
    .wr11 .wr11_lt {
        padding: 2rem 2rem 0 0rem;
    }

    .wr12 .wr12_top {
        padding: 2rem 2rem 0 0rem;
    }

    .wr13 .wr13_top {
        padding: 2rem 2rem 0 0rem;
    }
}

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

    .wr11 .wr11_lt {
        width: 100%;
        margin-bottom: 2rem;
    }

    .wr11_lt .wr11_title h4 {
        width: 35%;
    }

    .wr11 .wr11_rt {
        width: 100%;
    }

    .wr12_top .wr12_title h4 {
        width: 35%;
    }

    .wr13_top .wr13_title h4 {
        width: 35%;
    }
}

@media screen and (max-width:1150px) {
    .wr11_lt .wr11_title h4 {
        width: 50%;
    }

    .wr12_top .wr12_title h4 {
        width: 50%;
    }

    .wr13_top .wr13_title h4 {
        width: 50%;
    }
}

@media screen and (max-width:1120px) {
    .wr1 .wr_lt {
        padding: 8rem 4rem 5rem 12rem;
        min-height: 470px;
    }

    .wr1 .wr_lt:before {
        background-size: 80%;
        min-height: 382px;
        bottom: 6rem;
        left: 1.5rem;
    }

    .wr1 .wr_rt {
        width: 80%;
    }


}

@media screen and (max-width:1050px) {
    .wrbtn .wrbtn_rt ul li {
        width: 45%;
        margin-bottom: 2rem;
    }

    .wasteremoval1 .wr1 {
        flex-wrap: wrap;
    }

    .wr1 .wr_lt {
        position: relative;
        top: 0;
        padding: 8rem 4rem 5rem 12rem;
        min-height: 580px;
    }

    .wr11_lt .wr11_title h4 {
        width: 30%;
    }

    .wr1 .wr_lt:before {
        bottom: 14rem;
    }

    .wr1 .wr_rt {
        width: 100%;
        justify-content: center;
    }

    .wr_rt .wr11 {
        flex-wrap: wrap;
        width: 95%;
        margin: 0 auto 2.6rem;
    }

    .wr11 .wr11_lt {
        padding: 2rem 2rem 0 2rem;
    }

    .wr_rt .wr12 {
        width: 95%;
        margin: 0 auto 2.6rem;
    }

    .wr12 .wr12_top {
        padding: 2rem 2rem 0 2rem;
    }

    .wr12_top .wr12_title h4 {
        width: 30%;
    }

    .wr_rt .wr13 {
        width: 95%;
        margin: 0 auto 2.6rem;
    }

    .wr13 .wr13_top {
        padding: 2rem 2rem 0 2rem;
    }

    .wr13_top .wr13_title h4 {
        width: 30%;
    }

}

@media screen and (max-width:768px) {
    .wr1 .wr_lt:before {
        background-size: 90%;
        min-height: 430px;
        bottom: 6rem;
        left: 1.5rem;
    }

    .wr11:before {
        clip-path: polygon(3% 0, 97% 0, 100% 6%, 100% 93%, 96% 100%, 3% 100%, 0 96%, 0 6%);
    }

    .wr11_lt .wr11_title h4 {
        width: 40%;
    }

    .wr12:before {
        clip-path: polygon(3% 0, 97% 0, 100% 6%, 100% 93%, 96% 100%, 3% 100%, 0 96%, 0 6%);
    }

    .wr12_top .wr12_title h4 {
        width: 40%;
    }

    .wr13:before {
        clip-path: polygon(3% 0, 97% 0, 100% 6%, 100% 93%, 96% 100%, 3% 100%, 0 96%, 0 6%);
    }

    .wr13_top .wr13_title h4 {
        width: 40%;
    }

    .wr13 .wr13_inner ul li {
        width: 32.333%;
    }

}

@media screen and (max-width:650px) {
    .wr11_lt .wr11_title h4 {
        width: 45%;
    }

    .wr12_top .wr12_title h4 {
        width: 45%;
    }

    .wr12 .wr12_inner ul li {
        width: 30%;
        margin-bottom: 2rem;
    }

    .wr13_top .wr13_title h4 {
        width: 45%;
    }
}

@media screen and (max-width:590px) {
    .wr1 .wr_lt:before {
        background-size: 80%;
        min-height: 380px;
        bottom: 11rem;
    }

    .wrbtn .wrbtn_rt ul li {
        width: 49%;
    }

    .wrbtn .wrbtn_rt a img {
        width: 20%;
    }

}

@media screen and (max-width:480px) {
    .wrbtn .wrbtn_rt a img {
        width: 15%;
    }

    .wr1 .wr_lt {
        min-height: 495px;
    }

    .wr1 .wr_lt:before {
        bottom: 5rem;
    }
}

@media screen and (max-width:450px) {
    .wrbtn .wrbtn_rt ul li {
        width: 100%;
    }

    .wrbtn .wrbtn_rt a img {
        margin-right: 1rem;
    }

    .wr1 .wr_lt {
        padding: 6rem 7rem 5rem 10rem;
        min-height: 455px;
    }

    .wr1 .wr_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 12rem;
    }

    .wr1 .wr_lt:after {
        background-size: 70%;
        min-height: 112px;
    }

    .wr11:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }

    .wr11_lt .wr11_title h4 {
        width: 70%;
    }

    .wr12:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }

    .wr12_top .wr12_title h4 {
        width: 70%;
    }

    .wr12 .wr12_inner ul li {
        width: 45%;
    }

    .wr12 .wr12_inner ul li:nth-of-type(2):before,
    .wr12 .wr12_inner ul li:nth-of-type(4):before {
        display: none;
    }

    .wr13:before {
        clip-path: polygon(3% 0, 97% 0, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0 98%, 0 2%);
    }

    .wr13_top .wr13_title h4 {
        width: 70%;
    }

    .wr13 .wr13_inner ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .wr13 .wr13_inner ul li {
        width: 85%;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width:414px) {
    .wr1 .wr_lt {
        min-height: auto;
        padding: 5rem 7rem 7rem 10rem;
    }

    .wr1 .wr_lt:before {
        bottom: 5rem;
        background-size: 70%;
        min-height: 340px;
        left: 0.5rem;
    }

    .wr1 .wr_lt:after {
        background-size: 60%;
        min-height: 95px;
        top: 5rem;
        right: 5rem;
    }

    .wr_lt p {
        font-size: 13px;
    }
}

@media screen and (max-width:393px) {
    .wr1 .wr_lt {
        padding: 5rem 7rem 4rem 10rem;
    }

    .wr1 .wr_lt:after {
        right: 2rem;
    }

    .wr13 .wr13_inner ul li {
        width: 94%;
    }
}

@media screen and (max-width:390px) {
    .wr13 .wr13_inner ul li {
        width: 95%;
    }
}

@media screen and (max-width:380px) {
    .wr11 .wr11_lt {
        padding: 2rem 0 0;
    }

    .wr12 .wr12_top {
        padding: 2rem 0 0;
    }

    .wr13 .wr13_top {
        padding: 2rem 0 0;
    }
}

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

    .wr1 .wr_lt {
        padding: 5rem 3rem 3rem 10rem;
    }

    .wr1 .wr_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 6rem;
    }

    .wr11 .wr11_lt {
        padding: 2rem 0 0;
    }

    .wr12 .wr12_top {
        padding: 2rem 0 0 0;
    }

    .wr13 .wr13_top {
        padding: 2rem 0 0 0;
    }

    .wr13 .wr13_inner ul li {
        width: 100%;
    }
}

@media screen and (max-width:350px) {
    .wr1 .wr_lt {
        padding: 4rem 3rem 2rem 4rem;
    }

    .wr1 .wr_rt {
        padding-top: 2rem;
    }

    .wr11_lt .wr11_title h4 {
        width: 80%;
    }

    .wr11_lt .wr11_title img {
        width: 10%;
    }

    .wr12_top .wr12_title img {
        width: 10%;
    }

    .wr13_top .wr13_title h4 {
        width: 80%;
    }

    .wr13_top .wr13_title img {
        width: 10%;
    }

    .wr13_top .wr13_title h4 {
        width: 80%;
    }
}

@media screen and (max-width:330px) {
    .wr_rt .wr12 {
        padding: 2rem 1rem;
    }

    .wr12 .wr12_inner ul li:not(:last-child):before {
        right: -1.3rem;
        background-size: 70%;
    }
}

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


    .wr1 .wr_lt:before {
        bottom: 5rem;
    }

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

    .wr11_lt .wr11_title h4 {
        width: 85%;
    }

    .wr11_lt .wr11_title img {
        width: 10%;
    }

    .wr12_top .wr12_title h4 {
        width: 85%;
    }

    .wr12_top .wr12_title img {
        width: 10%;
    }

    .wr13_top .wr13_title h4 {
        width: 85%;
    }

    .wr13_top .wr13_title img {
        width: 10%;
    }
}

@media screen and (max-width:310px) {
    .wr1 .wr_lt {
        padding: 4rem 3rem 3rem 4rem;
    }

}

/*wasteremova2*/
.wasteremova2 {
    width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 0;
    padding-bottom: 6rem;
}

.wasteremova2.showbg {
    background: #b6d5c6;
    transition: .5s ease all;
}

.wasteremova2 .wr2 {
    width: 1740px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wr2 .wr_lt {
    background: url(../../images/rec2lt_bg.png) top left no-repeat;
    background-size: cover;
    width: 552px;
    max-width: 100%;
    min-height: 564px;
    padding: 11rem 11rem 5rem 18rem;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;

}

.wr2 .wr_lt:before {
    content: '';
    background: url(../../images/rec2lt_en.png) top left no-repeat;
    background-size: contain;
    width: 112px;
    max-width: 100%;
    min-height: 462px;
    position: absolute;
    top: 6rem;
    left: 2.5rem;
    mix-blend-mode: color-burn;
}

.wr2 .wr_lt:after {
    content: '';
    background: url(../../images/rec2lt_no.png) top right no-repeat;
    background-size: contain;
    width: 204px;
    max-width: 100%;
    min-height: 152px;
    position: absolute;
    top: 7rem;
    right: 6rem;
}

.wr2 .wr_lt h3 {
    color: #49a9d2;
    margin-bottom: 4rem;
}

.wr2 .wr_lt p {
    color: #a8cddb;
    text-indent: 3rem;
    padding-bottom: 2rem;
}


.wr2 .wr_rt {
    width: 67%;
    margin-top: 4rem;
    background: url(../../images/recrt_deco03.png) bottom right no-repeat;
    position: relative;
    padding: 6.3rem 7.1rem 3.9rem;
}

.wr2 .wr_rt:before {
    content: '';
    background: #ecf4f1;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(3% 0, 97% 0, 100% 5%, 100% 94%, 97% 100%, 3% 100%, 0 94%, 0 5%);
    z-index: -1;
}

.wr2 .wr_rt:after {
    content: '';
    background: url(../../images/recrt_deco01.png) top left no-repeat;
    width: 35px;
    max-width: 100%;
    min-height: 9px;
    position: absolute;
    top: 5rem;
    left: 0;
}


.wr_rt .wr2_top {}

.wr2_top .wr2top_title {}

.wr2_top .wr2top_title h4 {
    vertical-align: middle;
    font-size: 24px;
    color: #49a9d2;
    font-weight: bold;
}

.wr2_top .wr2top_title h4 img {
    vertical-align: middle;
    padding-left: .5rem;
}

.wr2_top .wr2top_wrap {
    margin-top: 3.3rem;
}

.wr2top_wrap ul {
    min-height: 273px;
    display: flex;
    justify-content: space-between;
}

.wr2top_wrap ul li {
    width: 16%;
    position: relative;
}

.wr2top_wrap ul li:not(:last-child):before {
    content: '';
    background: url(../../images/rec4_deco02.png) top right no-repeat;
    width: 17px;
    max-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    right: -4rem;
}

.wr2top_wrap ul li img {
    padding-bottom: 1rem;
}

.wr2top_wrap ul li p {
    font-size: 16px;
    color: #557887;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 1.8;
}

.wr_rt .wr2_bot {
    margin-top: 4rem;
}

.wr2_bot a {
    display: block;
    width: 30%;
    margin: 0 auto;
}

.wr2_bot a .wr2_more {
    background: #81d2c7;
    padding: 2rem 6rem;
    text-align: center;
    clip-path: polygon(5% 0, 95% 0, 100% 20%, 100% 80%, 95% 100%, 5% 100%, 0 80%, 0 20%);
    transition: .5s all;
}

.wr2_bot a .wr2_more p {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    transition: .5s all;
}

.wr2_more i {
    padding-left: 1rem;
}

.wr2_bot a:hover .wr2_more {
    background: #81d2c7;
}

.wr2_bot a:hover .wr2_more p {
    color: #3a687c;
}



@media screen and (max-width:1730px) {
    .wr2 .wr_rt {
        width: 70%;
    }

}

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


    .wr2_bot a {
        width: 40%;
    }
}

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


    .wr2 .wr_rt {
        padding: 6.3rem 4rem 3.9rem;
    }
}

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

@media screen and (max-width:1310px) {
    .wr2 .wr_rt {
        padding: 6.3rem 2rem
    }

    .wr2_bot a {
        width: 50%;
    }
}

@media screen and (max-width:1250px) {
    .wr2 .wr_rt:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }


}

@media screen and (max-width:1120px) {
    .wr2 .wr_lt {
        padding: 8rem 7rem 5rem 14rem;
    }

    .wr2 .wr_lt:before {
        background-size: 80%;
        min-height: 382px;
    }

    .wr2 .wr_rt {
        width: 80%;
    }
}

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

    .wasteremova2 .wr2 {
        flex-wrap: wrap;
    }

    .wr2 .wr_lt {
        position: relative;
        top: 0;
    }

    .wr2 .wr_rt {
        width: 95%;
        margin: 4rem auto 0;
        justify-content: center;
    }


}

@media screen and (max-width:768px) {
    .wr2 .wr_lt:before {
        background-size: 90%;
        min-height: 430px;
        left: 1.5rem;
    }
}

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

@media screen and (max-width:590px) {
    .wr2 .wr_lt:before {
        background-size: 80%;
        min-height: 380px;
    }

    .wr2 .wr_rt {
        padding: 8rem 3rem 5rem;
    }

    .wr2 .wr_rt:after {
        top: 6rem;
        left: 0;
    }

    .wr2top_wrap ul {
        flex-wrap: wrap;
        min-height: auto;
    }

    .wr2top_wrap ul li {
        width: 45%;
        padding-right: 4rem;
    }

    .wr2top_wrap ul li:not(:last-child) {
        min-height: 290px;
    }

    .wr2top_wrap ul li:not(:last-child):before {
        right: 0;
    }

    .wr2_bot a {
        width: 70%;
    }
}

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

    .wr2 .wr_lt {
        min-height: 495px;
    }

}

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

    .wr2 .wr_lt {
        padding: 6rem 7rem 5rem 10rem;
        min-height: 455px;
    }

    .wr2 .wr_lt:before {
        background-size: 60%;
        min-height: 290px;
    }

    .wr2 .wr_lt:after {
        background-size: 70%;
        min-height: 112px;
    }

    .wr2 .wr_rt {
        padding: 8rem 2rem 5rem;
    }

    .wr2 .wr_rt:before {
        clip-path: polygon(3% 0, 97% 0, 100% 1%, 100% 98%, 97% 100%, 3% 100%, 0 99%, 0 1%);
    }



    .wr2top_wrap ul li {
        width: 48%;
    }
}

@media screen and (max-width:414px) {
    .wr2 .wr_lt {
        padding: 6rem 4rem 5rem 10rem;
        min-height: 420px;
    }

    .wr2 .wr_lt:before {
        background-size: 70%;
        min-height: 340px;
        left: 0.5rem;
    }

    .wr2 .wr_lt:after {
        background-size: 60%;
        min-height: 95px;
        top: 5rem;
        right: 5rem;
    }

    .wr2_bot a .wr2_more {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width:393px) {
    .wr2 .wr_lt {
        padding: 6rem 2rem 3rem 9rem;
        min-height: 380px;
    }

    .wr2 .wr_lt:before {
        top: 4rem;
    }

    .wr2 .wr_lt:after {
        right: 4rem;
    }

}

@media screen and (max-width:360px) {
    .wr2 .wr_lt {
        padding: 6rem 1rem 0rem 8rem;
    }

    .wr2 .wr_lt:before {
        background-size: 60%;
        min-height: 290px;
    }

    .wr2 .wr_rt {
        padding: 6rem 2rem 5rem;
    }

    .wr2 .wr_rt:after {
        top: 4rem;
    }


    .wr2_bot a {
        width: 80%;
    }
}

@media screen and (max-width:350px) {
    .wr2 .wr_lt {
        padding: 5rem 0rem 0rem 7rem;
    }

    .wr2 .wr_lt:before {
        background-size: 50%;
        min-height: 240px;
    }
}

@media screen and (max-width:340px) {
    .wr2 .wr_lt {
        padding: 5rem 0rem 0rem 6rem;
    }

    .wr2 .wr_lt:before {
        background-size: 40%;
        min-height: 200px;
    }
}

@media screen and (max-width:320px) {
    .wr2 .wr_lt {
        padding: 5rem 1rem 1rem 5rem;
    }

    .wr2 .wr_lt p {
        padding-bottom: 0rem;
    }

    .wr2top_wrap ul li:not(:last-child) {
        min-height: 270px;
        padding-right: 3rem;
    }

    .wr2top_wrap ul li:not(:last-child):before {
        right: -1rem;
    }
}

@media screen and (max-width:310px) {
    .wr2 .wr_lt {
        padding: 5rem 1rem 1rem 2rem;
    }
}

/******wasteremoval end*************/
/****************************************************************************************************/
/******secondhand start***********/

.sh_inner {
    padding-bottom: 5rem;
}

/*secondhand*/
.secondhand {}

.secondhand .sh {
    width: 1740px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sh .sh_lt {
    background: url(../../images/rec1lt_bg.png) top left no-repeat;
    background-size: cover;
    width: 552px;
    max-width: 100%;
    min-height: 564px;
    padding: 11rem 10rem 5rem 18rem;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;

}

.sh .sh_lt:before {
    content: '';
    background: url(../../images/rec1lt_en.png) bottom left no-repeat;
    background-size: contain;
    width: 112px;
    max-width: 100%;
    min-height: 462px;
    position: absolute;
    bottom: 4rem;
    left: 2.5rem;
    mix-blend-mode: multiply;
}

.sh .sh_lt:after {
    content: '';
    background: url(../../images/rec1lt_no.png) top right no-repeat;
    background-size: contain;
    width: 159px;
    max-width: 100%;
    min-height: 152px;
    position: absolute;
    top: 7rem;
    right: 6rem;
}

.sh_lt h3 {
    font-size: 24px;
    color: #49a9d2;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 0px;
}

.sh_lt img {
    margin-bottom: 1rem;
}

.sh_lt p {
    font-size: 16px;
    color: #557887;
    text-align: justify;
    text-indent: 3rem;
}


.sh .sh_rt {
    width: 67%;
    margin-top: 4rem;

    padding: 12rem 1rem 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    background: url(../../images/recrt_deco02.png) bottom right no-repeat;
}

.sh .sh_rt:before {
    content: '';
    background: #c7dbe1;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(3% 0, 97% 0, 100% 10%, 100% 90%, 97% 100%, 3% 100%, 0 90%, 0 10%);
    z-index: -1;
}

.sh_rt .snews_inner {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.sh_rt .newslist_rwd {
    position: relative;
    width: 49%;
    display: inline-block;
}

.sh_rt .newslist_rwd .npic {
    position: absolute;
    width: 280px;
    min-height: 198px;
    transition: .3s ease all;
    display: inline-block;
    vertical-align: top;
    top: -5rem;
    right: 2rem;
    z-index: 1;
}

@media screen and (max-width:1730px) {
    .sh .sh_rt {
        width: 70%;
    }


}

@media screen and (max-width:1670px) {
    .sh_rt .newslist_rwd .npic {
        right: 0rem;
        width: 50%;
    }

}


@media screen and (max-width:1470px) {
    .secondhand .sh {
        flex-wrap: wrap;
    }

    .sh .sh_lt {
        position: relative;
        top: 0;
        padding: 8rem 6rem 5rem 14rem;
        min-height: 580px;
    }

    .sh .sh_lt:before {
        bottom: 5rem;
        left: 0.5rem;
    }

    .sh .sh_rt {
        width: 95%;
        margin: 0 auto;
        justify-content: center;
    }

    .sh_rt .newslist_rwd .npic {
        right: 9rem;
        width: 50%;
    }

}

@media screen and (max-width:1400px) {
    .sh_rt .newslist_rwd .npic {
        right: 6rem;
    }

}

@media screen and (max-width:1280px) {
    .sh_rt .newslist_rwd {
        margin: 0 auto;
    }

    .sh_rt .newslist_rwd .npic {
        right: 4rem;
    }
}

@media screen and (max-width:1180px) {
    .sh_rt .newslist_rwd .npic {
        right: 2rem;
    }

}

@media screen and (max-width:1100px) {
    .sh_rt .snews_inner {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sh_rt .newslist_rwd {
        width: 70%;
        margin-top: 8rem;
    }

    .sh_rt .newslist_rwd .npic {
        right: 9rem;
    }
}

@media screen and (max-width:991px) {
    .sh_rt .newslist_rwd .npic {
        right: 5rem;
    }

}

@media screen and (max-width:880px) {
    .sh .sh_rt {
        padding: 6rem 1rem 5rem 2rem;
    }

    .sh_rt .newslist_rwd .npic {
        right: 2rem;
    }

}

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

    .sh_rt .newslist_rwd {
        width: 80%;
    }


}

@media screen and (max-width:768px) {
    .sh .sh_lt:before {
        background-size: 90%;
        min-height: 430px;
        bottom: 6rem;
        left: 1.5rem;
    }

    .sh .sh_rt:before {
        clip-path: polygon(3% 0, 97% 0, 100% 7%, 100% 93%, 97% 100%, 3% 100%, 0 93%, 0 7%);
    }

}

@media screen and (max-width:680px) {
    .sh_rt .newslist_rwd {
        width: 90%;
    }
}

@media screen and (max-width:600px) {
    .sh_rt .newslist_rwd {
        width: 100%;
    }
}

@media screen and (max-width:590px) {
    .sh .sh_lt:before {
        background-size: 80%;
        min-height: 380px;
        bottom: 11rem;
    }

}

@media screen and (max-width:530px) {
    .sh .sh_rt:before {
        clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0 97%, 0 3%);
    }

    .sh_rt .newslist_rwd {
        text-align: center;
        margin-top: 3rem;
    }

    .sh_rt .newslist_rwd .npic {
        right: 0;
        top: 3rem;
        position: relative;
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }
}

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

    .sh .sh_lt {
        min-height: 495px;
    }

    .sh .sh_lt:before {
        bottom: 5rem;
    }
}

@media screen and (max-width:450px) {
    .sh .sh_lt {
        padding: 6rem 5rem 5rem 10rem;
        min-height: 455px;
    }

    .sh .sh_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 12rem;
    }

    .sh .sh_lt:after {
        background-size: 70%;
        min-height: 112px;
    }

    .sh .sh_rt:before {
        clip-path: polygon(0% 0, 100% 0, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0 100%, 0 0%);
    }

}

@media screen and (max-width:414px) {
    .sh .sh_lt {
        min-height: auto;
        padding: 5rem 7rem 7rem 10rem;
    }

    .sh .sh_lt:before {
        bottom: 5rem;
        background-size: 70%;
        min-height: 340px;
        left: 0.5rem;
    }

    .sh .sh_lt:after {
        background-size: 60%;
        min-height: 95px;
        top: 5rem;
        right: 5rem;
    }

    .sh_lt p {
        font-size: 13px;
    }

    .sh .sh_rt {
        padding: 2rem 1rem 4rem 2rem;
    }

    .sh_rt .newslist_rwd .npic {
        width: 100%;
    }
}

@media screen and (max-width:393px) {
    .sh .sh_lt {
        padding: 5rem 5rem 4rem 10rem;
    }

    .sh .sh_lt:after {
        right: 2rem;
    }

    .sh .sh_rt {
        padding: 2rem 1rem 4rem 1rem;
    }

    .newslist_rwd .ntitle:before {
        background-size: contain;
    }

}

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

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

    .sh .sh_lt {
        padding: 5rem 2rem 3rem 6rem;
    }

    .sh .sh_lt:before {
        background-size: 60%;
        min-height: 290px;
        bottom: 6rem;
    }

}

@media screen and (max-width:350px) {
    .sh .sh_lt {
        padding: 4rem 3rem 2rem 4rem;
    }

    .sh .sh_rt {
        padding-top: 2rem;
    }


}

@media screen and (max-width:340px) {
    .sh_rt .newslist_rwd .npic {
        width: 100%;
    }
}

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


    .sh .sh_lt:before {
        bottom: 5rem;
    }

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


}

@media screen and (max-width:310px) {
    .sh .sh_lt {
        padding: 4rem 3rem 3rem 4rem;
    }

}


/******secondhand end***********/

/**/
#enter {
    transform: translateY(-70px);
}

#recy1,
#recy2,
#recy3,
#recy5 {
    transform: translateY(-70px);
}
#recy4 {
    transform: translateY(-90px);
}
#wr11 {
    transform: translateY(-70px);
}

#wr12,
#wr13,
#wr2 {
    transform: translateY(-100px);
}

@media screen and (max-width:450px) {
    #fter {
        transform: translateY(-100px);
    }
}