/* 整体格式化 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    font-family: "PingFang SC";
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
}

#content {
    position: relative;
    min-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

/* 设计规范样式 */

.todoen_btn {
    box-sizing: border-box;
    padding: 5px 16px;
    border-radius: 68px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    background-color: #fff;
}

.todoen_btn_default {
    background-color: #f5f6fb;
}

.todoen_btn:hover {
    background-color: #e4e6ed;
}

.todoen_btn_primary {
    background-color: #ffe400;
}

.todoen_btn_primary:hover {
    background-color: #ffc700;
}

/* 公共样式 */
.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vertical_center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.horizontal_center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.left {
    float: left;
}

.right {
    float: right;
}

/* 导航栏 */
.header-box {
    position: relative;
    width: 100%;
    height: 57px;
    background-color: #fff;
    line-height: 56px;
    padding: 0 24px;
    border-bottom: 1px solid #e4e6ed;
}

.header-box.fixed {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 999;
    width: 100%;
    transform: translateX(-50%);
}

.header {
    position: relative;
    width: 1280px;
    height: 56px;
    background-color: #fff;
    line-height: 56px;
    padding: 0 24px;
    margin: 0 auto;
}

.logo,
.nav_box {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.login_box {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    float: right;
    width: 200px;
}

.logo {
    width: 164px;
    height: 28px;
}

.nav_box {
    width: 464px;
    text-align: center;
}

.nav_box .nav {
    display: inline-block;
    padding: 5px 12px;
    font-size: 14px;
    text-align: center;
    font-family: "PingFang SC";
    font-weight: 500;
    line-height: 22px;
    height: 32px;
}

.nav_box .nav a {
    color: #666;
    font-weight: 400;
    line-height: 22px;
    display: block;
    box-sizing: border-box;
}

.nav_box .nav.cur a,
.nav_box .nav:hover a {
    font-weight: 500;
    color: #333;
    border-bottom: #ffe400 4px solid;
}
.login_box .no_login {
    color: #333;
    padding: 5px 12px;
    font-size: 14px;
    text-align: right;
    font-family: "PingFang SC";
    font-weight: 500;
    line-height: 22px;
    right: 0;
}

.login_box .no_login .btn {
    display: inline-block;
    vertical-align: middle;
}

.login_box .login {
    width: 100%;
    height: 100%;
    right: 0;
    text-align: right;
}

.login_box .login .btn {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    cursor: pointer;
}

.login_box .login .avatar {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}

.login_box .login .avatar img {
    border-radius: 50%;
}

/* logOut命名配合历史背景 */
.login_box .login .avatar .logOut {
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #333;
    position: absolute;
    top: 40px;
    left: 50%;
    width: 80px;
    margin-left: -40px;
    opacity: 0;
}
.login_box .login .avatar .arrow {
    position: absolute;
    top: 34px;
    left: 50%;
    margin-left: -6px;
    opacity: 0;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: #fff;
    transform: rotate(45deg);
}

.login_box .login .avatar:hover .arrow {
    background-color: #ffe400;
}

.login_box .login .avatar:hover .logOut {
    background-color: #ffe400;
    font-weight: 500;
}

/* 顶部轮播 */
.top_swiper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 630px;
    overflow: hidden;
}

.top_swiper .swiper-button-prev,
.top_swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-top: -24px;
    display: none;
    cursor: pointer;
}

.top_swiper .swiper {
    height: auto;
}

.top_swiper .swiper-slide {
    background-color: #fff;
}

.top_swiper .swiper-button-prev {
    left: 24px;
    background: url("https://www.todoen.com/assets/20240313/img/top_swiper_icon.webp");
}

.top_swiper .swiper-button-prev:hover {
    background: url("https://www.todoen.com/assets/20240313/img/top_swiper_icon_hover.webp");
}

.top_swiper .swiper-button-next {
    right: 24px;
    background: url("https://www.todoen.com/assets/20240313/img/top_swiper_icon.webp");
    transform: rotate(180deg);
}

.top_swiper .swiper-button-next:hover {
    background: url("https://www.todoen.com/assets/20240313/img/top_swiper_icon_hover.webp");
    transform: rotate(180deg);
}

.top_swiper .swiper-pagination-bullet {
    width: 8px;
    height: 4px;
    border-radius: 2px;
    background-color: #fff6;
    transition: all .3s;
}

.top_swiper .swiper-pagination-bullet-active {
    width: 18px;
    background-color: #fff;
}

/* 发展趋势 */

.trend_box {
    position: relative;
    width: 100%;
    height: 410px;
    background-color: #f5f6fb;
    overflow: hidden;
}

