﻿*,
::before,
::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: webfont, "Microsoft Yahei", Arial, sans-serif;
    color: #333;
}

ul,
ol,
dl,
li {
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

a {
    outline: none;
    text-decoration: none;
    color: #131313;
}

input,
a,
img,
select,
textarea {
    border: 0;
    resize: none;
    outline: none;
    outline: none;
    /*清除移动浏览默认的样式*/
    -webkit-appearance: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*清除浮动*/

.clearfix::after,
.clearfix::before {
    content: ".";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {}

::-webkit-scrollbar-thumb {
    background: #000;
}

#jsi-canvas-wrap-under {
    position: fixed;
    z-index: -1;
}

/* wgt-fade-animate */

.wgt-fade-animate {
    -webkit-transform: scale(0.3) translateY(50px);
    -moz-transform: scale(0.3) translateY(50px);
    -ms-transform: scale(0.3) translateY(50px);
    transform: scale(0.3) translateY(50px);
    opacity: 0;
}

.appear {
    -wewgtit-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    -moz-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    -webkit-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
    0% {
        -webkit-transform: scale(0.3) translateY(50px);
        -moz-transform: scale(0.3) translateY(50px);
        -ms-transform: scale(0.3) translateY(50px);
        transform: scale(0.3) translateY(50px);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1) translateY(0);
        -moz-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes opacity_show {
    0% {
        -moz-transform: scale(0.3) translateY(50px);
        transform: scale(0.3) translateY(50px);
        opacity: .1;
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes opacity_show {
    0% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes opacity_show {
    0% {
        -webkit-transform: scale(0.3);
        -moz-transform: scale(0.3);
        transform: scale(0.3);
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* =====================
    header 
    =================================================================== */

/* 1 */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding-left: 80px;
    padding-right: 80px;
    transition: background-color 1s;
    /*overflow: hidden;*/
}

.headBg_cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.48s;
    background: #fff;
    z-index: 990;

}

.headBg_cursor.white {
    height: 84px;
    background: rgba(255, 255, 255, .9);
}

header::before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.48s;
    background: #fff;
    z-index: -1;
}

.headLogo {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 4px;
    transition: all 0.48s;
}

.headLogo img { height:44px;
}
@media screen and (max-width:736px) {
    .headLogo img { height:36px; margin-top: 3px; }
}

.headLogo_r {
    display: none;
}

.headRig {
    float: right;
    margin-top: 14px;
    width: 850px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease-in-out
}

.headRig>a {
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: opacity .5s ease, transform 0.5s ease-in-out;
    transition: opacity .5s ease, transform 0.5s ease-in-out;
    font-size: 22px;
    position: relative;
    color: #fff;
}

.headBg {
    height: 50px;
    float: right;
    text-transform: uppercase;
    width: 50px;
    position: relative;
    text-align: center;
    z-index: 1;
    color: #f5f5f3;
    display: flex;
    align-items: center;
    transition: height 0.5s ease-in-out
}

.headBg_bg {
    cursor: pointer;
    background-color: #42919e;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.headBg_font {
    font-size: 10px;
    position: relative;
    transition: all .5s ease-in-out;
}

.headBg_menu::before,
.headBg_menu::after {
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    height: 1px;
    background-color: #fff;
    right: 10px;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

.headBg_menu::before {
    top: 50%;
    margin-top: -3px;
    background-color: #f5f5f3;
}

.headBg_menu::after {
    top: 50%;
    margin-top: 3px;
    background-color: #f5f5f3;
}

@media(min-width:1200px) {
    .headBg:hover .headBg_menu::before {
        -webkit-transform: translate3d(0, 3px, 1px);
        transform: translate3d(0, 3px, 1px);
    }

    .headBg:hover .headBg_menu::after {
        -webkit-transform: translate3d(0, -4px, 1px);
        transform: translate3d(0, -4px, 1px);
    }
}
header.hide .headRig>a {
    transform: translateY(-100px);
}

header.hide .headBg_font {
    transform: translateY(-100px);
}

header.font .headRig>a {
    color: #1c1c1c;
}

header.font .d_a {
    color: #1c1c1c;
}

header.font .d__el {
    background: #1c1c1c;
}

header.font .d__btn:before {
    background-image: url(https://show.17sucai.com/preview/2524208/2023-09-19/%E7%BD%91%E7%BB%9C%E5%85%AC%E5%8F%B8pb/%E7%BD%91%E7%BB%9C%E5%85%AC%E5%8F%B8pb/static/css/static/skin/images/phones1.svg);
}

header.font .headLogo_r {
    display: block;
}

header.font .headLogo_w {
    display: none;
}

header.bg .headBg_bg {
    background: #C30D23;
}

header.click::before {
    content: none !important
}

header.click .headBg_bg {
    background: #fff !important;
}

header.click .headBg_menu::before,
header.click .headBg_menu::after {
    background: #1c1c1c
}

header.click .headLogo_r {
    display: none !important;
}

header.click .headLogo_w {
    display: block !important;
}

header.click .headRig .headBg_font,
header.click .headRig>a {
    opacity: 0;
}

header.click .headBg_menu::before {
    -webkit-transform: translate3d(0, 3px, 1px) rotate(-48deg) scale(.6);
    transform: translate3d(0, 3px, 1px) rotate(-48deg) scale(.6);
}

header.click .headBg_menu::after {
    -webkit-transform: translate3d(0, -4px, 1px) rotate(48deg) scale(.6);
    transform: translate3d(0, -4px, 1px) rotate(48deg) scale(.6);
}

header.white::before {
    height: calc(100% + 6px);
}

header.white .headRig {
    margin-top: 13px
}

header.white .headLogo {

}

header.white .headBg {
    margin: 11px 0;
}

/* 2 */

#main_nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100vw;
    height: 100%;
    display: none;
    z-index: 1001;
}

#main_nav .nav_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #1c1c1c;
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: all 0.48s;
}

#main_nav .nav_centerLine {
    width: 1px;
    height: 0;
    background: #fff;
    position: absolute;
    top: 0;
    right: calc(408px + 18vw);
    margin-left: -.5px;
    opacity: 0;
}

#main_nav .left {
    position: absolute;
    top: 52%;
    left: 15vw;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

#main_nav .left li {
    position: relative;
    top: 10px;
    transition: all 0.48s;
}

#main_nav .left li:nth-child(2) {
    transition-delay: 0.28s;
}

#main_nav .left li:nth-child(3) {
    transition-delay: 0.48s;
}

#main_nav .left li:nth-child(4) {
    transition-delay: 0.68s;
}

