
#packageArea {
    background-image: var(--img-bg-orange);
    background-repeat: repeat;

    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.packageWrapper {
    background-color: #26778c;
    position: relative;

    margin: 125px auto 0;
    padding-bottom: 20px;

    width: 90%;
    border-radius: 15px;
    overflow: hidden;
}

.packageBg {
    position: absolute;
    width: 100%;
    min-width: 500px;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.packageIntro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.pageTitle {
    padding: 50px 0 20px;
    width: 80%;
}

.pageTitle > .mainTitle {
    font-size: 45px;
    line-height: 60px;
    text-shadow: 2px 5px 10px #d38a04;
}

.pageTitle > .subTitle {
    font-size: 20px;
    line-height: 30px;
    text-shadow: 1px 5px 10px #d38a04;
}

.packageVideo {
    background-image: var(--img-market-video);
    background-size: 100% 100%;
    background-repeat: no-repeat;

    width: 300px;
    height: 170px;
    margin: 20px auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.videoInner {
    width: 90%;
    height: 85%;

    background-image: radial-gradient(circle closest-corner, #24e1f7, #1dc3d6);
    position: relative;
}

.videoPlaceholder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.videoPlaceholder > img {
    width: 100px;
}

.packagePrivilege {
    background-image: var(--img-market-privilege-m);
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;

    /*height: 350px;*/
    /*min-height: 350px;*/
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 10px auto 75px;
}

.packagePrivilege > .packageTitle {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 68px;
}

.privilegeInfo {
    text-align: center;
    margin-top: 110px;
    position: relative;
}

.ogIcon {
    width: 50px;
    left: 200px;
    top: -15px;
}

.privilegeList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 15px 30px;
    justify-content: center;
}



.privilegeElement {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 5px;
}

.privilegeElement > span {
    color: #ff841e;
    font-size: 13px;
}

.privilegeIcon {
    width: 51%;
}

.packageList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#packageBronze {
    background-image: var(--img-market-bronze);
    background-size: contain;
    background-repeat: no-repeat;
}

#packageSilver {
    background-image: var(--img-market-silver);
    background-size: contain;
    background-repeat: no-repeat;
}

#packageGold {
    background-image: var(--img-market-gold);
    background-size: contain;
    background-repeat: no-repeat;
}

.clsPackage {
    width: 80%;
    max-width: 340px;
    display: inline-block;
    margin: 0 10px 50px;
    text-align: center;

    position: relative;
}

.packageTitle {
    width: 70%;
    height: 63px;

    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.packageTip {
    width: 50px;
    position: absolute;
    top: 20px;
    right: 15px;
}

.packageIcon {
    width: 47%;
    position: relative;
    top: 5px;
}

.packageContent {
    width: 90%;
    position: relative;
    bottom: 5px;
}

.packageContent:after {
    content: "";
}

.packageBuyBtn {
    background-image: var(--img-btn-blue);
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-position: 50%;

    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.packageBuyBtn > span {
    margin: 0 5px;
}

.packageItemList {
    background-color: #F5E7C2;
    width: 90%;
    margin: 20px auto;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid darkgrey;
    box-shadow: 1px 1px 0 darkgrey;
}


.packageItem {
    text-align: center;
    padding: 30px 0;
    width: 80%;
}

.packageItem > img {
    width: 150px;
}


#packageTipDialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    width: 95%;
}

#packageTipDialog .tipWrapper {
    background-image: var(--img-market-tip);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 30px;
}

.tipWrapper .title {
    padding-top: 30px;
}

.shipArea, .scopeArea, .blockArea {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(112, 112, 112, 0.4);
    border-radius: 10px;
    margin: 10px 30px;
    padding: 0 15px;
}

.lootItem {
    width: 26%;
    text-align: center;
    position: relative;
}

.lootItem > img {
    width: 100%;
}

.lootItem > span {
    color: #ff841e;
    font-size: 18px;
    line-height: 20px;
    position: relative;
    top: -10px;
}

.blockArea > img {
    width: 35%;
}

.blockArea > div {
    display: inline-block;
    color: #ff841e;
    font-size: 13px;
}

.closeWrapper > img {
    width: 50px;
}