@charset "utf-8";
/* CSS Document */
/* 導覽列樣式 開始 */
body {
    font-family: '微軟正黑體',Arial, sans-serif;
    font-size: 18px;
    line-height: 2;
}
img{
    max-width: 100%;
}
.mainArea{
    width: 100%;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .barBTN,
    .closeBTN {
        display: none;
    }

    .wrap {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative;
    }
}
.logo {
    padding: 30px 0px;
    z-index: 99999;
    font-size: 26px;
    color: #333;
    line-height: 40px;
    font-weight: bold;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.logo img{
    vertical-align: bottom;
    max-height: 40px;
}
.logo span{
    display: inline-block;
    margin-left: 12px;
    position: relative;
    padding-left: 12px;
}
.logo span::before {
    content: "";
    border-left: 1px solid #333;
    display: inline-block;
    width: 1px;
    height: 40px;
    top: -1px;
    left: 0px;
    position: absolute;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
.linknav{
    width: 100%;
    background: #00509a;
}
.linknav ul {
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1200px;
}
.linknav ul > li {
    position: relative;
    float: left;
    display: block;
    border-left: solid #0f5aa0 1px;
    border-right: solid #282828 1px;
}
.linknav ul > li:last-child {
    border-right: none;
}
.linknav ul > li.active {
    background: #003667;
    color: #fff;
}
.linknav ul > li:hover {
    color: #fff;
    background: #003667;
    cursor: pointer;
}
.linknav ul > li:hover a {
    color: #fff;
}
.linknav ul > li > a {
    display: block;
    color: #fff;
    font-size: 15px;
    padding: 10px 37px;
    text-align: center;
}
.linknav ul > li hr {
    opacity: 0;
    background: #e0791d;
    margin-top: -2px;
    height: 2px;
    width: 100%;
    border: none;
    display: inline-block;
    position: absolute;
}
.linknav ul > li.active hr, .linknav ul > li:hover hr {
    opacity: 1;
}
.linknav ul > li .dropdown {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: #a98b73;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
.linknav ul > li:hover .dropdown {
    top: 65.7px;
    opacity: 1;
    transition: 0.3s;
    z-index: -1;
}
.linknav ul > li .dropdown a {
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #ffffff36;
    padding: 15px 20px;
    line-height: 1.5em;
    display: block;
}
.linknav ul > li .dropdown h4 {
    margin: 0;
    white-space: nowrap;
}
.linknav a {
    font-size: 18px;
}
nav {
    width: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    height: 150px;
    z-index: 999;
}
.nav_banner {
    margin-top: 150px;
    position: relative;
    z-index: 10;
}
.banner_txt {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    color: #fff;
}
.banner_txt > h1 {
    font-size: 30px;
    margin: 0 0 20px 0;
}
span.banner_title {
    display: block;
    font-size: 48px;
    font-weight: 600;
}
span.cross {
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
}
span.cross::after {
    content: '';
    width: 1px;
    height: 100%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
    position: absolute;
    top: calc(50% + 8px);
    left: 50%;
}
span.cross::before {
    content: '';
    width: 1px;
    height: 100%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #fff;
    position: absolute;
    top: calc(50% + 8px);
    left: 50%;
}
.banner_txt > p {
    font-size: 24px;
    display: inline-block;
    margin: 0;
    background-color: #e8dbd5;
    padding: 5px 15px;
    color: #5d3100;
}
@media (max-width: 768px) {
    .nav_banner {
        margin-top: 60px;
    }
    .module7 .banner .bannerTxt {
        font-size: 0.8rem;
    }
    nav {
        height: 60px;
        box-shadow: 0 0 5px #ccc;
    }
    .linknav ul > li:hover a {
        color: #333;
    }
    .barBTN {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        font-size: 20px;
        color: #fff;
        text-decoration: none;
        background-color: #005993;
        width: 50px;
        height: 60px;
    }

    a.barBTN img {
        width: 26px;
    }

    .barBTN:hover,
    .barBTN:active,
    .barBTN:focus {
        color: #fff;
        text-decoration: none;
    }
    .barBTN span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: -0.5px;
        width: 26px;
        height: 2px;
        background-color: #fff;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        margin-left: 0px;
    }
    .barBTN span:before, .barBTN span:after {
        content: "";
        position: absolute;
        right: 0;
        width: 26px;
        height: 2px;
        background-color: #fff;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .barBTN span:before {
        top: -7px;
    }
    .barBTN span:after {
        bottom: -7px;
    }
    .barBTN.show span {
        background-color: transparent;
    }
    .barBTN.show span:before {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .barBTN.show span:after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .linknav ul > li > a:after{
        display: none;
    }
    .linknav {
        width: 100%;
        z-index: 9999;
        display: none;
        height: calc(100vh - 60px);
        background-color: #E9F6FE;
        border-top: 1px solid #e1c1ca26;
    }
    .linknav ul {
        flex-direction: column;
        margin-top: 0px;
    }
    .linknav ul > li {
        padding: 0;
        padding: 0;
        border-bottom: 1px solid #ffffff36;
        width: 100%;
        background-color: #005993;
        border-left: none;
        border-right: none;
    }
    .linknav ul > li:hover a{
        color: #fff;
     }
    .linknav ul > li > a {
        color: #FFF;
    }
    .linknav a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 18px;
        color: #592f16;
        text-decoration: none;
    }

    .linknav a:hover,
    .linknav a:active,
    .linknav a:focus {
        background-color: #003667;
        color: #FFF;
        text-decoration: none;
    }
    .linknav ul > li .dropdown {
        display: none;
    }
}

/* 導覽列樣式 結束 */

.cont {
    width: 1300px;
    margin: 0 auto;
}

.fbook {
    padding: 0 !important;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}
.titleBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
    text-align: center;
}
.titleBox .title{
    position: relative;
    padding: 35px 0 15px;
    margin: 20px 0;
}
.titleBox > .title::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 25px;
    background-image: url(../images/website_image/line_1.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.titleBox > .title::after{
    content: "";
    position: absolute;
    display: block;
    width: 200%;
    height: 1px;
    background: linear-gradient(to left, #fff1f6, #F16377, #fff1f6);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.title > span {
    display: block;
    font-size: 18px;
    font-family: "Playfair Display";
    font-weight: 300;
    letter-spacing: .8px;
    color: #F16377;
    margin-top: 5px;
    text-align: center;
}

.ftitle h3 {
    display: inline-block;
    background: #0071bf;
    padding: 10px 15px;
    color: #fff;
    border-radius: 16px;
    font-size: 1.17em;
    font-weight: bold;
}

.fsub {
    background: #0071bf !important;
    border: none !important;
    color: #fff !important;
    padding: 4px 10px !important;
    cursor: pointer;
}

.pro_show_info {
    width: 100%;
    margin-bottom: 5px;
    float: left;
    position: relative;
    padding-top: 10px;
}

.pro_show_info li {
    width: 100%;
    padding: 2px 10px;
    float: left;
}

.pro_show_info li.attr .fl {
    width: 20%;
}

.fl {
    float: left;
    display: inline;
}

.pro_show_info li.attr .fr {
    width: 79%;
}

.fr {
    float: right;
    display: inline;
}

.pro_show_info li.attr a {
    line-height: 20px;
    margin: 0 10px 10px 0;
    padding: 3px 8px;
    background: #fbfbfb;
    border: solid 1px #e2e2e2;
    border-radius: 1px;
    display: inline-block;
    color: #666;
}

.pro_show_info li.attr a.on {
    background: #0071bf;
    border-color: #0071bf;
    color: #fff;
}

@media (max-width: 768px) {
    .cont {
        width: 100%;
    }

    .pro_show_info li.attr .fl {
        width: 100%;
    }

    .pro_show_info li.attr .fr {
        width: 100%;
    }

    .pro_show_info li {
        float: inherit;
    }

    .pro_show_info {
        padding-bottom: 10px;
    }

    .pro_show_info li.attr a {
        margin: 2px;
    }

    .foot1 {
        padding: 10px;
        font-size:12px;
        height: auto !important;
        line-height: 22px !important;
    }
}
div#newmodulePc .titleBox{
    padding-top: 50px;
}
.foot1 {
    width: 100%;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    color: #999;
    background-color: #313131;
}

.foot1 a {
    color: #999;
}

.module7 .contact .contact_content .right {
    width: 165px;
    text-align: center;
}
.module7 .contact .contact_content .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-animation-name: scaleDraw;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 4s;
}

@keyframes scaleDraw {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.95);
    }
}

