﻿@charset "utf-8";

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select {
    margin: 0;
    padding: 0;
}

body,
input,
textarea,
select,
button,
table {
    font-size: 16px;
    line-height: 1.25em;
    font-family: Arial, 'microsoft yahei', Verdana, Helvetica, sans-serif;
}

/*取消按钮点击的时候有阴影*/
a,
img,
button,
input,
textarea {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -ms-tap-highlight-color: rgba(255, 255, 255, 0);
    -moz-tap-highlight-color: rgba(255, 255, 255, 0);
    -o-tap-highlight-color: rgba(255, 255, 255, 0);
}

button,
input,
textarea,
select {
    border: medium none;
    outline: medium none;
    /*取消chrome下input和textarea的聚焦边框*/
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
}

body {
    min-width: 320rem;
    height: 100vh;
    font-size: 1em;
    -webkit-text-size-adjust: none;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: normal;
}

header,
footer,
section,
nav,
menu,
details,
hgroup,
figure,
figcaption,
article,
aside {
    margin: 0;
    padding: 0;
    display: block;
}

img,
fieldset {
    border: 0;
}

img {
    vertical-align: middle;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

a {
    color: #666;
    text-decoration: none;
}

.cl:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
}

.cl {
    zoom: 1
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.dis {
    display: block;
}

.hide {
    display: none;
}

.hr_gray {
    border: none;
    border-top: 1rem solid #ccc;
}

/*arrow*/
.arr_right:after,
.arr_left:after {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2rem solid #ccc;
    border-bottom: 2rem solid #ccc;
    top: 50%;
    right: 15rem;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -0.25rem;
}

.arr_down:after {
    content: "";
    width: 8rem;
    height: 8rem;
    border-right: 1rem solid #666;
    border-bottom: 1rem solid #666;
    top: 48%;
    right: -0.85rem;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -0.25rem;
}

.arr_up:after {
    content: "";
    width: 8rem;
    height: 8rem;
    border-right: 1rem solid #666;
    border-bottom: 1rem solid #666;
    top: 50%;
    right: -0.85rem;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -0.15rem;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

body {
    background-color: #fff;
}

.flex {
    display: flex;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-x-center {
    display: flex;
    justify-content: center;
}

.flex-y-center {
    display: flex;
    align-items: center;
}

.flex-y-start {
    display: flex;
    align-items: flex-start;
}

.flex-y-end {
    display: flex;
    align-items: flex-end;
}

.flex-x-between {
    display: flex;
    justify-content: space-between;
}

.flex-x-start {
    display: flex;
    justify-content: flex-start;
}

.flex-x-end {
    display: flex;
    justify-content: flex-end;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

/* 首页 */
.typeArea {
    width: 1350rem;
    margin: 0 auto;
}
.new_index {
    width: 100%;
    padding-bottom: 35rem;
}
.inner_header {
    width: 100%;
    height: 112rem;
    padding: 0 40rem 0 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    background-color: #ffffff;
}
.inner_header .logo {
    height: 100%;
}
.inner_header .logo img {
    height: 100%;
    display: block;
}
.inner_header .searchBox {
    width: 405rem;
    height: 55rem;
    position: relative;
}
.inner_header .searchBox input {
    width: 100%;
    height: 100%;
    border: 1rem solid #9fbbdb;
    border-radius: 50rem;
    padding: 0 80rem 0 25rem;
    font-size: 19rem;
    color: #000000;
    background: #ffffff;
}
.inner_header .searchBox .searchBtn{
    width: 65rem;
    height: 42rem;
    background: linear-gradient(to right,#4b94e5,#859bf8);
    background: -webkit-linear-gradient(left,#4b94e5,#859bf8);
    background: -moz-linear-gradient(left,#4b94e5,#859bf8);
    background: -ms-linear-gradient(left,#4b94e5,#859bf8);
    background: -o-linear-gradient(left,#4b94e5,#859bf8);
    border-radius: 30rem;
    cursor: pointer;
    position: absolute;
    right: 7.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.inner_header .searchBox img {
    height: 100%;
    display: block;
}
.inner_header .user_place {
    margin-left: 40rem;
}
.inner_header .user_place img{
    height: 40rem;
    width: 40rem;
    margin-right: 13rem;
    border-radius: 50%;
}
.inner_header .login_place {
    margin-left: 30rem;
}
.inner_header .login_place img {
    height: 33rem;
    width: 33rem;
    display: block;
    margin-right: 10rem;
}
.inner_header .user_place p,.inner_header .login_place p {
    color: #2f2f2f;
    font-size: 19rem;
}
.top_inner .banner {
    width: 100%;
    position: relative;
}
.top_inner .banner .banner_val {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.top_inner .banner .banner_title {
    width: 100%;
    position: relative;
    z-index: 10;
}
.top_inner .banner .banner_pic {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}
.certify_bg{
    width: 100%;
    position: relative;
}
.certify_bg .certify_bgpic{
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 0;
}
.certify_inner {
    width: 1530rem;
    margin: 0 auto 60rem;
    position: relative;
    z-index: 10;
}
.certify_inner .certify_left {
    width: 1265rem;
    height: 555rem;
    margin-right: 25rem;
    overflow: hidden;
    z-index: 100;
    border-radius: 60rem;
    box-shadow: 0 0 10rem rgba(115, 52, 52, .8);
}
.certify_inner .certify_right {
    width: 240rem;
    position: absolute;
    right: 0;
    top: 0;
}
.certify_inner .certify_right a {
    width: 100%;
    height: 135rem;
    display: block;
    margin-bottom: 5rem;
    border-radius: 15rem;
    overflow: hidden;
}
.certify_inner .certify_right a img {
    width: 100%;
    height: 100%;
    display: block;
}
.certify_left .swiper-container {
    width: 100%;
    height: 100%;
    border-radius: 60rem;
    overflow: hidden;
    position: relative;
}
.certify_left .slide_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.certify_left .slide_img img {
    width: 100%;
    height: 100%;
    display: block;
}
.certify_left:hover .sw_button{
    opacity: 1;
}
.sw_button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
}
.sw_button img{
    width: 28rem;
    display: block;
}
.sw_prev.sw_button{
    left: 10rem;
}
.sw_next.sw_button{
    right: 10rem;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 10rem;
    height: 10rem;
    display: inline-block;
    border-radius: 10rem;
    background: #ffffff;
    opacity: .2;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 30rem;
    background: #ffffff;
    opacity: 1;
}


.sub_title{
    margin-bottom: 60rem;
    position: relative;
}
.sub_title h1{
    font-size: 45rem;
    color: #252627;
    font-weight: bold;
    width: 320rem;
}
.sub_title h1 .icon_label{
    width: 58rem;
    margin-right: 20rem;
}
.sub_title .tabList .tab_list{
    padding: 15rem;
    border: 1rem solid #2b2b2b;
    font-size: 24rem;
    color: #2b2b2b;
    border-radius: 30rem;
    margin-right: 25rem;
    cursor: pointer;
}
.sub_title .tabList .tab_list.on{
    color: #ffffff;
    border: 0;
    background: linear-gradient(45deg,#4493e3,#8c9cfa);
    background: -webkit-linear-gradient(45deg,#4493e3,#8c9cfa);
    background: -moz-linear-gradient(45deg,#4493e3,#8c9cfa);
    background: -ms-linear-gradient(45deg,#4493e3,#8c9cfa);
    background: -o-linear-gradient(45deg,#4493e3,#8c9cfa);
}
.sub_title .moreBtn{
    font-size: 22rem;
    color: #5695e8;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.sub_title .moreBtn img{
    width: 21rem;
    margin-left: 7rem;
}
.specializedBox{
    width: 1530rem;
    margin: 0 auto 45rem;
}
.specializedList{
    width: 100%;
}
.specializedList .specialized_list{
    width: calc((100% - 216rem) / 3);
    height: 250rem;
    margin-right: 108rem;
    position: relative;
    cursor: pointer;
}
.specializedList .specialized_list:nth-child(3n){
    margin-right: 0;
}
.specializedList .specialized_list .special_pic{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20rem;
}
.specializedList .specialized_list .special_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.specializedList .specialized_list .special_label{
    width: 121rem;
    height: 35rem;
    position: absolute;
    right: 0;
    top: 0;
}
.specializedList .specialized_list .special_label img{
    width: 100%;
    height: 100%;
}
.specializedList .specialized_list .special_label p{
    font-size: 16rem;
    color: #e45c4e;
    font-weight: bold;
    width: 100%;
    text-align: center;
    line-height: 26rem;
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 10rem;
}
.specializedList .specialized_list:nth-child(2) .special_label p{
    color: #283bb1;
}
.specializedList .specialized_list:nth-child(3) .special_label p{
    color: #1c9ccf;
}
.recommendBox{
    width: 100%;
    height: 680rem;
    position: relative;
    padding: 60rem 0 30rem;
}
.recommendBox .course_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.recommendBox .inner_recommendBox{
    width: 1530rem;
    margin: 0 auto 45rem;
    position: relative;
    z-index: 10;
}
.recommendList .left_recommendList{
    width: 747rem;
    margin-right: 80rem;
    cursor: pointer;
}
.recommendList .left_recommendList .recommend_pic1{
    width: 100%;
    height: 420rem;
    overflow: hidden;
    border-radius: 25rem;
    position: relative;
}
.recommendList .left_recommendList .recommend_pic1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recommendList .left_recommendList .recommend_pic1 .moreBtn2{
    width: 45rem;
    height: 45rem;
    position: absolute;
    right: 10rem;
    bottom: 15rem;
    display: none;
}
.recommendList .left_recommendList:hover .moreBtn2{
    display: block;
}
.recommendList .left_recommendList .recommend_p1{
    height: 60rem;
    padding-top: 20rem;
}
.recommendList .left_recommendList .recommend_p1 p{
    font-size: 21rem;
    color: #060001;
}
.recommendList .right_recommendList{
    width: calc(100% - 747rem - 80rem);
}
.recommendList .right_recommendList ul{
    width: 100%;
}
.recommendList .right_recommendList ul li{
    width: calc((100% - 80rem) / 2);
    margin-right: 80rem;
}
.recommendList .right_recommendList ul li:nth-child(2n){
    margin-right: 0;
}
.recommendList .right_recommendList ul li a{
    display: block;
    cursor: pointer;
    width: 100%;
}
.recommendList .right_recommendList ul li a .recommend_pic{
    width: 100%;
    height: 180rem;
    overflow: hidden;
    border-radius: 25rem;
    position: relative;
}
.recommendList .right_recommendList ul li a .recommend_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recommendList .right_recommendList ul li a .recommend_pic .moreBtn2{
    width: 45rem;
    height: 45rem;
    position: absolute;
    right: 10rem;
    bottom: 15rem;
    display: none;
}
.recommendList .right_recommendList ul li a:hover .moreBtn2{
    display: block;
}
.recommendList .right_recommendList ul li a .recommend_p{
    height: 60rem;
    padding-top: 10rem;
}
.recommendList .right_recommendList ul li a .recommend_p p{
    font-size: 21rem;
    color: #060001;
}
.resourceBox{
    width: 1530rem;
    margin: 0 auto 45rem;
}
.resourceBox .resource_navBox{
    width: 100%;
    height: 90rem;
    background: linear-gradient(to bottom,#e9ecfa,#fafafd);
    background: -webkit-linear-gradient(top,#e9ecfa,#fafafd);
    background: -moz-linear-gradient(top,#e9ecfa,#fafafd);
    background: -ms-linear-gradient(top,#e9ecfa,#fafafd);
    background: -o-linear-gradient(top,#e9ecfa,#fafafd);
    border-radius: 45rem;
    margin-top: 50rem;
    padding: 0 160rem;
}
.resourceBox .resource_navBox ul li{
    width: 188rem;
    height: 100%;
}
.resourceBox .resource_navBox ul li a{
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.resourceBox .resource_navBox ul li a p{
    font-size: 42rem;
    color: #2b2b2b;
    text-align: center;
    line-height: 90rem;
}
.resourceBox .resource_navBox ul li.on{
    position: relative;
}
.resourceBox .resource_navBox ul li.on::before{
    content: '';
    width: 100%;
    height: 83rem;
    background-color: #fff;
    border-radius: 0 0 15rem 15rem;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 3.5rem 9rem rgba(168,174,201,.4);
}
.resourceBox .resource_navBox ul li.on a p{
    font-weight: bold;
    color: #5695e8;
    position: relative;
    z-index: 10;
}
.resourceList{
    width: 100%;
}
.resourceList .resource_list{
    width: calc((100% - 220rem) / 3);
    height: 250rem;
    margin-right: 110rem;
    margin-top: 45rem;
    cursor: pointer;
}
.resourceList .resource_list:nth-child(3n){
    margin-right: 0;
}
.resourceList .resource_list .resource_pic{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20rem;
}
.resourceList .resource_list .resource_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.moreBtn3{
    display: flex;
    justify-content: flex-end;
    font-size: 22rem;
    color: #5695e8;
    margin-top: 30rem;
    cursor: pointer;
}
.moreBtn3 img{
    width: 21rem;
    margin-left: 7rem;
}

.bottomBox{
    width: 1530rem;
    height: 335rem;
    margin: 0 auto;
    position: relative;
}
.bottomBox .bottom_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.bottomBox .inner_bottomBox{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    padding-left: 110rem;
    padding-top: 95rem;
}
.inner_bottomBox .logo_bottom{
    display: block;
    width: 533rem;
    margin-bottom: 105rem;
}
.inner_bottomBox .bottom_textBox .icon_company{
    width: 50rem;
    margin-right: 20rem;
}
.inner_bottomBox .bottom_textBox .flex-col p{
    font-size: 16rem;
    color: #312626;
}
.inner_bottomBox .codeBox{
    position: absolute;
    right: 110rem;
    top: 50%;
    transform: translateY(-50%);
}
.inner_bottomBox .codeBox .code_box{
    margin-left: 80rem;
}
.inner_bottomBox .codeBox .code_box img{
    width: 180rem;
    height: 180rem;
    margin: 0 auto;
}
.inner_bottomBox .codeBox .code_box p{
    font-size: 17rem;
    color: #191919;
    text-align: center;
    margin-top: 20rem;
}
/*弹窗*/
.popPage{
    width: 100%;
    height: 600rem;
    position: fixed;
    left: 0;
    top: 430rem;
    z-index: 600;
}
.popPage .maskPage{
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.15);
    backdrop-filter: saturate(100%) blur(9rem);
    position: absolute;
    left: 0;
    top: 0;
}
.popPage .pop_content{
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-top: 70rem;
}
.popPage .pop_content ul li{
    width: 480rem;
    margin: 0 35rem;
}
.popPage .pop_content ul li a{
    display: block;
    cursor: pointer;
}
.popPage .pop_content ul li a img{
    width: 100%;
}
.popPage .pop_content .close_pop{
    display: block;
    width: 60rem;
    height: 60rem;
    margin: 50rem auto;
    cursor: pointer;
}
.popPage .pop_content .close_pop img{
    width: 100%;
    height: 100%;
}

/*问卷弹窗*/
.questionnaire_popPage{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /*background-color: rgba(0,0,0,.65);*/
    z-index: 600;
}
.questionnaire_popPage .questionnaire_pop_content{
    width: 640px;
    height: 188px;
    background: linear-gradient(top,#fff6dd,#fff);
    background: -webkit-linear-gradient(top,#fff6dd,#fff);
    background: -moz-linear-gradient(top,#fff6dd,#fff);
    background: -ms-linear-gradient(top,#fff6dd,#fff);
    background: -o-linear-gradient(top,#fff6dd,#fff);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0,0,0,.72);
}
.questionnaire_popPage .questionnaire_pop_content .closePopPage{
    width: 34px;
    height: 34px;
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}
.questionnaire_popPage .questionnaire_pop_content .closePopPage img{
    width: 100%;
    height: 100%;
}
.questionnaire_popPage .questionnaire_pop_content .icon_pic{
    width: 225px;
    position: absolute;
    left: -45px;
    top: -45px;
    filter: drop-shadow(0 4px 15px rgba(57,51,25,.53));
}
.questionnaire_popPage .questionnaire_pop_content .questionnaire_title{
    height: 100%;
    position: absolute;
    right: 85px;
    top: 0;
}
.questionnaire_popPage .questionnaire_pop_content .enterBtn{
    display: block;
    width: 225px;
    height: 58px;
    position: absolute;
    right: 30px;
    bottom: -29px;
    cursor: pointer;
}
.questionnaire_popPage .questionnaire_pop_content .enterBtn img{
    width: 100%;
    height: 100%;
}
.password_tips{
    width: 100%;
    text-align: justify;
    color: #af1e23;
    font-size: 14px;
    cursor: pointer;
}

/* 弹窗 */
.popup3{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1110;
    opacity: 0;
    outline: 0;
    -ms-transform: scale(1.185);
    transform: scale(1.185);
    backface-visibility: hidden;
    perspective: 2000px;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease-in-out 0s;
    pointer-events: none;
}
.popup3.show3 {
    opacity: 1;
    transition-duration: 0.3s;
    -ms-transform: scale(1);
    transform: scale(1);
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
}
.mask3{
    background: linear-gradient(to bottom, #feefe4, #ffffff 60%, #ffffff);
    background: -webkit-linear-gradient(top, #feefe4, #ffffff 60%, #ffffff);
    background: -moz-linear-gradient(top, #feefe4, #ffffff 60%, #ffffff);
    background: -ms-linear-gradient(top, #feefe4, #ffffff 60%, #ffffff);
    background: -o-linear-gradient(top, #feefe4, #ffffff 60%, #ffffff);
    border-radius: 35px;
    padding: 0 75px;
    position: relative;
    padding: 25px 110px 50px;
}
.mask3 .maks_cont{
    width: 100%;
    min-height: 210px;
    padding: 25px 0;
}
.mask3 p{
    font-size: 18px;
    line-height: 35px;
    color: #000;
    text-align: center;
}
.mask3 .maks_btn{
    width: 270px;
    height: 56px;
    margin: 0 auto;
    border-radius: 30px;
    background: linear-gradient(to left, #e8c083, #fbe9c4);
    background: -webkit-linear-gradient(right, #e8c083, #fbe9c4);
    background: -moz-linear-gradient(right, #e8c083, #fbe9c4);
    background: -ms-linear-gradient(right, #e8c083, #fbe9c4);
    background: -o-linear-gradient(right, #e8c083, #fbe9c4);
    font-size: 20px;
    color: #63260b;
    text-align: center;
    line-height: 56px;
    letter-spacing: 5px;
    text-indent: 5px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(220, 194, 194, .5);
}

/*问卷20221207*/
.wjBtn{
    position: fixed;
    right: 30px;
    top: 300px;
    width: 75px;
    height: 70px;
    background-color: dodgerblue;
    padding: 10px 0px;
}
.wjBtn img{
    display: block;
    width: 40px;
    margin: 0 auto 15px;
}
.wjBtn p{
    font-size: 14px;
    /*color: #b13d35;*/
    color: white;
    text-align: center;
    /*background-color: rgba(177,61,53,.09);*/
    line-height: 25px;
    font-weight: bold;
}

/*2023-03-27 复制按钮*/
.copyIcon {
    width: 100%;
    height: 25px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}
.copyIcon button{
    position: absolute;
    width: 24px;
    height: 24px;
    right: 10px;
    cursor: pointer;
}

.copyIcon button img{
    width: 24px;
    height: 24px;
}

/*登陆弹窗*/
.mask {position: fixed; width: 100%; height: 100%; left: 0; top: 0; z-index: 500; background-color: rgba(0,0,0,.7);}
.popbox {position: fixed; z-index: 600; width: 430px; top: 10%; left: 50%; margin-left: -215px;}
.box{background: #fff;width: 430px;height: auto;-moz-border-radius: 10px;-ms-border-radius: 10px;border-radius: 10px}
.box .form{width: 265px;margin: 0 auto; padding-top: 15px;}
.box .form label{word-wrap: normal;word-break: break-all;}
.box .form .sham{margin-top: 25px;}
.box .text{display: block;margin-top: 10px;-moz-border-radius: 5px;-ms-border-radius: 5px;border-radius: 5px;border: solid 1px #d1d1d1;width: 100%; height: 45px;text-indent: 1em;font-size: 14px;}
.box h3{color: #af1e23;font-size: 28px;text-align: center;font-weight: bold;margin-bottom: 15px;line-height: 2;}
.box label{color: #af1e23;font-size: 14px;cursor: pointer;}
.box .checkbox{margin-top: 22px;}
.box .submit{position: relative;margin: 0 auto;margin-top: 20px;background-color: #af1e23;cursor: pointer;height: 47px;width: 145px;}
.box .submit .input{position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 2;-moz-opacity: 0;-ms-opacity: 0;opacity: 0;cursor: pointer;}
.box .submit:hover{background-color: #870c11;}
.box .submit .t1{font-size: 18px;color: white;text-align: center;line-height: 47px;}
.box .text2{width: 50%;}
.vcode {float: right; margin-top: -48px;}
.regular-checkbox {display: none;}
.regular-checkbox + label {background-color: #fafafa;border: 1px solid #cacece;box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);padding: 6px;border-radius: 3px;display: inline-block;position: relative;}
.regular-checkbox + label:active, .regular-checkbox:checked + label:active {box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);}
.regular-checkbox:checked + label {background-color: white;color: #db0229;}
.regular-checkbox:checked + label:after {content: '\2714';font-size: 12px;position: absolute;top: -4px;left: 1px;color: #db0229;}

.box .closelogin {
    background-color: #fff;
    color: #af1e23;
    border: 1px solid #af1e23;
    margin-top: 15px;
    position: relative;
    margin: 15px auto;
    cursor: pointer;
    height: 47px;
    width: 145px;
}
.box .closelogin .t1 {
    font-size: 18px;
    color: #af1e23;
    text-align: center;
    line-height: 47px;
}
.smsage {
    font-size: 13px;
    color: red;
    margin-top: 5px;
    padding-bottom: 0px;
}

.broadcast_loginBox {
    width: 770px;
    height: 476px;
    background-color: #fff;
    box-shadow: 0 23px 62px rgb(0 0 0 / 15%);
    border: 1px solid rgba(255,255,255,.2);
    position: absolute;
    left: calc(50% - 385px);
    top: 200px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    z-index: 999;
}
.broadcast_loginBox .login_left {
    width: 310px;
    height: 100%;
    background-color: #d32c2b;
    position: relative;
}
.broadcast_loginBox .login_left .live_title {
    width: 230px;
    position: absolute;
    left: 40px;
    top: 50px;
}
.live_title {
    font-size: 22px;
    color: #af2323;
    font-weight: bold;
    position: relative;
    line-height: 65px;
    margin-bottom: 15px;
}
.broadcast_loginBox .login_left .live_img {
    width: 180px;
    position: absolute;
    left: 0;
    bottom: 7px;
}
.broadcast_loginBox .login_right {
    width: 430px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    padding: 0 35px 0 50px;
}
.broadcast_loginBox .login_right .login_title {
    font-size: 22px;
    color: #444444;
    font-weight: bold;
    margin-bottom: 0px;
    letter-spacing: 2px;
    width: 90%;
    margin-left: 10%;
}
.login_title {
    width: 30%;
    padding: 40px 80px;
}
.broadcast_loginBox .login_right .inputBox.on {
    border: 1px solid #d32c2b;
}
.broadcast_loginBox .login_right .inputBox {
    width: 100%;
    height: 60px;
    border: 1px solid #c5c5c5;
    position: relative;
    margin-bottom: 20px;
}
.broadcast_loginBox .login_right .inputBox input {
    width: 100%;
    height: 55px;
    border: none;
    padding: 0 40px 0 50px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    font-size: 15px;
    color: #000;
    line-height: 55px;
    outline: none;
}
.broadcast_loginBox .login_right .inputBox .icon {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
    top: 16.5px;
}
.loginIn {
    width: 100%;
    height: 55px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    margin-top: 10px;
}
.loginIn img {
    width: 100%;
    height: 100%;
}
.loginIn p {
    font-size: 20px;
    color: #fff;
    letter-spacing: 6px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.login_submit {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -moz-opacity: 0;
    -ms-opacity: 0;
    opacity: 0;
    cursor: pointer;
}
.broadcast_loginBox .login_mode {
    font-size: 14px;
    color: #727272;
    margin-top: 10px;
    letter-spacing: 1px;
}
.broadcast_loginBox .login_mode img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}


.passIcon {
    width: 100%;
    height: 55px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    margin-top: 10px;
}
.passIcon img {
    position: absolute;
    width: 24px;
    top: 10px;
    right: 10px;
}

/*2026-03-18*/
.popPage{
    top: 112rem;
    height: calc(100vh - 112rem);
}
.popPage .pop_content{
    padding-top: 200rem;
}
.popPage .pop_content ul li{
    width: 700rem;
    margin: 0 50rem;
}
.popPage .pop_content ul li a img{
    filter: drop-shadow(0 0 20px rgba(78,80,87,.7));
}


/*2026-04-01*/
.inner_header .user_place{
    position: relative;
}
.inner_header .user_place a{
    color: #2f2f2f;
    font-size: 19rem;
    cursor: pointer;
}
.inner_header .user_place a img{
    width: 14rem;
    height: auto;
    margin-left: 15rem;
    margin-right: 0;
    border-radius: 0;
}
.editPopWindow{
    width: 200rem;
    border: 1rem solid #c6cacd;
    background-color: #ffffff;
    border-radius: 25rem;
    position: absolute;
    right: 250rem;
    top: 90rem;
    box-shadow: 0 0 10rem rgba(198,202,205,.5);
    padding: 15rem 20rem;
    z-index: 1000;
}
.editPopWindow ul li{
    padding: 8rem 15rem;
}
.editPopWindow ul li a{
    display: block;
    cursor: pointer;
    height: 35rem;
    line-height: 35rem;
    text-align: center;
    font-size: 19rem;
    color: #2f2f2f;
}
.popPage2{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
}
.popPage2 .maskPage{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    position: absolute;
    left: 0;
    top: 0;
}
.popPage2 .pop_content2{
    width: 790rem;
    min-height: 550rem;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 60rem;
    z-index: 10;
    padding: 10rem 30rem 30rem;
}
.popPage2 .pop_content2 h1{
    font-size: 32rem;
    color: #252627;
    font-weight: bold;
    position: relative;
    border-bottom: 1rem solid #e2e2e2;
    line-height: 90rem;
}
.popPage2 .pop_content2 h1 .close_pop2{
    width: 30rem;
    height: 30rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.popPage2 .pop_content2 h1 .close_pop2 img{
    width: 100%;
    height: 100%;
}
.edit_formBox{
    padding: 10rem 30rem 10rem 0;
}
.edit_formBox .edit_form_box{
    padding: 24rem 0;
}
.edit_formBox .edit_form_box .edit_form_label{
    font-size: 23rem;
    color: #000000;
    width: 120rem;
    text-align: right;
    line-height: 68rem;
}
.edit_formBox .edit_form_box .edit_form_input{
    width: calc(100% - 120rem - 20rem);
    height: 68rem;
    margin-left: 20rem;

}
.edit_formBox .edit_form_box .edit_form_input input{
    width: 100%;
    height: 100%;
    padding: 0 20rem;
    font-size: 21rem;
    color: #000000;
    line-height: 68rem;
    border: 1rem solid #cacbcc;
    border-radius: 3rem;
}
.edit_formBox .edit_form_box .edit_form_input input::-webkit-input-placeholder{
    color: #929292;
}
.edit_saveBtn{
    display: block;
    width: 230rem;
    height: 68rem;
    background: linear-gradient(to right,#4493e3,#8c9cfa);
    background: -webkit-linear-gradient(left,#4493e3,#8c9cfa);
    background: -moz-linear-gradient(left,#4493e3,#8c9cfa);
    background: -ms-linear-gradient(left,#4493e3,#8c9cfa);
    background: -o-linear-gradient(left,#4493e3,#8c9cfa);
    text-align: center;
    line-height: 68rem;
    font-size: 23rem;
    color: #ffffff;
    margin: 15rem auto 0;
    border-radius: 15rem;
    cursor: pointer;
}
.edit_form_input span{
    display: none;
}
.edit_form_input.blue_text input{
    border: 1rem solid #5295e7!important;
}
.edit_form_input.red_text{
    position: relative;
}
.edit_form_input.red_text span{
    display: block;
}
.edit_form_input.red_text input{
    border: 1rem solid #e31515!important;
}
.edit_form_input.red_text span{
    font-size: 17rem;
    color: #e31515;
    position: absolute;
    left: 20rem;
    top: 78rem;
    line-height: 1;
}

.popPage3{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
}
.popPage3 .maskPage{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    position: absolute;
    left: 0;
    top: 0;
}
.popPage3 .pop_content3{
    width: 580rem;
    min-height: 300rem;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 60rem;
    z-index: 10;
    padding: 60rem 30rem 50rem;
}
.popPage3 .pop_content3 img{
    width: 70rem;
    height: 70rem;
    filter: drop-shadow(0 6rem 16rem rgba(204,226,255,.55));
    display: block;
    margin: 0 auto;
}
.popPage3 .pop_content3 p{
    font-size: 32rem;
    color: #252627;
    text-align: center;
    line-height: 1;
    margin-top: 25rem;
    font-weight: bold;
}
.popPage3 .pop_content3 .edit_formBtn{
    display: block;
    width: 180px;
    height: 52px;
    background-color: #edfaf9;
    text-align: center;
    line-height: 52px;
    border-radius: 10px;
    border: 1px solid #4ecdc4;
    font-size: 16px;
    color: #4ecdc4;
    margin: 60px auto 0;
    cursor: pointer;
}
.hidden{
    display: none;
}

/*2026-04-14*/
.editPopWindow{
    border: 0;
}
.editPopWindow ul li {
    padding: 0 15px;
    margin: 5px 0;
}
.editPopWindow ul li a{
    font-size: 13px;
}
.editPopWindow ul li:hover,.editPopWindow ul li.active{
    background-color: #edfaf9;
    border-radius: 5px;
}
.editPopWindow ul li:hover a,.editPopWindow ul li.active a{
    color: #4ecdc4;
}
.popPage4{
    width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    position: absolute;
    right: 145px;
    top: 65px;
    box-shadow: 0 0 10px rgba(198, 202, 205, .5);
    padding: 20px;
    z-index: 10000;
}
.popPage4::after{
    content: '';
    position: absolute;
    top: 38px;
    right: -13px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ffffff;
    filter: drop-shadow(5px 0 10px rgba(198, 202, 205, .5));
}
.popPage4 .icon_upload{
    display: block;
    width: 35%;
    aspect-ratio: 5 / 7;
    object-fit: fill;
    margin: 0 auto;
}
.uploadBtn{
    display: block;
    width: 35%;
    height: 30px;
    border-radius: 5px;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    background-color: #4ecdc4;
    position: relative;
    margin: 20px auto;
    cursor: pointer;
}
.uploadBtn input{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}
.explainBox span{
    font-size: 12px;
    color: #bbbbbb;
}
.explainBox p{
    font-size: 12px;
    color: #414141;
    margin-top: 10px;
}
