@charset "UTF-8";

body {
    background: #fff;
	font-size:12px;
}
.nav {
    position: absolute;
    display: block;
    width: 100%;
    z-index: 999;
}
.nav .navBurger {
    position: absolute;
    display: block;
    width: 40px;
    height: 30px;
    cursor: pointer;
}
.nav .navBurger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 10%;
    background: #000;
    right: 0;
}
.nav .navBurger span:nth-child(1) {
    top:0;
}
.nav .navBurger span:nth-child(2) {
    top:45%;
}
.nav .navBurger span:nth-child(3) {
    top:90%;
}
.nav .navBurger:hover span:nth-child(1) {
    background: #000;
    -webkit-animation:navBurgerHover 0.5s ease 0s infinite alternate;
    animation:navBurgerHover 0.5s ease 0s infinite alternate;
}
.nav .navBurger:hover span:nth-child(2) {
    background: #000;
    -webkit-animation:navBurgerHover 0.5s ease 0.2s infinite alternate;
    animation:navBurgerHover 0.5s ease 0.2s infinite alternate;
}
.nav .navBurger:hover span:nth-child(3) {
    background: #000;
    -webkit-animation:navBurgerHover 0.5s ease 0.4s infinite alternate;
    animation:navBurgerHover 0.5s ease 0.4s infinite alternate;
}
@-webkit-keyframes navBurgerHover {
  0% { width: 100%;}  
  100% { width: 80%;}
}
@keyframes navBurgerHover {
  0% { width: 100%;}  
  100% { width: 80%;}
}
.nav.navTop .navBurger {
    right: 6%;
    top:4vw;
}
.nav.navFixed {
    position: fixed;
    display: block;
    width: 100%;
    height: 45px;
    top:-45px;
    background: #fff;
    box-shadow: 0px 10px 20px rgba(0,0,0,0);
    -webkit-transition: top 0.3s ease, box-shadow 0.3s ease;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}
