* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    object-fit: cover;
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container-banner {
    width: 100%;
    height: 400px;
}

.container-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-main {
    width: 63%;
    height: 100%;
    margin: 0 auto;
    margin-top: 71px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.container-main__tip {
    height: 119px;
    background: #FFF5EA;
    border-radius: 16px;
    padding: 26px 28px 29px 29px;
    box-sizing: border-box;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-size: 18px;
    color: #333333;
    line-height: 36px;
}

.item {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.item-top {
    display: flex;
    gap: 17px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 32px;
    color: #333333;

    justify-content: center;
    align-items: center;
}

.item-top img {
    width: 36px;
    height: 36px;
}

.item-content {
    padding: 35px;
    background: #FFFFFF;
    box-shadow: 0px 3px 20px 1px rgba(51,51,51,0.1);
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    gap: 41px;

}

.item-content__tip {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-size: 18px;
    color: #333333;
    line-height: 1.5; 
    display: flex; 
    align-items: center;
}

.item-content__tip::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #F98207;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 8px;
}

.item-content__display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17px;
}

.item-content__display img {
    width: 280px;
    height: 203px;

}

.item-content__banner {
    width: 100%;
    height: 340px;
}

.item-content__banner img {
    width: 100%;
    height: 100%;
}

.container-bottom {
    background: url('./images/bottomBanner.png') no-repeat top center / cover;
    width: 100%;
    height: 361px;
    margin-top: 71px;
}

.inner {
    width: 63%;
    height: 100%;
    margin: 0 auto;
    padding: 59px 66px 43px;
    display: flex;
    gap: 96px;

}

.info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1;
    margin-right: 99px;
}

.info-top {
    width: 100%;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 32px;
    color: #333333;

    display: flex;
    gap: 17px;
    align-items: center;
}

.info-top img {
    width: 36px;
    height: 36px;
}

.info-item {
    width: 100%;
    border-radius: 43px;
    border: 1px solid #FA7724;
    position: relative;
    background: #fff;
    display: flex;
    gap: 15px;
    align-items: center;
}

.info-item__title {
    width: 101px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    font-family: SourceHanSansCN-Bold, SourceHanSansCN-Bold;
    font-size: 17px;
    color: #FFFFFF;
    position: relative;
    background: red;
    background-image: linear-gradient(to top, #F98207, #FF5932);
    box-shadow: 0 3px 8px 1px rgba(255, 46, 5, 0.3);
    border-radius: 43px;
}

.info-item__time {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 21px;
    color: #333333;
}

.info-tip {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.info-tip::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #F98207;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 8px;
}

.qrcode {
    display: flex;
    flex-direction: column;
    gap: 19px;
    justify-content: center;
    align-items: center;
}

.qrcode img {
    width: 185px;
    height: 185px;
}

.qrcode_text {
    width: fit-content;
    background: #fff;
    padding: 6px 22px;

    border-radius: 29px;

    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
}

.pColor {
    color: #F98207;
}