.home {
    background: #FAFAFA;
    padding: 61px 0 120px;
}

.homeContainer {
    display: flex;
    align-items: flex-start;
}

.home-l {
    position: sticky;
    top: 110px;
    width: 360px;
    padding: 33px 20px 67px;
    background-color: #fff;
    border-radius: 10px;
}

.home-l .avatar {
    width: 162px;
    height: 162px;
    margin: 0 auto;
}

.home-l .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.home-l .name {
    font-family: MiSans-Bold;
    font-size: 24px;
    color: #222222;
    line-height: 30px;
    margin-top: 27px;
    text-align: center;
}

.home-l .user-stats {
    margin-top: 43px;
    border-top: 1px solid #DEDEDE;
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
}

.home-l .user-stats .stat-item {
    font-family: MiSans;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
}

.home-l .user-stats .stat-item strong {
    font-family: MiSans-Bold;
    color: #222222;
}

.home-l .attentionBtn {
    margin: 53px auto 0;
    width: 260px;
    max-width: 100%;
    line-height: 48px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    text-align: center;
    transition: all .6s;
    cursor: pointer;
}

.home-l .attentionBtn:hover,.home-l .attentionBtn.active {
    background: #E00011;
    border-color: #E00011;
    color: #fff;
}

.home-r {
    flex: 1;
    margin-left: 10px;
}

.home-r .home-collection .list,
.home-r .home-case .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-r .home-collection .caseItem a {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.exchangeRecord .pagination,
.home-r .home-attention .pagination,
.home-r .home-answer .pagination,
.home-r .home-faq .pagination,
.home-r .home-case .pagination {
    margin-top: 65px;
}

.home-r .home-collection .pagination {
    margin-top: 20px;
}

.home-r-t {
    /* position: sticky;
    top: 110px; */
    background: #FFFFFF;
    border-radius: 10px;
    padding: 25px 40px;
    margin-bottom: 20px;
    display: flex;
    gap: 75px;
    z-index: 3;
}

.home-r-t a {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    color: #222222;
}

.home-r-t a::before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: #E00011;
    transition: all .6s;
}

.home-r-t a:hover::before,
.home-r-t a.active::before {
    width: 100%;

}

.home-r-t a:hover,
.home-r-t a.active {
    color: #E00011;
}

.home-r-t a.active {
    font-family: MiSans-Bold;
}

.home-r .home-answer .list {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 28px 25px 62px;
}

.home-r .home-answer .list li:not(:last-child) {
    margin-bottom: 43px;
}

.home-r .home-answer .list li>a {
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #DEDEDE;
}

.home-r .home-answer .list li .question {
    font-size: 24px;
    color: #222222;
    line-height: 28px;
    vertical-align: middle;
    transition: all .6s;
}

.home-r .home-answer .list li:hover .question {
    color: #E00011;
}

.home-r .home-answer .list li .question .icon {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    font-family: MiSans-Bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    background-color: #E00011;
    border-radius: 50%;
    vertical-align: bottom;
}

.home-r .home-answer .list li .question .icon::before {
    position: absolute;
    content: "";
    left: 2px;
    bottom: 0px;
    width: 14px;
    height: 5px;
    background-color: #E00011;
    display: block;
    transform: skew(-41deg);
    border-radius: 0 0 5px 5px;
}

.home-r .home-answer .list li .answer {
    margin-top: 21px;
    padding: 20px 22px;
    background: #F8F8F8;
    border-radius: 5px;
    font-family: MiSans;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
}

.home-r .home-answer .list li .answer span {
    color: #222222;
}

.home-r .home-answer .list li .interaction-buttons {
    margin-top: 12px;
    display: flex;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    gap: 33px;
}

.home-r .home-answer .list li .interaction-buttons .btn {
    display: flex;
    gap: 6px;
}

.home-r .home-answer .list li .interaction-buttons .btn .iconfont {
    color: #CBCBCB;
    font-size: 20px;
}

.home-r .home-attention .list {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0 25px;

}

.home-r .home-attention .list li {
    background: #FFFFFF;
}

.home-r .home-attention .list li:not(:last-child) {
    border-bottom: 1px solid #DEDEDE;
}

.home-r .home-attention .list li>block {
    display: flex;
    padding: 30px 0;
    align-items: flex-end;
}

.home-r .home-attention .list li .profile-content {
    flex: 1;
    display: flex;
    margin-right: 68px;
}

.home-r .home-attention .list li .profile-content a{
    display: flex;
}

.home-r .home-attention .list li .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.home-r .home-attention .list li .profile-info {
    flex: 1;
    margin-left: 14px;
}

.home-r .home-attention .list li .text-title {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}