#main_nav .left li:nth-child(5) {
    transition-delay: 0.88s;
}

#main_nav .right {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 16vw;
    min-width: 408px;
}

#main_nav .left>ul>li+li {
    margin-top: 1.3vw;
}

#main_nav .left>ul>li>a {
    color: #fff;
    font-size: 30px;
    line-height: 1.4;
}


.nav_ifm {
    margin-top: 5.3vw;
    opacity: 1;
    transform: scaleY(1);
    transition: all .3s ease .6s;
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease 0.6s;
}

.nav_ifm li {
    font-size: 0;
    margin-bottom: 48px;
}

.nav_ifm ul {
    width: 100% !important;
}

.nav_ifm li img {
    display: inline-block;
    vertical-align: top;
}

.nav_ifm_list {
    display: inline-block;
    width: calc(100% - 36px);
    box-sizing: border-box;
    padding-left: 34px;
}

.nav_ifm li span {
    font-size: 12px;
    color: #fff;
    line-height: 17px;
    display: inline-block;
    vertical-align: middle;
}

.nav_ifm li p {
    color: #ffffff;
    font-size: 24px;
}

.nav_ifm li:nth-child(3) a {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: initial !important;
    float: none !important;
    overflow: visible;
    vertical-align: top !important;
}

.nav_ifm li:nth-child(1) p {
    font-size: 16px;
}

.nav_ifm li:nth-child(3) p {
    font-size: 16px;
}

.nav_ewm {
    vertical-align: middle;
}

.nav_ewm img {
    width: 108px;
    margin-top: 14px;
}

.nav_ewm img:first-child {
    margin-right: 18px;
}

.d_a {
    color: #Fff;
    font-size: 26px;

    position: relative;
    padding-left: 42px;
}

.d_a img {
    width: 48px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(0deg);
}

/* =====================
    index 
    =================================================================== */

/* banner */

.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banDemo {
    background: #333;
    position: relative;
    height: 100vh;
}

.banDemo .swiper-pagination {
    z-index: 99;
}

.banDemo .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.banDemo .swiper-pagination-bullet {
    position: relative;
    width: 60px;
    height: 2px;
    cursor: pointer;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.38);
}

.banDemo .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: 11;
}

.banDemo .swiper-pagination-bullet-active.swiper-pagination-bullet::before {
    animation: banAnimate 6s;
}

.banDemo .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active::before {
    animation: banAnimate 8s;
}