.xinring_list_box {
    margin: 0;
    padding: 0;
    list-style: none;
    position: fixed;
    right: 15px;
    bottom: 0px;
    z-index: 9999999;
}
.xinring_list_box > li {
    cursor: pointer;
    position: relative;
    width: 45px;
    height: 45px;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #aaa;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}
.xinring_list_box > li a{
    color: #fff;
    font-style: normal;
}
.xinring_list_box:hover {
    background: #f3b02b;
    border-radius: 50%;
}
@media (max-width: 768px) {
    /* .xinring_list_box > li {
        width: 35px;
        height: 25px;
        padding: 5px 10px 25px 10px;
    } */
}
.footer_asidelink {
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 999;
}
.footer_asidelink ul {
    margin: 0;
    padding: 0;
}
.footer_asidelink li {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    border-radius: 50%;
    padding: 8px;
    position: relative;
    cursor: pointer;
}
.footer_asidelink > ul > li:nth-child(1) {
    background-color: #21B44D;
}
.footer_asidelink > ul > li:nth-child(2) {
    background-color: #E74B2C;
}
.footer_asidelink li a{
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: relative;
}
.footer_asidelink li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer_asidelink li:hover{
    box-shadow: 2px 2px 4px #000;
}
.footer_asidelink li:hover::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
    .footer_asidelink {
        bottom: 45px;
        right: 0px;
    }
    .xinring_list_box {
        right: 0px;
    }
    .footer_asidelink li, .xinring_list_box > li {
        width: 35px;
        height: 35px;
        padding: 5px;
    }
}
/* 關於我們 開始 */
/*.homeB*/
.homeB{ margin:50px 0; }
.homeB .bg{ width:100%; background:url(../images/homebbg.jpg) no-repeat top;display: flex;flex-wrap: wrap;}
.homeB .box{ width:100%;padding:10px 50px;position: relative;}
.homeB .box .box_s ul{
   width: 100%;
   margin: 0;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}