.home-r .home-attention .list li .stats {
    display: flex;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    margin-top: 5px;
    gap: 0 41px;
}

.home-r .home-attention .list li .stats strong {
    font-family: MiSans-Bold;
    color: #222222;
}

.home-r .home-attention .list li .follow-btn {
    padding: 0 28px;
    line-height: 40px;
    background: #E00011;
    border-radius: 5px;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
}

.homeTitle {
    font-family: MiSans-Bold;
    color: #222222;
    line-height: 1;
    margin: 1.18em auto;
}

.home-l .nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #222222;
    line-height: 60px;
    padding: 0 32px;

    border-radius: 10px;
    transition: all .6s;
}

.home-l .nav a .iconfont {
    color: #E00011;
    font-size: 20px;
    font-weight: bold;
}

.home-l .nav a.active {
    background: #F8F8F8;
}

.home-l .nav a.active,
.home-l .nav a:hover {
    color: #E00011;
}

.home-r1 {
    padding: 50px 40px 120px;
    background: #FFFFFF;
    border-radius: 10px;
}

.home-r1 .home-r-title {
    font-family: MiSans-Bold;
    font-weight: bold;
    font-size: 24px;
    color: #222222;
    line-height: 1;
    padding-bottom: 1em;
    border-bottom: 1px solid #DEDEDE;
}

.home-r1 .home-account {
    margin-top: 31px;
}

.home-r1 .home-account .account-info label {
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}

.home-r1 .home-account .account-info label span {
    color: #E00011;
}

.home-r1 .home-account .account-info form {
    margin-top: 12px;
    display: flex;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
}

.home-r1 .home-account .account-info form input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0 27px;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}

.home-r1 .home-account .account-info .modify-btn {
    line-height: 58px;
    padding: 0 33px;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    background: #222222;
    border-radius: 5px;
}

.home-r1 .home-account .account-actions {
    margin-top: 37px;
}

.home-r1 .home-account .account-actions .action-btn {
    display: block;
    width: 200px;
    line-height: 60px;
    background: #F8F8F8;
    border-radius: 5px;
    font-size: 18px;
    color: #222222;
    text-align: center;
    cursor: pointer;
    transition: all .6s;
}

.home-r1 .home-account .account-actions .action-btn:hover {
    background-color: #E00011;
    color: #fff;
}
.home-r1 .home-account .account-actions .action-btn a:hover{
    color: #fff;
}

.home-r1 .home-account .account-actions .action-btn:not(:last-child) {
    margin-bottom: 20px;
}

.home-r1 .notification-tabs {
    font-family: MiSans;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    padding-top: 31px;
    display: flex;
    gap: 0 49px;
}

.home-r1 .notification-tabs a {
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    transition: all .6s;
}

.home-r1 .notification-tabs a.active,
.home-r1 .notification-tabs a:hover {
    color: #E00011;
}

.home-r1 .home-info .notification-content {
    margin-top: 31px;
}

.home-r1 .home-info .notification-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 28px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}

.home-r1 .home-info .notification-item:not(:last-child) {
    margin-bottom: 10px;
}

.home-r1 .home-info .notification-item .text-title {
    flex: 1;
    margin-right: 31px;
}

.home-r1 .home-info .notification-item .text-title span {
    color: #E00011;
}

.home-r .home-collection .list {
    margin-top: 31px;
}

.home-r1 .home-personal {
    padding-top: 38px;
}

.home-r1 .home-personal .profile-avatar {
    display: flex;
    align-items: center;
}

.home-r1 .home-personal .profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.home-r1 .home-personal .profile-avatar .uploadBtn {
    margin-left: 21px;
    width: 100px;
    line-height: 40px;
    background: #F8F8F8;
    border-radius: 20px;
    padding: 0 18px;
    font-size: 16px;
    color: #E00011;
    cursor: pointer;
    transition: all .6s;
    border: 0px;
}

.home-r1 .home-personal .profile-form form {
    display: block;
    margin-top: 46px;
}

.home-r1 .home-personal .form-group label {
    display: block;
    font-family: MiSans;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 1;
}

.home-r1 .home-personal .form-group label span {
    color: #E00011;
}

.home-r1 .home-personal .form-group input {
    display: block;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    padding: 0 20px;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    outline: none;
    margin-top: 8px;
}

.home-r1 .home-personal .form-group:not(:last-child) {
    margin-bottom: 27px;
}

.home-r1 .home-personal .profile-form .submit {
    width: 200px;
    line-height: 60px;
    background: #E00011;
    border-radius: 5px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    margin-top: 47px;
}

.home-r .home-integration .score-container {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 50px 30px;
}

