html,
body {
    min-width: var(--mainW);
    background-color: var(--cfff);
    height: auto;
    width: 100%;
}

@media (max-width: 1100px) {
    html,
    body {
        width: 100%;
        /* overflow-x: hidden; */
    }
}
.oz-nav-wrap {
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 17%);
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 100000;
}
.oz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--mainW);
    height: 100px;
    min-width:var(--mainW);

    /* box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.17); */
    margin: auto;
}
.oz-nav .oz-logo {
    width: 169px;
    height: 60px;
}

.oz-nav .oz-nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.oz-nav .oz-opt {
    display: flex;
    align-items: center;
    padding-top: 15px;
    margin-bottom: 31px;
}
.oz-nav .oz-opt .oz-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.oz-nav .oz-opt .oz-item a{
    display: block;
    color: var(--c333333);
}

.oz-nav .oz-opt .oz-item:nth-child(1)::after {
    content: "";
    width: 1px;
    height: 16px;
    background-color: var(--ccccccc);
    margin-left: 20px;
}
.oz-nav .oz-opt .oz-item .oz-text {
    font-size: var(--f16);
    color: var(--c333333);
    margin-right: 5px;
    margin-left: 20px;
}
.oz-nav .oz-opt .oz-item .oz-icon {
    width: 16px;
    /* height: 18px; */
}

.oz-nav .oz-navList {
    display: flex;
    align-items: center;
  	margin-bottom:5px;
}


.oz-nav .oz-navList .oz-navList-item {
	margin-left: 40px;
	padding-bottom: 16px;
	box-sizing: border-box;
	color: var(--c606060);
	font-size: var(--f16);
	cursor: pointer;
	position: relative;
}
.oz-nav .oz-navList .oz-navList-item-active,.oz-nav .oz-navList .oz-navList-item-active a {
	color: var(--cCE0B02) !important;
}
.oz-nav .oz-navList .oz-navList-item-active::after {
	width: 30px;
	height: 3px;
	background: #ce0b02;
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}

.oz-nav .oz-navList .oz-navList-item a {
    color: var(--c606060);
    font-size: var(--f16);

}
#oz-footer {
}
#oz-footer .oz-company {
    background-color: var(--c2B2B2B);
}
#oz-footer .oz-company .oz-company-list {
    width: 1100px;
    margin: auto;
    height: 133px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#oz-footer .oz-company .oz-company-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#oz-footer .oz-company .oz-company-item .icon {
    width: 40px;
    margin-bottom: 24px;
}
#oz-footer .oz-company .oz-company-item .text {
    color: var(--cfff);
    font-size: var(--f14);
}

#oz-footer .oz-contact {
    background-color: var(--c303030);
    height: 209px;
}
#oz-footer .oz-contact .oz-contact-wrap {
    width: 1100px;
    margin: auto;
    display: flex;

    align-items: center;
    justify-content: space-between;
}

#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo {
}
#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo .oz-contactInfo-nav {
    padding-top: 52px;
    display: flex;
    margin-bottom: 39px;
}
#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo .oz-number {
}
#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo .oz-number .oz-number-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo .oz-number .oz-number-item .icon {
    width: 13px;
    margin-right: 11px;
}
#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo .oz-number .oz-number-item .text {
    font-size: var(--f14);
    color: var(--cB1B1B1);
}
#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo .oz-contactInfo-nav .oz-contactInfo-nav-item {
    color: var(--cECECEC);
    font-size: var(--f15);
    padding-right: 34px;
}
#oz-footer .oz-contact .oz-contact-wrap .oz-contactInfo .oz-contactInfo-nav .oz-contactInfo-nav-item:hover{
	color: #b4b4b4;
}
#oz-footer .oz-contact .oz-contact-wrap .oz-code {
    width: 131px;
}

#oz-footer .oz-icp {
    background-color: var(--c212121);
    height: 48px;
    color: var(--cB1B1B1);
    line-height: 48px;
    text-align: center;
}

.loginTop {
    background-color: #fff;
}

.loginTop .loginTopMiddle {
    width: 1200px;
    margin: 21px auto 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loginTop .loginTopMiddle .oz-logo {
    width: 169px;
}

.loginTop .loginTopMiddle p {
    font-size: var(--f16);
    color: var(--c333333);
}

.bg {
    background-image: url("/assets/images/login/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 982px;
    padding-top: 173px;
}



::-webkit-input-placeholder { /* WebKit browsers */
    color:    #999;
    font-size: 16px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #999;
    font-size: 16px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #999;
    font-size: 16px;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #999;
    font-size: 16px;
}



.oz-home-commom-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--mainW);
    margin: auto;
}

.oz-home-commom-title .line {
    width: 39px;
    height: 3px;
    background: var(--cCE0B02);
    border-radius: 2px;
    margin-bottom: 19px;
}

.oz-home-commom-title .en {
    font-size: var(--f16);
    color: var(--c999999);
    margin-bottom: 45px;
}

.oz-home-commom-title .cn {
    font-size: var(--f30);
    font-weight: bold;
    margin-bottom: 17px;
    color: var(--c333333);
}