:root{
    --white: #fff;
}
.tl {
    text-align: left;
}
.tr{
    text-align: right;
}

.w100{
    position: relative;
    width: 100%;
}
.pt10 {
    padding-top: 10px;
}
.pt20 {
    padding-top: 20px;
}
.pt30 {
    padding-top: 30px;
}
.pt40 {
    padding-top: 40px;
}
.pt50 {
    padding-top: 50px;
}
.pb10 {
    padding-bottom: 10px;
}
.pb20 {
    padding-bottom: 20px;
}
.pb30 {
    padding-bottom: 30px;
}
.pb40 {
    padding-bottom: 40px;
}
.pb50 {
    padding-bottom: 50px;
}
.w100>img{
    width: 100%;
}
.full {
    width: 100%;
}
.tc {
    text-align: center;
}
div, p, span, em, b, h1, h2, a,button {
    font-family: 'PingFang SC';
    font-family: PingFang SC;
    font-style: normal;
    box-sizing: border-box;
}

.section-wrap {
    background: #fef3e1;
    width: 100%;
    min-height: 100vh;
}
.section-content {
    background: url("../images/bg.jpg") 0 0 no-repeat;
    background-size: 100%;
    width: 100%;
}
.main-wrap {
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
    padding: 50px 0;
    font-size: 24px;
    color: #562446;
}
.font20 {
    font-size: 20px;
    padding-left: 22px;
}
.main-wrap h2 {
    position: relative;
    font-weight: 500;
    font-size: 24px;
    color: #562446;
    line-height: 34px;
}
.main-wrap .title::before {
    display: inline-block;
    content: '';
    width: 10px;
    height: 34px;
    background: #E35231;
    margin-right: 12px;
    vertical-align: top;
    border-radius: 0 8px 8px 0;
}
.main-wrap .title span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    color: #B47F29;
    vertical-align: top;
}
.main-wrap > img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.table {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.table th, .table td {
    border: 1px solid #FBC6A3;
    font-size: 20px;
    color: #562446;
    font-weight: 500;
    height: 73px;
}
.table tr th {
    background: linear-gradient(180deg, #FF812B 0%, #EB5C00 100%);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    height: 72px;
}
.btn-get {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/btn.png") 0 0 no-repeat;
    background-size: 100% 100%;
    width: 284px;
    height: 82px;
    text-align: center;
    font-size: 28px;
    font-size: 0;
    color: #fff;
    border-radius: 12px;
    margin: 40px auto 100px;
    cursor: pointer;
}
.pic-flex {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 1086px;
    height: 245px;
    background: url("../images/s-bg.png") no-repeat center center;
    background-size: 1086px 245px; /* 或直接100% 100% */
    padding: 35px 30px 35px 57px;
    margin-bottom: 110px;
    margin-left: 48px;
}
.pic-flex .item {
    position: relative;
    width: 36%;
    margin: 0 10px;
    border: 6px solid transparent; /* 透明边框，给渐变背景腾位置 */
    border-radius: 6px;            /* 圆角 */
    background:
        linear-gradient(#FFFCF5, #FFFCF5) padding-box,            /* 纯色背景 */
        linear-gradient(180deg, #F6DFA3 0%, #DEB06F 100%) border-box; /* 渐变边框 */
}
.pic-flex .info {
    position: absolute;
    right: 10%;
    top: 10px;
    z-index: 1;
    text-align: left;
}
.pic-flex .info > span {
    color: #562446;
    font-size: 32px;
    font-weight: 600;
}
.pic-flex .info > p {
    color: #FF0000;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
.pic-flex .info > p b {
    font-size: 30px;
}
.hdgz {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid #E95D20;
    padding: 4px;
    line-height: 1.6;
}
.hdgz-body {
    position: relative;
    border: 10px solid #E95D20;
padding: 4px 32px 40px 32px;
    border-radius: 8px;
    background-color:#fefcf6;;
}
.hdgz-content {
    width: 100%;
}
.hdgz p {
    display: flex;
    color: #724A0D;
    font-size: 20px;
    padding-top: 20px;
}
.frame {
    position: absolute;
    left: 4%;
    top: 10%;
    z-index: 1;
}

/*弹窗*/
.popup-module {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}

.popup-body {
    position: relative;
    width: 480px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 100;
    background: #323f5a;
    font-size: 16px;
    color: #abb1c9;
    padding-bottom: 30px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.popup-body .close {
    position: absolute;
    top: 18px;
    right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.popup-body h2 {
    font-size: 16px;
    color: #cea867;
    padding: 20px 0;
}
.popup-body .btns button {
    width: 160px;
    height: 48px;
    line-height: 48px;
    background: #C8A870;
    border-radius: 5px;
    color: #fff;
    margin: 0;
}
.get-img {
    text-align: center;
}
.get-img img {
    margin: 30px 0;
}
/*弹窗 end*/

.section-wrap .pc {
    display: block;
}
.section-wrap .h5 {
    display: none;
}
@media (max-width: 768px) {
    .section-wrap .pc {
        display: none;
    }
    .section-wrap .h5 {
        display: block;
    }
    .section-content {
        background: url("../images/h5/bg.jpg") 0 0 no-repeat;
        background-size: 100%;
        padding-top: 20px;
    }
    .main-wrap {
        font-size: 12px;
        padding: 16px 0;
    }
    .main-wrap h2 {
        display: flex;
        font-size: 15px;
        line-height: 22px;
    }
    .main-wrap .title::before {
        flex: none;
        width: 4px;
        height: 18px;
        margin-right: 6px;
        vertical-align: sub;
    }
    .table tr th ,.table tr td {
        font-size: 14px;
        height: 46px;
    }
    .table tr th {
        width: 25%;
    }
    .table img {
        max-width: 100px;
        width: 100%;
        margin: 0 auto;
    }
    .btn-get {
        width: 142px;
        height: 40px;
        line-height: 40px;
        margin: 20px auto 32px;
    }
    .h5.pt50.pb50 {
        padding: 20px 0;
    }
    .pic-flex {
        background: none;
        padding: 0;
        margin-bottom: 56px;
    }
    .pic-flex .item {
        display: flex;
        align-items: center;
        width: 48%;
        margin: 0 1%;
        padding: 12px;
        border: 4px solid transparent; /* 透明边框，给渐变背景腾位置 */
        border-radius: 4px;            /* 圆角 */
        background:
            linear-gradient(#FFFCF5, #FFFCF5) padding-box,            /* 纯色背景 */
            linear-gradient(180deg, #FFA775 0%, #F6823F 100%) border-box; /* 渐变边框 */
    }
    .pic-flex .item img {
        max-height: 62px;
    }
    .pic-flex .info > span {
        font-size: 14px;
    }
    .pic-flex .info > p {
        font-size: 24px;
        line-height: normal;
    }
    .pic-flex .info > p b {
        font-size: 14px;
    }
    .pic-flex .info {
        right: 8%;
        top: 15%;
    }

    .hdgz {
        background: #FFFCF5;
        border: none;
        padding: 0;
    }
    .hdgz-body {
        border: 4px solid #F6823F;
        padding: 16px 12px;
    }
    .hdgz-content {
        position: initial;
        width: 100%;
        transform: none;
    }
    .hdgz p {
        font-size: 14px;
        padding-bottom: 10px;
    }
    .frame {
        left: 0;
        top: 32%;
        width: 43%;
    }
    .font20 {
        font-size: 12px;
    }
    .pt40 {
        padding-top: 20px;
    }
    .pb20 {
        padding-bottom: 10px;
    }
    .pb30 {
        padding-bottom: 15px;
    }
    .pb40 {
        padding-bottom: 20px;
    }
    .pb50 {
        padding-bottom: 25px;
    }
    .pt50 {
        padding-top: 25px;
    }
}