.home-r .home-integration .score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-r .home-integration .score-header h2 {
    font-family: MiSans-Bold;
    font-size: 24px;
    color: #222222;
    line-height: 1;
}

.home-r .home-integration .score-header a {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    transition: all .6s;
}

.home-r .home-integration .score-header a:hover {
    color: #E00011;
}

.home-r .home-integration .score-content {
    display: flex;
    margin-top: 25px;
    justify-content: space-between;
}

.home-r .home-integration .score-content .l {
    width: 24.81%;
    height: 200px;
    background: #E00011;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-r .home-integration .score-content .l h3 {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1;
    font-weight: 400;
}

.home-r .home-integration .score-content .l p {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1;
}

.home-r .home-integration .score-content .r {
    width: 73.12%;
}

.home-r .home-integration .score-content .r h3 {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 1;
}

.home-r .home-integration .score-content .r .score-cards {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(5,1fr);
    /* justify-content: space-between; */
    gap: 10px;
}

.home-r .home-integration .score-content .r .score-card {
    /* width: 19.01%; */
    height: 160px;
    background: #F8F8F8;
    border-radius: 5px;
    padding: 13px 13px 39px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-r .home-integration .score-content .r .card-title {
    font-size: 16px;
    color: #222222;
    line-height: 24px;
}

.home-r .home-integration .score-content .r .card-des {
    font-size: 16px;
    color: #E00011;
    line-height: 1;
    text-align: center;
}

.home-r .home-integration .score-content .r .card-des span {
    color: #222222;
}

.home-r .home-integration .score-bottom {
    margin-top: 67px;
}

.home-r .home-integration .score-bottom h3 {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
}

.home-r .home-integration .score-bottom .daily-tasks {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
}

.home-r .home-integration .score-bottom .task-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #F8F8F8;
    border-radius: 5px;
    height: 180px;
    padding: 20px;
}

.home-r .home-integration .score-bottom .item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-r .home-integration .score-bottom .item-title h4 {
    font-weight: 400;
    font-size: 22px;
    color: #222222;
    line-height: 30px;
}

.home-r .home-integration .score-bottom .item-title .number {
    font-family: MiSans-Bold;
    font-size: 16px;
    color: #E00011;
    line-height: 30px;
}

.home-r .home-integration .score-bottom .item-title .number span {
    font-size: 22px;
}

.home-r .home-integration .score-bottom .item-des {
    font-size: 16px;
    color: #999999;
    line-height: 24px;
    margin-top: 5px;
}

.home-r .home-integration .score-bottom .btn {
    display: block;
    width: 160px;
    line-height: 42px;
    background: #E00011;
    border-radius: 21px;
    text-align: center;
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #FFFFFF;
    align-self: center;
}

.home-r .home-integration .points-container {
    margin-top: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 49px 31px 94px;
}

.home-r .home-integration .points-container .points-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-r .home-integration .points-container .points-section h2 {
    font-family: MiSans-Bold;
    font-size: 24px;
    color: #222222;
    line-height: 1;
}

.home-r .home-integration .points-container .points-section h2 span {
    font-family: MiSans;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    line-height: 1;
}

.home-r .home-integration .points-container .points-section a {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    transition: all .6s;
}

.home-r .home-integration .points-container .points-section a:hover {
    color: #E00011;
}

.home-r .home-integration .points-container .product-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-r .home-integration .points-container .product-grid a {
    padding: 10px 10px 19px;
    background: #F8F8F8;
    border-radius: 5px;
}

.home-r .home-integration .points-container .product-grid .picCover {
    padding-top: 56.55%;
}

.home-r .home-integration .points-container .product-grid .pic {
    border-radius: 5px;
}

.home-r .home-integration .points-container .product-grid .text-box {
    padding-left: 8px;
    margin-top: 27px;
}

.home-r .home-integration .points-container .product-grid h3 {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    transition: all .6s;
}

.home-r .home-integration .points-container .product-item:hover h3 {
    color: #E00011;
}

.home-r .home-integration .points-container .product-grid .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3px;
}

.home-r .home-integration .points-container .product-grid .price {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #E00011;
    line-height: 1;
}

.home-r .home-integration .points-container .product-grid .price span {
    font-size: 24px;
}

.home-r .home-integration .points-container .product-grid .ammount {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
}

.exchangeRecord,
.integrationRule,
.productsExchange {
    padding: 102px 0 120px;
    background-color: #FAFAFA;
}

.exchangeRecord .title,
.integrationRule .title,
.productsExchange .title {
    font-family: MiSans-Bold;
    color: #222222;
    line-height: 1;
    text-align: center;
}