.homeB .box .box_s ul li{width: calc(100% / 3);padding: 0px 40px 0 0;}
.homeB .two{padding:0px 42px 0px 90px;}
.homeB .box.two .box_s ul li{padding: 20px 20px 20px 20px;position: relative;}
.homeB .box.two .box_s ul li:nth-child(1)::before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 21px;
    height: 23px;
    background-image: url(../images/website_image/icon_no0.png);
    top: -11px;
    right: -11px;
}
.homeB .box.two .box_s ul li:nth-child(1) .box_img img{
   max-height: 500px;
}
.homeB .box.two .box_s ul li:nth-child(2){
   border-left: 1px solid #ccc;
   border-bottom: 1px solid #ccc;
}
.homeB .box.two .box_s ul li:nth-child(3){
   border-bottom: 1px solid #ccc;
   padding-right: 50px;
}
.homeB .box.two .box_s ul li:nth-child(3)::before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 30%;
    background-color: #ccc;
    bottom: 0;
    right: 0;
}
.homeB .box h3{color:#00529c; font-size:26px;font-weight: bold; margin:20px 0}
.homeB .box p{font-size:16px; color:#555;line-height:25px; margin:20px 0 10px 0; white-space: nowrap;}
.homeB .box span{color:#00529c;display: block;font-size: 1.1em;}
.homeB .box em{ margin:0 5px 0 0; font-style:normal;color:#00529c;}
.homeB .box img{ display: block; }
.homeB .one{padding:20px 10px 40px 110px; border-right: 1px solid #ccc;}
.homeB .one::before{
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../images/website_image/icon_no1.png);
    background-repeat: no-repeat;
    width: 84px;
    height: 143px;
    top: 0;
    left: 0;
}
.homeB .two::before{
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../images/website_image/icon_no2.png);
    background-repeat: no-repeat;
    width: 84px;
    height: 143px;
    top: 0;
    left: 0;
}
.homeB .two::before{
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../images/website_image/icon_no2.png);
    background-repeat: no-repeat;
    width: 84px;
    height: 143px;
    top: 0;
    left: 0;
}
.homeB .two .box_s::before{
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../images/website_image/icon_no3.png);
    background-repeat: no-repeat;
    width: 84px;
    height: 143px;
    bottom: 20%;
    right: 0;
    z-index: 5;
}
.homeB .one::after,.homeB .two::after{
   content: "";
   position: absolute;
   display: block;
   width: calc(100% - 42px);
   height: 1px;
   background-color: #ccc;
   top: 0;
   right: 0;
}
.box_img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}