.trend_box .title {
    position: relative;
    color: #333;
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    margin: 64px auto 0;
    text-align: center;
}

.trend_box .sub_title {
    position: relative;
    color: #3339;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin: 8px auto 0;
    text-align: center;
}

.trend_box .upnum_box {
    position: relative;
    width: 100%;
    margin-top: 60px;
    text-align: center;
}

.trend_box .upnum_item {
    width: 300px;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
}

.trend_box .upnum_item .num_box {
    width: 100%;
    height: 72px;
    line-height: 72px;
}

.trend_box .upnum_item .num_box .icon {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.trend_box .upnum_item .num_box .num,
.trend_box .upnum_item .num_box .unit {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-size: 48px;
    font-weight: 500;
    line-height: 72px;
}

.trend_box .upnum_item .desc {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

/* 弹幕部分 */
.barrage_box {
    position: relative;
    width: 1280px;
    height: 485px;
    box-sizing: border-box;
    background-color: #fff;
    margin: 0 auto;
}

.barrage_box .barrage_tip {
    width: 352px;
    top: 206px;
}

.barrage_box .barrage_content {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.barrage_box .barrage_mask {
    width: 100%;
    height: 320px;
    background: url("https://www.todoen.com/assets/20240313/img//barrage_mask.webp") no-repeat;
    background-size: 100% 100%;
}

.barrage_box .barrage_item {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 100%;
    white-space: nowrap;
    transition: all .3;
}

/* 选择我们 */

.choose_us {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    padding: 64px 120px 78px;
}

.choose_us .title {
    color: #333;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
}

.choose_us .about_us_item{
    width: 1120px;
    position: relative;
    margin: 80px auto 0;
    height: 286px;
    display: flex;
    justify-content: space-between;
}

.choose_us .about_us_item1 {
    height: 362px;
    margin: 64px auto 0;
}

.choose_us .about_us_item3{
    height: 270px;
}

.choose_us .about_us_item img {
    width: auto;
    height: 100%;
}

/* .choose_us .about_us_item3 img{
    width: 510px;
    height: 281px;
} */

.choose_us .about_us_item .img {
    height: 100%;
}

.choose_us .about_us_item .desc_box {
    width: 510px;
}

.choose_us .about_us_item .desc_box .title {
    position: relative;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    color: #333;
    padding-left: 28px;
    text-align: left;
    width: 440px;
}

.choose_us .about_us_item .desc_box .title::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 100%;
    background-color: #ffe400;
    left: 0;
    top: 0;
}

.choose_us .about_us_item .desc_box .line {
    height: 1px;
    width: 440px;
    background-color: #e4e6ed;
    margin-top: 16px;
}

.choose_us .about_us_item .desc_box .content {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 488px;
}

.choose_us .about_us_item .content_item {
    margin-top: 16px;
}

.choose_us .about_us_item .content_item .sub_title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #333;
}

.choose_us .about_us_item .content_item .desc_tetx {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    color: #333;
    opacity: .6;
}

.course_recommendation {
    width: 100%;
    position: relative;
    background-color: #f5f6fb;
    height: 585px;
    padding: 64px 92px 78px;
}

.course_recommendation .course_recommendation_content {
    width: 1096px;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.course_recommendation .title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    color: #333;
}

.course_recommendation .toggle_box {
    width: 112px;
    height: 36px;
    position: absolute;
    top: 0;
    right: 0;
}

.course_recommendation .toggle_box .toggle_prev,
.course_recommendation .toggle_box .toggle_next {
    position: absolute;
    top: 0;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.course_recommendation .toggle_box .toggle_prev {
    left: 0;
    background: url("https://www.todoen.com/assets/20240313/img/course_recommendation_icon.webp") no-repeat;
    background-size: 100% 100%;
    transform: rotate(180deg);
}

.course_recommendation .toggle_box .toggle_prev.disabled {
    background: url("https://www.todoen.com/assets/20240313/img/course_recommendation_icon_disabled.webp") no-repeat;
    background-size: 100% 100%;
    transform: rotate(0);
}

.course_recommendation .toggle_box .toggle_prev:hover {
    background: url("https://www.todoen.com/assets/20240313/img/course_recommendation_icon_active.webp") no-repeat;
    background-size: 100% 100%;
    transform: rotate(180deg);
}

.course_recommendation .toggle_box .toggle_next {
    right: 0;
    background: url("https://www.todoen.com/assets/20240313/img/course_recommendation_icon.webp") no-repeat;
    background-size: 100% 100%;
}

.course_recommendation .toggle_box .toggle_next.disabled {
    background: url("https://www.todoen.com/assets/20240313/img/course_recommendation_icon_disabled.webp") no-repeat;
    background-size: 100% 100%;
    transform: rotate(180deg);
}

.course_recommendation .toggle_box .toggle_next:hover {
    background: url("https://www.todoen.com/assets/20240313/img/course_recommendation_icon_active.webp") no-repeat;
    background-size: 100% 100%;
    transform: rotate(0);
}

.course_recommendation .course_swiper {
    width: 100%;
    height: 386px;
    position: relative;
    overflow: hidden;
    margin-top: 36px;
}

.course_recommendation .course_swiper .swiper-slide {
    width: 100%;
    height: 354px;
    margin-top: 12px;
    transition: all .3s;
    padding: 36px 26px;
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.course_recommendation .course_swiper .swiper-slide:hover {
    margin-top: 0;
    box-shadow: 0 8px 12px 0 #00000005;
}

.course_recommendation .course_swiper .title {
    width: 100%;
    font-size: 0;
    text-align: left;
}

.course_recommendation .course_swiper .title .icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.course_recommendation .course_swiper .title h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
}

.course_recommendation .course_swiper .sub_title {
    margin-top: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #999;
}

.course_recommendation .course_swiper .line {
    height: 1px;
    width: 100%;
    background-color: #e4e6ed;
    margin-top: 24px;
}

.course_recommendation .course_swiper .characteristic_list {
    margin-top: 24px;
}

.course_recommendation .course_swiper .characteristic_item {
    font-size: 0;
    text-align: left;
    margin-bottom: 8px;
}

.course_recommendation .course_swiper .characteristic_item:last-of-type {
    margin-bottom: 0;
}

.course_recommendation .course_swiper .characteristic_item .icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}

.course_recommendation .course_swiper .characteristic_item .txt {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #333;
}

.course_recommendation .course_swiper .btn {
    position: relative;
    width: 100px;
    height: 32px;
    margin-top: 24px;
}

.course_recommendation .course_swiper .btn img {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 24px;
    right: 5px;
}

/* 品牌荣誉 */
.corporate_honor {
    position: relative;
    padding: 64px 0;
    width: 1280px;
    height: 546px;
    margin: 0 auto;
}

.corporate_honor .title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    color: #333;
    text-align: center;
}