.nav.navFixed.expand {
    top:0;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
}
.nav.navFixed .navBurger {
    right: 3%;
    top:11px;
    width: 30px;
    height: 20px;
}
.nav.navFixed .navBurger span {
    height: 3px;
    background: #000;
}
.nav.navFixed .navLogo {
    position: absolute;
    display: block;
    width: 6vw;
    height: 6vw;
    min-width: 60px;
    min-height: 60px;
    max-width: 120px;
    max-height: 120px;
    background: #000;
    left: 3%;
    top:-120px;
    -webkit-transition: top 0.3s ease;
    transition: top 0.3s ease;
}
.nav.navFixed.expand .navLogo {
    top:0;
}
.nav.navFixed .navLogo img {
    position: absolute;
    display: block;
    width: 90%;
    left: 5%;
    top:5%;
}
.nav.navFixed .shortcutList {
    position: absolute;
    display: block;
    right:calc(3vw + 60px);
    top:9px;
}
.nav.navFixed .shortcutList li.btn {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 6px 0 6px;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.nav.navFixed .shortcutList li.btn:hover {
    opacity: 0.6;
}

.nav.navFixed .shortcutList li.btn img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.nav.navFixed .shortcutList li.bar {
    position: relative;
    display: inline-block;
    width: 1px;
    height: 24px;
    background: #000;
    margin: 0 10px 0 10px;
    opacity: 0.2;
}

.navMenuBox {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    z-index: 1000;
    pointer-events: none;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.navMenuBox.expand {
    background: rgba(0,0,0,0.4);
    pointer-events:auto;
}
.navMenuBox .sideBox {
    position: absolute;
    display: block;
    width: 500px;
    height: 100%;
    background: #eee;
    right: -500px;
    box-shadow: -10px 0 20px rgba(0,0,0,0);
    -webkit-transition: right 0.5s ease, box-shadow 0.3s ease;
    transition: right 0.5s ease, box-shadow 0.3s ease;
}
.navMenuBox.expand .sideBox {
    box-shadow: -10px 0 20px rgba(0,0,0,0.2);
    right:0;
}
.navMenuBox .sideBox .closeBtn {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    right: 20px;
    top:20px;
    cursor: pointer;
}
.navMenuBox .sideBox .closeBtn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:calc(50% - 1px);
    background: #555;
}
.navMenuBox .sideBox .closeBtn:hover span {
    background: #000;
}
.navMenuBox .sideBox .closeBtn span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.navMenuBox .sideBox .closeBtn span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.navMenuBox .sideBox .pageList {
    position: relative;
    display: block;
    width: 100%;
    margin: 80px 0 0 0;
}
.navMenuBox .sideBox .pageList li {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 3vh 0 3vh 0;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 7px;
    cursor: pointer;
    border-bottom:1px solid #dedede;
}
.navMenuBox .sideBox .pageList li:hover {
    border-bottom:1px solid #fff;
    background: rgba(230,230,230,1);
}
.navMenuBox .sideBox .langList {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 30px 0 20px 0;
}
.navMenuBox .sideBox .langList li {
    position: relative;
    display: inline-block;
    margin: 0 15px 0 15px;
    font-size: 13px;
}
.navMenuBox .sideBox .shortcutList {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin: 30px 0 30px 0;
}
.navMenuBox .sideBox .shortcutList li.btn {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 6px 0 6px;
    opacity: 0.5;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.navMenuBox .sideBox .shortcutList li.btn img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.navMenuBox .sideBox .shortcutList li.btn:hover {
    opacity: 1;
}

@media screen and (max-width: 1000px) {
    .nav.navFixed .navBurger {
        width: 25px;
        right: 22px;
    }
    .nav.navFixed .shortcutList {
        position: absolute;
        display: block;
        right:calc(3vw + 45px);
        top:9px;
    }
    .nav.navFixed .shortcutList li.btn {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px 0 5px;
        opacity: 1;
    }
    .nav.navFixed .shortcutList li.bar {
        position: relative;
        display: inline-block;
        width: 1px;
        height: 24px;
        background: #000;
        margin: 0 7px 0 7px;
        opacity: 0.2;
    }
}
@media screen and (max-width: 500px) {
    .navMenuBox .sideBox {
        width: 100%;
        right: -100%;
    }
}

.wrap {
    position: absolute;
    width: 100%;
    height: 100%;
}
.mainBanner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 50vw;
    max-height: 56vw;
    overflow: hidden;
    background: #f0f0f0;
    background: url(../images/bg1.jpg) no-repeat center center;
    background-size: cover;
}
.mainBanner::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    left: 7px;
    top: 7px;
    pointer-events: none;
    border:1px solid rgba(0,0,0,0.1);
    box-sizing:border-box;
}
.mainBanner .kvBox {
    position: absolute;
    display: block;
    width: 35%;
    height: 40vw;
    left: 5%;
    top:10%;
    z-index: 1;
    /*box-shadow: 0px 0px 20px rgba(0,0,0,0.2);*/
}
.mainBanner .kvBox::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 10%;
    left: 0;
    top: calc(100% + 5%);
    pointer-events: none;
    box-sizing:border-box;
    background-image: radial-gradient(rgba(0,0,0,0.1) 5%, rgba(0,0,0,0) 70%);
}
.mainBanner .kvBox::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    left: 4px;
    top: 4px;
    pointer-events: none;
    border:1px dashed rgba(255,255,255,0.5);
    box-sizing:border-box;
    border-radius: 70% 0 50% 0;
}
.mainBanner .kvBox .kvBg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 1;
    border-radius: 70% 0 50% 0;
}
.mainBanner .kvBox .kvBg ul {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.mainBanner .kvBox .kvBg ul li {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;   
}
.mainBanner .kvBox .kvBg img {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    left: 50%;
    top:50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.mainBanner .kvBox .kvLogo {
    position: absolute;
    display: block;
    width: 10vw;
    height: 10vw;
    background: #000;
    left: 50%;
    top:50%;
    margin: -5vw 0 0 -5vw;
}
.mainBanner .kvBox .kvLogo img {
    position: absolute;
    display: block;
    width: 90%;
    height: auto;
    left: 5%;
    top:6%;
}
.mainBanner .mainBannerTitle {
    position: absolute;
    width: 49%;
    left: 45%;
    top:45%;
    -webkit-transform: translate(0,-43%);
    transform: translate(0,-43%);
}
.mainBanner .mainBannerTitle ul {
    position: relative;
    display: block;
    text-align: right;
    white-space: nowrap;
}
.mainBanner .mainBannerTitle ul li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 3px;
    vertical-align: middle;
}
.mainBanner .mainBannerTitle ul li.dot {
    position: relative;
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #000;
    border-radius: 50%;
    margin: 0 0.6vw 0 0.6vw;
}
.mainBanner .mainBannerTitle .kvTitle {
    font-family: "Arial Black", Gadget, sans-serif;
    position: relative;
    display: block;
    width: 100%;
    height: 13vw;
    /*
    font-size: calc(100vw * 0.06);
    line-height: calc(100vw * 0.06);
    -webkit-transform: scale(1,1.2);
    transform: scale(1,1.2);
    */
    margin: 2.5vw 0 4vw 0;
}
.mainBanner .mainBannerTitle .kvTitle img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.mainBanner .mainBannerTitle span {
    position: relative;
    display: block;
    font-size: 15px;
    letter-spacing: 3px;
    line-height: 22px;
    color:#555;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,1);
    padding: 0 0 10px 0;
    white-space: nowrap;
}
.mainBanner .mainBannerArrow {
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    left: 70%;
    top:50%;
    margin: 14vw 0 0 -30px;
}
.mainBanner .mainBannerArrow span:nth-child(1) {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 5px;
    top:0;
    left: 50%;
    margin: 0 0 0 -5px;
}
.mainBanner .mainBannerArrow span:nth-child(2) {
    position: absolute;
    display: block;
    width: 6px;
    height: 30px;
    background: #000;
    border-radius: 3px;
    top:17px;
    left: 50%;
    margin: 0 0 0 -3px;
    -webkit-animation:mainBannerArrow1 1s ease 0s infinite alternate;
    animation:mainBannerArrow1 1s ease 0s infinite alternate;
}
@-webkit-keyframes mainBannerArrow1 {
  0% { height: 30px;}  
  100% { height: 15px;}
}
@keyframes mainBannerArrow1 {
  0% { height: 30px;}  
  100% { height: 15px;}
}
.mainBanner .mainBannerArrow span:nth-child(3) {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 3px;
    top:10px;
    left: 50%;
    margin: 0 0 0 -25px;
    -webkit-animation:mainBannerArrow2 1s ease 0s infinite alternate;
    animation:mainBannerArrow2 1s ease 0s infinite alternate;
}
@-webkit-keyframes mainBannerArrow2 {
  0% { top: 10px;}  
  100% { top: 0px;}
}
@keyframes mainBannerArrow2 {
  0% { top: 10px;}  
  100% { top: -5px;}
}
.mainBanner .mainBannerArrow span:nth-child(3)::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-right: 6px solid #000;
    border-bottom: 6px solid #000;
    border-radius: 3px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 1000px) {
    .mainBanner {
        min-height: calc(190px + 125vw);
    }
    .mainBanner .kvBox {
        width: 52vw;
        height: 60vw;
        left: 24%;
        top:80px;
    }
    .mainBanner .kvBox::after {
        height: calc(100% - 4px);
        top: 0px;
        border-top: 0px;
    }
    .mainBanner .kvBox .kvLogo {
        position: absolute;
        display: block;
        width: 20vw;
        height: 20vw;
        background: #000;
        left: 50%;
        top:50%;
        margin: -10vw 0 0 -10vw;
    }
    .mainBanner .mainBannerTitle {
        width: 80%;
        left: 10%;
        top:calc(80px + 72vw);
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
        margin: 2vw 0 2vw 0;
    }
    .mainBanner .mainBannerTitle .kvTitle {
        height: 22vw;
    }
    .mainBanner .mainBannerArrow {
        position: absolute;
        display: block;
        width: 60px;
        height: 60px;
        left: 50%;
        top:calc(140px + 112vw);
        margin: 0 0 0 -30px;
    }
}
@media screen and (max-width: 550px) {
    .mainBanner .mainBannerTitle ul {
        text-align: center;
    }
    .mainBanner .mainBannerTitle ul li {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0px;
    }
    .mainBanner .mainBannerTitle ul li.dot {
        margin: 0 0.2vw 0 0.2vw;
    }
    .mainBanner .mainBannerTitle span {
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 22px;
    }
}