/*.homeC*/
.homeC{
    padding:0px 0;
    background: url(../images/website_image/homecbg.webp) no-repeat center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
}
.homeC .binBox{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.homeC .titleOne{background: #00529c;padding: 50px 15px;}
.homeC .titleOne ul{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.homeC .titleOne ul li{
    padding: 25px 15px;
    position: relative;
    width: calc(100% / 7);
    justify-content: center;
    display: inline-flex
}
.homeC .titleOne ul li p {
    font-size: 16px;
    color: #fff;
    opacity: 0;
    animation: showText 14s infinite;
    display: block;
    position: absolute;
    bottom: -22px;
    background: #003667;
    border-radius: 25px;
    padding: 0 10px;
    border: 3px solid #00D7FF;
}
.homeC .titleOne ul li:nth-child(1) p { animation-delay: 0s; }
.homeC .titleOne ul li:nth-child(2) p { animation-delay: 2s; }
.homeC .titleOne ul li:nth-child(3) p { animation-delay: 4s; }
.homeC .titleOne ul li:nth-child(4) p { animation-delay: 6s; }
.homeC .titleOne ul li:nth-child(5) p { animation-delay: 8s; }
.homeC .titleOne ul li:nth-child(6) p { animation-delay: 10s; }
.homeC .titleOne ul li:nth-child(7) p { animation-delay: 12s; }
@keyframes showText {
    0%, 20% { opacity: 0; }
    10% { opacity: 1; }
}
.homeC .titleOne ul li > div{
    background-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 20px;
    box-shadow: 0 0 7px #fff;
    position: relative;
    transition: transform 0.3s ease;
    animation: pulseScale 14s infinite;
}
.homeC .titleOne ul li:nth-child(1) > div { animation-delay: 0s; }
.homeC .titleOne ul li:nth-child(2) > div { animation-delay: 2s; }
.homeC .titleOne ul li:nth-child(3) > div { animation-delay: 4s; }
.homeC .titleOne ul li:nth-child(4) > div { animation-delay: 6s; }
.homeC .titleOne ul li:nth-child(5) > div { animation-delay: 8s; }
.homeC .titleOne ul li:nth-child(6) > div { animation-delay: 10s; }
.homeC .titleOne ul li:nth-child(7) > div { animation-delay: 12s; }
@keyframes pulseScale {
    0%, 20% { transform: scale(1); }
    10% { transform: scale(1.05); }
}
.homeC .titleOne ul li::before{
    content: "";
    position: absolute;
    background-image: url(../images/website_image/homec_line_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 110%;
    height: 110%;
    top: 0;
    left: -7%;
}
.icon-carousel img {
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: pulseColor 14s infinite;
}
@keyframes pulseColor {
    0%, 20% { transform: scale(1); filter: none;}
    10% { transform: scale(1.1);filter: invert(30%) sepia(100%) saturate(500%) hue-rotate(190deg); }
}
.icon-carousel li:nth-child(1) img { animation-delay: 0s; }
.icon-carousel li:nth-child(2) img { animation-delay: 2s; }
.icon-carousel li:nth-child(3) img { animation-delay: 4s; }
.icon-carousel li:nth-child(4) img { animation-delay: 6s; }
.icon-carousel li:nth-child(5) img { animation-delay: 8s; }
.icon-carousel li:nth-child(6) img { animation-delay: 10s; }
.icon-carousel li:nth-child(7) img { animation-delay: 12s; }
.homeC .container{
    padding: 10px 0;
    position: relative;
}
.homeC .container::before{
    content: "";
    position: absolute;
    display: block;
    width: 70%;
    height: 100%;
    top: 0;
    right: -40vw;
    background-image: url(../images/website_image/bg_pro.webp);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.2;
    animation: tiltRight 5s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes tiltRight {
    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }
    50% {
        transform: rotate(2deg) translateX(5px);
    }
}
.homeC .bin{ position:relative; width:100%; margin:60px 0;display: flex;flex-wrap: wrap;align-items: center;align-items: stretch;}
.homeC .bin .con{ position: absolute; left:563px; top:40px; z-index:99}
.homeC .bin p{color:#333; font-size:15px;}
.homeC .bin .left{ width:250px;text-align: center;position: relative; }
.homeC .bin .right::before{
    content: "";
    position: absolute;
    display: block;
    background-image: url(../images/website_image/arrow.png);
    background-repeat: no-repeat;
    width: 40px;
    height: 25px;
    bottom: -40px;
    left: 17px;
}
.homeC .bin:last-child .right::before{
    display: none;
}
.homeC .bin .left img{width: 185px;}
.homeC .bin .right{ width:calc(100% - 250px);position: relative;display: flex;align-items: center;}
.homeC .bin .right p{color:#333;font-size: 24px;}
.homeC .bin .right p span{
    background-color: #0385c2;
    color: #fff;
    padding: 3px 16px;
    border-radius: 25px;
    margin-right: 15px;
}
.homeC .bin:nth-child(odd) .right p span{
    background-color: #00acbf;
}

/* 關於我們 結束 */
@media (max-width: 1250px) {
    .aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil {
        width: 100%;
        margin-bottom: 15px;
    }
    .aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil:last-child{
        margin-bottom: 0;
    }
}
@media (max-width: 1200px) {
    .homeC .titleOne ul li {
    padding: 20px 15px;
}
.homeC .titleOne ul li > div {
    width: 80px;
    height: 80px;
}
.homeC .titleOne ul li p{font-size: 14px;border: 2px solid #00D7FF;}
.homeB .box p {
    white-space: normal;
}

}
@media (max-width: 1000px) {
    .homeC .titleOne ul li {
    padding: 15px 15px;
}
.homeC .titleOne ul li > div {
    width: 60px;
    height: 60px;
    padding: 10px;
}
}
@media (max-width: 768px) {
    .homeB {
        margin: 30px 5px;
    }
    .homeB .titleOne{
        background-image: url(../images/website_image/homeb_titleimg.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 50px;
        height: 50px;
    }
    .homeB .titleOne img{
        display: none;
    }
    .homeB .container {
        width: 100%;
    }
    /**/
    body {
        font-size: 16px;
    }
    .logo{
        padding-left: 5px;
    }
    a.logo img {
        height: 23px;
        vertical-align: middle;
        top: 2px;
        position: relative;
    }
    .barBTN {
        position: absolute;
        top: 50%;
        right: 0px;
        transform: translate(0%, -50%);
    }
    .logo span {
        font-size: 16px;
        margin-left: 5px;
        padding-left: 5px;
        line-height: 60px;
    }
    .logo span::before{
        height: 27px;
        top: 16px;
    }
    .linknav {
        position: absolute;
        top: 60px;
        left: 0;
    }
    .banner_txt > h1 {
        font-size: 20px;
        line-height: 2em;
    }
    span.banner_title {
        font-size: 24px;
    }
    .banner_txt > p {
        font-size: 16px;
    }
    .video div iframe {
        height: 45vh;
    }
    .titleBox .title {
        font-size: 21px;
        padding: 25px 0 10px;
    }
    .title > span {
        font-size: 14px;
    }
    .titleBox > .title::before {
        height: 18px;
    }
    .titleBox > .title::after {
        width: 150%;
    }
    /**/
    .homeB .one::before, .homeB .two::before {
        background-size: contain;
        width: 40px;
    }
    .homeB .two .box_s::before {
        display: none;
    }
    .homeB .one::after, .homeB .two::after {
        width: calc(100% - 20px);
    }
    .homeB .one {
        padding: 10px 10px 40px 55px;
    }
    .homeB .box h3 {
    font-size: 22px;
}
    .homeB .two {
    padding: 0px 10px 0px 55px;
    border-right: 1px solid #ccc;
}
.homeB .box.two .box_s ul li:nth-child(2) {
    border-left: 0;
    border-bottom: 0;
    margin-top:20px;
}
.homeB .box.two .box_s ul li:nth-child(2)::before{
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../images/website_image/icon_no3.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 143px;
    left: -60px;
    top: -10px;
    z-index: 5;
}
.homeB .box.two .box_s ul li:nth-child(2)::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% + 50px);
    height: 1px;
    background-color: #ccc;
    top: 10px;
    right: -10px;
}
.homeB .box.two .box_s ul li:nth-child(3) {
    border-bottom: 0;
}
.homeB .box.two .box_s ul li:nth-child(1)::before{display: none;}
.homeB .box.two .box_s ul li:nth-child(3)::before{display: none;}
.homeB .box.two .box_s ul li:nth-child(3) .box_txt{display: none;}
    .homeB .box .box_s ul li {
        width: 100% ;
        padding: 0px 0px 0 0;
    }
    .homeB .box.two .box_s ul li {
    padding: 10px 20px 20px 0px;
}
    .box_img {
    height: auto;
}
.homeC .titleOne ul li {
    padding: 5% 15px 1%;
    width: 33%;
    margin: 20px 0px;
}
.homeC .titleOne ul li::before{background-position: center;}
.homeC .titleOne {
    padding: 20px 15px;
}
.homeC .bin .left {
    width: 100px;
}
.homeC .bin .left img {
    width: 100px;
}
.homeC .bin .right {
    width: calc(100% - 100px);
    padding-left: 10px;
}
.homeC .bin .right::before {
    background-size: contain;
    width: 25px;
    height: 27px;
}
.homeC .bin .right p {
    font-size: 16px;
    line-height: 1.5;
}
.homeC .container {
    padding: 10px 10px;
    width: 100%;
}
}
@media (max-width: 500px) {

    .banner_txt > h1 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    span.banner_title {
        font-size: 24px;
    }
    .banner_txt > p {
        font-size: 14px;
    }
    span.cross {
        width: 15px;
        height: 15px;
    }
    span.cross::before,
    span.cross::after {
        top: calc(50% + 0px);
    }
    .nav_banner {
        z-index: -2;
    }

}