/* 公共样式开始 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 广告图开始 */
.advertise {}

.advertise img {
    height: 9.6875rem;
    width: 100%;
}

/* 广告图结束 */

/* 消息滚动通知栏开始 */
.message-title {
    margin: 0 1.125rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.message-content {
    background: #FEF7F1;
    padding: 0.3rem 0.675rem;
    border-radius: 100rem;
    display: flex;
    align-items: center;
    padding-top: 0.1rem;
}


.message-left {
    display: flex;
    align-items: center;
    margin-right: 0.625rem;
    background: #FEF7F1;
}

.message-left img {
    width: 0.85rem;
    height: 0.725rem;
    margin-top: 0.25rem;
}

#scrollingContainer {
    height: 1.25rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

#scrollingText {
    position: absolute;
    top: 0;
    animation: scrollText 3s cubic-bezier(0.175, 0.885, 0.32, 1.275) linear infinite;
}

@keyframes scrollText {
    0% {
        top: 0;
    }

    100% {
        top: -100%;
    }
}

.message-scroll span {
    color: #FF6A03;
}


/* 文字滚动通知栏结束 */

/* 表单填写开始 */
.form-input {
    margin-top: 1.25rem;
    color: #3D3D3D;
}

.form-input ul {}

.form-input ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.875rem;
}

.form-input ul li .form-name {
    width: 20%;
}

.form-input ul li .form-name span {
    font-size: 0.75rem;
}

.form-input ul li .form-name span:nth-child(2) {
    color: red;
}

.form-input ul li .form-input-input {
    display: flex;
    align-items: center;
    flex: 1;
}

.form-input ul li .form-input-input input {
    padding: 0.575rem 0;
    padding-left: 0.75rem;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 0.1875rem;
    outline: none;
    font-size: 0.75rem;
}

/* 自定义获取验证码样式 */
.custom-input-style {
    border: 1px solid #D1D1D1;
    display: flex;
    align-items: center;
    padding-top: 0.2rem;
    padding-bottom: 0.05rem;
}

.custom-input-style input {
    border: none !important;
}

.custom-input-style button {
    color: #144B92;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    white-space: nowrap;
    margin-right: 0.75rem;
}

/* 同意协议 */
.protocol {
    display: flex;
    align-items: center;
    margin-left: 0.05rem;
    margin-top: 1.5rem;
}

.protocol-content {
    display: flex;
    align-items: center;

}

.protocol-content input {
    width: 0.8rem;
    height: 0.8rem;
    border: 1px solid #154D93;
}

.protocol-file {
    display: flex;
    align-items: center;
    margin-left: 0.6875rem;
}

.protocol-file a {
    font-size: 0.75rem;
    white-space: nowrap;
}

.protocol-file a {
    text-decoration: none;
    color: #174F98;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
}

.protocol-file span:nth-child(1) {
    color: #999999;
}

/* 提交按钮 */
.submit-button {
    margin-top: 1.3rem!important;
}

.submit-button-content {
    position: relative;
}

.submit-button-content button {
    width: 100%;
    height: 2.9rem;
    outline: none;
    border: none;
    background: linear-gradient(90deg, #154D93 0%, #2C72CB 100%);
    border-radius: 0.25rem;
    color: white;
}

.submit-button-content img {
    position: absolute;
    height: 2.5625rem;
    bottom: 1.45rem;
    right: -0.5rem;
}

/* 表单提交结束 */

/* 弹窗开始 */
.popup {
    color: #3D3D3D;
    font-weight: 400;
    /* 弹窗开关 */
    display: none;
}

.popup-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.popup .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    background: white;
    border-radius: 8px;
    padding: 0 1rem;
    padding-top: 1.625rem;
}

.popup .popup-content .popup-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5625rem;
}

.popup .popup-content ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup .popup-content ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup .popup-content ul li img {
    width: 3.125rem;
    height: 3.125rem;
}

.popup .popup-content ul li span {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.more-information {
    margin: 0 0.5625rem;
    font-size: 0.75rem;
    color: #E8A24C;
    margin-top: 1rem;
    margin-bottom: 1.75rem;
}

.button {
    margin: 0 1.125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button button {
    width: 100%;
    padding: 0.625rem 0;
    background: linear-gradient(90deg, #154D93 0%, #2C72CB 100%);
    border-radius: 2px 2px 2px 2px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    outline: none;
}

.button span {
    margin-top: 0.875rem;
    margin-bottom: 0.6875rem;
    color: #999999;
    font-size: 0.625rem;
}


/* 底部分类开始 */
.bottom-classfiy {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.bottom-classfiy-content {
    margin: 0 2rem;
}

.bottom-classfiy-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-classfiy-list ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bottom-classfiy-list ul li img {
    width: 1.5rem;
    height: 1.625rem;
    margin-bottom: 0.375rem;
}

.bottom-classfiy-list ul li:nth-child(2) img {
    width: 1.325rem;
}

.bottom-classfiy-list ul li:nth-child(3) img {
    width: 1.375rem;
    height: 1.5625rem;
}


.bottom-classfiy-list ul li span {
    font-size: 0.75rem;
}

.bottom-classfiy-list ul li span:nth-last-child(1) {
    color: #999999;
    margin-top: 0.375rem;
}


#scroll-box {
    height: 20px;
    overflow: hidden;
}

#scroll-box ul {
    margin: 0
}

#scroll-box li {
    margin: 4px 0;
    color: #FF6A03;
    font-size: 12px;
    font-weight: 500;
    color: #FF6A03;
}




body {
    max-width: 750px;
    margin: auto;
    height: 100vh;
}

.hide-text {
    display: none !important;
}
