/* box1 */
.box1 {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 120px;
    box-sizing: border-box;
}
.box1 > .bg::before {
    height: 100vh;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient( 0deg, #020616 0%, rgba(2,6,22,0) 100%);
}
.box1  > .bg > img {
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}
.box1 .content {
    position: relative;
    z-index: 2;
    padding: 0 20%;
    box-sizing: border-box;
}
.box1 .content > .back > .btn > img {
    width: 20px;
    height: 20px;
}
.box1 .content > .back > .btn > span {
    font-weight: bold;
    font-size: 16px;
    color: #FFB20C;
    margin-left: 10px;
}
.box1 .content > .title {
    font-weight: 900;
    font-size: 52px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 40px;
}
.box1 .content .date {
    margin-top: 45px;
    font-weight: 900;
    font-size: 14px;
    color: #8699B5;
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
}
.box1 .content .date::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #FFB20C;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.box1 .content > .card {
    background: #0A1022;
    border-radius: 40px;
    border: 1px solid #32425E;
    padding: 40px;
    box-sizing: border-box;
    margin-top: 80px;
    line-height: 26px;
}
.box1 .content > .card > p {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}
.box1 .content > .card > h2 {
    font-weight: normal;
    font-size: 24px;
    color: #FFB20C;
    margin: 30px 0;
}
.box1 .content > .card > h3 {
    font-weight: normal;
    font-size: 16px;
    color: #FFB20C;
    margin: 30px 0;
}
.box1 .content > .card > .sub {
    font-size: 16px;
}
.box1 .content .more {
    background: linear-gradient( 90deg, #F8B821 0%, #DC7D0D 100%);
    box-shadow: 0px 3px 10px 0px rgba(255,153,0,0.53);
    border-radius: 16px;
    height: 52px;
    width: 430px;
    margin-top: 60px;
}
.box1 .content .more > p {
    font-weight: 900;
    font-size: 18px;
    color: #170101;
    margin-right: 4px;
}
.box1 .content .more > img {
    width: 26px;
    height: 26px;
}
@media only screen and (max-width: 1200px) {
    /* box1 */
.box1 {
    padding-top: 50px;
    padding-bottom: 60px;
}
.box1 > .bg::before {
    height: 176px;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient( 0deg, #020616 0%, rgba(2,6,22,0) 100%);
}
.box1  > .bg > img {
    height: 176px;
}
.box1 .content {
    padding: 0 16px;
}
.box1 .content > .back > .btn > img {
    width: 15px;
    height: 15px;
}
.box1 .content > .back > .btn > span {
    font-size: 12px;
    margin-left: 6px;
}
.box1 .content > .title {
    font-size: 26px;
    margin-top: 40px;
}
.box1 .content .date {
    margin-top: 26px;
    font-size: 10px;
    padding-left: 10px;
}
.box1 .content .date::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #FFB20C;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.box1 .content > .card {
    border-radius: 20px;
    padding: 16px;
    margin-top: 35px;
    line-height: 18px;
}
.box1 .content > .card > p {
    margin-bottom: 20px;
    font-size: 12px;
}
.box1 .content > .card > h2 {
    font-size: 16px;
    margin: 15px 0;
}
.box1 .content > .card > h3 {
    font-size: 16px;
    margin: 15px 0;
}
.box1 .content > .card > .sub {
    font-size: 16px;
}
.box1 .content .more {
    border-radius: 12px;
    height: 40px;
    width: 100%;
    margin-top: 30px;
}
.box1 .content .more > p {
    font-size: 16px;
    margin-right: 4px;
}
.box1 .content .more > img {
    width: 20px;
    height: 20px;
}
}