.pageBoxFocus {
    position: relative;
    display: block;
    width: 100%;
    height: 45vw;
    overflow: hidden;
    background: url(../images/bg2.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.pageBoxFocus .mainBox {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
    padding: 50px 0 50px 0;
}
.pageBoxFocus .mainBox > ul {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 100%;
    vertical-align: top;
}
.pageBoxFocus .mainBox > ul li {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    margin: 0px;
    background: rgba(150,150,150,0.2);
    border: 1px solid rgba(0,0,0,0.5);
}
.pageBoxFocus .mainBox > ul.focusBoxB li {
    width: calc(100% - 0px);
    height: calc(100% - 0px);
}
.pageBoxFocus .mainBox > ul.focusBoxS li {
    width: calc(50% - 0px);
    height: calc(50% - 0px);
}
.pageBoxFocus .mainBox > ul li .focusTitle {
    position: absolute;
    display: inline-block;
    font-size: calc(100vw * 0.05);
    line-height: calc(100vw * 0.055);
    color: #fff;
    top:50%;
    left: 50%;
    background: rgba(0,0,0,0.5);
    padding: 1.5vw;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.pageBoxFocus .mainBox > ul li:hover .focusTitle {
    opacity: 0;
}
.pageBoxFocus .mainBox > ul li .focusTitle::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    left: 5px;
    top:5px;
    box-sizing: border-box;
    border:1px solid #fff;
}
.pageBoxFocus .mainBox > ul li .pic {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.pageBoxFocus .mainBox > ul li::after {
    content: "";
    position: absolute;
    display: block;
    width: 200%;
    height: 200%;
    left:-130%;
    top:-130%;
    background: rgba(200,200,200,0.1);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.pageBoxFocus .mainBox > ul li:hover .pic {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}
.pageBoxFocus .mainBox > ul li img {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
}
.pageBoxFocus .mainBox > ul li > a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    color:#ccc;
}
.pageBoxFocus .mainBox > ul li .infoBg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: background 0.3s ease,-webkit-transform 0.3s ease;
    transition: background 0.3s ease,transform 0.3s ease;
}
.pageBoxFocus .mainBox > ul li:hover .infoBg {
    background: rgba(20,20,20,0.9);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.pageBoxFocus .mainBox > ul li dl.info {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0 10% 0 10%;
    top:50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.pageBoxFocus .mainBox > ul li:hover dl.info {
    opacity: 1;
}
.pageBoxFocus .mainBox > ul li dl.info dt {
    position: relative;
    display: block;
    font-size: calc(100vw * 0.015);
    line-height: calc(100vw * 0.015);
    letter-spacing: 2px;
    color: #fff;
    font-weight: bolder;
}
.pageBoxFocus .mainBox > ul li dl.info dd {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 2px;
    margin: 20px 0 0 0;
    color: #aaa;
    white-space: normal;
}
.pageBoxFocus .mainBox > ul li dl.info dd span {
    position: relative;
    display: inline-block;
    text-align: left;
    margin: 20px 0 0 0;
    font-size: calc(100vw * 0.012);
    line-height: calc(100vw * 0.012);
    letter-spacing: 2px;
    font-weight: bolder;
    color: #fff;
}
.pageBoxFocus .mainBox > ul li dl.info dd span::after {
    content: "";
    position: absolute;
    display: block;
    right: -15px;
    top:50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 0;
    border-top:2px solid #fff;
    border-right:2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation:focusInfoBtn 0.4s linear 0s infinite alternate;
    animation:focusInfoBtn 0.4s linear 0s infinite alternate;
}
@-webkit-keyframes focusInfoBtn {
  0% { right: -15px;}  
  100% { right: -12px;}
}
@keyframes focusInfoBtn {
  0% { right: -15px;}  
  100% { right: -12px;}
}
.pageBoxFocus .mainBox > ul li .tabBtn {
    position: absolute;
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    background: #333;
    padding: 7px;
    right: 0px;
    bottom: 0px;
    letter-spacing: 2px;
}
.pageBoxFocus .mainBox > ul li .tabBtn a {
    color:#fff;
}
@media screen and (max-width: 1200px) {
    .pageBoxFocus .mainBox {
        padding: 10px 0 10px 0;
    }
    .pageBoxFocus .mainBox > ul li:hover .focusTitle {
        opacity: 1;
    }
    .pageBoxFocus .mainBox > ul li:hover .pic {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
    .pageBoxFocus .mainBox > ul li .infoBg {
        display: none;
    }
    .pageBoxFocus .mainBox > ul li dl.info {
        display: none;
    }
}
@media screen and (max-width: 1000px) {
    .pageBoxFocus {
        height:180vw;
    }
    .pageBoxFocus .mainBox {
    }
    .pageBoxFocus .mainBox > ul {
        position: relative;
        display: inline-block;
        width: 100%;
        height: 50%;
        vertical-align: top;
    }
    .pageBoxFocus .mainBox > ul li .focusTitle {
        font-size: calc(100vw * 0.1);
        line-height: calc(100vw * 0.105);
        padding: 3vw;
    }
}


.pageBoxWork {
    position: relative;
    display: block;
    width: 100%;
    min-height: 55vw;
    overflow: hidden;
    background: #f0f0f0;
    background: url(../images/bg1.jpg) no-repeat center center;
    background-size: cover;
}
.pageBox .mainTitle {
    position: relative;
    display: block;
    left: 5%;
    margin: 5vw 0 0 0;
    width: 90%;
    
}
.pageBox .mainTitle dt {
    position: relative;
    display: block;
}
.pageBox .mainTitle dt .titleEn {
    position: relative;
    display: inline-block;
    font-family: 'HelveticaNeue-CondensedBlack', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: calc(100vw * 0.06);
    line-height: calc(100vw * 0.06);
    vertical-align:baseline;
    font-weight: bolder;
    font-weight: 900;
}
.pageBox .mainTitle dt .titleCht {
    position: relative;
    display: inline-block;
    font-size: calc(100vw * 0.018);
    line-height: calc(100vw * 0.018);
    vertical-align:baseline;
    margin: 0 0 0 1vw;
    letter-spacing: 0.5vw;
}
.pageBox .mainTitle dd {
    position: relative;
    display: block;
    width: 100%;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 22px;
    margin: 1.5vw 0 0 0;
}
.pageBoxWork .groupBtn {
    position: absolute;
    display: block;
    right: 5%;
    top:6vw;
    text-align: right;
}
.pageBoxWork .groupBtn li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 2px;
    margin: 0 0.5vw 0 0.5vw;
    padding: 0.7vw;
    border: 1px solid #ccc;
    cursor: pointer;
    background: rgba(210,210,210,0);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.pageBoxWork .groupBtn li:hover {
    background: rgba(210,210,210,1);
}
.pageBoxWork .groupBtn li.current {
    color:#ddd;
    background: #333;
    border:0;
}
.pageBoxWork .mainBox {
    position: relative;
    display: block;
    width: 100%;
    height: 22vw;
    left: 5vw;
    margin: 5vw 0 7vw 0;
}
.pageBoxWork .mainBox ul {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    font-size: 0;
    line-height: 0;
}
.pageBoxWork .mainBox ul li {
    position: relative;
    display: inline-block;
    width: 23%;
    height: 100%;
    margin: 0 1% 0 1%;
    border: 1px solid #ddd;
    cursor: pointer;
}
.pageBoxWork .mainBox ul li.clear-box{border:none;}
.pageBoxWork .mainBox ul li::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 10%;
    left: 0;
    bottom:-5vw;
    pointer-events: none;
    box-sizing:border-box;
    background-image: radial-gradient(rgba(0,0,0,0.1) 5%, rgba(0,0,0,0) 70%);
}
.pageBoxWork .mainBox ul li .projectImg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.pageBoxWork .mainBox ul li .projectImg img {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.pageBoxWork .mainBox ul li:hover .projectImg img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.pageBoxWork .mainBox ul li .projectClass {
    position: absolute;
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    background: #1f6c8b;
    padding: 7px;
    left: -5px;;
    top: 15px;
    letter-spacing: 2px;
    color: #fff;
}
.pageBoxWork .mainBox ul li .projectTitle {
    position: absolute;
    display: block;
    width: 100%;
    bottom: -30px;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
}
.pageBoxWork .moreBtn {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    left: 50%;
    background: #333;
    border-radius:50%;
    margin: 0 0 50px -50px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.pageBoxWork .moreBtn:hover {
    background: #000;
}
.pageBoxWork .moreBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border:1px dashed #fff;
    border-radius:50%;
    left: 3px;
    top: 3px;
    box-sizing: border-box;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation:workMoreBtn 10s linear 0s infinite normal;
    animation:workMoreBtn 10s linear 0s infinite normal;
}
@-webkit-keyframes workMoreBtn {
  0% { -webkit-transform: rotate(0deg);}  
  100% { -webkit-transform: rotate(360deg);}
}
@keyframes workMoreBtn {
  0% { transform: rotate(0deg);}  
  100% { transform: rotate(360deg);}
}
.pageBoxWork .moreBtn span {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color:#fff;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2px;
    top:23px;
}
.pageBoxWork .moreBtn .icon {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 50%;
    margin: 0 0 0 -10px;
    top:50px;
    background: url(../images/btn_icon1.png) no-repeat center center;
    background-size: contain;
}
.pageBoxWork .leftBtn {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    bottom: 75px;
    left: 7vw;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border 0.2s ease;
    transition: border 0.2s ease;
    cursor: pointer;
}
.pageBoxWork .leftBtn:hover {
    border-left: 3px solid #333;
    border-bottom: 3px solid #333;
}
.pageBoxWork .rightBtn {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    bottom: 75px;
    right: 7vw;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: border 0.2s ease;
    transition: border 0.2s ease;
    cursor: pointer;
}
.pageBoxWork .rightBtn:hover {
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
}
@media screen and (max-width: 1200px) {
    .pageBoxWork .mainBox ul li {
        width: calc(100% / 3 - 2%);
    }
    .pageBoxWork .mainBox {
        height: 30vw;
        margin: 5vw 0 10vw 0;
    }
    .pageBoxWork .mainBox ul li::before {
        bottom: -7vw;
    }
}
@media screen and (max-width: 1000px) {
    .pageBoxWork .groupBtn {
        position: relative;
        display: block;
        width: 90%;
        left: 5%;
        right: auto;
        top:auto;
        margin: 5vw 0 0 0;
        text-align: center;
        font-size: 0;
        line-height: 0;
    }
    .pageBoxWork .groupBtn li {
        width: calc(100% / 4 - 4px);
        font-size: 13px;
        line-height: 13px;
        letter-spacing: 1px;
        margin: 0 2px 0 2px;
        padding: 13px 0 13px 0;
    }
    .pageBox .mainTitle {
        margin: 10vw 0 0 0;
    }
    .pageBox .mainTitle dt {
        position: relative;
        display: block;
        margin: 0 0 3vw 0;
    }
    .pageBox .mainTitle dt .titleEn {
        font-size: calc(100vw * 0.11);
        line-height: calc(100vw * 0.11);
        -webkit-transform: scale(1,1.1);
    }
    .pageBox .mainTitle dt .titleCht {
        position: relative;
        display: inline-block;
        font-size: calc(100vw * 0.04);
        line-height: calc(100vw * 0.04);
        vertical-align:baseline;
        margin: 0 0 0 1vw;
        letter-spacing: 0.5vw;
    }
    .pageBoxWork .mainBox {
        margin: 8vw 0 13vw 0;
    }
    .pageBoxWork .mainBox ul li::before {
        bottom: -9vw;
    }
    .pageBoxWork .mainBox ul li .projectTitle {
        font-size: 13px;
        line-height: 13px;
    }
}
@media screen and (max-width: 900px) {
    .pageBoxWork .mainBox ul li {
        width: 50%;
    }
    .pageBoxWork .mainBox {
        height: 48vw;
        margin: 8vw 0 20vw 0;
    }
    .pageBoxWork .mainBox ul li::before {
        bottom: -15vw;
    }
}



.pageBoxService {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: url(../images/bg2.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.pageBoxService .mainTitle {
    color: #fff;
}
.pageBoxService .mainBox {
    position: relative;
    display: block;
    margin: 5vw 0 5vw 0;
}
.pageBoxService .mainBox ul.serviceSlide {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
}
.pageBoxService .mainBox ul.serviceSlide li {
    position: relative;
    display: inline-block;
    width: calc(100% / 6);
    height: 13vw;
    border: 1px solid rgba(0,0,0,0.5);
    cursor: pointer;
    overflow: hidden;
}
.pageBoxService .mainBox ul.serviceSlide li::before {
    content: "";
    position: absolute;
    display: block;
    width: 200%;
    height: 200%;
    left:-150%;
    top:-150%;
    background: rgba(255,255,255,0.02);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.pageBoxService .mainBox ul.serviceSlide li::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: rgba(0,0,0,0);
    -webkit-transform:rotate(-60deg);
    transform: rotate(-60deg);
    -webkit-transition: background 0.3s ease,-webkit-transform 0.3s ease;
    transition: background 0.3s ease,transform 0.3s ease;
}
.pageBoxService .mainBox ul.serviceSlide li:hover::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background: rgba(0,0,0,0.9);
}
.pageBoxService .mainBox ul.serviceSlide li:nth-child(4n) {
    background: rgba(100,100,100,0.3);
}
.pageBoxService .mainBox ul.serviceSlide li:nth-child(4n-1) {
    background: rgba(115,115,115,0.3);
}
.pageBoxService .mainBox ul.serviceSlide li:nth-child(4n-2) {
    background: rgba(125,125,125,0.3);
}
.pageBoxService .mainBox ul.serviceSlide li:nth-child(4n-3) {
    background: rgba(108,108,108,0.3);
}
.pageBoxService .mainBox ul.serviceSlide li .serviceImg {
    position: absolute;
    display: block;
    width: 50%;
    left: 50%;
    top:50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition:width 0.3s ease;
    transition: width 0.3s ease;
}
.pageBoxService .mainBox ul.serviceSlide li:hover .serviceImg {
    width: 80%;
}
.pageBoxService .mainBox ul.serviceSlide li .serviceImg img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.pageBoxService .mainBox ul.serviceSlide li .serviceTitle {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    color:#fff;
    font-size: 13px;
    line-height: 13px;
    padding: 5px;
    background: #222;
}
.pageBoxService .mainBox ul.serviceSlide li dl {
    position: absolute;
    display: block;
    width: 90%;
    left: 5%;
    top:50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
.pageBoxService .mainBox ul.serviceSlide li:hover dl {
    opacity: 1;
}
.pageBoxService .mainBox ul.serviceSlide li dl dt {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 20px;
    color:#fff;
    margin: 0 0 10px 0;
}
.pageBoxService .mainBox ul.serviceSlide li dl dd {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 18px;
    color:#ccc;
}
.pageBoxService .mainBox ul.serviceSlide li dl dd.listBtn {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 18px;
    color:#fff;
    margin: 0.5vw 0 0 0;
}
.pageBoxService .mainBox ul.serviceSlide li dl dd.listBtn::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (max-width: 1400px) {
    .pageBoxService .mainBox ul.serviceSlide li {
        width: calc(100% / 5);
        height: 16vw;
    }
}
@media screen and (max-width: 1200px) {
    .pageBoxService .mainBox ul.serviceSlide li {
        width: calc(100% / 4);
        height: 18vw;
    }
}
@media screen and (max-width: 1000px) {
    .pageBoxService .mainBox ul.serviceSlide li .serviceImg {
        left: 50%;
        top:45%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }
    .pageBoxService .mainBox ul.serviceSlide li:hover .serviceImg {
        width: 50%;
    }
    .pageBoxService .mainBox ul.serviceSlide li {
        width: calc(100% / 3);
        height: 20vw;
    }
    .pageBoxService .mainBox ul.serviceSlide li::after {
        display: none;
    }
    .pageBoxService .mainBox ul.serviceSlide li dl {
        position: fixed;
        width: 100%;
        left: 0;
        top:50%;
        padding: 70px 10px 50px 10px;
        background: rgba(0,0,0,0.9);
        -webkit-transform: translate(0,-60%);
        transform: translate(0,-60%);
        opacity: 0;
    }
    .pageBoxService .mainBox ul.serviceSlide li dl .closeBtn {
        position: absolute;
        display: block;
        width: 40px;
        height: 40px;
        top:10px;
        right: 10px;
        background: rgba(200,200,200,1);
        border-radius: 3px;
    }
    .pageBoxService .mainBox ul.serviceSlide li dl .closeBtn::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 3px;
        top:19px;
        left: 0;
        background: rgba(0,0,0,1);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .pageBoxService .mainBox ul.serviceSlide li dl .closeBtn::after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 3px;
        top:19px;
        left: 0;
        background: rgba(0,0,0,1);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .pageBoxService .mainBox ul.serviceSlide li:hover dl {
        opacity: 0;
    }
    .pageBoxService .mainBox ul.serviceSlide li.expand dl {
        opacity: 1;
    }
    .pageBoxService .mainBox ul.serviceSlide li dl dd.listBtn {
        margin: 15px 0 0 0;
    }
}
@media screen and (max-width: 600px) {
    .pageBoxService .mainBox ul.serviceSlide li {
        width: calc(100% / 2);
        height: 30vw;
    }
    .pageBoxService .mainBox ul.serviceSlide li .serviceImg {
        left: 47%;
    }
    .pageBoxService .mainBox ul.serviceSlide li .serviceTitle {
        font-size: 12px;
        line-height: 12px;
        padding: 3px;
    }
}

.pageBoxProcess {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #fff;
}
.pageBoxProcess .mainBox {
    position: relative;
    display: block;
    margin: 5vw 0 5vw 0;
}
.pageBoxProcess .mainBox ul.processSlide {
    position: relative;
    display: block;
    width: 90%;
    left: 5%;
    font-size: 0;
    line-height: 0;
    text-align: center;
}
.pageBoxProcess .mainBox ul.processSlide li {
    position: relative;
    display: inline-block;
    width: calc(100% / 6 - 2vw);
    max-width: 200px;
    margin: 0 1vw 0 1vw;
    background: rgba(0,0,0,1);
}
.pageBoxProcess .mainBox ul.processSlide li .processImg {
    position: relative;
    display: block;
    width: 100%;
}
.pageBoxProcess .mainBox ul.processSlide li .processImg img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.pageBoxProcess .mainBox ul.processSlide li .processImg::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}
.pageBoxProcess .mainBox ul.processSlide li:nth-child(1) .processImg::before {
    background: rgba(230,92,0,1);
}
.pageBoxProcess .mainBox ul.processSlide li:nth-child(2) .processImg::before {
    background: rgba(31,108,139,1);
}
.pageBoxProcess .mainBox ul.processSlide li:nth-child(3) .processImg::before {
    background: rgba(214,0,82,1);
}
.pageBoxProcess .mainBox ul.processSlide li:nth-child(4) .processImg::before {
    background: rgba(31,139,40,1);
}
.pageBoxProcess .mainBox ul.processSlide li:nth-child(5) .processImg::before {
    background: rgba(143,74,122,1);
}
.pageBoxProcess .mainBox ul.processSlide li:nth-child(6) .processImg::before {
    background: rgba(235,184,0,1);
}
.pageBoxProcess .mainBox ul.processSlide li dl {
    position: relative;
    display: block;
    width: 100%;
}
.pageBoxProcess .mainBox ul.processSlide li .processStep {
    position: relative;
    display: block;
    font-size: 20px;
    line-height:20px;
    text-align: center;
    padding: 15px 0 10px 0;
    font-weight: bolder;
    color:#aaa;
}
.pageBoxProcess .mainBox ul.processSlide li .processText {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    padding: 0 0 15px 0;
    font-weight: bolder;
    color:#fff;
}
@media screen and (max-width: 1000px) {
    .pageBoxProcess .mainBox ul.processSlide li {
        width: calc(100% / 3 - 2vw);
        margin: 1vw;
    }
}
@media screen and (max-width: 600px) {
    .pageBoxProcess .mainBox ul.processSlide li {
        width: 100%;
        max-width: none;
        margin: 1vw 0 1vw 0;
        background: rgba(0,0,0,0.8);
    }
    .pageBoxProcess .mainBox ul.processSlide li .processImg {
        display: inline-block;
        width: 30%;
        vertical-align: middle;
    }
    .pageBoxProcess .mainBox ul.processSlide li dl {
        display: inline-block;
        width: 70%;
        vertical-align: middle;
    }
}


.pageBoxContact {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #eee;
}
.pageBoxContact .mainBox {
    position: relative;
    display: block;
    margin: 5vw 0 5vw 0;
}
.pageBoxContact .mainBox ul.contactSlide {
    position: relative;
    display: block;
    width: 90%;
    left: 5%;
    font-size: 0;
    line-height: 0;
    text-align: center;
}
.pageBoxContact .mainBox ul.contactSlide > li {
    position: relative;
    display: inline-block;
    width: calc(50% - 2vw);
    vertical-align: top;
}
.pageBoxContact .mainBox ul.contactSlide > li:nth-child(1) {
    margin: 0 2vw 0 0;
}
.pageBoxContact .mainBox ul.contactSlide > li:nth-child(2) {
    margin: 0 0 0 2vw;
}
.pageBoxContact .mainBox ul.contactSlide > li > dl {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    margin: 0 0 30px 0;
}
.pageBoxContact .mainBox ul.contactSlide > li > dl > dt {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 20px;
    font-weight: bolder;
    margin: 0 0 15px 0;    
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"] {
    display:none;
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"] + label {
    position: relative;
    display: inline-block;
    border: 1px solid #aaa;
    margin: 0 5px 5px 0;
    cursor: pointer;
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"] + label:hover {
    background: rgba(31,108,139,0.1);
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"]:checked + label {
    border: 1px solid rgba(31,108,139,1);
    background: rgba(31,108,139,1);
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 7px;
    right:5px;
    top:10px;
    border-left: 3px solid #fff;
    border-bottom:3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"] + label span {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 15px;
    color:#333;
    padding: 10px 25px 10px 10px;
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"]:checked + label span {
    color:#fff;
}
.pageBoxContact .mainBox ul.contactSlide > li select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
    padding: 10px;
    color:#666;
    background: rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0,0.2);
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
    padding: 10px;
    color:#666;
    background: rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0,0.2);
    margin: 0 0 15px 0;
}

.pageBoxContact .mainBox ul.contactSlide > li input[type="radio"] {
    display:none;
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="radio"] + label {
    position: relative;
    display: inline-block;
    border: 1px solid #aaa;
    margin: 0 5px 5px 0;
    cursor: pointer;
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="radio"] + label:hover {
    background: rgba(31,108,139,0.1);
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="radio"]:checked + label {
    border: 1px solid rgba(31,108,139,1);
    background: rgba(31,108,139,1);
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 7px;
    right:5px;
    top:10px;
    border-left: 3px solid #fff;
    border-bottom:3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="radio"] + label span {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 15px;
    color:#333;
    padding: 10px 25px 10px 10px;
}
.pageBoxContact .mainBox ul.contactSlide > li input[type="radio"]:checked + label span {
    color:#fff;
}
.pageBoxContact .mainBox ul.contactSlide > li textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 540px;
    font-size: 15px;
    line-height: 24px;
    padding: 10px;
    color:#666;
    background: rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0,0.2);
    margin: 0 0 15px 0;
}

.pageBoxContact .sendBtn {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    left: 50%;
    background: #333;
    border-radius:50%;
    margin: 0 0 50px -50px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.pageBoxContact .sendBtn:hover {
    background: #000;
}
.pageBoxContact .sendBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border:1px dashed #fff;
    border-radius:50%;
    left: 3px;
    top: 3px;
    box-sizing: border-box;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation:workMoreBtn 10s linear 0s infinite normal;
    animation:workMoreBtn 10s linear 0s infinite normal;
}
.pageBoxContact .sendBtn span {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color:#fff;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2px;
    top:23px;
}
.pageBoxContact .sendBtn .icon {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 50%;
    margin: 0 0 0 -10px;
    top:50px;
    background: url(../images/btn_icon2.png) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 1000px) {
    .pageBoxContact .mainBox ul.contactSlide > li {
        display: block;
        width: 100%;
    }
    .pageBoxContact .mainBox ul.contactSlide > li:nth-child(1) {
        margin: 0;
    }
    .pageBoxContact .mainBox ul.contactSlide > li:nth-child(2) {
        margin: 0;
    }
    .pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"] + label:hover {
        background: rgba(31,108,139,0);
    }
    .pageBoxContact .mainBox ul.contactSlide > li input[type="checkbox"]:checked + label {
        background: rgba(31,108,139,1);
    }
    .pageBoxContact .mainBox ul.contactSlide > li input[type="radio"] + label:hover {
        background: rgba(31,108,139,0);
    }
    .pageBoxContact .mainBox ul.contactSlide > li input[type="radio"]:checked + label {
        background: rgba(31,108,139,1);
    }
    .pageBoxContact .mainBox ul.contactSlide > li textarea {
        height: 60vw;
    }
}