.corporate_honor .honor_swiper {
    width: 876px;
    height: 322px;
    position: relative;
    overflow: hidden;
    margin: 64px auto 0;
}

.corporate_honor .honor_swiper .swiper-slide {
    width: 276px;
    height: 322px;
    transform: scale(.9);
    background-color: #f5f6fb;
    border-radius: 8px;
    padding: 24px;
}

.corporate_honor .honor_swiper .swiper-slide-active {
    transform: scale(1);
}

.corporate_honor .honor_swiper .swiper-slide .honor_img {
    width: 228px;
    margin-bottom: 24px;
}

.corporate_honor .honor_swiper .swiper-slide .honor_title {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: 333;
    text-align: center;
    margin-bottom: 8px;
}

.corporate_honor .honor_swiper .swiper-slide .honor_desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #666;
    text-align: center;
}

.corporate_honor .honor_prev,
.corporate_honor .honor_next {
    width: 48px;
    height: 48px;
    background: url("https://www.todoen.com/assets/20240313/img/top_swiper_icon.webp");
    background-size: 100% 100%;
    margin-top: 72px;
    cursor: pointer;
}

.corporate_honor .honor_prev {
    left: 134px;
}

.corporate_honor .honor_next {
    right: 134px;
    margin-top: 48px;
    transform: rotate(180deg);
}

.corporate_honor .honor_prev:hover {
    background: url("https://www.todoen.com/assets/20240313/img/top_swiper_icon_hover.webp");
}

.corporate_honor .honor_next:hover {
    background: url("https://www.todoen.com/assets/20240313/img/top_swiper_icon_hover.webp");
    transform: rotate(180deg);
}

/* 新闻资讯 */

.news_box {
    position: relative;
    width: 100%;
    height: 502px;
    padding: 64px 0 48px;
}

.news_box .title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    color: #333;
    text-align: center;
}

.news_box .mew_card_box {
    width: 100%;
    text-align: center;
    font-size: 0;
}

.news_box .mew_card_box .news_card {
    width: 280px;
    height: 278px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    margin-right: 24px;
    cursor: pointer;
}

.news_box .mew_card_box .news_card:last-of-type {
    margin-right: 0;
}

.news_box .mew_card_box .news_card .img {
    width: 100%;
}

.news_box .mew_card_box .news_card .content {
    width: 100%;
    height: 100px;
    padding-top: 16px;
    background-color: #fff;
}

