/*-------------------- Section1 (Start) --------------------*/
.sect1 .title {
    padding: 120px 100px 70px;
    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: 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 {
    padding: 0 100px;
    box-sizing: border-box;
    overflow: visible;
    background: #e0e0e0;
}

.sect2 .ctx {
    width: 1200px;
}

.sect2 .ctx .item {
    width: 600px;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    left: 150px;
    top: -50px;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), 10px 10px 10px rgba(163, 120, 0, 0.3);
    background: #fff;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.5s, transform 1.5s;
}

.sect2 .ctx .itemTranslate {
    opacity: 1;
    transform: translateX(0);
}

.sect2 .ctx .item .cover {
    width: 100%;
}

.sect2 .ctx .item .tit {
    flex: 0 1 100px;
    margin: 10px 0 0;
    float: left;
    font-size: 20px;
    font-weight: bold;
    color: #272443;
}

.sect2 .ctx .item .desp {
    flex: 0.9 1 50px;
    margin: 10px 0 0;
    float: left;
    line-height: 1.5em;
    font-weight: bold;
    color: #272443;
}

.sect2 .ctx .doll {
    width: 50%;
    margin: 100px 0 0 48%;
    vertical-align: bottom;
    opacity: 0;
    transform: translateX(-500px);
    transition: opacity 1s, transform 1s;
}

.sect2 .ctx .dollTranslate {
    opacity: 1;
    transform: translateX(0);
}

@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 {
        padding: 0;
    }

    .sect2 .ctx {
        width: 100%;
        padding: 40px 20px 0;
    }
    
    .sect2 .ctx .item {
        width: 100%;
        padding: 40px 30px;
        position: static;
    }
    
    .sect2 .ctx .item .tit {
        flex: 0 1 100%;
    }

    .sect2 .ctx .item .desp {
        flex: 0 1 100%;
    }

    .sect2 .ctx .doll {
        width: 100%;
        margin: 50px 0 0;
    }
}
/*-------------------- Section2 (End) --------------------*/