.footer {
    position: relative;
    display: block;
    width: 100%;
    background: #2b2b2b;
    padding: 30px 0 30px 0;
}
.footer > ul {
    position: relative;
    display: block;
    width: 90%;
    left: 5%;
    text-align: center;
    font-size: 0;
    line-height: 0;
}
.footer > ul > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    line-height: 13px;
    color:#ccc;
    text-align: left;
    padding: 20px;
}
.footer > ul > li:nth-child(2) {
    border-left: 1px solid #555;
}
.footer > ul > li > dl {
    position: relative;
    display: block;
}
.footer > ul > li > dl > dt {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
}
.footer > ul > li > dl > dd {
    position: relative;
    display: inline-block;
    margin: 0 0 0 30px;
}
.footer > ul > li > dl > dd::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin: 0 5px 0 0;
}
.footer > ul > li > dl > dd:nth-child(2)::before {
    background: url(../images/footer_icon1.png) no-repeat center center;
    background-size: contain;
}
.footer > ul > li > dl > dd:nth-child(3)::before {
    background: url(../images/footer_icon2.png) no-repeat center center;
    background-size: contain;
}
.footer > ul > li > dl > dd:nth-child(4)::before {
    background: url(../images/footer_icon3.png) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 1500px) {
    .footer > ul > li {
        display: block;
        text-align: center;
    }
    .footer > ul > li:nth-child(2) {
        border-left: 0;
        border-top: 1px solid #555;
    }
}
@media screen and (max-width: 1200px) {
    .footer > ul > li > dl > dt {
        display: block;
        margin: 0 0 20px 0;
    }
}
@media screen and (max-width: 900px) {
    .footer > ul > li > dl > dd {
        display: block;
        margin: 0 0 20px 0;
    }
}


