<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-size: 0.273rem;
    font-family:-apple-system-font, "Noto Sans SC", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: #444;
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul,
p,
span,
div {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.hone_home {
    text-align: center;
    position: relative;
    top: 28%;
}

.hone_home img {
    width: 309px;
    height: 176px;
}

.home_page {
    position: relative;
    /*background-image: url('https://static.frdic.com/web/ting/year_homepage.png');*/
    background-size: cover;
    background-repeat: no-repeat;
}

.home_text span {
    display: block;
    color: #fff;
    float: left;
    position: relative;
    text-shadow: 5px 1px 6px #aeaeae;
}

.home_text {
    position: relative;
    top: 5%;
    left: 11%;
    color: #F8F8F8;
}

.home_text .num {
    font-size: 0.683rem;
}

.first_text i {
    width: 0.853rem;
    background: #fff;
    height: 2px;
    display: inline-block;
    transform: rotate(-45deg);
    position: relative;
    left: -8%;
    text-shadow: 5px 1px 6px #aeaeae;
}

.third_text i {
    width: 0.853rem;
    background: #fff;
    height: 2px;
    display: inline-block;
    transform: rotate(-45deg);
    position: relative;
    left: -8%;
    text-shadow: 5px 1px 6px #aeaeae;
}

.second_text {
    width: 1px;
    height: 3.5rem;
    background: #fff;
    margin: 0 0.341rem;
    margin-top: 27%;
}

.third_text {
    font-size: 0.41rem;
    text-align: center;
    margin-top: 8%;
}
.next_guide1,
.next_guide {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.85rem;
    height: 0.614rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.273rem;
}

.next_guide_icon {
    position: absolute;
    bottom: 2%;
    left: 50%;
    padding: 2% 0.5rem;
    margin-left: -0.619rem;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.next_guide_icon img {
    width: 0.256rem;
    height: 0.256rem;
}


.logo_green img {
    width: 0.631rem;
    height: 0.631rem;
}


.logo_blue img {
    width: 0.887rem;
    height: 0.887rem;
}
.star5 img {
    width: 0.273rem;
    height: 0.273rem;
}
.handAnimate{
    display: flex;
    position: absolute;
    top: 51%;
    width: 100%;
    justify-content: center;
}
.handAnimate span{
    margin:0 42px;
}
.handAnimate img{
     width:0.614rem;
     height:0.817rem;
}

@keyframes handScale{
    0% {
        transform: scale(1.0);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.4);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}
.handAnimate .hand2,
.handAnimate .hand1{
    -webkit-transform-origin:50% 50% 0;
    transform-origin: 50% 50% 0;
     -webkit-animation: handScale 2s linear 0.5s infinite;
    animation: handScale 2s linear 0.5s infinite;
}
/*小箭头上下移动*/
@keyframes guide_icon {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

    50% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    75% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

@keyframes guide_icon1 {
    0% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

    25% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
    }

    50% {
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
    }

    75% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}
.yearSummary2021 .homeText,
.next_guide_icon {
    -webkit-animation: guide_icon 2s linear 0.5s infinite;
    animation: guide_icon 2s linear 0.5s infinite;
    /* 2s播完，线性载入，无数次播放 */
}
.yearSummary2021 .logo_blue,
.yearSummary2021 .logo_green{
    -webkit-animation: guide_icon1 2s linear 0.5s infinite;
    animation: guide_icon1 2s linear 0.5s infinite;
}

/*文字淡入效果*/
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.first_text {
    opacity: 0;
    /*实先规定文字的状态是不显示的*/
    animation: fade-in 2s ease 0s 1;
    /*调用名称为fade-in的动画，全程动画显示时间4S，进入方式为ease，延时0S进入，播放次数1次*/
    -webkit-animation: fade-in 2s ease 0s 1;
    /*规定动画的最后状态为结束状态*/
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.second_text {
    opacity: 0;
    animation: fade-in 2s ease 2s 1;
    -webkit-animation: fade-in 2s ease 1s 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.third_text {
    opacity: 0;
    animation: fade-in 2s ease 4s 1;
    -webkit-animation: fade-in 2s ease 2s 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

/*年度精选文章*/
.aiticle_box_ul {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.aiticle_box_li {
    position: relative;
    z-index: 9;
}

.article_bottom_box {
    padding: 0.341rem 0.341rem;
    padding-top: 4%;
}

.article_ban {
    height: 3.584rem;
}

.jingtingArticle .article_ban img {
    width: 100%;
}

.article_ban img {
    height: 3.584rem;
    width: 100%;
}

.aiticle_title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 0.307rem;
    color: #444444;
    font-weight: bold;
}

.star_down {
    display: flex;
    margin-top: 2%;
}

.star_down .star5,
.star_down .down_num {
    display: flex;
    align-items: center;
}
.yearSummary2022 .star_down .star5{
    display: none;
}

.down_num {
    font-size: 0.239rem;
    margin-left: 0.239rem;
}

.down_num span {
    margin: 0 5px;
}

.article_intro {
    /*margin-top: 0.273rem;*/
    margin-top: 2%;
    font-size: 0.239rem;
    color: #8F8F8F;
    line-height: 1.5;
    text-align: justify;
}
.noneTotalArticle .personal_info1{
     top:28%;
}
.href_date {
    position: absolute;
    bottom: 0.512rem;
    display: flex;
    align-items: center;
    width: 89%;
}

.href_date .read_href {
    flex: 1;
    display: flex;
    align-items: center;
}

.href_date a {
    font-size: 0.239rem;
    color: #4990E2;
    text-decoration: none;
}

.href_date span {
    font-size: 0.239rem;
    color: #939393;
}

/*春天*/
.seasons {
    letter-spacing: 0;
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.spring_s {
    background-image: url('https://static.frdic.com/web/ting/year_new_spring.png');
}

.summer_s {
    background-image: url('https://static.frdic.com/web/ting/year_new_summer.png');
}

.autumn_s {
    background-image: url('https://static.frdic.com/web/ting/year_new_autumn.png');
}

.winter_s {
    background-image: url('https://static.frdic.com/web/ting/year_new_winter.png');
}

.seasons_text span {
    display: block;
    color: #fff;
    line-height: 0.512rem;
    font-size: 0.273rem;
}

.spring_text {
    position: relative;
    top: 12%;
    left: 11%;
    background-size: 63% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/year_spring_talk_img.png');
    padding: 0.512rem 0.171rem 0.171rem 0.171rem;
}
.yearSummary2020 .spring_text{
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 10px;
    width: 79%;
}

.summer_text {
    position: absolute;
    top: 12%;
    left: 14%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/year_summer_talk_img.png');
    padding: 0.085rem 0.171rem 0.41rem 0.171rem;
}
.yearSummary2020 .summer_text{
    left: 4%;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding:10px;
    width: 84%;
}

.autumn_text {
    position: relative;
    top: 35%;
    left: 11%;
    background-size: 71% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/year_autumn_talk_img.png');
    padding: 0.085rem 0.171rem 0.529rem 0.239rem;
}
.yearSummary2020 .autumn_text{
    top:30%;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 10px;
    width: 70%;
}

.winter_text {
    position: relative;
    top: 50%;
    left: 10%;
    background-size: 83% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/year_winter_talk_img.png');
    padding: 0.085rem 0.171rem 0.41rem 0.171rem;
}
.yearSummary2020 .winter_text{
    top: 30%;
    left: 7%;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding:10px;
    width: 84%;
}

/*年度热门配音*/
.dub_bg {
    height: 10%;
    display: flex;
    align-items: center;
    font-size: 0.41rem;
    color: #FFFFFF;
    letter-spacing: 0.37px;
    margin-left: 0.341rem;
    overflow-x: hidden;
}

.dub_bot_box {
    width: 87%;
    position: absolute;
    top: 50%;
    /*padding: 0 0.341rem;*/
    padding: 0 6%;
}


.dub_ul {
    z-index: 99;
    position: relative;
}

.dub_li {
    max-height: 1.263rem;
    background: #fff;
    padding: 5%;
    border-radius: 10px;
    margin-bottom: 4%;
    /*padding: 0.341rem;*/
    /*margin-bottom: 0.239rem;*/
}

.dub_left_box {
    margin-right: 0.239rem;
}

.dub_left_box img {
    width: 0.956rem;
    height: 1.263rem;
}

.dub_li_div {
    display: flex;
    text-decoration: none;
}

.dub_bottom_box {
    width: 100%;
}

.dub_bottom_box .li_top {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    color: #444;
    font-size: 0.256rem;
    font-weight: bold;
}

.dub_bottom_box .li_mid,
.dub_bottom_box .li_bot {
    display: flex;
}

.dub_bottom_box .li_mid {
    margin-top: 0.154rem;
    align-items: center;
}

.dub_bottom_box .li_bot {
    margin-top: 0.085rem;
}

.dub_bottom_box .star_dub {
    flex: 1;
    display: flex;
}

.dub_bottom_box .star_dub img {
    width: 0.273rem;
    height: 0.273rem;
}

.jingjie {
    font-size: 0.171rem;
    color: #fff;
    background: #4990E2;
    border-radius: 3px;
    line-height: normal;
    padding: 1px 4px;
}

.bear_dub {
    flex: 1;
    display: flex;
}

.bear_dub img {
    width: 0.273rem;
    height: 0.273rem;
    border-radius: 50%;
    position: relative;
}

.bear_dub img:first-child {
    z-index: 99;
}

.bear_dub img:nth-child(2) {
    margin-left: -0.171rem;
    z-index: 98;
}

.bear_dub img:nth-child(3) {
    margin-left: -0.171rem;
    z-index: 97;
}

.bear_dub img:nth-child(4) {
    margin-left: -0.171rem;
    z-index: 96;
}

.bear_dub img:nth-child(5) {
    margin-left: -0.171rem;
    z-index: 95;
}

.dub_num {
    font-size: 0.239rem;
    color: #8F8F8F;
}

.word_yinbiao img {
    width: 0.358rem;
    height: 0.273rem;
    vertical-align: text-bottom;
}

/*单词卡片*/
.card_bot_box {
    padding: 0 0.341rem;
    position: absolute;
    top: 50%;
    width: 89%;
    left: 50%;
    transform: translate(-50%, 0);
}
.yearSummary2021 .card_bot_box{
    position: relative;
    top: auto;
    width: 89%;
    transform: inherit;
}
.yearSummary2021 .cardBox{
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
}

.card_ul {
    z-index: 99;
    position: relative;
}

.card_ul .card_li {
    background: #fff;
    border-radius: 10px;
}

.card_img img {
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    width: 100%;
    height: 3.277rem;
    display: block;
}

.card_li_div {
    padding: 5%;
}

.card_img {
    /*margin:0.341rem 0 0.256rem 0;*/
}

.card_title {
    font-size: 0.307rem;
    color: #444444;
    font-weight: bold;
}
.liji_sentence,
.word_english{
    font-family:-apple-system-font, "Noto Sans SC", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
.word_english {
    font-size: 0.341rem;
    color: #444444;
    font-weight: bold;
}

.word_yinbiao {
    color: #8f8f8f;
    margin-top: 0.085rem;
    display: flex;
}

.mar1 {
    margin-top: 0.256rem;
}

.mar2 {
    margin-top: 1.024rem;
}

.two_yinbiao {
    margin-left: 0.256rem;
}

.word_chinese {
    color: #444;
    font-size: 0.239rem;
    margin-top: 0.137rem;
}

.dubbing_box {
    background-size: 100% 100%;
    background-image: url(https://static.frdic.com/web/ting/dubbing_img_new.png);
    overflow: hidden;
}

.words_card_li {
    background-size: 100% 100%;
    background-image: url(https://static.frdic.com/web/ting/year_word_bg.png);
}

.word_liju {
    margin-top: 2%;
}

.word_liju p {
    font-size: 0.239rem;
    word-wrap: break-word;
}

.liji_sentence {
    margin-top: 0.085rem;
    padding: 0.085rem 0;
    color: #3A3E4E;
}
.yearSummary2024 .liji_sentence,
.yearSummary2023 .liji_sentence{
    margin-top: 0.02rem;
    line-height: 1.5;
}
.yearSummary2024 .word_liju p,
.yearSummary2023 .word_liju p{
    line-height: 1.5;
}
.yearSummary2021.yearSummary2024 .card_li_div,
.yearSummary2021.yearSummary2023 .card_li_div {
    padding: 2% 4% 4% 4%;
}

.liji_trans {
    font-size: 0.239rem;
    color: #7C7C7C;
}

.musicBg {
    width: 0.41rem;
    height: 0.41rem;
    position: absolute;
    top: 4%;
    right: 7%;
    z-index: 999;
}

.musicBg img {
    width: 0.41rem;
    height: 0.41rem;
    opacity: 0.6;
    position: relative;
}

/*文字飞入*/
@keyframes lefteaseinAnimate {
    0% {
        -webkit-transform: translateX(-2000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}
.animate_2,
.animate_3,
.animate_4,
.animate_5,
.animate_6,
.animate_16,
.animate_spring {
    opacity: 0;
}
.animate_2,
.animate_3,
.animate_4,
.animate_5,
.animate_6,
.animate_16{
    animation: fade-in 2s ease 0.5s 1;
    -webkit-animation: fade-in 2s ease 0.5s 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.animate_spring {
    animation: fade-in 2s ease 1s 1;
    -webkit-animation: fade-in 2s ease 1s 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes righteaseinAnimate {
    0% {
        -webkit-transform: translateX(2000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

.animate_autumn {
    opacity: 0;
}

.animate_autumn {
    animation: fade-in 2s ease 1s 1;
    -webkit-animation: fade-in 2s ease 1s 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.animate_summer {
    opacity: 0;
}

.animate_summer {
    animation: fade-in 2s ease 1s 1;
    -webkit-animation: fade-in 2s ease 1s 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.animate_winter {
    opacity: 0;
}

.animate_winter {
    animation: fade-in 1s ease 2s 1;
    -webkit-animation: fade-in 1s ease 1s 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

/*音乐图标转圈圈*/
@keyframes rotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

.musicBg_on {
     -webkit-animation: rotate 10s infinite linear;
    -o-animation: rotate 10s infinite linear;
    animation: rotate 10s infinite linear;
}

/*个人信息*/
.personal_box {
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/personal_info_bg.png');
}

.personal_box1 {
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/personal_info_bg1.png');
}

.personal_info1,
.personal_info2,
.personal_info3 {
    font-size:0.273rem;
    position: relative;
    line-height: 2;
}

.personal_info1 {
    color: #fff;
    top: 19%;
    padding: 0 10px 0 20px;

}
.personal_info1 .nig{
    font-size: 23px;
    font-style: normal;
    font-weight: bold;
}

.personal_box2 {
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/personal_info_bg2.png');
}

.personal_info2 {
    top: 30%;
    margin-left: 23%;
    color: #003952;
    padding-right: 15px;
}
.yearSummary2020 .personal_info2{
    margin-left: 13%;
}

.personal_box3 {
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url('https://static.frdic.com/web/ting/personal_info_bg3.png');
}

.personal_info3 {
    color: #333;
    top: 50%;
    margin-left: 20%;
    padding-right: 10px;
}

.personal_info {
    width: 79%;
    background: rgba(0, 0, 0, .2);
    padding: 0.512rem 0.341rem;
    border-radius: 10px;
    color: #FBF4DA;
    position: absolute;
    bottom: 1rem;
    letter-spacing: 1px;
    margin-right: 0.341rem;
}

.inAPPBottom {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    color: #fff;
    padding: 0 0.341rem;
    width: 93%;
}

.inAPPBottom div {
    background: rgba(255, 255, 255, .3);
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    display: flex;
}

.leaveSummary {
    width: 35%;
}

/*.shareSummary {
    height: 0.614rem;
    width: 60%;
    margin-left: 4%;
}*/
.shareSummary {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.85rem;
    height: 0.614rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .3);
    color: #fff;
    border-radius: 100px;
}

.personal_box {
    padding: 0 0.341rem;
}

.words_card {
    background: #F9F5EF;
    overflow-x: hidden;
}

.fp-tableCell {
    display: block !important;
}

/*下雪*/
@keyframes snow {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 500px 1000px, 500px 500px;
    }
}

.snow {
    background: url('https://static.frdic.com/web/ting/year_snow_imgg.png');
    -webkit-animation: snow 30s linear infinite;
    animation: snow 30s linear infinite;
    background-size: cover;
}

/*星星一闪一闪*/
@keyframes fade-star {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

@keyframes fade-end {
    0% {
        opacity: 0.9;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.star_animate1 {
    background: url('https://static.frdic.com/web/ting/year_summer_yellow_img.png');
    animation: fade-star 3s ease 0s infinite;
    -webkit-animation: fade-star 3s ease 0s infinite;
}

.star_animate2 {
    opacity: 0;
    background: url('https://static.frdic.com/web/ting/year_summer_yellow_double.png');
    animation: fade-end 3s ease 3s infinite;
    -webkit-animation: fade-end 3s ease 3s infinite;
}


.star_animate {
    width: 100%;
    background-size: cover;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
}


/*秋风落叶*/
.sheets {
    display: block;
    position: absolute;
    top: 13%;
}

.sheet_1 {
    left: 50%;
    width: 72px;
    height: 60px;
    background: url("https://static.frdic.com/web/ting/year_leaf.png") no-repeat;
    background-size: contain;
    background-size: 50% 50%;
    -webkit-animation: leaf 5s ease-in 1;
    animation: leaf 5s linear 1;
    animation-delay: 1s;
    /*animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;*/
}

.sheet_2 {
    right: 50px;
    width: 72px;
    height: 60px;
    background: url("https://static.frdic.com/web/ting/year_leaf_double.png") no-repeat;
    background-size: contain;
    background-size: 50% 50%;
    -webkit-animation: leaf 5s ease-in 1;
    animation: leaf 5s linear 1;
    animation-delay: 2s;
    /*animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;*/
}

@keyframes leaf {
    0% {
        opacity: 0;
        top: 180px;
        transform: rotateZ(80deg) translate(0px, 0px);
    }

    20% {
        opacity: 1;
        transform: rotateZ(80deg) translate(20px, 20px);
    }

    40% {
        transform: rotateZ(-20deg) translate(20px, 30px);
    }

    60% {
        transform: rotateZ(-30deg) translate(25px, 60px);
    }

    80% {
        top: 400px;
        transform: rotateZ(-10deg) translate(30px, 80px);
        opacity: 1;
    }

    100% {
        top: 500px;
        transform: rotateZ(50deg) translate(80px, 100px);
        opacity: 0;
    }
}

@keyframes s {
    0% {
        top: 180px;
    }

    20% {
        -webkit-transform: rotateZ(80deg) translateX(20px);
        transform: rotateZ(80deg) translateX(20px);
    }

    40% {
        -webkit-transform: rotateZ(-20deg) translateX(-20px);
        transform: rotateZ(-20deg) translateX(-20px);
    }

    60% {
        -webkit-transform: rotateZ(-100deg) translateX(20px);
        transform: rotateZ(-100deg) translateX(20px);
    }

    80% {
        top: 400px;
        -webkit-transform: rotateZ(-10deg) translateX(-20px);
        transform: rotateZ(-10deg) translateX(-20px);
        opacity: 1;
    }

    100% {
        top: 500px;
        -webkit-transform: rotateZ(50deg) translateX(100px);
        transform: rotateZ(50deg) translateX(100px);
        opacity: 0;
    }
}
.circle{
    display: block;
    width: 27px;
    height: 27px;
    background: url("https://static.frdic.com/web/ting/yearSummary/2021/border.png") no-repeat;
    background-size: contain;
     -webkit-animation: circleAnimate 25s infinite linear;
    -o-animation: circleAnimate 25s infinite linear;
    animation: circleAnimate 25s infinite linear;
}
@keyframes circleAnimate {
    0% {
        transform: translate(300px, 500px);
    }
    10% {
        transform: translate(310px, 450px);
    }
    20% {
        transform: translate(288px, 338px);
    }
    30% {
        transform: translate(177px, 231px);
    }

    40% {
        transform: translate(71px, 163px);
    }

    50% {
        transform: translate(30px, 220px);
    }

    60% {
        transform: translate(11px, 266px);
    }
    70% {
        transform: translate(35px, 368px);
    }


    80% {
        transform: translate(31px, 530px);
    }

    90% {
        transform: translate(154px, 433px);
    }

    100% {
        transform: translate(300px, 500px);
    }

}

/*飞鸟*/
@keyframes fly {
    0% {
        transform: rotateX(0deg)
    }


    100% {
        transform: translate3d(50px, 10px, 0px);
    }
}

.bird {
    left: 50%;
    top: 0%;
    display: inline-block;
    position: absolute;
    width: 0.888rem;
    min-height: 1.041rem;
    background: url("https://static.frdic.com/web/ting/year_yanzi.png") no-repeat;
    background-size: contain;
}

.bird1 {
    animation: fly 2s ease 0s 1;
    -webkit-animation: fly 2s ease 0s 1;
    z-index: 2;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.bird2 {
    position: absolute;
    top: -1%;
    left: 90%;
    width: 0.888rem;
    min-height: 1.041rem;
    background: url("https://static.frdic.com/web/ting/year_yanzi_double.png") no-repeat;
    background-size: contain;
    z-index: 3;
}

@-webkit-keyframes clockwise {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.roundLine {
    background: url("/Images/ting/star_icon.png") no-repeat;
    animation: clockwise 2s ease 0s 50;
    -webkit-animation: clockwise 2s ease 0s 50;
    z-index: 2;
}

.share_box {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(https://static.frdic.com/web/ting/tailpage_img_new.png);
}
.share_ting_box{
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(https://static.frdic.com/web/ting/yearSummary/share_year_img.png);
}
.share_box2020{
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(https://static.frdic.com/web/ting/yearSummary/2020/share_bg.jpg);
}
.greysharebg{
    display: none;
    position: absolute;
    top: 63%;
    z-index: 9;
    width: 86%;
    height: 1.058rem;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(0, 0, 0, .1);
}
.shareSummary9{
    letter-spacing: 1px;
    color: #fff;
    position: absolute;
    top: 63%;
    width: 100%;
    height: 1.058rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(https://static.frdic.com/web/ting/yearSummary/share_btn_img.png);
}
.shareSumBtnbg{
    display: none;
    position: absolute;
    z-index: 9;
    transform: translate(-50%, 0);
    background: rgba(0, 0, 0, .1);
    top: 69%;
    left: 50%;
    height: 0.75rem;
    width: 33%;

}
.shareSumBtn{
    position: absolute;
    top: 69%;
    left: 50%;
    width: 33%;
    height: 0.75rem;
    background: #EACC9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 1px;
    transform: translate(-50%, 0);
    font-size: 0.29rem;
}
.emptyH{
    height:13px;
}
.endSum{
    text-align: end;
    margin-right: 20px;
    margin-top: 10px;
}
.inAppLogo{
    display: flex;
    position: absolute;
    bottom: 0px;
    padding-bottom: 0.341rem;
    left: 50%;
    transform: translate(-50%, 0);
}
.inAppLogo .rightTxt{
    color: #E9E8E6;
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.5;
}
.inAppLogo .rightTxt span:first-child{
font-size: 0.256rem;
}
.inAppLogo .rightTxt span:last-child{
    font-size: 0.171rem;
    color:#8f8f8f;
}
.inAppLogo .logo{
    margin-right:5px;
}
.inAppLogo .logo img{
    width:0.683rem;
    height:0.683rem;
}
.share_ting_box .share_ting_txt{
    top:11%;
    position: absolute;
    margin:0 20px 0 36px;
    color: #333;
}
.yearSummary2020 .share_ting_txt{
    color: #FBF4DA;
    top: 19%;
    left: 6%;
    position: absolute;
    margin: 0 20px 0 36px;
    color: #333;
    line-height: 1.6;
    font-size:0.273rem;
}
.limitdate{
    position: relative;
    top: 25%;
    color: #8f8f8f;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}
.shares_img img {
    width: 100%;
    /*width:6.4rem;*/
    /*height:7.49rem;*/
}

.code_img {
    display: flex;
    color: #fff;
}

.code_img img {
    width: 0.683rem;
    height: 0.683rem;
}

.code_text {
    display: flex;
    position: absolute;
    bottom: 0;
    padding: 0.341rem 0.239rem;
    width: 91%;
}

.p_text {
    margin-top: -1.2rem;
    padding-left: 0.239rem;
    font-size: 0.273rem;
    color: #FBF4DA;
    letter-spacing: 0.26px;
    line-height: 2;
}

.personal_info p {
    line-height: 2;
}

.left_text {
    flex: 1;
    font-size: 0.205rem;
    color: #E9E8E6;
}

.mar_p {
    margin-top: 0.119rem;
}

#bgMusic {
    width: 220px;
    height: 200px;

}

.shareSummarys {
    margin-right: 0.137rem;
}

.shareSummarys span {
    font-size: 0.239rem;
}

.shareSummarys img {
    width: 0.307rem;
    height: 0.307rem;
    display: block;
    margin-left: 0.085rem;
}
.personal_info3 a{
    color:#EFA100;
    text-decoration-line: underline;
}

.light{
    color:#FFD800;
    font-style: normal;
    font-weight: bold;
}
.light2{
    color:#DB6A07;
    font-style: normal;
    font-weight: bold;
}
.light3{
    color:#EFA100;
    font-style: normal;
    font-weight: bold;

}
/*iphoneX兼容*/
.AdaptationIphoneX {
    display: none;
    z-index: 99;
    height: 34px;
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #000;
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .yearsummary2019 .AdaptationIphoneX {
        display: block;
    }

    .yearsummary2019 .next_guide_icon {
        bottom: 6%;
    }

    .yearsummary2019 .next_guide {
        bottom: 7%;
    }

    .yearsummary2019 .href_date {
        bottom: 1.092rem;
    }

    .yearsummary2019 .inAPPBottom,
    .yearsummary2019 .shareSummary {
        bottom: 5%;
    }

    .yearsummary2019 .code_text,
    .yearsummary2019 .inAppLogo{
        bottom: 34px;
    }
    .yearsummary2019 .personal_info {
        bottom: 1.5rem;
    }
}

.word_english {
    position: relative;
}

.word_english span {
    position: relative;
    z-index: 8;
}

.word_english i {
    border-bottom: 5px solid #3DCFE4;
    display: inherit;
    position: relative;
    top: -9px;
}
.yearSummary2021 .word_english i{
    top: -11px;
}
.loadtip{
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0, 0, 0, .1);
}
@media all and (min-width:550px) {

    html,
    body,
    .section{
        max-width: 600px;
        margin:0 auto;
        font-size: 60px !important;
    }
    .card_img img{
       height:5rem;
    }
    .article_ban,.article_ban img{
        height:5rem;
    }
    .musicBg img{
      top:-143%;
    }
    .custom-classname .weui-toast{
        width:122px;
        height:122px;
        font-size: 16px;
	}
}
.yearSummary2021 .article_ban img{
  border-radius: 10px;
  object-fit: cover;
}
.yearSummary2021 .star_down{
    margin-bottom: 0.171rem;
}

.yearSummary2021 .star_down .down_num{
    flex: 1;
    margin-left: 0;
    font-size: 17px;
}
.yearSummary2021 .star5 img{
    width: auto;
}

.yearSummary2021 .article_intro{
    font-size: 14px;
}
.yearSummary2021 .dubTitle,
.yearSummary2021 .cardTopInfo,
.yearSummary2021 .href_date a,
.yearSummary2021 .article_intro,
.yearSummary2021 .aiticle_title,
.yearSummary2021 .star_down .down_num{
    color: #fff;
}
.yearSummary2021 .linkCard{
    width:100%;
    height:1px;
}
.yearSummary2021 .article_ban{
    margin:0.341rem 0;
}
.yearSummary2021 .see_href{
  border-radius: 30px;
  display: flex;
  align-items: center;
}
.yearSummary2021 .see_href .en_theme{
background: #0d85ff;
}
.yearSummary2021 .see_href .fr_theme{
    background: #2e5ba3;
}
.yearSummary2021 .see_href .de_theme{
    background: #0b7442;
}
.yearSummary2021 .see_href .es_theme{
    background: #8e0922;
}
.yearSummary2021 .cardTopInfo{
    margin-top: -15px;
    margin-bottom: 15px;
}
.yearSummary2021 .cardTitle{
    font-size: 17px;
}
.yearSummary2021 .card_li_div{
  padding: 3% 5% 5% 5%;
}

.yearSummary2021 .cardWord span{
    display: block;
}

.yearSummary2021.yearSummary2024 .cardWord span:last-child,
.yearSummary2021.yearSummary2023 .cardWord span:last-child{
    font-size: 20px;
}
.yearSummary2021 .href_date a{
    font-size: 0.239rem;
    padding: 5px 20px;
    border-radius: 30px;
}
.yearSummary2021 .href_date .read_href{
    font-size: 0.171rem;
    color:#ddd;
}
.yearSummary2021 .article_bottom_box{
    padding-top: 30px;
}
.yearSummary2021 .homeText,
.yearSummary2021 .shareSumBtn2021,
.yearSummary2021 .aiticle_box_li,
.yearSummary2021 .personal_section,
.yearSummary2021 .home_page{
    background-size: 100%;
    background-repeat: no-repeat;
}
.yearSummary2021 .homeBottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, 0);
}

.yearSummary2021 .homeText{

    font-weight: bold;
}
.yearSummary2021 .homeText.next_guide1,
.yearSummary2021 .homeText.next_guide{
    color: inherit;
    background-color: transparent;
    position: relative;
    bottom: auto;
    left: auto;
    transform: initial;
    margin: 0.171rem 0;
}
.yearSummary2021 .homeUserName{
    font-size: 0.273rem;
}
.yearSummary2021 .light2{
    color:#FE6400;
}
.agreeTip img {
    width: 11px;
    height: 11px;
    margin-right: 5px;
}
.agreeTip {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 10px;
}
.agreeTip span{
    display: inline-block;
    font-size: 10px;
    opacity: 0.7;
}
.yearSummary2021 .light{
 color:#CC500A;
}
.yearSummary2021 .dubImg,
.yearSummary2021 .dubTitle,
.yearSummary2021 .dubImg:active,
.yearSummary2021 .dubTitle:active{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    background: transparent !important;
}

.yearSummary2021 .bigLight{
    font-size: 30px;
}
.yearSummary2021 .section{
    position: relative;
}
.yearSummary2021 .logoBottomTxt{
    position: absolute;
    left: 7%;
    bottom: 0.512rem;
    display: flex;
    font-size: 10px;
    opacity: 0.8;
}
.yearSummary2021 .next_guide_icon img{
    filter: brightness(0.6);
}
.yearSummary2021 .light3,
.yearSummary2021 .personal_6 .light,
.yearSummary2021 .personal_5 .light,
.yearSummary2021 .personal_4 .light{
  color:#F94B3F;
}
.yearSummary2021 .code_text{
    left: 0;
}
.yearSummary2021 .left_text{
color: inherit;
opacity: 0.8;
}
.yearSummary2021 .inAppLogo .rightTxt{
color:#8f8f8f;
}
.yearSummary2021 .dubImg img{
    width:100%;
   border-radius: 10px;
}
.yearSummary2021 .dubImgUl{
 display: flex;
 flex-flow: wrap;
 margin-top: 0.256rem;
}
.yearSummary2021.yearSummary2024 .dubImgUl,
.yearSummary2021.yearSummary2023 .dubImgUl{
    margin-top: 13%;
}
.yearSummary2021 .dubTitle{
    margin-bottom: 5px;
    font-size: 0.307rem;
    font-weight: bold;
}
.yearSummary2021 .dubImgUl li{
    margin-bottom: 0.171rem;
    width:46%;
}
.yearSummary2021 .musicBg{
    top: 2%;
    right: 5%;
}
.yearSummary2021 .dubImgUl li:nth-child(2n+1){
    margin-right: 8%;
}
.yearSummary2021  .dub_bot_box1{
    width: 87%;
    padding: 0 6%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.yearSummary2021.yearSummary2024 .dub_bot_box1,
.yearSummary2021.yearSummary2023 .dub_bot_box1{
    padding: 8% 6% 0 6%;
    position: relative;
    top:0;
    transform: none;
}
.yearSummary2021 .words_card_li .logoBottomTxt{
    color:#ddd;
}
#preFullpage{
    display: none;
}
.yearSummary2021 .card_ul .card_li{
    background: inherit;
}
.yearSummary2021 .card_li_div{
background: #fff;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.yearSummary2021 .word_chinese{
    margin-top: 0;
}
.yearSummary2021 .shareSumBtn2021{
    display: none;
    position: absolute;
    z-index: 9;
    transform: translate(-50%, 0);
    top: 78%;
    width: 148px;
    height: 43px;
    left: 50%;
    color:#fff;
    font-weight: bold;
    align-items: center;
    text-align: center;
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/share_btn.png");
}
.yearSummary2021 .shareSumBtn2021#shareSummary2024{
    width: 188px;
    height: 43px;
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2024/share_btn_bg.png");
}
.yearSummary2021 #shareSummary2024 .shareBtn{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.yearSummary2021 .homeText {
    width: 148px;
    height: 43px;
    border-radius: inherit;
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_btn.png");
}
.custom-pintuan .weui-toast {
    font-size: 0.239rem;
    width: 13em !important;
    min-height: 0.6em !important;
    height: 0.6rem !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%,0);
    line-height: 0.6rem !important;
    background: #696e76 !important;
    border-radius: 30px;
    padding: 0px 10px;
    margin-left: 0;
    display:flex;
    align-items: center;
    justify-content: center;
}

.custom-pintuan .weui-toast__content {
    margin:0;
}

.custom-pintuan .weui-icon_toast {
    display: none;
}
.yearSummary2021 .shareSumBtn2021 p{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    top: -3px;
}
.yearSummary2024 .words_box,
.yearSummary2023 .words_box{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/hotWord.jpg");
}
.yearSummary2021 .dubbing_box{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/dub_bg_01.jpg");
}

.yearSummary2021 .cardTopInfo{
padding: 0 0.341rem;
    /* position: absolute;
    top: 3%;
    width: 89%;
    left: 50%;
    transform: translate(-50%, 0); */
}
.yearSummary2021 .cardWord{
    font-size: 27px;
    font-weight: bold;
}
.yearSummary2021.yearSummary2024 .cardWord,
.yearSummary2021.yearSummary2023 .cardWord{
    font-size: 25px;
}
.yearSummary2021 .personal_6 .next_guide{
    background: rgba(0, 0, 0, .4);
    bottom:5%;
}

.yearSummary2021 .en_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/en_banner_01.png");
}
.yearSummary2021 .fr_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/fr_banner_01.png");
}
.yearSummary2021 .de_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/de_banner_01.png");
}
.yearSummary2021 .es_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/es_banner_01.png");
}

.yearSummary2021.yearSummary2022 .en_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2022/en_banner_top.png");
}
.yearSummary2021.yearSummary2022 .fr_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2022/fr_banner_top.png");
}
.yearSummary2021.yearSummary2022 .de_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2022/de_banner_top.png");
}
.yearSummary2021.yearSummary2022 .es_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2022/es_banner_top.png");
}
.yearSummary2021.yearSummary2024 .en_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2024/en_banner_top.png");
}
.yearSummary2021.yearSummary2023 .en_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/en_banner_top.png");
}
.yearSummary2021.yearSummary2024 .fr_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2024/fr_banner_top.png");
}
.yearSummary2021.yearSummary2023 .fr_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/fr_banner_top.png");
}
.yearSummary2021.yearSummary2024 .de_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2024/de_banner_top.png");
}
.yearSummary2021.yearSummary2023 .de_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/de_banner_top.png");
}
.yearSummary2021.yearSummary2024 .es_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2024/es_banner_top.png");
}
.yearSummary2021.yearSummary2023 .es_home_page{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/es_banner_top.png");
}
.yearSummary2022 .de_content_box .cardWord{
   display: none;
}
.yearSummary2022 .de_content_box .aiticle_0 .article_ban img{
    object-fit: initial;
 }
.yearSummary2021 .personal_2{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_122902.png");
}
.yearSummary2021.yearSummary2023 .personal_2{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/personal_122202.png");
}
.yearSummary2021 .personal_3{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_122803.png");
}
.yearSummary2021 .personal_4{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_4.png");
}
.yearSummary2021 .personal_5{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_122905.png");
}
.yearSummary2021 .personal_6{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_6.png");
}
.yearSummary2021 .personal_7{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_202107.png");
}
.yearSummary2021.yearSummary2023 .personal_7{
    background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/personal_min_07.png");
}
.yearSummary2021 .aiticle_title{
    font-size: 28px;
    -webkit-line-clamp: 3;
    line-height: 1.4;
}
.yearSummary2021 .cardWord{
    display: block;
}
.yearSummary2021 .sectionText{
    font-size: 0.273rem;
    color:#000;
    padding: 15% 0 0 7%;
}
.yearSummary2021  .word_liju{
    margin-top: 0;
}
.logo_blue{
    position: absolute;
    bottom: 25%;
    right: 18%;
}
.logo_green{
    position: absolute;
    top: 45%;
    right: 13%;
}
.yearSummary2022 .word_english{
  width:fit-content;
}
.wordsCont{
    padding:0 0.34rem;
}
.wordUl{
    background-color: #fff;
    border-radius: 10px;
    font-size: 0.239rem;
    padding:10px;
    margin-top: 18px;
}
.wordUl .icon{
    display: inline-flex;
    margin-left: 10px;
}
.wordUl .icon img{
    width: 18px;
    width: 18px;
}
.wordUl .wordLi .wordLf,
.wordUl .wordLi .wordRt{
    padding:6px 0;
}
.wordUl .wordLi{
    display: flex;
    align-items: center;
    font-size: 15px;
}
.wordUl .wordLi .wordRt{
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #f5f6f7;
    flex:1;
    position: relative;
}
.emptyArticle{
    min-height: 500px;
    color:#fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.emptyArticle img{
    width: 126px;
    height: 126px;
    margin-top: 51%;
    margin-bottom: 14px;
}
.wordUl li:nth-last-child(2) .wordRt{
    border-bottom: 0;
}
.wordname2{
    margin-bottom: 10px;
}
.wordUl .wordLi .idx{
    margin-right: 8px;
    color: #93979e;
}
.wordUl .wordLi .idx.light{
   color: #FF3A3B;
}
.wordUl .wordLi .wordLf{
    padding-right: 10px;
    position: relative;
}
.wordUl .wordLi .wordLf .selectRow{
    position: relative;
    top:1px;
}
.artTip{
    font-size: 13px;
    margin: 5px 0 10px 0;
}
.getAIWord,
.getAIArticle{
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 0.239rem;
    padding: 5px 20px;
    color:#fff;
    background-color: #FF3A3B;
}
body .getAIWord{
    display: none;
}
.wordsBox{
    width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.dubbing_box .logoBottomTxt{
    color:#fff;
}
.yearSummary2021.yearSummary2024 .wordsCont .star_down .down_num,
.yearSummary2021.yearSummary2023 .wordsCont .star_down .down_num{
    color:inherit;
}
.expDetail{
     display: none;
     position: absolute;
     right: 0;
     left: 85%;
     right:0;
     top: 129%;
     white-space: nowrap;
     font-size: 12px;
     border-radius: 4px;
     padding: 4px 4px;
     background-color: #000000;
     color: #fff;
     text-align: center;
     z-index: 1;
     width: fit-content;
     transform: translate(-50%, 0);
}
.arrowTop{
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #000;
    top: 45%;
    right: -1%;
}
.wordRt .exp{
    position: relative;
}
.wordRt .exp img{
    width: 14px;
    height: 14px;
    margin-left: 3px;
    position: relative;
    top:2px;
    display: inline-block;
}
.logoBottomTxt.wordBottom{
    width: 87%;
}
.wordBottom .botLfTxt{
  flex:1;
}
.wordUl .wordLi .word{
    margin-right: 5px;
}
.wordUl .tip{
    margin-top: 7px;
    font-size: 15px;
    color: #93979E;
}
.words_box .artBotTip{
    margin-top: 10px;
    font-size: 15px;
}
.article{
    color:#ffffff;
}
.articleBox{
    padding: 6% 0.34rem 4% 0.34rem;
    height: 90%;
}

.wordsContArticle{
    height: 94%;
    overflow: hidden;
}
.articleCont{
    overflow-y: auto;
    max-height: 87%;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.wordsBox .star_down{
  margin-top: 18px;
}
.studylight{
    font-weight: bold;
}
.articleCont .corner{
    position: absolute;
    top:0;
    right:0;
    width: 38px;
    height: 38px;
}
.articleCont .title{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.articleCont .cont{
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 7px;
}
.articleCont .cont b{
    font-weight: bold;
}
.loading-dialog .weui-icon_toast{
    display: block !important;
}
.loading-dialog .weui-toast{
    top:50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    width: 129px;
    min-height: 129px;
}
.loading-dialog .weui-toast__content{
    font-size: 17px;
}

.loading-dialog .weui-icon_toast.weui-loading {
    margin: 30px 0 0 45px;
}
.wordsBox .article{
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}
.wordsBox .wordsContArticle{
    padding:0 0.34rem;
}
.summaryIcon{
    position: absolute;
    top: 1.5%;
    right: 13%;
    z-index: 999;
    width: 100px;
    height: 31px;
}
.yearSummary2021.yearSummary2024 .aiticle_box_li .musicBg,
.yearSummary2024 .aiticle_box_li .summaryIcon{
    top: 1%;
}
.de.yearSummary2021.yearSummary2024 .words_card_li .logoBottomTxt{
    bottom: 0.15rem;
}

@media all and (max-height:600px) {
    .yearSummary2021 .article_intro{
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
    }
    .yearSummary2021 .sectionText{
        padding: 8% 0 0 7%;
    }
}
@media all and (max-height:700px) {
    .yearSummary2021 .shareSumBtn2021{
        top:79.5%;
    }
    .yearSummary2021 .handAnimate{
        top:56%;
    }
    .yearSummary2021 .article_bottom_box{
        padding-top: 20px;
    }
    .yearSummary2021.yearSummary2024 .article_bottom_box{
        padding-top: 30px;
    }
    .yearSummary2021 .article_ban{
        margin: 0.171rem 0;
    }
     .yearSummary2021 .homeBottom{
       bottom:4%;
    }
    .logo_blue{
        position: absolute;
        bottom: 23%;
        right: 18%;
    }
    .logo_green{
        position: absolute;
        top: 47%;
        right: 13%;
    }
    .yearSummary2021 .sectionText{
        font-size: 0.273rem;
        color:#000;
        padding: 10% 0 0 7%;
    }
    .yearSummary2021 .aiticle_title{
        font-size: 20px;
        -webkit-line-clamp: 3;
    }
    .yearSummary2021 .cardWord{
        display: none;

    }
    .yearSummary2021 .en_home_page{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/en_banner_min_01.png");
    }
    .yearSummary2021 .fr_home_page{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/fr_banner_min_01.png");
    }
    .yearSummary2021 .de_home_page{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/de_banner_min_01.png");
    }
    .yearSummary2021 .es_home_page{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/es_banner_min_01.png");
    }
    .yearSummary2021 .personal_2{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_min_122902.png");
    }
    .yearSummary2021 .personal_3{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_min_122803.png");
    }
    .yearSummary2021 .personal_4{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_min_4.png");
    }
    .yearSummary2021 .personal_5{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_min_122905.png");
    }
    .yearSummary2021 .personal_6{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_min_122906.png");
    }
    .yearSummary2021 .personal_7{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2021/personal_min_202107.png");
    }
    .yearSummary2021.yearSummary2024 .personal_7,
    .yearSummary2021.yearSummary2023 .personal_7{
        background-image: url("https://static.frdic.com/web/ting/yearSummary/2023/personal_min_07.png");
    }

}</pre></body></html>