.productsExchange .box-c {
    margin: 56px auto 0;
    width: 960px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 50px 68px;
    max-width: 100%;
}

.productsExchange .box-c .product-info h4 {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}

.productsExchange .box-c .product-info .product-image {
    width: 290px;
    display: block;
    border-radius: 5px;
    margin-top: 20px;
}

.productsExchange .box-c .product-info .number {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    margin-top: 20px;
}

.productsExchange .box-c .product-info .number .points-required {
    font-family: MiSans-Bold;
    font-size: 18px;
    color: #E00011;
}

.productsExchange .box-c .product-info .number .points-required span {
    font-size: 24px;
}

.productsExchange .box-c form {
    margin-top: 30px;
}

.productsExchange .box-c form .form-group {
    margin-bottom: 25px;
}

.productsExchange .box-c form .form-group label {
    display: block;
    font-size: 16px;
    color: #222222;
    line-height: 1;
}

.productsExchange .box-c form .form-group input,
.productsExchange .box-c form .form-group textarea {
    display: block;
    width: 100%;
    height: 60px;
    font-family: MiSans;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    outline: none;
    padding: 15px 20px;
    font-size: 16px;
    color: #222222;
    line-height: 30px;
    margin-top: 14px;
}

.productsExchange .box-c form .form-group textarea {
    resize: none;
    height: 120px;
}

.productsExchange .box-c form .submit-btn {
    display: inline-block;
    padding: 0 44px;
    line-height: 60px;
    background: #E00011;
    border-radius: 5px;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    text-align: center;
}

.integrationRule {
    padding: 108px 0 120px;
    background-color: #FAFAFA;
}

.integrationRule .box-c {
    padding: 86px 0 168px;
    background: #FFFFFF;
    border-radius: 10px;
    margin-top: 56px;
}

.integrationRule .box-c .text-box {
    width: 1086px;
    max-width: 90%;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    margin: 0 auto;
}

.exchangeRecord .title {
    text-align: left;
}

.exchangeRecord .box-c {
    margin-top: 56px;
}

.exchangeRecord .box-c .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.exchangeRecord .box-c .list li {
    background: #FFFFFF;
    border-radius: 10px;
}

.exchangeRecord .box-c .list li>a {
    padding: 28px;
    display: block;
}

.exchangeRecord .box-c .list li .order-info {
    display: flex;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    gap: 0 68px;
}

.exchangeRecord .box-c .list li .product-content {
    margin-top: 33px;
    display: flex;
}

.exchangeRecord .box-c .list li .picCover {
    width: 176px;
    padding-top: 100px;
}

.exchangeRecord .box-c .list li .picCover .pic {
    border-radius: 5px;
}

.exchangeRecord .box-c .list li .points-section {
    display: flex;
    flex: 1;
    margin-left: 24px;
    justify-content: space-between;
}

