:root {
    --color: #ff5353;
}

.center_box {
    width: 1048px;
    box-shadow: 0 0 20px rgb(28 128 255 / 20%);
    border-radius: 10px;
    padding: 40px;
    background: #ffffff;
    box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center_box .tit {
    width: fit-content;
    font-size: 30px;
    font-weight: 600;
    color: #2d3371;
    margin: auto;
    position: relative;
}

.center_box .tit::after {
    content: "";
    width: 65px;
    height: 4px;
    background: #1c7fff;
    position: absolute;
    top: auto;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
}

.center_box .tips {
    font-size: 16px;
    text-align: center;
    color: #333a7c;
    margin-top: 20px;
}

.center_box .tips span {
    color: var(--color);
}

.center_box .item_box:first-child {
    margin-top: 30px;
}

.center_box .item_box {
    display: flex;
}

.center_box .item_box .item_name {
    width: 100px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
}

.center_box .item_box .item_list {
    width: 866px;
    display: flex;
    flex-wrap: wrap;
}

.center_box .item_box .list_item {
    display: block;
    margin-right: 30px;
    width: 141px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #dddddd;
    line-height: 38px;
    cursor: pointer;
    margin-bottom: 30px;
    height: 40px;
    margin-bottom: 30px;
}

.center_box .item_box .list_item:hover {
    background: var(--color);
    color: #ffffff;
    border: 1px solid var(--color);
}

.center_box .item_box .list_item.act {
    background: var(--color);
    color: #ffffff;
    border: 1px solid var(--color);
}

.center_box .btm_btn {
    width: 340px;
    line-height: 60px;
    height: 60px;
    border-radius: 4px;
    text-align: center;
    display: block;
    background: #1c7fff;
    color: #ffffff;
    margin: 10px auto 0;
    font-size: 18px;
    cursor: pointer;
}

.center_box .btm_btn:hover {
    background: var(--color);
    color: #fff;
}

.dialog_box {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.not_login {
    width: 600px;
    padding-bottom: 40px;
    background: #fff;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1111;
}

.not_login .tit_top {
    position: relative;
}

.not_login .tit_top img {
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.not_login h5 {
    width: 100%;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    position: absolute;
    top: 27px;
    left: 0;
}

.not_login .ipt_box {
    width: 480px;
    height: 50px;
    border-radius: 15px;
    background: #f3f8fe;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 15px auto;
}

.not_login .ipt_box input {
    width: 300px;
    height: 40px;
    border: 0;
    outline: none;
    font-size: 18px;
    background: #f3f8fe;
    margin-left: 10px;
}

.not_login .ipt_box .get_code {
    width: fit-content;
    height: 100%;
    line-height: 50px;
    cursor: pointer;
}

.not_login .login_btn {
    width: 340px;
    line-height: 60px;
    height: 60px;
    border-radius: 4px;
    text-align: center;
    display: block;
    background: #1c7fff;
    color: #ffffff;
    margin: 20px auto 0;
    font-size: 18px;
    cursor: pointer;
}

.not_login .login_btn:hover {
    background: var(--color);
    color: #fff;
}

.not_login .to_register {
    display: block;
    width: fit-content;
    font-size: 16px;
    color: #1c7fff;
    margin: 20px auto 0;
    text-decoration: underline;
}

.not_login .close_img {
    width: 46px;
    height: 46px;
    position: absolute;
    top: auto;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.result_box {
    width: 600px;
    padding-bottom: 40px;
    background: #fff;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1111;
}

.result_box .tit_top {
    position: relative;
}

.result_box .tit_top img {
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.result_box .tit_top h5 {
    width: 100%;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    letter-spacing: 4px;
    position: absolute;
    top: 27px;
    left: 0;
}

.result_box .close_img {
    width: 46px;
    height: 46px;
    position: absolute;
    top: auto;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.result_box .center p {
    text-align: center;
    font-size: 26px;
    margin-top: 20px;
}
.result_box .center img {
    width: 180px;
    height: 180px;
    display: block;
    margin: 20px auto 0;
}