.pageBoxList {
    position: relative;
    display: block;
    width: 100%;
    min-height: calc(100vh - 110px);
    overflow: hidden;
    background: #f0f0f0;
    background-size: cover;
    padding: 50px 0 0 0;
}
.pageBoxList .mainTitle {
    position: relative;
    display: block;
    left: 5%;
    margin: 5vw 0 0 0;
    width: 90%;
}
.pageBoxList .groupBtn {
    position: absolute;
    display: block;
    right: 5%;
    top:9vw;
    text-align: right;
}
.pageBoxList .groupBtn li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 2px;
    margin: 0 0.5vw 0 0.5vw;
    padding: 0.7vw;
    border: 1px solid #ccc;
    cursor: pointer;
    background: rgba(210,210,210,0);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.pageBoxList .groupBtn li:hover {
    background: rgba(210,210,210,1);
}
.pageBoxList .groupBtn li.current {
    color:#ddd;
    background: #333;
    border:0;
}
.pageBoxList .mainBox {
    position: relative;
    display: block;
    width: 90%;
    left: 5%;
    margin: 3vw 0 3vw 0;
}
.pageBoxList .mainBox ul {
    position: relative;
    display: block;
    width: 90%;
    left: 5%;
    font-size: 0;
    line-height: 0;
    text-align: center;
}
.pageBoxList .mainBox ul li {
    position: relative;
    display: inline-block;
    width: calc(100% / 4 - 2vw);
    margin: 2vw 1vw 2vw 1vw;
    cursor: pointer;
    border: 1px solid #ddd;
}
.pageBoxList .mainBox ul li .listImg {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
.pageBoxList .mainBox ul li .listImg img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.pageBoxList .mainBox ul li:hover .listImg img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.pageBoxList .mainBox ul li .listClass {
    position: absolute;
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    background: #1f6c8b;
    padding: 7px;
    left: -5px;;
    top: 15px;
    letter-spacing: 2px;
    color: #fff;
}
.pageBoxList .mainBox ul li .listTitle {
    position: absolute;
    display: block;
    bottom: 0px;
    right: 0;
    font-size: 13px;
    line-height: 18px;
    text-align: right;
    background: #333;
    padding: 5px 10px 5px 10px;
    color:#fff;
}
.pageBoxList .mainBox ul li a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}
.pageBoxList .moreBtn {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    left: 50%;
    background: #333;
    border-radius:50%;
    margin: 0 0 50px -50px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.pageBoxList .moreBtn:hover {
    background: #000;
}
.pageBoxList .moreBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border:1px dashed #fff;
    border-radius:50%;
    left: 3px;
    top: 3px;
    box-sizing: border-box;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation:workMoreBtn 10s linear 0s infinite normal;
    animation:workMoreBtn 10s linear 0s infinite normal;
}
.pageBoxList .moreBtn span {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color:#fff;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2px;
    top:23px;
}
.pageBoxList .moreBtn .icon {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 50%;
    margin: 0 0 0 -10px;
    top:50px;
    background: url(../images/btn_icon1.png) no-repeat center center;
    background-size: contain;
}
@media screen and (max-width: 1500px) {
    .pageBoxList .mainBox ul {
        width: 100%;
        left: 0;
    }
    .pageBoxList .mainBox ul li {
        display: inline-block;
        width: calc(100% / 3 - 4vw);
    }
}
@media screen and (max-width: 1200px) {
    
    .pageBoxList .mainBox ul li {
        display: inline-block;
        width: calc(100% / 3 - 4vw);
    }
}
@media screen and (max-width: 1000px) {
    .pageBoxList .groupBtn {
        position: relative;
        display: block;
        width: 90%;
        left: 5%;
        right: auto;
        top:auto;
        margin: 5vw 0 0 0;
        text-align: center;
        font-size: 0;
        line-height: 0;
    }
    .pageBoxList .groupBtn li {
        width: calc(100% / 4 - 4px);
        font-size: 13px;
        line-height: 13px;
        letter-spacing: 1px;
        margin: 0 2px 0 2px;
        padding: 13px 0 13px 0;
    }
}
@media screen and (max-width: 900px) {
    .pageBoxList .mainBox ul li {
        display: inline-block;
        width: calc(100% / 2 - 2vw);
        margin: 2vw 1vw 2vw 1vw;
    }
}
@media screen and (max-width: 600px) {
    .pageBoxList .mainBox ul li {
        display: inline-block;
        width: calc(100% / 2 - 2vw);
        margin: 2vw 1vw 2vw 1vw;
    }
}


