/*-------------------- Section1 (Start) --------------------*/
.sect1 .title {
    padding: 120px 100px 10px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 32px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 2s, transform 1.5s;
}

.sect1 .titleTranslate {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect1 .title {
        padding: 120px 80px 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect1 .title {
        padding: 80px 20px 10px;
        font-size: 28px;
    }
}
    
@media screen and (min-width: 401px) and (max-width: 450px) {
}

@media screen and (min-width: 451px) and (max-width: 550px) {
}

@media screen and (min-width: 551px) and (max-width: 767px) {
}
/*-------------------- Section1 (End) --------------------*/


/*-------------------- Section2 (Start) --------------------*/
.sect2 .ctx {
    width: 100%;
    display: flex;
    background: #242834;
}

.sect2 .ctx .brief {
    flex: 0 1 45%;
    color: #fff;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.5s, transform 1.5s;
}

.sect2 .ctx .briefTranslate {
    opacity: 1;
    transform: translateX(0);
}

.sect2 .ctx .brief .info {
    width: 500px;
    margin: 80px auto;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
    line-height: 1.6em;
}

.sect2 .ctx .brief .info .title {
    margin: 0 0 50px;
    /*font-family: PMingLiU;*/
    font-style: italic;
    font-size: 20px;
}

.sect2 .ctx .brief .info .title .name {
    margin: 20px 0;
    text-align: right;
}

.sect2 .ctx .brief .info .title .poetry {
     width: 100%;   
}

.sect2 .ctx .cover {
    flex: 0 1 55%;
    background: url(../img/aboutIdea.jpg) center;
    background-size: cover;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect2 .ctx {
        flex-wrap: wrap;
    }
    
    .sect2 .ctx .brief {
        flex: 0 1 100%;
    }
    
    .sect2 .ctx .brief .info {
        width: 100%;
        margin: 50px 0;
        padding: 0;
    }
    
    .sect2 .ctx .cover {
        flex: 0 1 100%;
        height: 200px;
    }
}
/*-------------------- Section2 (End) --------------------*/


/*-------------------- Section3 (Start) --------------------*/
.sect3 {
    padding: 50px 0;
    background: #000;
}

.sect3 .ctx {
    width: 100%;    
    text-align: center;
}

.sect3 .ctx .pcMap {
    width: 1000px;
    margin: auto;
}

.sect3 .ctx .phoneMap {
    width: 100%;
    margin: auto;
    display: none;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect3 .ctx .pcMap {
        display: none;
    }

    .sect3 .ctx .phoneMap {
        display: inline-block;
    }
}
/*-------------------- Section3 (End) --------------------*/


/*-------------------- Section4 (Start) --------------------*/
.sect4 {
    padding: 0 100px;
    box-sizing: border-box;
    background: #000;
}

.sect4 .ctx {
    width: 100%;
    display: flex;
}

.sect4 .ctx .item:nth-child(1) {
    flex: 0 1 35%;
}

.sect4 .ctx .item:nth-child(2) {
    flex: 0 1 65%;
}

.sect4 .ctx .item .title {
    width: 330px;
    padding: 10px 40px;
    box-sizing: border-box;
    display: inline-block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    background: #4be3bd;
    transform: translateY(60px);
    transition: transform 1s;
}

.sect4 .ctx .item .titleTranslate {
    transform: translateY(0);
}

.sect4 .ctx .item .brief {
    height: 100%;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background: #242834;
}

.sect4 .ctx .item .brief .info {
    width: 70%;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
    line-height: 1.7em;
    color: #fff;
}

.sect4 .ctx .item:nth-child(2) .brief .info {
    width: 65%;
}

.sect4 .ctx .item .brief .info .sideLine {
    width: 5px;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    background: #4be3bd;
}

.sect4 .ctx .item .brief .info .txt {
    opacity: 0;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect4 {
        padding: 0 80px;
    }
    
    .sect4 .ctx .item .title {
        width: 200px;
    }

    .sect4 .ctx .item .brief .info {
        width: 100%;
        padding: 0 0 0 20px;
    }

    .sect4 .ctx .item:nth-child(2) .brief .info {
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect4 {
        padding: 0;
    }

    .sect4 .ctx {
        /*width: 100%;*/
        flex-wrap: wrap;
    }

    .sect4 .ctx .item:nth-child(1) {
        flex: 0 1 100%;
        margin: 0 0 80px;
    }

    .sect4 .ctx .item:nth-child(2) {
        flex: 0 1 100%;
    }

    .sect4 .ctx .item .title {
        width: auto;
        padding: 10px 20px;
    }
    
    .sect4 .ctx .item .brief {
        height: 100%;
        padding: 20px 10px;
    }
    
    .sect4 .ctx .item .brief .info {
        width: 100%;
        padding: 0 15px;
    }
    
    .sect4 .ctx .item:nth-child(2) .brief .info {
        width: 100%;
    }
}
/*-------------------- Section4 (End) --------------------*/


/*-------------------- Section5 (Start) --------------------*/
.sect5 {
    padding: 50px 100px;
    box-sizing: border-box;
    background: #000;
}

.sect5 .ctx {
    width: 100%;
    text-align: center;
    color: #fff;
}

.sect5 .ctx .title {
    margin: 5px;
    font-weight: bold;
    font-size: 20px;
    color: #4be3bd;
}

.sect5 .ctx .subTitle {    
    font-size: 20px;
}

.sect5 .ctx .phoneFullSigma {
    width: 120px;
    margin: 30px auto 0;
    display: none;
}

.sect5 .ctx .signNote {
    color: #4be3bd;
    transform: translateY(10px);
}

.sect5 .ctx .signGroup {
    margin: 50px 0;
    display: flex;
}

.sect5 .ctx .signGroup .item {
    flex: 0 1 20%;
    padding: 45px 0;
    box-sizing: border-box;
    display: flex;
    position: relative;

    /* border: solid 1px #000; */
    /* background: #808080; */
}

.sect5 .ctx .signGroup .item .txt {
    width: 95%;
    margin: auto;    
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s;

    /* background: #505050; */
}

.sect5 .ctx .signGroup .item:hover .txt {
    opacity: 1;
}

.sect5 .ctx .signGroup .item img {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.sect5 .ctx .signGroup .item .signLeft {
    z-index: 1;
    opacity: 0;
    transform: translateX(300px);
    transition: opacity 1.5s, transform 1.5s;
}

.sect5 .ctx .signGroup .item .signRight {
    z-index: 1;
    opacity: 0;
    transform: translateX(-300px);
    transition: opacity 1.5s, transform 1.5s;
}

.sect5 .ctx .signGroup .item:hover .signDelta,
.sect5 .ctx .signGroup .item:hover .signTheta,
.sect5 .ctx .signGroup .item:hover .signSigma {
    opacity: 0.1;
    transform: scale(2);
}

.sect5 .ctx .signGroup .item .signLeftRightTranslate {
    opacity: 1;
    transform: translateX(0);
}

.sect5 .ctx .signGroup .item .tempStop {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
}

.sect5 .ctx .brief {
    width: 1000px;
    margin: 0 auto 30px;
    line-height: 1.7em;
    font-size: 20px;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect5 {
        padding: 50px 80px;
    }

    .sect5 .ctx .signGroup .item .txt {
        font-size: 15px;
    }

    .sect5 .ctx .brief {
        width: 100%;
        font-size: 20px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .sect5 .ctx .brief {
        width: 100%;
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect5 {
        padding: 50px 0;
    }
    
    .sect5 .ctx .title {
        font-size: 24px;
    }

    .sect5 .ctx .subTitle {    
        font-size: 16px;
    }
    
    .sect5 .ctx .phoneFullSigma {
        display: block;
    }

    .sect5 .ctx .signNote {
        font-size: 13px;
    }
    
    .sect5 .ctx .signGroup {
        margin: 20px 0;
        flex-wrap: wrap;
    }

    .sect5 .ctx .signGroup .item {
        flex: 1 1 100%;
        height: 160px;
    }
    
    .sect5 .ctx .signGroup .item:nth-child(1),
    .sect5 .ctx .signGroup .item:nth-child(5) {
        display: none;
    }
    
    .sect5 .ctx .signGroup .item .txt {
        width: 250px;
    }
    
    .sect5 .ctx .brief {
        width: 100%;
        text-align: justify;
        font-size: 16px;
    }
    
    .sect5 .ctx .brief .phoneTxtBreak {
        display: inline;
    }
}
/*-------------------- Section5 (End) --------------------*/


/*-------------------- Section6 (Start) --------------------*/
.sect6 .ctx {
    width: 100%;    
    padding: 100px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.65);
}

.sect6 .ctx .develop .title {
    width: 330px;
    padding: 10px 40px;
    box-sizing: border-box;
    display: inline-block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    background: #4be3bd;
    transform: translateY(60px);
    transition: transform 1s;
}

.sect6 .ctx .develop .titleTranslate {
    transform: translateY(0);
}

.sect6 .ctx .develop .list {
    display: flex;
    position: relative;
    z-index: 1;
    background: #9dedd9;
}

.sect6 .ctx .develop .list .item {
    flex: 0 1 33.33%;
    box-sizing: border-box;
    border-right: solid 1px #303030;
    text-align: center;
    color: #000;
}

.sect6 .ctx .develop .list .item .info {
    width: 320px;
    margin: 40px auto;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
}

.sect6 .ctx .develop .list .item .info .sideLine {
    width: 5px;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    background: #000;
}

.sect6 .ctx .develop .list .item .info .tit {
    font-size: 20px;
}

.sect6 .ctx .develop .list .item .info .data {
    width: 100%;
    margin: 10px 0 15px;
    padding: 8px;
    display: inline-block;
    box-sizing: border-box;
    border: solid 1px #000;
    font-family: arial;
    font-size: 24px;
    transition: border 0.5s, color 0.5s, background 0.5s;
}

.sect6 .ctx .develop .list .item .info .data:hover {
    border: solid 1px #4be3bd;
    color: #000;
    background: #4be3bd;
}

.sect6 .ctx .develop .list .item .info .note {    
    font-size: 12px;
}

.sect6 .ctx .brief {
    margin: 50px 0 0;
    line-height: 1.7em;
    text-align: center;
    font-size: 20px;
    color: #fff;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.5s, transform 1.5s;
}

.sect6 .ctx .briefTranslate {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect6 .ctx {
        padding: 80px;
    }
    
    .sect6 .ctx .develop .list .item .info {
        width: 85%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect6 .ctx {
        padding: 50px 20px;
    }
    
    .sect6 .ctx .develop .title {
        width: auto;
        padding: 10px 20px;
    }
    
    .sect6 .ctx .develop .list {
        flex-wrap: wrap;
    }

    .sect6 .ctx .develop .list .item {
        flex: 1 1 100%;
    }
    
    .sect6 .ctx .develop .list .item .info {
        width: 85%;
        margin: 20px auto;
    }
    
    .sect6 .ctx .brief {
        margin: 50px 0 0;
        line-height: 1.7em;
        text-align: justify;
        font-size: 16px;
        color: #fff;
    }
    
    .sect6 .ctx .brief .phoneTxtBreak {
        display: inline;
    }
}
/*-------------------- Section6 (End) --------------------*/


/*-------------------- Section7 (Start) --------------------*/
.sect7 {
    background: #000;
}

.sect7 .ctx {
    width: 950px;    
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.6);
}

.sect7 .ctx .title {
    width: 300px;
    padding: 10px 35px;
    box-sizing: border-box;
    display: inline-block;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    background: #fff;
    transform: translateY(-60px);
    transition: transform 1s;
}

.sect7 .ctx .titleTranslate {
    transform: translateY(0);
}

.sect7 .ctx .contact {
    display: flex;
}

.sect7 .ctx .contact .item {
    flex: 0 1 37.5%;
    margin: 35px 0;
    padding: 0 5px 0 35px;
    box-sizing: border-box;
    border-right: solid 1px #fff;    
    line-height: 1.7em;
    font-size: 13px;
    color: #fff;
}

.sect7 .ctx .contact .item:last-child {
    flex: 0 1 25%;
    align-self: flex-end;
    padding: 0 0 0 25px;
    border: none;
}

.sect7 .ctx .contact .item:last-child .btn {
    width: 100%;
    margin: 0 0 5px;
    padding: 8px 0;
    border: solid 1px #4be3bd;
    text-align: center;
    font-size: 16px;
    color: #4be3bd;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect7 .ctx {
        width: 100%;
    }
    
    .sect7 .ctx .title {
        width: auto;
        padding: 10px 20px;
    }

    .sect7 .ctx .contact {
        flex-wrap: wrap;
    }

    .sect7 .ctx .contact .item {
        flex: 0 1 100%;
        margin: 25px 0;
        padding: 0 0 0 20px;
        border-left: solid 1px #fff;
        border-right: none;
        font-size: 14px;
    }
    
    .sect7 .ctx .contact .item:last-child {
        flex: 0 1 100%;
        /* align-self: flex-end; */
        padding: 0;
    }
}
/*-------------------- Section7 (End) --------------------*/