@keyframes banAnimate {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.banDemo .swiper-button-prev,
.banDemo .swiper-button-next {
    opacity: 0;
    left: 100px;
    right: auto;
    top: auto;
    bottom: 58px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.banDemo .swiper-button-next {
    left: 178px;
    border-left: 0;
}

.banDemo .swiper-wrapper,
.banDemo .swiper-container {
    height: 100%;
}

.banDemo .swiper-slide {
    overflow: hidden;
    height: 100%;
}

/* 1 */

.slider__bg {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: 50%;
    /* -webkit-transform: scale(1.5);
    transform: scale(1.5); */
    -webkit-transition: -webkit-transform 0.6s ease, -webkit-filter .5s ease;
    transition: -webkit-transform 0.6s ease, -webkit-filter .5s ease;
    transition: transform 0.6s ease, filter .5s ease;
    transition: transform 0.6s ease, filter .5s ease, -webkit-transform 1s ease, -webkit-filter .5s ease;
}

.slider__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.slider__bg.bg:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.42);
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
}

.swiper-slide-active .slider__bg {
    -webkit-transform: scale(1) rotate(.001deg);
    transform: scale(1) rotate(.001deg);
}

/* 2 */

.slider__outer {
    height: 100%;
    display: table;
    width: 100%;
    position: relative;
    z-index: 2;
}

.slider__row {
    display: table-row;
    width: 100%;
    height: 48%;
}

.slider__inner {
    display: table-cell;
    padding-left: 17.5%;
}

.slider__row:first-child .slider__inner {
    vertical-align: bottom;
}

.slider__row:nth-child(2) .slider__inner {
    vertical-align: top;
}