.pageBoxWorkContent {
    position: relative;
    display: block;
    width: 100%;
    background: #e6e6e6;
    padding: 9vw 0 0 0;
}
.pageBoxWorkContent::before {
    content: "";
    position: absolute;
    display: block;
    width: 65%;
    height: 100%;
    left: 35%;
    top:0;
    background: #4c4c4c;
}
.pageBoxWorkContent::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    clear: both;
}
.pageBoxWorkContent .boxText {
    position: relative;
    display: block;
    float: left;
    width: 35%;
    padding: 0 5vw 5vw 5vw;
}
.pageBoxWorkContent .boxImg {
    position: relative;
    display: block;
    float: left;
    width: 65%;
    padding: 0 5% 0 5%;
}
.pageBoxWorkContent .boxText > h1 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 45px;
    font-weight: bolder;
}
.pageBoxWorkContent .boxText > ul.tagList {
    position: relative;
    display: block;
    font-size: 0px;
    line-height: 0px;
}
.pageBoxWorkContent .boxText > ul.tagList li {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    margin: 10px 10px 10px 0;
    color: #333;
}
.pageBoxWorkContent .boxText > ul.tagList li::before {
    content: "#";
    position: relative;
    display: inline-block;
}
.pageBoxWorkContent .linkBtn {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    left: 50%;
    background: #1f6c8b;
    border-radius:50%;
    margin: 30px 0 30px -50px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.pageBoxWorkContent .linkBtn:hover {
    background: #000;
}
.pageBoxWorkContent .linkBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border:1px dashed #fff;
    border-radius:50%;
    left: 3px;
    top: 3px;
    box-sizing: border-box;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation:workMoreBtn 10s linear 0s infinite normal;
    animation:workMoreBtn 10s linear 0s infinite normal;
}
.pageBoxWorkContent .linkBtn span {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color:#fff;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2px;
    top:23px;
}
.pageBoxWorkContent .linkBtn .icon {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 50%;
    margin: 0 0 0 -10px;
    top:50px;
    background: url(../images/btn_icon3.png) no-repeat center center;
    background-size: contain;
}
.pageBoxWorkContent .videoBox {
    position: relative;
    display: block;
    width: 100%;
    background: #000;
    margin: 15px 0 0 0;
}
.pageBoxWorkContent .videoBox iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 16vw;
}
@media screen and (max-width: 1300px) {
    .pageBoxWorkContent .videoBox iframe {
        height: 19vw;
    }
}
@media screen and (max-width: 1000px) {
    .pageBoxWorkContent .videoBox iframe {
        height: 56vw;
    }
}
.pageBoxWorkContent .boxText > dl {
    position: relative;
    display: block;
    margin: 50px 0 0 0;
    border-top: 1px solid #aaa;
}
.pageBoxWorkContent .boxText > dl dt {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 20px;
    color:#1f6c8b;
    font-weight: bolder;
}
.pageBoxWorkContent .boxText > dl dd {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 24px;
    color:#888;
    margin: 10px 0 30px 0;
}
.pageBoxWorkContent .boxText > dl dd.mainText {
    font-size: 15px;
    line-height: 30px;
    color:#333;
}

