@charset "utf-8";

/*-- common --*/

.bannerText {
    width: auto;
    display: inline-block;
}


/*-- indexSpecial --*/

#indexSpecial {
    width: 100%;
    background-image: url(../images/bgIndexSpecial.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
}

#package li img {
    width: 100%;
    border: 1px solid #ddd;
}


/*-- ani --*/

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}


/*-- for PC --*/

@media screen and (min-width:801px) {
    /*-- banner --*/
    #bannerWrapper,
    #ping {
        background-image: url(../images/bgBanner.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center bottom;
        text-align: center;
        position: relative;
    }
    #ping {
        width: 100%;
        background-image: url(../images/ping.png);
        position: absolute;
        top: 0;
        left: 0;
        /*ani*/
        opacity: 0;
        animation: fadeIn 2.5s ease;
        animation-delay: 2s;
        animation-fill-mode: forwards;
    }
    .bannerText h1 {
        font-size: 51px;
        color: #FFF;
        margin-bottom: 30px;
        /*ani*/
        opacity: 0;
        animation: fadeIn 2s ease;
        animation-delay: 0.3s;
        animation-fill-mode: forwards;
    }
    .bannerText .btnStyle {
        width: 40%;
        font-size: 21px;
        opacity: 0;
        background-repeat: no-repeat;
        background-size: 20px 20px;
        background-position: left 20px center;
    }
    a[name=indexSpecial] {
        background-image: url(../images/search.svg);
        /*ani*/
        animation: fadeIn 2s ease;
        animation-delay: 0.6s;
        animation-fill-mode: forwards;
    }
    a[name=indexPackage] {
        margin-left: 20px;
        background-image: url(../images/parcel.svg);
        /*ani*/
        animation: fadeIn 2s ease;
        animation-delay: 1s;
        animation-fill-mode: forwards;
    }
    /*--intro--*/
    #intro {
        background-image: url(../images/bgEmployers.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        font-size: 18px;
        color: #FFF;
    }
    #intro .left {
        padding-right: 15px;
    }
    #intro .right {
        padding-left: 15px;
    }
    /*-- indexSpecial --*/
    #indexSpecial {
        color: #fff;
        font-size: 18px;
    }
    #indexSpecial .btnStyle {
        width: 35%;
        margin: 0 20px;
        background-color: #73AE57;
    }
    #indexSpecial .btnStyle:nth-child(2) {
        background-color: #A1A0A4;
    }
    /*-- indexPackage --*/
    #indexPackage {
        text-align: center;
    }
    #package ul {
        text-align: center;
    }
    #package li {
        display: inline-block;
        width: 260px;
        margin: 0 20px 30px 20px;
    }
    #package li h3 {
        margin: 15px 0;
    }
    #package li:hover {
        opacity: 0.8;
    }
    #package li .btnStyle {
        font-size: 19px;
    }
}


/*------------------for mobile------------------------*/

@media screen and (max-width:800px) {
    /*-- banner --*/
    #bannerWrapper {
        background-image: url(../images/bgBanner.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        text-align: center;
    }
    #ping {
        display: none;
    }
    .bannerText h1 {
        font-size: 39px;
        margin-bottom: 150px;
        color: #FFF;
        /*ani*/
        opacity: 0;
        animation: fadeIn 2s ease;
        animation-delay: 0.3s;
        animation-fill-mode: forwards;
    }
    .bannerText h1 span {
        Display: block;
    }
    .bannerText .btnStyle {
        width: 100%;
        opacity: 0;
        background-repeat: no-repeat;
        background-size: 20px 20px;
        background-position: left 20px center;
    }
    a[name=indexSpecial] {
        background-image: url(../images/search.svg);
        /*ani*/
        animation: fadeIn 2s ease;
        animation-delay: 0.6s;
        animation-fill-mode: forwards;
    }
    a[name=indexPackage] {
        margin-top: 10px;
        background-image: url(../images/parcel.svg);
        /*ani*/
        animation: fadeIn 2s ease;
        animation-delay: 1s;
        animation-fill-mode: forwards;
    }
    /*--intro--*/
    #intro {
        background-color: #00A6B6;
        color: #FFF;
    }
    #intro .left {
        margin-bottom: 25px;
    }
    /*-- indexSpecial --*/
    #indexSpecial .btnStyle {
        width: 100%;
        margin: 10px 0;
        background-color: #73AE57;
    }
    #indexSpecial .btnStyle:nth-child(2) {
        background-color: #A1A0A4;
    }
    #indexSpecial {
        color: #fff
    }
    /*-- package --*/
    #package li {
        padding: 15px 0;
        border-top: 1px solid #ededed;
    }
    #package li:last-child {
        border-bottom: 1px solid #ededed;
    }
    #package li div.packageLeft {
        float: left;
        width: 120px;
        height: 120px;
    }
    #package li div.packageRight {
        margin-left: 140px;
        height: 120px;
        width: auto;
    }
    #package li h3 {
        margin-bottom: 15px;
    }
    #package li .btnStyle {
        font-size: 17px;
    }
}