.slider__text {
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    font-size: 54px;
    max-width: 90%;
    line-height: 1.2;
    margin-top: 24px;
    -webkit-transition: opacity 1.2s ease, -webkit-transform 0s ease 1s;
    transition: opacity 1.2s ease, -webkit-transform 0s ease 1s;
    transition: opacity 1.2s ease, transform 0s ease 1s;
    transition: opacity 1.2s ease, transform 0s ease 1s, -webkit-transform 0s ease 1s;
    -webkit-transform: translate3d(0, 30px, 1px) scaleY(1.3) rotate(1deg);
    transform: translate3d(0, 30px, 1px) scaleY(1.3) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.slider__text img {
    width: 21px;
    vertical-align: -webkit-baseline-middle;
}

.slider__text br {
    display: none;
}

.swiper-slide-active .slider__text {
    -webkit-transform: translateZ(1px) rotate(.001deg);
    transform: translateZ(1px) rotate(.001deg);
    opacity: 1;
    transition: transform 1s ease, opacity 1s ease 1s, -webkit-transform 1s ease 1s;
}

.slider__title {
    font-weight: 600;
    font-size: 68px;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 20px;
}

.slider__title img {
    height: 84px;
}

.slider__title .line {

}

.slider__title>.line {
    overflow: hidden;
}

.slider__title>.line>.line {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
    will-change: transform;
    -webkit-transform: translate3d(0, 120%, 1px) rotate(8deg);
    transform: translate3d(0, 120%, 1px) rotate(8deg);
}

.slider__title>.line:first-child>.line,
.slider__title>.line:nth-child(2)>.line {
    -webkit-transition: opacity .5s ease 1s, -webkit-transform 0s linear 0.5s;
    transition: opacity .5s ease 1s, -webkit-transform 0s linear 1s;
    transition: transform 0s linear 0.5s, opacity .5s ease 1s;
    transition: transform 0s linear 0.5s, opacity .5s ease 1s, -webkit-transform 0s linear 0.5s;
}

.swiper-slide-active .slider__title>.line:first-child>.line {
    font-family: ys_bold;
    -webkit-transition: opacity 0s linear, -webkit-transform 1s ease 0.5s;
    transition: opacity 0s linear, -webkit-transform 1s ease 0.5s;
    transition: opacity 0s linear, transform 1s ease 0.5s;
    transition: opacity 0s linear, transform 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
}

.swiper-slide-active .slider__title>.line>.line {
    -webkit-transform: translateZ(1px) rotate(.001deg);
    transform: translateZ(1px) rotate(.001deg);
    opacity: 1;
}

/* yuan */

.circle {
    height: 180px;
    margin-top: -90px;
    margin-bottom: -90px;
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.swiper-slide-active .circle {
    opacity: 1;
    -webkit-transition: opacity 0s ease;
    transition: opacity 0s ease;
}

.circle__line {
    height: 1px;
    background-color: hsla(0, 0%, 100%, .2);
    margin-top: 90px;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.circle__line:before {
    content: "";
    display: block;
    width: 1px;
    height: 1px;
    background: #efeeeb;
    margin-left: 155px;
    -webkit-transition: opacity .5s ease 2.5s;
    transition: opacity .5s ease 2.5s;
    opacity: 0;
}

.swiper-slide-active .circle__line {
    -webkit-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform 2s ease 1.5s;
    transition: -webkit-transform 2s ease 1.5s;
    transition: transform 2s ease 1.5s;
    transition: transform 2s ease 1.5s, -webkit-transform 2s ease 1.5s;
}

.swiper-slide-active .circle__line:before {
    -webkit-transition: opacity .5s ease 3.5s;
    transition: opacity .5s ease 3.5s;
    opacity: 1;
}

.circle__outer {
    margin-left: 66px;
    width: 180px;
    height: 180px;
    position: relative;
    text-align: center;
    margin-top: -90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle__inner {
    display: inline-block;
    vertical-align: middle;
}

.circle__text {
    height: 47px;
}

.circle__text:nth-child(2) {
    margin-top: -47px;
}

.circle__span {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
}

.circle__dot {
    width: 1px;
    height: 1px;
    margin: 6px auto 8px;
}

.circle__text .circle__span>.line {
    overflow: hidden;
    white-space: nowrap;
    text-align: inherit !important;
}

.circle__text .circle__span>.line>.line {
    -webkit-transform: translate3d(0, 30px, 1px) rotate(6deg);
    transform: translate3d(0, 30px, 1px) rotate(6deg);
    opacity: 0;
    -webkit-transition: opacity .5s, transform 0 ease .5s;
    transition: transform 0 ease .5s, opacity .5s;
}

.swiper-slide-active .circle__text .circle__span>.line>.line {
    -webkit-transition: opacity 0s linear 2.3s, transform 1.2s ease 2.3s;
    transition: transform 1.2s ease 2.3s, opacity 0s linear 2.3s;
    opacity: 1;
    -webkit-transform: translateZ(1px) rotate(.001deg);
    transform: translateZ(1px) rotate(.001deg);
}

.circle svg {
    width: 180px;
    height: 180px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    top: 0;
    left: 0;
}

.circle__c1 {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
}

.circle svg .circle__c2 {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    -webkit-transition: stroke-dashoffset 1s ease;
    transition: stroke-dashoffset 1s ease;
}

.swiper-slide-active svg .circle__c1 {
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 1s ease;
    transition: stroke-dashoffset 1s ease;
    -webkit-transition-delay: 2.5s;
    transition-delay: 2.5s;
}

.swiper-slide-active svg .circle__c2 {
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 1s ease;
    transition: stroke-dashoffset 1s ease;
    -webkit-transition-delay: 2.5s;
    transition-delay: 2.5s;
}

.swiper-slide-active .circle__inner,
.swiper-slide-active svg {
    opacity: 1;
}


#section {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 21;
    background: #fff;
}

@media(max-width: 786px) {
    .consulta {
        display: none !important;
    }
	.slider__title>.line{ font-size:22px; line-height:33px}
	.slider__text{ font-size:20px}
}

/* ====================
    resp2048
============================== */
@media(min-width:2048px) {

    /* common */
    .inner {
        max-width: 80%;
    }

    .indCon .conLeft a {
        margin-bottom: 45px;
    }

    .ysNav a {
        font-size: 18px;
    }

    .ysNav a::after {
        top: 40px;
    }

    .ysUtil .list .ysUtilIco {
        width: 62px;
        height: 62px;
    }

    /* header */
 

    .headRig {
        width: 1080px;
        margin-top: 20px;
    }

    .headRig>a {
        font-size: 20px;
    }

    .d_a {
        font-size: 32px;
    }

    .nav_ifm li span {
        font-size: 14px;
    }

    #main_nav .right {
        right: 15vw;
        min-width: 468px;
    }

    #main_nav p,
    #main_nav small.copy {
        font-size: 16px;
        line-height: 1.4;
    }

    /* banner */
    .circle__text {
        height: 50px;
    }

    .circle__span {
        font-size: 20px;
        line-height: 1;
    }

    .slider__title {
        font-weight: 84px;
        margin-bottom: 24px;
    }

    .slider__text {
        font-size: 76px;
        margin-top: 48px;
    }

    .slider__title img {
        height: 102px;
        margin-bottom: 34px;
    }

    .banDemo .swiper-container-horizontal>.swiper-pagination-bullets,
    .banDemo .swiper-pagination-custom,
    .banDemo .swiper-pagination-fraction {
        bottom: 38px;
    }

    /* index-1 */
    .item-about {
        padding-left: 10%;
    }

    .indAb_info_btm {
        left: 0;
    }

    .indAb_info_tit {
        left: 0;
    }

    .indAb_info_tit h4 {
        font-size: 20px;
    }

    .indAb_info_name {
        font-size: 6.4rem;
    }

    .indAb_info_tit h1 {
        max-width: 90%;
        font-size: 46px;
        line-height: 1.6;
    }

    .indAb_info_font {
        font-size: 16px;
    }

    #typed {
        font-size: 18px;
    }

    /* index-3 */
    .item-work .inner {
        width: 80%;
        margin: 0 auto 68px;
    }

    #project02 .CDCage {
        -webkit-transform: translate(18%, -62%) rotateX(60deg) rotateY(0deg) rotateZ(-45deg);
        transform: translate(18%, -62%) rotateX(60deg) rotateY(0deg) rotateZ(-45deg);
    }

    #project02 .CDCage .row {
        max-height: 280px;
    }

    #project02 .CDCage .row .holder img {
        height: 214px;
    }

    /* about */
    .abAbout {
        margin: 0;
        padding-top: 108px;
    }

    .abAbout::before,
    .abCul::before,
    .abLogo::before {
        width: 80%;
        left: 10%;
    }

    .abAbout_txt {
        min-height: 678px;
    }

    .abAbout .indAb_info_name br {
        display: block;
    }

    .abAbout_txt h1 {
        font-size: 24px;
    }

    .abAbout_num {
        max-width: 80%;
        margin-top: 68px;
    }

    .abAbout_num em {
        font-size: 5rem;
    }

    .abCul {
        padding-top: 108px;
    }

    .abLogo_a img {
        max-width: 208px;
    }

    /* case */
    .caseTit_div a,
    .caseTit_div p {
        font-size: 18px;
    }

    /* caseDet */
    .q-media-image {
        width: 90%;
        margin: 0 auto;
    }

    /* contact */
    .lastCon .conBox {
        height: calc(100vh - 98px);
        box-sizing: border-box;
    }

    .conRight {
        max-width: 38%;
    }
}