.pageBoxWorkContent .listBtn {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    left: 50%;
    background: #333;
    border-radius:50%;
    margin: 30px 0 30px -50px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.pageBoxWorkContent .listBtn:hover {
    background: #000;
}
.pageBoxWorkContent .listBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border:1px dashed #fff;
    border-radius:50%;
    left: 3px;
    top: 3px;
    box-sizing: border-box;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation:workMoreBtn 10s linear 0s infinite normal;
    animation:workMoreBtn 10s linear 0s infinite normal;
}
.pageBoxWorkContent .listBtn span {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color:#fff;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2px;
    top:23px;
}
.pageBoxWorkContent .listBtn .icon {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 50%;
    margin: 0 0 0 -10px;
    top:50px;
    background: url(../images/btn_icon1.png) no-repeat center center;
    background-size: contain;
}
.pageBoxWorkContent .boxImg::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    clear: both;
}
.pageBoxWorkContent .boxImg ul {
    position: relative;
    display: block;
    width: 45%;
    margin: 0 5% 0 0;
    float: left;
}
.pageBoxWorkContent .boxImg ul li {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 3vw 0;
    border: 1px solid #333;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.pageBoxWorkContent .boxImg ul li span {
    position: relative;
    display: block;
    width: 100%;
}
.pageBoxWorkContent .boxImg ul li img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.pageBoxWorkContent .boxImg ul li.phone{
    border: 0;
    box-shadow:0 0 0 rgba(0,0,0,0);
}
.pageBoxWorkContent .boxImg ul li.phone span:nth-child(2) {
    position: absolute;
    display: block;
    top:10%;
    left: 8%;
    width: 84%;
}
@media screen and (max-width: 1300px) {
    .pageBoxWorkContent::before {
        width: 60%;
        left: 40%;
    }
    .pageBoxWorkContent .boxText {
        width: 40%;
    }
    .pageBoxWorkContent .boxImg {
        width: 60%;
    }
    .pageBoxWorkContent .boxImg ul {
        width: 90%;
        margin: 0 10% 0 0;
        float:none;
    }
}
@media screen and (max-width: 1000px) {
    .pageBoxWorkContent {
        padding: 100px 0 0 0;
    }
    .pageBoxWorkContent::before {
        display: none;
    }
    .pageBoxWorkContent .boxText {
        float: none;
        width: 100%;
        padding: 0 5vw 5vw 5vw;
    }
    .pageBoxWorkContent .boxImg {
        float: none;
        width: 100%;
        background: #4c4c4c;
        padding: 6vw;
    }
    .pageBoxWorkContent .boxImg ul {
        width:45%;
        margin: 0 5% 0 0;
        float: left;
    }
}
@media screen and (max-width: 650px) {
    .pageBoxWorkContent .boxImg ul {
        width:100%;
        margin: 0;
        float: none;
    }
    
}


