@charset "UTF-8";

    * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

.lightbox-mask {
    display: none;
    background: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 999;
    top: 0px;
}

.lightbox-mask > .lightbox {
    position: relative;
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    background: #c79f62;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    text-align: center;
    padding: 55px 20px;
    margin: 0 auto;
    border-bottom: 5px solid #9f7f4e;
    border-top: 5px solid #9f7f4e;
    top: 50px;
}

.lightbox-inner {
    width: 100%;
    height: 100%;
}

.close-btn {
    position: absolute;
    top: 1%;
    right: 1%;
    z-index: 1;
}

.close-btn a {
    display: block;
    width: 45px;
    height: 45px;
}

.close-btn a:before {
    content: '';
    width: 2px;
    height: 40px;
    background: white;
    display: block;
    position: absolute;
    top: 2%;
    right: 20px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -moz-transform: rotate(45deg);
    /* Firefox */
    -webkit-transform: rotate(45deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
}

.close-btn a:after {
    content: '';
    width: 2px;
    height: 40px;
    background: white;
    display: block;
    position: absolute;
    top: 2%;
    right: 20px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    -moz-transform: rotate(-45deg);
    /* Firefox */
    -webkit-transform: rotate(-45deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(-45deg);
    /* Opera */
}

.video-box {
    z-index: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 800px;
    min-height: 480px;
    border-bottom: 2px solid #fff;
}

.lightbox2 {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
    background: #fff;
    text-align: center;
    padding: 55px 20px;
    margin: 0 auto;
    border: 5px solid #af8549;
    top: 50px;
}
.lightbox2 a, .lightbox a{
    text-decoration: none;
}
.lightbox-inner {
    width: 100%;
    height: 100%;
}

.lightbox-inner h3 {
    font-size: 48px;
    letter-spacing: 30px;
    margin: 0 auto 20px;
    text-indent: 30px
}

.lightbox-inner ul {
    width: 100%;
    padding: 0 10%;
    display: flex;
}

.lightbox-inner ul li {
    width: 50%;
    display: inline-block;
    border-right: 2px solid #af8549;
}

.lightbox-inner ul li:last-child {
    border: none;
}

.lightbox-inner ul li h4 {
    font-size: 20px;
    letter-spacing: 10px;
    color: #af8549;
    margin: 10px auto;
}

.lightbox-inner ul li p {
    font-size: 14px;
    color: #999;
    text-align: center;
}

.lightbox-inner ul li p span {
    font-size: 20px;
    display: block;
    line-height: 30px;
    color: #999;
}

.lightbox-inner ul li img {
    margin: 0 auto;
}

.lightbox2 .close-btn {
    position: absolute;
    top: 4%;
    right: 3%;
    z-index: 1;
}

.lightbox2 .close-btn a {
    display: block;
    width: 33px;
    height: 33px;
    border: 2px solid #af8549;
}

.lightbox2 .close-btn a:before {
    content: '';
    width: 2px;
    height: 25px;
    background: #af8549;
    display: block;
    position: absolute;
    top: 8.5%;
    right: 16px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -moz-transform: rotate(45deg);
    /* Firefox */
    -webkit-transform: rotate(45deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
}

.lightbox2 .close-btn a:after {
    content: '';
    width: 2px;
    height: 25px;
    background: #af8549;
    display: block;
    position: absolute;
    top: 8.5%;
    right: 16px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    -moz-transform: rotate(-45deg);
    /* Firefox */
    -webkit-transform: rotate(-45deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(-45deg);
    /* Opera */
}

@media screen and (max-width: 768px) {
    .close-btn a {
        /* background: #c79f62; */
    }
}

@media screen and (max-width: 480px) {
    .lightbox-mask {
        overflow: scroll;
    }
    .lightbox-mask > .lightbox {
        margin-top: 10%;
        padding: 20px 10px;
    }
    .video-box {
        min-height: 320px;
    }
    .lightbox-inner ul {
        display: block;
    }
    .lightbox-inner ul li {
        width: 100%;
        display: inline-block;
        margin-bottom: 10%;
        padding-bottom: 8%;
        border: none;
        border-bottom: 2px solid #af8549;
    }
}