/*hmbox*/
.hmbox {padding-bottom: 2%;}
.hmtitle {float: none; display: flex; justify-content: space-between;}
.hmtitle>h4{float: none;}
.hmtitle>ul{float:right;margin-top:4px;}

.thumbnail a {padding-bottom: 75%; position:relative; overflow: hidden; display: block;}
.thumbnail img {display: block; position:absolute; left:0; top:0; width: 100%; height: 100%; object-fit: cover; transition: all .3s;}
.thumbnail a:hover img {transform: scale(1.1);}
/*showcase*/
#showcase {background-color:#FFF;}
#showcase .item img {transition:transform 0.5s ease-in 0s; }
#showcase .item a:hover img {transform:scale(1.3,1.3); opacity:0.8;}
#showcase .owl-nav button {display:block; position:absolute; top:50%; width:25px; transform:translateY(-50%);}
#showcase .owl-nav span {display: block; padding-bottom: 100%; text-indent:-99999em; font-size:0; line-height: normal; overflow: hidden; background:no-repeat center center;}
#showcase .owl-prev {left:0;}
#showcase .owl-prev span { background-image:url(../image/arrow_left.png);}
#showcase .owl-next {right:0; }
#showcase .owl-next span {background-image:url(../image/arrow_right.png);}
#showcase .owl-dots {font-size:0; line-height: normal; text-align: center;}
#showcase .owl-dot {display: inline-block; margin:0 5px;}
#showcase .owl-dot span {display: block; width: 6px; height: 6px; background-color: #999; border-radius: 50%;}
#showcase .active span {background-color: #E04D47;}
/*#showcase .load {padding-bottom: 18%;}*/

#hmshow:hover .owl-prev span { background-image:url(../image/arrow_left-w.png);}
#hmshow:hover .owl-next span {background-image:url(../image/arrow_right-w.png);}

@media only screen and (max-width:768px) {
    #showcase .owl-dots {margin-top:5.5%;}
}

#showcase .active .item {
    position: relative;
}
#showcase .active .item .hms-title {
    position: absolute;
    background: rgba(66, 145, 158, 0.7);
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}
#showcase .active .item:hover .hms-title {
    background: rgba(66, 145, 158, 1);
}
#showcase .active .item .hms-title span.tit {
    color: #FFF;
    line-height: 36px;
    padding: 0 8px;
    background: transparent;
}