.news_box .mew_card_box .news_card .desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #333;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_box .mew_card_box .news_card .source {
    padding-top: 8px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

.news_box .mew_card_box .news_card .source_text,
.news_box .mew_card_box .news_card .source_time {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #999;
    text-align: left;
}

.news_box .mew_card_box .news_card .source_time {
    position: absolute;
    top: 8px;
    right: 0;
}

/* 合作机构 */

.cooperation_agency {
    position: relative;
    width: 100%;
    height: 332px;
    padding: 64px 0;
}

.cooperation_agency .title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    color: #333;
    text-align: center;
}

.cooperation_agency .cooperation_agency_imgs {
    margin-top: 48px;
    font-size: 0;
    text-align: center;
}

.cooperation_agency .cooperation_agency_imgs .img {
    display: inline-block;
    height: 42px;
    margin-right: 24px;
}

.cooperation_agency .cooperation_agency_imgs .img:last-of-type {
    margin-right: 0;
}

.cooperation_agency .cooperation_agency_imgs .img img {
    display: block;
    height: 100%;
    width: auto;
}

.cooperation_agency .institution_code {
    position: relative;
    margin: 24px auto 0;
    width: 274px;
    border: 1px #e4e6ed solid;
    border-radius: 12px;
    background-color: #f5f6fb;
    overflow: hidden;
}

.cooperation_agency .institution_code .institution_code_text {
    width: 198px;
    height: 42px;
    background-color: #fff;
    line-height: 42px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.cooperation_agency .institution_code .institution_code_copy {
    position: absolute;
    top: 0;
    right: 0;
    width: 76px;
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    cursor: pointer;
}

.cooperation_agency .institution_code .institution_code_copy:hover {
    background-color: #e4e6ed;
}

.page_footer {
    position: relative;
    width: 100%;
    background-color: #f5f6fb;
}

.page_footer .footer {
    position: relative;
    padding: 48px;
    font-size: 0;
    width: 1280px;
    margin: 0 auto;
}

.page_footer .logo {
    display: inline-block;
    vertical-align: top;
    margin-right: 48px;
}

.page_footer .about_us {
    display: inline-block;
    vertical-align: top;
    margin-right: 48px;
}

.page_footer .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #333;
}

.page_footer .about_us_links {
    margin-top: 16px;
}

.page_footer .link,
.page_footer .txt {
    margin-bottom: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #666;
}

.page_footer .link:hover {
    color: #333;
    font-weight: 500;
}

.page_footer .contact_us {
    display: inline-block;
    vertical-align: top;
}

.page_footer .contact_us .contact_us_links {
    font-size: 0;
    margin-top: 16px;
}

.page_footer .about_us .about_us_links .left_links,
.page_footer .about_us .about_us_links .right_links,
.page_footer .contact_us .contact_us_links .left_links,
.page_footer .contact_us .contact_us_links .right_links {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #666;
    margin-right: 24px;
}

.page_footer .self_medias {
    position: absolute;
    bottom: 48px;
    right: 48px;
    height: 40px;
    font-size: 0;
    text-align: right;
}

.page_footer .self_medias .media_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    margin-right: 24px;
    cursor: pointer;
}

.page_footer .self_medias .media_icon:last-of-type {
    margin-right: 0;
}

.page_footer .self_medias .media_icon .self_medias_popup {
    display: none;
    position: absolute;
    width: 148px;
    height: 168px;
    left: 50%;
    margin-left: -74px;
    background-color: #fff;
    top: -180px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e4e6ed;
}

.page_footer .self_medias .media_icon .self_medias_popup_arrow {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -6px;
    transform: rotate(45deg);
    border: 1px solid #e4e6ed;
}

.page_footer .self_medias .media_icon .self_medias_popup_text {
    position: relative;
    height: 34px;
    background: #fff;
    width: 100%;
    color: #414455;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.page_footer .line {
    height: 1px;
    width: 1232px;
    background-color: #e4e6ed;
    margin: 0 auto;
}

.page_footer .copyright {
    height: 64px;
    font-size: 0;
    text-align: center;
    line-height: 64px;
}

.page_footer .copyright .txt {
    margin-right: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    color: #999;
    font-size: 12px;
    font-weight: 400px;
}

.page_footer .copyright .txt:last-of-type {
    margin-right: 0;
}

/* 铆钉 */

.rivet_box {
    position: fixed;
    right: 24px;
    bottom: 180px;
    width: 52px;
    border: 1px solid #e4e6ed;
    background-color: #fff;
    border-radius: 8px;
    z-index: 999;
}

.rivet_box .rivet_item {
    position: relative;
    width: 52px;
    height: 60px;
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #e4e6ed;
}