.loadingBox {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ddd;
    z-index: 999;
    top:0;

    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.loadingBox.loaded {
    top:-100%;
}
.loadingBox .loadingBar {
    position: absolute;
    left: 50%;
    top:50%;
    margin: -20px 0 0 -30px;
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}
.loadingBox .loadingBar > span {
    position: relative;
    display: block;
    width: 200px;
    text-align: center;
    left:50%;
    margin: 0 0 0 -100px;
    line-height: 30px;
}

.loadingBox .loadingBar > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: loading 1.2s infinite ease-in-out;
    animation: loading 1.2s infinite ease-in-out;
}

@-webkit-keyframes loading {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4);}  
  20% { -webkit-transform: scaleY(1.0);}
}
@keyframes loading {
    0%, 40%, 100% { transform: scaleY(0.4);}
    20% { transform: scaleY(1.0);}
}

.loadingBox .loaded .loadingBar > div {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.loadingBox .loadingBar .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.loadingBox .loadingBar .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.loadingBox .loadingBar .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.loadingBox .loadingBar .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
/* Cyrus */

.listBtn a,.linkBtn a,.moreBtn a,.pageBoxWork .mainBox ul li a,.footer dd > a{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}
.listBtn a:focus, .linkBtn a:focus, .moreBtn a:focus, .pageBoxWork .mainBox ul li a:focus{
    outline: none;
}
.pageBoxFocus .mainBox > ul li::after,.pageBoxWorkContent .linkBtn::after,.pageBoxWorkContent .listBtn::after,.pageBoxList .moreBtn::after{
    pointer-events: none;
}

.pageBoxWork .mainBox #workList li,.pageBoxWork .mainBox .slick-slide > div {
    position: relative;
    display: inline-block;
    width: 23vw;
    height: 100%;
    margin: 0;
    /*border: 0px;*/
    cursor: pointer;
}

@media screen and (max-width: 1200px){
    .pageBoxWork .mainBox #workList li,.pageBoxWork .mainBox .slick-slide > div {
        width: calc(100vw / 3 - 2vw);
    }
}

@media screen and (max-width: 900px){
    .pageBoxWork .mainBox #workList li,.pageBoxWork .mainBox .slick-slide > div {
        width: 100%;
    }
}
.pageBoxWork .mainBox #workList li.clear-box{
    border: none;
    cursor: initial;
}
.pageBoxWork .mainBox #workList li.clear-box::before{
    content:none;
}
.pageBoxService .mainBox ul.serviceSlide li dl dd.listBtn{
    display: none;
}
@media screen and (max-width: 1000px) {

    .pageBoxService .mainBox ul.serviceSlide li dl{pointer-events: none;}
    .pageBoxService .mainBox ul.serviceSlide li.expand dl{pointer-events:initial;}
    .pageBoxWork .mainBox ul li .projectTitle {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}



/* Slider */

.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-list {
    height: 100%;
    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;
    height: 100%;
}

.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;
    outline: none;
    height: 100%;
    min-height: 1px;
    margin: 0 1vw 0 1vw;
    /*border: 1px solid #ddd;*/
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
/*    height: 100%;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    /*display: block;*/
}

.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;
}


.slick-arrow {
    /*position: absolute;*/
    /*display: block;*/
    /*width: 41px;*/
    /*height: 81px;*/
    cursor: pointer;
    /*top: 50%;*/
    /*margin-top: -40px;*/
    /*background-position: top;*/
    /*z-index: 1;*/
    /*text-indent: -9999px;*/
    /*border: 0px;*/
}

.slick-arrow:focus {
    outline: none;
}

.slick-prev {
    background: url(../images/kvArrowLeft.png) no-repeat;
    left: 0;
}

.slick-prev::after {
    content: '';
    position: absolute;
    display: block;
    width: 41px;
    height: 81px;
    background: url(../images/kvArrowLeft.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
    top: 0px;
    left: 0px;
}

.slick-next {
    background: url(../images/kvArrowRight.png) no-repeat;
    right: 0;
}

.slick-next::after {
    content: '';
    position: absolute;
    display: block;
    width: 41px;
    height: 81px;
    background: url(../images/kvArrowRight.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
    top: 0px;
    left: 0px;
}

.slick-arrow:hover:after {
    opacity: 1;
}


.slick-dots {
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    padding: 6px;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 10px;
    height: 10px;
    padding: 5px;

    cursor: pointer;

    color: #c1c1c1;
    border: 2px solid #fff;
    outline: none;
    background: #c1c1c1;
    border-radius: 10px;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 10px;
    height: 10px;
    border: 2px solid #acacac;
    content: ' ';
    text-align: center;
    border-radius: 10px;
    opacity: 0;
    color: #005850;
    background: #005850;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #005850;
    background: #005850;
}

/* slider end */