.mainArea {
    padding-bottom: 0;
    background-color: #fbfaf5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.mainArea .leftBox {
    width: 50%;
}

@media (max-width: 960px) {
    .mainArea .leftBox {
        display: none;
    }
}

.mainArea .rightBox {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 90px 20px;
    margin: 0 auto;
    width: 710px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 1180px) {
    .mainArea .rightBox {
        width: 620px;
    }
}

@media (max-width: 960px) {
    .mainArea .rightBox {
        padding: 40px 20px;
    }
}

@media (max-width: 640px) {
    .mainArea .rightBox {
        width: 100%;
    }
}

.mainArea .Img {
    height: 100%;
}

.mainArea .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.mainArea .titleBox {
    margin-bottom: 50px;
    position: relative;
    color: #5e5e5e;
}

@media (max-width: 960px) {
    .mainArea .titleBox {
        text-align: center;
    }
}

.mainArea .titleBox .subTitle {
    position: relative;
    display: block;
    padding-right: 30px;
}

@media (max-width: 960px) {
    .mainArea .titleBox .subTitle {
        padding: 0;
    }
}

.mainArea .titleBox .subTitle:after, .mainArea .titleBox .subTitle:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #62ccc3;
}

@media (max-width: 960px) {
    .mainArea .titleBox .subTitle:after, .mainArea .titleBox .subTitle:before {
        display: none;
    }
}

.mainArea .titleBox .subTitle:after {
    right: 17px;
}

.mainArea .titleBox .titleOuterBox {
    position: relative;
}

.mainArea .titleBox .title {
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
    color: #353535;
    letter-spacing: 2px;
}

.mainArea .titleBox .notice {
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #353535;
    text-align: right;
    letter-spacing: 2px;
}

.itemList li {
    border-bottom: 1px solid rgba(205, 199, 181, 0.4);
}

.itemList li:first-of-type {
    border-top: 1px solid rgba(205, 199, 181, 0.4);
}

.itemList .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 95px;
}

.itemList .itemBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.itemList .num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    width: 25px;
    height: 25px;
    letter-spacing: 1px;
    border-radius: 50%;
    background-color: #bca26a;
}

.itemList .itemTitleBox {
    padding-left: 20px;
    font-weight: 600;
}

.itemList .itemEnTitle {
    margin-bottom: 5px;
    color: #b79b5c;
    font-size: 15px;
}

.itemList .itemTitle {
    color: #555451;
    font-size: 16px;
}

.itemList .btnBox a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 160px;
    height: 35px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    background-color: #cab380;
}

@media (max-width: 400px) {
    .itemList .btnBox a {
        width: 120px;
    }
}

@media (min-width: 1181px) {
    .itemList .btnBox a:hover:before {
        right: auto;
        left: 0;
        width: 100%;
    }

    .itemList .btnBox a:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background-color: #62ccc3;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }
}

.itemList .btnBox a span {
    position: relative;
    z-index: 1;
}