.rivet_box .rivet_item:first-of-type {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.rivet_box .rivet_item:hover {
    background-color: #ffe400;
}

.rivet_box .rivet_item:last-of-type {
    border-bottom: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.rivet_box .rivet_item .icon {
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

.rivet_box .rivet_item .desc {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #666;
    text-align: center;
}

.rivet_box .rivet_item .rivet_item_popup {
    position: absolute;
    background-color: #fff;
    top: 0;
    padding: 10px 14px;
    border: 1px solid #e4e6ed;
    border-radius: 8px;
    display: none;
}

.rivet_box .rivet_item .rivet_item_popup.phone {
    width: 172px;
    left: -180px;
    text-align: center;
}

.rivet_box .rivet_item .rivet_item_popup.phone .sub_title {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: #414455;
}

.rivet_box .rivet_item .rivet_item_popup.phone .txt {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    color: #414455;
}

.rivet_box .rivet_item .rivet_item_popup.server {
    width: 218px;
    left: -226px;
    font-size: 0;
}

.rivet_box .rivet_item .rivet_item_popup.server .img {
    width: 52px;
    height: 52px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.rivet_box .rivet_item .rivet_item_popup.server .txt {
    display: inline-block;
    vertical-align: middle;
    width: 132px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    color: #414455;
}

.rivet_box .rivet_item .rivet_item_popup.download {
    width: 148px;
    left: -156px;
}

.rivet_box .rivet_item .rivet_item_popup.download .img {
    width: 120px;
}

.rivet_box .rivet_item .rivet_item_popup.download .txt {
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #414455;
    margin-top: 8px;
}

#modeThatShieldAnEye {
    cursor: pointer;
}

#dialogWrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    margin: 0;
    z-index: 999;
    background-color: #00000080;
}

#dialogWrapper .dialog {
    position: relative;
    margin: 15vh auto 50px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px #0000004d;
    box-sizing: border-box;
    width: 50%;
}

#dialogWrapper .dialog .dialog__header {
    padding: 20px 20px 10px;
    text-align: center;
}

#dialogWrapper .dialog .dialog__body {
    padding: 30px 20px;
    color: #606266;
    font-size: 14px;
    word-break: break-all;
}

#dialogWrapper .dialog .dialog__footer {
    padding: 10px 20px 20px;
    text-align: center;
    box-sizing: border-box;
}

#dialogWrapper .dialog .dialog__title {
    line-height: 24px;
    font-size: 18px;
    color: #303133;
}

#dialogWrapper .dialog .dialog__header-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
}

.todoen-button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
    appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    user-select: none;
    user-select: none;
    user-select: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
}

.button--primary {
    color: #fff;
    background-color: #409eff;
    border-color: #409eff;
}

.button--primary:hover,
.button--primary:focus {
    background: #66b1ff;
    border-color: #66b1ff;
    color: #fff;
}

.todoen-button.is-plain:focus,
.todoen-button.is-plain:hover {
    background: #fff;
    border-color: #409eff;
    color: #409eff;
}

.button--primary.is-plain {
    color: #409eff;
    background: #ecf5ff;
    border-color: #b3d8ff;
}

.button--primary.is-plain:focus,
.button--primary.is-plain:hover {
    background: #409eff;
    border-color: #409eff;
    color: #fff;
}

.todoen-switch {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    height: 20px;
    vertical-align: middle;
}

.todoen-switch__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0;
}

.todoen-switch__core {
    margin: 0;
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
    border: 1px solid #dcdfe6;
    outline: none;
    border-radius: 10px;
    box-sizing: border-box;
    background: #dcdfe6;
    cursor: pointer;
    transition: border-color .3s, background-color .3s;
    vertical-align: middle;
}

.todoen-switch.is-checked .todoen-switch__core {
    border-color: #409eff;
    background-color: #409eff;
}

.todoen-switch__core::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 100%;
    transition: all .3s;
    width: 16px;
    height: 16px;
    background-color: #fff;
}

.todoen-switch.is-checked .todoen-switch__core::after {
    left: 100%;
    margin-left: -17px;
}

.shield-an-eye-model {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-color: #ffb969;
    opacity: .2;
    z-index: 9999;
}

#meiqia-container #meiqia_custorm {
    opacity: 0;
}

.barrage_item_font_1 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
}

.barrage_item_font_2 {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.barrage_item_font_3 {
    color: #ccc;
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
    z-index: 3;
}

.barrage_item_font_4 {
    color: #e4e4e4;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    z-index: 2;
}

.barrage_item_font_5 {
    color: #e8e8e8;
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    z-index: 1;
}