.exchangeRecord .box-c .list li .product-info {
    flex: 1;
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exchangeRecord .box-c .list li .product-name {
    font-size: 22px;
    color: #222222;
    line-height: 30px;
    transition: all .6s;
}

.exchangeRecord .box-c .list li .quantity {
    font-size: 16px;
    color: #222222;
    line-height: 30px;
}

.exchangeRecord .box-c .list li .points-display {
    font-family: MiSans-Bold;
    font-size: 16px;
    color: #222222;
    line-height: 30px;
}

.exchangeRecord .box-c .list li .points-display span {
    font-size: 22px;
}

.exchangeRecord .box-c .list li .remaining-points {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
}

.exchangeRecord .box-c .list li:hover .product-name {
    color: #E00011;
}

.home-r .home-apply {
    padding-top: 31px;
}

.home-r .home-apply .form-container {
    display: block;
}

.home-r .home-apply .form-container .form-group label {
    font-family: MiSans;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 1;
    display: block;
}

.home-r .home-apply .form-container .form-group label span {
    color: #E00011;
}

.home-r .home-apply .form-container .form-group select,
.home-r .home-apply .form-container .form-group textarea {
    display: block;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    padding: 15px 20px;
    font-size: 18px;
    color: #222222;
    font-family: MiSans;
    font-weight: 400;
    line-height: 30px;
    outline: none;
    resize: none;
    margin-top: 18px;
}
.home-r .home-apply .form-container .form-group select{
    appearance: none;
    background: url(../img/bottom.png);
    background-repeat: no-repeat;
    background-size: 16px 10px;
    background-position: right 20px center;
}
.home-r .home-apply .form-container .form-group textarea::placeholder{
    color:#CCCCCC
}
.home-r .home-apply .form-container .form-group textarea{
    height: 180px;
}
.home-r .home-apply .form-container .form-group:not(:last-child) {
    margin-bottom: 28px;
}

.home-r .home-apply .form-container .btns {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.home-r .home-apply .form-container .btn {
    width: 200px;
    line-height: 60px;
    background: #DEDEDE;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    color: #999999;
    cursor: pointer;
}

.home-r .home-apply .form-container .btn-submit {
    background-color: #E00011;
    color: #FFFFFF;
}
@media (max-width:1440px) {
    .home-l{
        width: 300px;
    }
    .home-l .avatar{
        width: 131px;
        height: 131px;
    }
    .home-l .name{
        font-size: 20px;
        margin-top: 1em;
    }
    .home-l .user-stats{
        margin-top: 30px;
        padding-top: 20px;
    }
    .home-l .user-stats .stat-item{
        /* font-size: 14px; */
    }
    .home-l .attentionBtn{
        margin-top: 35px;
    }
    .home-r .home-answer .list li .question{
        font-size: 20px;
    }
    .home-r .home-integration .score-content .l p{
        font-size: 18px;
    }
     .home-r .home-integration .score-bottom .item-title .number span,
    .home-r .home-integration .score-bottom .item-title h4{
        font-size: 20px;
    }
    .home-r .home-integration .score-bottom{
        margin-top: 50px;
    }
}
@media (max-width:1280px) {
    .home-r .home-integration .score-bottom .btn{
        font-size: 16px;
        line-height: 40px;
    }
     .home-r .home-integration .score-bottom .item-title .number span,
    .home-r .home-integration .score-bottom .item-title h4{
        font-size: 18px;
    }
    .home-r .home-integration .score-bottom .item-title .number{
        font-size: 14px;
    }
    .home-r .home-integration .score-bottom .item-des{
        font-size: 14px;
        line-height: 24px;
    }
    .home-r .home-integration .score-bottom{
        margin-top: 40px;
    }
}
@media (max-width:1199px) {
    .home-r .home-integration .score-content .r .score-card{
        height: 140px;
        padding-bottom: 20px;
    }
    .home-r .home-integration .points-container .product-grid .product-info{
        margin-top: 0;
    }
    .home-r .home-integration .points-container .product-grid .text-box{
        margin-top: 15px;
    }
    .home-r .home-integration .points-container .product-grid .price span{
        font-size: 22px;
    }
    .home-r .home-integration .points-container .product-grid .price{
        font-size: 16px;
    }
    .home-r .home-integration .points-container .product-grid,
    .home-r .home-integration .score-bottom .daily-tasks{
        grid-template-columns: repeat(2,1fr);
    }
    .home-r .home-integration .score-content{
        flex-direction: column;
        margin-top: 20px;
    }
    .home-r .home-integration .score-content .l{
       flex-direction: row;
       width: 100%;
       height: auto;
       align-items: center;
        padding: 20px;
    }
    .home-r .home-integration .score-content .r{
        width: 100%;
        margin-top: 25px;
    }
    .home{
        padding: 40px 0 80px;
    }
    .exchangeRecord, .integrationRule, .productsExchange{
        padding: 80px 0;
    }
    .exchangeRecord .pagination, .home-r .home-attention .pagination, .home-r .home-answer .pagination, .home-r .home-faq .pagination, .home-r .home-case .pagination,
    .exchangeRecord .box-c{
        margin-top: 45px;
    }
    .exchangeRecord .box-c .list{
        grid-template-columns: repeat(1,1fr);
    }
    .home-r-t{
        gap: 0 50px;
    }
    .home-r .home-integration .points-container{
        padding-bottom: 80px;
    }
    .home-r1 .home-personal .profile-form form{
        margin-top: 45px;
    }
    .home-r1 .home-personal .profile-form .submit{
        margin-top: 45px;
    }
    .integrationRule .box-c{
        margin-top: 45px;
    }
    .integrationRule .box-c{
        padding: 45px 0;
    }
    .productsExchange .box-c{
        margin-top: 45px;
    }
    .productsExchange .box-c{
        padding: 45px;
    }
}
@media (max-width:1024px) {
    .productsExchange .box-c{
        margin-top: 40px;
    }
    .productsExchange .box-c{
        padding: 40px;
    }
    .integrationRule .box-c{
        margin-top: 40px;
    }
    .integrationRule .box-c{
        padding: 40px 0;
    }
    .home-r1 .home-personal .profile-form .submit{
        margin-top: 40px;
    }
    .home-r1 .home-personal .profile-form form{
        margin-top: 40px;
    }
    .home-r1 .home-r-title{
        padding-bottom: .7em;
    }
    .home-r1{
        padding: 40px;
    }
    .home-r{
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 25px;
    }
    .home-l{
        padding: 20px;
    }
    .home-l .nav a{
        padding: 0 24px;
        line-height: 50px;
        font-size: 16px;
    }
    .homeContainer{
        flex-direction: column;
    }
    .home-l{
        position: relative;
        top: 0;
        width: 100%;
    }
    .homeTitle{
        margin: 0 auto .8em;
    }
    .home{
        padding: 40px 0 70px;
    }
    .exchangeRecord, .integrationRule, .productsExchange{
        padding: 70px 0;
    }
    .exchangeRecord .pagination, .home-r .home-attention .pagination, .home-r .home-answer .pagination, .home-r .home-faq .pagination, .home-r .home-case .pagination,
    .exchangeRecord .box-c{
        margin-top: 40px;
    }
    .home-r-t{
        padding: 17px 24px;
        gap: 0 30px;
    }
    .home-r-t a::before{
        bottom: -6px;
        height: 2px;
    }
    .home-r .home-answer .list{
        padding-bottom: 60px;
    }
    .home-r1 .notification-tabs{
        padding-top: 25px;
    }
    .home-r .home-collection .list{
        margin-top: 25px;
    }
    .home-r .home-integration .points-container{
        padding-bottom: 70px;
    }
    .integrationRule .box-c{
        margin-top: 40px;
    }
}
@media (max-width:768px) {
    .productsExchange .box-c{
        margin-top: 30px;
    }
    .productsExchange .box-c{
        padding: 30px;
    }
   .integrationRule .box-c{
        margin-top: 30px;
    }
    .integrationRule .box-c{
        padding: 30px 0;
    }
    .home-r1 .home-personal .profile-form .submit{
        margin-top: 30px;
        line-height: 50px;
        font-size: 16px;
    }
    .home-r1 .home-personal .form-group label{
        font-size: 16px;
    }
    .home-r1 .home-personal .form-group input{
        height: 50px;
        font-size: 16px;
    }
    .home-r1 .home-personal .profile-form form{
        margin-top: 30px;
    }
    .home-r1 .home-personal{
        padding-top: 30px;
    }
    .home-r1 .home-personal .profile-avatar img{
        width: 80px;
        height: 80px;
    }
    .home-r1 .home-personal .profile-avatar .uploadBtn{
        margin-left: 14px;
    }
    .home-r .home-integration .score-header h2,
    .home-r .home-integration .points-container .points-section h2{
        font-size: 22px;
    }
    .home-r .home-integration .points-container .points-section h2 span{
        font-size: 16px;
    }
    .home-r1 .home-info .notification-content{
        margin-top: 25px;
    }
    .home-r1 .notification-tabs{
        gap: 0 24px;
    }
    .home-r1 .notification-tabs a{
        font-size: 16px;
    }
    .home-r .home-collection .list, .home-r .home-case .list{
        grid-template-columns: repeat(2,1fr);
    }
    .home-r .home-apply .form-container .btn{
        line-height: 50px;
        width: 160px;
        font-size: 16px;
    }
    .home-r .home-apply .form-container .form-group select, .home-r .home-apply .form-container .form-group textarea{
        margin-top: 10px;
    }
    .home-r .home-apply .form-container .form-group label{
        font-size: 16px;
    }
    .home-r .home-apply .form-container .form-group select{
        height: 50px;
        padding: 10px 15px;
    }
    .home-r .home-apply .form-container .form-group select, .home-r .home-apply .form-container .form-group textarea{
        font-size: 16px;
    }
    .home-r1{
        padding: 30px 30px 40px;
    }
    .home-r1 .home-account .account-actions .action-btn{
        line-height: 50px;
        font-size: 16px;
    }
    .home-r1 .home-account .account-actions{
        margin-top: 30px;
    }
    .home-r1 .home-account .account-info form input{
        padding: 0 19px;
    }
    .home-r1 .home-account .account-info form{
        height: 50px;
    }
    .home-r1 .home-account .account-info form input{
        font-size: 16px;
    }
    .home-r1 .home-account .account-info .modify-btn{
        line-height: 48px;
        font-size: 16px;
    }
    .home-r1 .home-r-title{
        font-size: 22px;
    }
    .home{
        padding: 30px 0 60px;
    }
    .exchangeRecord, .integrationRule, .productsExchange{
        padding: 60px 0;
    }
    .exchangeRecord .pagination, .home-r .home-attention .pagination, .home-r .home-answer .pagination, .home-r .home-faq .pagination, .home-r .home-case .pagination,
    .exchangeRecord .box-c{
        margin-top: 30px;
    }
    .home-r-t a{
        font-size: 16px;
    }
    .home-r .home-answer .list{
        padding-bottom: 50px;
    }
    .home-r1 .home-info .notification-item{
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-end;
    }
    .home-r1 .home-info .notification-item .text-title{
        flex: none;
        margin-right: 0;
        width: 100%;
    }
    .home-r .home-integration .points-container,
    .home-r .home-integration .score-container{
        padding: 40px 30px;
    }
    .home-r .home-integration .score-content .r .score-cards{
        grid-template-columns: repeat(3,1fr);
    }
    .productsExchange .box-c .product-info .product-image{
        margin-top: 10px;
    }
    .productsExchange .box-c .product-info .number{
        margin-top: 15px;
    }
    .productsExchange .box-c .product-info .number .points-required{
        font-size: 16px;
    }
    .productsExchange .box-c .product-info .number .points-required span{
        font-size: 22px;
    }
    .productsExchange .box-c form .form-group input, .productsExchange .box-c form .form-group textarea{
        height: 50px;
        padding: 10px 15px;
    }
    .productsExchange .box-c form .form-group textarea{
        height: 100px;
    }
    .productsExchange .box-c form .submit-btn{
        line-height: 50px;
    }
}
@media (max-width: 650px) {
    .home-r .home-integration .score-content .r .score-cards{
        grid-template-columns: repeat(2,1fr);
    }
    .home-r .home-integration .points-container .product-grid, .home-r .home-integration .score-bottom .daily-tasks{
        grid-template-columns: repeat(1,1fr);
    }
    .exchangeRecord .box-c .list li .product-content{
        margin-top: 17px;
    }
    .exchangeRecord .box-c .list li>a{
        padding: 20px;
    }
    .exchangeRecord .box-c .list li .points-section{
        margin-left: 14px;
    }
    .exchangeRecord .box-c .list li .product-info{
        margin-right: 16px;
    }
    .exchangeRecord .box-c .list li .points-display span,
    .exchangeRecord .box-c .list li .product-name{
        font-size: 20px;
    }
    .exchangeRecord .box-c .list li .order-info,
    .exchangeRecord .box-c .list li .quantity,
    .exchangeRecord .box-c .list li .remaining-points{
        font-size: 14px;
        line-height: 24px;
    }
    .exchangeRecord .box-c .list li .order-info{
        gap: 0 30px;
    }
    .exchangeRecord .box-c .list li .picCover{
        width: 150px;
        height: 85px;
    }
    .exchangeRecord .box-c .list li .points-section{
        flex-direction: column;
        align-items: flex-start;
    }
    .exchangeRecord .box-c .list li .product-info{
        margin-right: 0;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .exchangeRecord .box-c .list li .points-section-r{
        text-align: right;
        width: 100%;
    }
    .exchangeRecord .box-c .list li .product-name{
        flex: 1;
        margin-right: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .exchangeRecord .box-c .list li .points-display{
        font-size: 14px;
    }
    .home-r1 .home-account .account-info label{
        font-size: 16px;
        line-height: 24px;
    }
    .home-r .home-answer .list li:not(:last-child){
        margin-bottom: 35px;
    }
}
@media (max-width: 500px) {
    .productsExchange .box-c .product-info h4{
        font-size: 16px;
    }
    .productsExchange .box-c .product-info .number{
        font-size: 14px;
    }
    .productsExchange .box-c form .submit-btn{
        line-height: 45px;
        font-size: 16px;
    }
    .productsExchange .box-c form{
        margin-top: 25px;
    }
    .productsExchange .box-c form .form-group input, .productsExchange .box-c form .form-group textarea,
    .productsExchange .box-c form .form-group label{
        font-size: 14px;
    }
    .productsExchange .box-c form .form-group input{
        height: 45px;
    }
    .productsExchange .box-c form .form-group input, .productsExchange .box-c form .form-group textarea{
        padding: 12px 15px;
    }
    .productsExchange .box-c{
        margin-top: 25px;
    }
    .productsExchange .box-c{
        padding: 25px;
    }
    .integrationRule .box-c .text-box{
        font-size: 14px;
        line-height: 24px;
    }
    .integrationRule .box-c{
        margin-top: 25px;
    }
    .integrationRule .box-c{
        padding: 25px 0;
    }
    .home-r1 .home-personal .profile-form .submit{
        margin-top: 25px;
        line-height: 45px;
        font-size: 14px;
        width: 160px;
    }
    .home-r1 .home-personal .form-group:not(:last-child){
        margin-bottom: 20px;
    }
    .home-r1 .home-personal .form-group label{
        font-size: 14px;
    }
    .home-r1 .home-personal .form-group input{
        height: 45px;
        font-size: 14px;
        padding: 0 14px;
    }
    .home-r1 .home-personal .profile-form form{
        margin-top: 25px;
    }
    .home-r .home-integration .score-content .l h3{
        font-size: 14px;
    }
    .home-r .home-integration .score-content .l p{
        font-size: 14px;
    }
    .home-r .home-integration .points-container .product-grid .price span{
        font-size: 20px;
    }
    .home-r .home-integration .points-container .product-grid .ammount,
    .home-r .home-integration .points-container .product-grid .price{
        font-size: 14px;
    }
    .home-r .home-integration .points-container .product-grid h3{
        font-size: 16px;
    }
    .home-r .home-integration .score-content .r .score-card{
        height: 120px;
    }
    .home-r .home-integration .score-content .l{
        padding: 15px 20px;
    }
    .home-r .home-integration .points-container, .home-r .home-integration .score-container{
        padding: 25px 20px;
    }
    .home-r .home-integration .score-header h2,
    .home-r .home-integration .points-container .points-section h2{
        font-size: 20px;
    }
    .home-r .home-integration .points-container .points-section h2 span{
        font-size: 14px;
    }
    .home-r1 .home-info .notification-item{
        font-size: 14px;
        line-height: 24px;
        padding: 10px 16px;
    }
    .home-r1 .notification-tabs{
        gap: 0 16px;
    }
    .home-r1 .home-info .notification-content{
        margin-top: 17px;
    }
    .home-l .user-stats{
        margin-top: 20px;
    }
    .home-l .attentionBtn{
        line-height: 43px;
        font-size: 16px;
        margin-top: 21px;
    }
    .home-r .home-collection .list, .home-r .home-case .list{
        gap: 5px 0 ;
    }
    .home-r1 .notification-tabs{
        padding-top: 17px;
    }
    .home-r .home-collection .list{
        margin-top: 17px;
    }
    .home-r1 .notification-tabs a{
        font-size: 14px;
        line-height: 24px;
    }
     .home-r .home-collection .list, .home-r .home-case .list{
        grid-template-columns: repeat(1,1fr);
    }
    .home-r .home-apply{
        padding-top: 20px;
    }
    .home-r .home-apply .form-container .form-group:not(:last-child){
        margin-bottom: 18px;
    }
    .home-r .home-apply .form-container .btn{
        line-height: 45px;
        width: 140px;
    }
    .home-r .home-apply .form-container .form-group textarea{
        height: 120px;
    }
    .home-r .home-apply .form-container .form-group select, .home-r .home-apply .form-container .form-group textarea,
    .home-r .home-apply .form-container .form-group label{
        font-size: 14px;
        padding: 7px 10px;
    }
    .home-r .home-apply .form-container .form-group select{
        height: 45px;
        background-size: 12px auto;
        background-position: right 10px center;
    }
    .home-l .avatar{
        width: 94px;
        height: 94px;
    }
    .home-r .home-answer .list li:not(:last-child){
        margin-bottom: 30px;
    }
    .home-r .home-answer .list li .answer{
        margin-top: 15px;
        padding: 10px;
        font-size: 14px;
        line-height: 24px;
    }
    .home-r .home-answer .list li .interaction-buttons{
        font-size: 14px;
        line-height: 24px;
    }
    .home-r .home-answer .list li .question .icon{
        transform: scale(.9);
    }
    .home-r .home-answer .list li .question{
        font-size: 18px;
    }
    .home-r .home-answer .list{
        padding: 20px 20px 45px;
    }
    .home-r-t a{
        font-size: 14px;
        line-height: 24px;
    }
    .home-r-t{
        gap: 0 20px;
        padding: 10px 13px;
    }
    .home-r1 .home-account .account-info form{
        height: 45px;
    }
    .home-r1 .home-account .account-info .modify-btn{
        padding: 0 23px;
        line-height: 43px;
    }
    .home-r1 .home-account .account-actions .action-btn{
        line-height: 45px;
    }
    .home-r1 .home-account{
        margin-top: 20px;
    }
    .home-r1 .home-r-title{
        font-size: 20px;
    }
    .home-r1{
        padding: 25px 20px 40px;
    }
    .home{
        padding: 30px 0 50px;
    }
    .exchangeRecord .box-c .list li .points-display span,
    .exchangeRecord .box-c .list li .product-name{
        font-size: 18px;
    }
    .exchangeRecord, .integrationRule, .productsExchange{
        padding: 50px 0;
    }
    .exchangeRecord .pagination, .home-r .home-attention .pagination, .home-r .home-answer .pagination, .home-r .home-faq .pagination, .home-r .home-case .pagination,
    .exchangeRecord .box-c{
        margin-top: 25px;
    }
}