|
|
@@ -1,973 +1,1079 @@
|
|
|
* {
|
|
|
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
|
|
|
-}
|
|
|
-
|
|
|
-body {
|
|
|
- background: #f0f0f0;
|
|
|
-}
|
|
|
-
|
|
|
-body, html, div {
|
|
|
margin: 0;
|
|
|
padding: 0;
|
|
|
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
|
|
|
}
|
|
|
|
|
|
-.navigation-bar {
|
|
|
- display: flex;
|
|
|
- position: fixed;
|
|
|
- place-items: center;
|
|
|
- top: 0;
|
|
|
- height: 80px;
|
|
|
- width: 100%;
|
|
|
- z-index: 11;
|
|
|
-
|
|
|
- background-color: #000000;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-body {
|
|
|
- height: 100%;
|
|
|
- width: 1170px;
|
|
|
- margin: auto auto;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- grid-template-columns: 135px 1fr 150px;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-logo {
|
|
|
- max-width: 135px;
|
|
|
- cursor: pointer;
|
|
|
- margin: auto 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-logo img {
|
|
|
- max-height: 80px;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.nav-search {
|
|
|
- width: 450px;
|
|
|
- height: 40px;
|
|
|
- margin: auto auto;
|
|
|
- display: flex;
|
|
|
- border: none;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-search form {
|
|
|
- display: flex;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-search-div .search-input {
|
|
|
- width: 370px;
|
|
|
- height: 40px;
|
|
|
- /*/ / padding-left: 15 px;*/
|
|
|
- padding: 0 0 0 15px;
|
|
|
- font-size: 14px;
|
|
|
- border: none;
|
|
|
- outline: none;
|
|
|
- border-radius: 5px 0 0 5px;
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-.search-btn {
|
|
|
- width: 70px;
|
|
|
- height: 40px;
|
|
|
- outline: none;
|
|
|
- margin: 0;
|
|
|
- border: none;
|
|
|
- background: #1475fa;
|
|
|
- border-radius: 0 5px 5px 0;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
-
|
|
|
-.search-btn:hover {
|
|
|
- border: none;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.search-btn:active {
|
|
|
- border: none;
|
|
|
- background: #1470da;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.search-btn .search-btn-icon {
|
|
|
- width: 22px;
|
|
|
- height: 22px;
|
|
|
- color: white;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-user {
|
|
|
- display: flex;
|
|
|
- justify-content: right;
|
|
|
- margin: auto 20px;
|
|
|
- height: 70px;
|
|
|
- color: white;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-user-menu {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- width: 48px;
|
|
|
- margin-left: 30px;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-user-icon-bg {
|
|
|
- min-width: 35px;
|
|
|
- min-height: 35px;
|
|
|
- border-radius: 50%;
|
|
|
- background: #1d1d1d;
|
|
|
- margin-right: 5px;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-top {
|
|
|
- padding-top: 80px;
|
|
|
-}
|
|
|
-
|
|
|
-/*登录*/
|
|
|
-
|
|
|
-.login-center {
|
|
|
- display: inline-block;
|
|
|
- position: absolute;
|
|
|
- margin: 10% auto 0 auto;
|
|
|
- top: 10%;
|
|
|
- left: calc(50% - 200px);
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
-
|
|
|
-.login-content {
|
|
|
- display: inline-block;
|
|
|
-
|
|
|
- width: 437px;
|
|
|
- height: 430px;
|
|
|
- background-color: transparent;
|
|
|
- padding: 10px 0;
|
|
|
-}
|
|
|
-
|
|
|
-.login-content form {
|
|
|
- height: 390px;
|
|
|
- margin: 20px 0;
|
|
|
-}
|
|
|
-
|
|
|
-.login-from {
|
|
|
- width: 400px;
|
|
|
- height: 370px;
|
|
|
- border-radius: 25px;
|
|
|
- padding-left: 100px;
|
|
|
- padding-top: 20px;
|
|
|
- background: white;
|
|
|
- color: #333333;
|
|
|
-}
|
|
|
-
|
|
|
-.login-select {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- border-radius: 20px;
|
|
|
- width: 308px;
|
|
|
- margin: 10px auto;
|
|
|
- background: #e8e8e8;
|
|
|
- color: #888888;
|
|
|
- font-size: 16px;
|
|
|
- font-weight: bold;
|
|
|
-}
|
|
|
-
|
|
|
-.login-select-item {
|
|
|
- width: 112px;
|
|
|
- height: 40px;
|
|
|
- cursor: pointer;
|
|
|
- line-height: 40px;
|
|
|
- padding: 0 3px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-select-item span {
|
|
|
- z-index: -2;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-select-phone {
|
|
|
- border-radius: 20px 0 0 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-select-wx {
|
|
|
- border-radius: 0 20px 20px 0;
|
|
|
-}
|
|
|
-
|
|
|
-.select-item {
|
|
|
- border-radius: 20px;
|
|
|
- z-index: 2;
|
|
|
-}
|
|
|
-
|
|
|
-.select-item2 {
|
|
|
- position: absolute;
|
|
|
- width: 103px;
|
|
|
- height: 40px;
|
|
|
- background: rgba(255, 255, 255, 1);
|
|
|
-
|
|
|
- border-radius: 20px;
|
|
|
- box-shadow: #888888 0 0 5px;
|
|
|
- transition: margin-left 0.2s ease-in-out;
|
|
|
- z-index: 1;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-type-phone {
|
|
|
-}
|
|
|
-
|
|
|
-.login-phone {
|
|
|
-
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin: 50px auto 20px auto;
|
|
|
- width: 300px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-phone-input {
|
|
|
- height: 32px;
|
|
|
- width: 290px;
|
|
|
- border-radius: 15px;
|
|
|
- border: 2px #dddddd solid;
|
|
|
- padding: 3px 10px;
|
|
|
- background-color: transparent;
|
|
|
-}
|
|
|
-
|
|
|
-.login-phone-input input {
|
|
|
- height: 32px;
|
|
|
- width: 280px;
|
|
|
- background: transparent;
|
|
|
- border: transparent 0;
|
|
|
- font-size: 18px;
|
|
|
- outline: none;
|
|
|
- text-security: disc;
|
|
|
-}
|
|
|
-
|
|
|
-.login-phone-input
|
|
|
-:active {
|
|
|
- border: transparent 0;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-phone-code {
|
|
|
-
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin: 0 auto 20px auto;
|
|
|
- width: 308px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-phone-code-input {
|
|
|
- height: 32px;
|
|
|
- width: 150px;
|
|
|
- border-radius: 15px;
|
|
|
- border: 2px #dddddd solid;
|
|
|
- padding: 3px 10px;
|
|
|
- background-color: transparent;
|
|
|
-}
|
|
|
-
|
|
|
-.login-phone-code-input input {
|
|
|
- height: 32px;
|
|
|
- width: 140px;
|
|
|
- background: transparent;
|
|
|
- border: transparent 0;
|
|
|
- font-size: 18px;
|
|
|
- outline: none;
|
|
|
-}
|
|
|
-
|
|
|
-.login-phone-code-input :active {
|
|
|
- border: transparent 0;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-phone-code-btn {
|
|
|
- margin-left: 20px;
|
|
|
- height: 42px;
|
|
|
- width: 120px;
|
|
|
- user-select: none;
|
|
|
- border-radius: 15px;
|
|
|
- background: #0971ef;
|
|
|
- color: #dddddd;
|
|
|
- line-height: 42px;
|
|
|
- font-size: 16px;
|
|
|
- font-weight: bold;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-email {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- flex-direction: column;
|
|
|
- margin: 20px auto 20px auto;
|
|
|
- width: 300px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email .login-email-input {
|
|
|
- margin: 0 auto 20px auto;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-input {
|
|
|
- height: 32px;
|
|
|
- width: 290px;
|
|
|
- border-radius: 15px;
|
|
|
- border: 2px #dddddd solid;
|
|
|
- padding: 3px 10px;
|
|
|
- background-color: transparent;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-input input {
|
|
|
- height: 32px;
|
|
|
- width: 280px;
|
|
|
- background: transparent;
|
|
|
- border: transparent 0;
|
|
|
- font-size: 18px;
|
|
|
- outline: none;
|
|
|
- text-security: disc;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-input:active {
|
|
|
- /*border: transparent 0;*/
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-btn {
|
|
|
- height: 42px;
|
|
|
- border-radius: 15px;
|
|
|
- width: 300px;
|
|
|
- margin: 30px auto;
|
|
|
- background: #0971ef;
|
|
|
-}
|
|
|
-
|
|
|
-.login-btn-div {
|
|
|
- cursor: pointer;
|
|
|
- user-select: none;
|
|
|
- color: #dddddd;
|
|
|
- font-size: 18px;
|
|
|
-
|
|
|
- line-height: 42px;
|
|
|
- font-weight: bold;
|
|
|
-}
|
|
|
-
|
|
|
-.login-type-email {
|
|
|
- padding-top: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin: 20px auto 20px auto;
|
|
|
- width: 300px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-input {
|
|
|
- height: 32px;
|
|
|
- width: 290px;
|
|
|
- border-radius: 15px;
|
|
|
- border: 2px #dddddd solid;
|
|
|
- padding: 3px 10px;
|
|
|
- background-color: transparent;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-input input {
|
|
|
- height: 32px;
|
|
|
- width: 280px;
|
|
|
- background: transparent;
|
|
|
- border: transparent 0;
|
|
|
- font-size: 18px;
|
|
|
- outline: none;
|
|
|
- text-security: disc;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-input
|
|
|
-:active {
|
|
|
- border: transparent 0;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-email-code {
|
|
|
-
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin: 0 auto 20px auto;
|
|
|
- width: 308px;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-code-input {
|
|
|
- height: 32px;
|
|
|
- width: 150px;
|
|
|
- border-radius: 15px;
|
|
|
- border: 2px #dddddd solid;
|
|
|
- padding: 3px 10px;
|
|
|
- background-color: transparent;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-code-input input {
|
|
|
- height: 32px;
|
|
|
- width: 140px;
|
|
|
- background: transparent;
|
|
|
- border: transparent 0;
|
|
|
- font-size: 20px;
|
|
|
- outline: none;
|
|
|
-}
|
|
|
-
|
|
|
-.login-email-code-input:active {
|
|
|
- border: transparent 0;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-email-code-btn {
|
|
|
- margin-left: 20px;
|
|
|
- height: 42px;
|
|
|
- width: 120px;
|
|
|
- user-select: none;
|
|
|
- border-radius: 15px;
|
|
|
- background: #0971ef;
|
|
|
- color: #dddddd;
|
|
|
- line-height: 42px;
|
|
|
- font-size: 16px;
|
|
|
- font-weight: bold;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-btn {
|
|
|
- height: 42px;
|
|
|
- border-radius: 15px;
|
|
|
- width: 300px;
|
|
|
- margin: 30px auto;
|
|
|
- background: #0971ef;
|
|
|
-}
|
|
|
-
|
|
|
-.login-btn-div {
|
|
|
- cursor: pointer;
|
|
|
- user-select: none;
|
|
|
- color: #dddddd;
|
|
|
- font-size: 18px;
|
|
|
- line-height: 42px;
|
|
|
- font-weight: bold;
|
|
|
-}
|
|
|
-
|
|
|
-.login-type-wx {
|
|
|
-}
|
|
|
-
|
|
|
-.login-wx-refresh {
|
|
|
- cursor: pointer;
|
|
|
- user-select: none;
|
|
|
- width: 125px;
|
|
|
- margin: 10px auto 5px auto;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- height: 25px;
|
|
|
- font-weight: bold;
|
|
|
- color: #888888;
|
|
|
-}
|
|
|
-
|
|
|
-.login-wx-refresh-icon {
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-.login-wx-refresh-icon img {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- width: 25px;
|
|
|
- height: 25px;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-wx-refresh-text {
|
|
|
- font-size: 20px;
|
|
|
- line-height: 25px;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-wx-tip {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- font-size: 14px;
|
|
|
- display: inline-block;
|
|
|
-
|
|
|
- font-weight: bolder;
|
|
|
- color: #555555;
|
|
|
-}
|
|
|
-
|
|
|
-.login-wx-image {
|
|
|
- width: 180px;
|
|
|
- height: 180px;
|
|
|
- background: #888888;
|
|
|
- margin: 10px auto;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-register-btn {
|
|
|
- margin: 20px auto;
|
|
|
- cursor: pointer;
|
|
|
- user-select: none;
|
|
|
- color: #888888;
|
|
|
-}
|
|
|
-
|
|
|
-.login-register-btn:hover {
|
|
|
- color: #207cfb;
|
|
|
-}
|
|
|
-
|
|
|
-.login-register-btn:active {
|
|
|
- color: #1a6adc;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-image {
|
|
|
- border-radius: 25px;
|
|
|
- background-image: url('https://cdn.yicanggongyi.com/yinhe/icon/login.png');
|
|
|
- width: 430px;
|
|
|
- height: 430px;
|
|
|
- /*background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));*/
|
|
|
- position: absolute;
|
|
|
- transform: translateX(-70%);
|
|
|
- width: 437px;
|
|
|
- height: 430px;
|
|
|
- background-size: 100% 100%;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.nav-user-icon {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- height: 35px;
|
|
|
- margin: 17px 0;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-user-icon-bg {
|
|
|
- min-width: 35px;
|
|
|
- min-height: 35px;
|
|
|
-
|
|
|
- background: #1d1d1d;
|
|
|
- margin-right: 5px;
|
|
|
- display: flex;
|
|
|
- border-radius: 50%;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.nav-user-icon-bg img {
|
|
|
- border-radius: 50%;
|
|
|
- max-width: 35px;
|
|
|
- max-height: 35px;
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.login-body {
|
|
|
- left: 0;
|
|
|
- right: 0;
|
|
|
- top: 0;
|
|
|
- bottom: 0;
|
|
|
- position: fixed;
|
|
|
- z-index: 999;
|
|
|
- width: 100VW;
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-.login-body-shield {
|
|
|
- left: 0;
|
|
|
- right: 0;
|
|
|
- top: 0;
|
|
|
- bottom: 0;
|
|
|
- position: fixed;
|
|
|
- background: rgba(0, 0, 0, 0.5);
|
|
|
- width: 100VW;
|
|
|
- z-index: -1;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.bottom-bar {
|
|
|
- background: white;
|
|
|
- margin: 0;
|
|
|
- padding: 70px 0 0 0;
|
|
|
-}
|
|
|
-
|
|
|
-.partners-line {
|
|
|
- margin: auto;
|
|
|
- width: 1170px;
|
|
|
-}
|
|
|
-
|
|
|
-.partners-line ul {
|
|
|
- list-style: none;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- padding: 0;
|
|
|
-}
|
|
|
-
|
|
|
-.partners-line ul li {
|
|
|
- height: 46px;
|
|
|
- display: flex;
|
|
|
- margin: 0 10px;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-.partners-service-guarantee {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
- width: 1170px;
|
|
|
- margin: 10px auto 30px;
|
|
|
- border-bottom: 1px solid #e5e5e5;
|
|
|
-}
|
|
|
-
|
|
|
-.service-guarantee {
|
|
|
- display: flex;
|
|
|
- text-align: left;
|
|
|
- margin-top: 40px;
|
|
|
- margin-bottom: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.sg-icon {
|
|
|
- height: 60px;
|
|
|
- width: 60px;
|
|
|
- border-radius: 50%;
|
|
|
- background: #daD5D9;
|
|
|
-
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
-
|
|
|
-.sg-info {
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- height: 38px;
|
|
|
- margin-top: 8px;
|
|
|
- margin-bottom: 20px;
|
|
|
- margin-left: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.sg-info div:nth-child(1) {
|
|
|
- color: #333333;
|
|
|
- display: block;
|
|
|
- box-sizing: border-box;
|
|
|
- line-height: 14px;
|
|
|
- width: 100%;
|
|
|
- font-size: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.sg-info div:nth-child(2) {
|
|
|
- color: #666666;
|
|
|
- display: block;
|
|
|
- margin-top: 8px;
|
|
|
- box-sizing: border-box;
|
|
|
- line-height: 14px;
|
|
|
- width: 100%;
|
|
|
- font-size: 12px;
|
|
|
-}
|
|
|
-
|
|
|
-.filing-body {
|
|
|
- text-align: center;
|
|
|
- color: #8b8b8b;
|
|
|
- border-top: #dddddd 1px solid;
|
|
|
- width: 1170px;
|
|
|
- margin: 30px auto 0;
|
|
|
- padding: 15px 0;
|
|
|
-}
|
|
|
-
|
|
|
-.bottom-bar-about {
|
|
|
- width: 1170px;
|
|
|
- margin: 0 auto;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
-}
|
|
|
-
|
|
|
-.bottom-bar-about-left {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- text-align: left;
|
|
|
-}
|
|
|
-
|
|
|
-.about-contact {
|
|
|
- width: 185px;
|
|
|
-}
|
|
|
-
|
|
|
-.about-me {
|
|
|
- margin-left: 95px;
|
|
|
-}
|
|
|
-
|
|
|
-.about-issue {
|
|
|
- margin-left: 134px;
|
|
|
-}
|
|
|
-
|
|
|
-.about-row {
|
|
|
- font-size: 14px;
|
|
|
-}
|
|
|
-
|
|
|
-.about-row-title {
|
|
|
- font-size: 16px;
|
|
|
- margin-bottom: 16px;
|
|
|
- color: #000000;
|
|
|
-}
|
|
|
-
|
|
|
-.about-row-item {
|
|
|
- height: 16px;
|
|
|
- line-height: 16px;
|
|
|
- color: #666666;
|
|
|
- margin-bottom: 10px;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.about-row-item:hover {
|
|
|
- color: #1a6adc;
|
|
|
-}
|
|
|
-
|
|
|
-.about-row-imgs {
|
|
|
- margin-top: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.about-row-imgs img {
|
|
|
- margin-right: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.bottom-bar-about-right {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- width: 278px;
|
|
|
-}
|
|
|
-
|
|
|
-.about-row-title {
|
|
|
- font-size: 16px;
|
|
|
- margin-bottom: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.my-user-images {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
-}
|
|
|
-
|
|
|
-.my-user-images img {
|
|
|
- margin: 0 4px 4px 0;
|
|
|
-}
|
|
|
-
|
|
|
-.bottom-bar-active {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin-top: 30px;
|
|
|
-}
|
|
|
-
|
|
|
-.bottom-bar-active img {
|
|
|
- margin-right: 30px;
|
|
|
-}
|
|
|
-
|
|
|
-.footer-about-box {
|
|
|
-
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin-top: 30px;
|
|
|
-}
|
|
|
-
|
|
|
-.footer-about-app {
|
|
|
-
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin-top: 10px;
|
|
|
-}
|
|
|
-
|
|
|
-.footer-about-app img {
|
|
|
- margin-right: 30px;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-/*注册*/
|
|
|
-body, html {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- font-family: Arial, sans-serif;
|
|
|
-}
|
|
|
-
|
|
|
-.register-center {
|
|
|
- position: absolute;
|
|
|
- margin: 10% auto 0 auto;
|
|
|
- top: 10%;
|
|
|
- left: calc(50% - 200px);
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- color: #888;
|
|
|
-}
|
|
|
-
|
|
|
-.register-content {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- width: 350px;
|
|
|
- height: 430px;
|
|
|
- background-color: white;
|
|
|
- border-radius: 20px;
|
|
|
- padding: 20px 40px;
|
|
|
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
-}
|
|
|
-
|
|
|
-.register-content-title {
|
|
|
- color: #333;
|
|
|
- font-size: 24px;
|
|
|
- font-weight: bold;
|
|
|
- margin-bottom: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.register-content-input {
|
|
|
- width: 100%;
|
|
|
- margin-bottom: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.register-content-input input {
|
|
|
- width: 100%;
|
|
|
- height: 32px;
|
|
|
- padding: 5px;
|
|
|
- border: 2px solid #ddd;
|
|
|
- border-radius: 15px;
|
|
|
- outline: none;
|
|
|
- font-size: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.register-content-code {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.register-content-code-input {
|
|
|
- width: 60%;
|
|
|
-}
|
|
|
-
|
|
|
-.register-content-code-input input {
|
|
|
- width: 100%;
|
|
|
- height: 32px;
|
|
|
- padding: 5px;
|
|
|
- border: 2px solid #ddd;
|
|
|
- border-radius: 15px;
|
|
|
- outline: none;
|
|
|
- font-size: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.register-content-code-btn {
|
|
|
- width: 32%;
|
|
|
- height: 42px;
|
|
|
- background-color: #207cfb;
|
|
|
- color: white;
|
|
|
- border-radius: 15px;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- cursor: pointer;
|
|
|
- user-select: none;
|
|
|
-}
|
|
|
-
|
|
|
-.register-content-submit {
|
|
|
- width: 100%;
|
|
|
- height: 42px;
|
|
|
- background-color: #207cfb;
|
|
|
- color: white;
|
|
|
- border-radius: 15px;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- cursor: pointer;
|
|
|
- user-select: none;
|
|
|
- font-weight: bold;
|
|
|
- margin-top: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.page {
|
|
|
- padding-top: 80px;
|
|
|
- background-color: white;
|
|
|
- border-bottom: #dddddd 1px solid;
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.page .info-page {
|
|
|
- width: 1170px;
|
|
|
- margin: 0 auto;
|
|
|
- background-color: #FFFFFF;
|
|
|
- min-height: 800px;
|
|
|
- text-align: left;
|
|
|
- font-size: 16px;
|
|
|
-}
|
|
|
-
|
|
|
-.page .info-page .info-title {
|
|
|
- padding-top: 30px;
|
|
|
- text-align: left;
|
|
|
- font-size: 30px;
|
|
|
- font-weight: bold;
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-/*todo 路由栏*/
|
|
|
-.router-jump-bar {
|
|
|
- width: 100%;
|
|
|
- background: white;
|
|
|
-}
|
|
|
-
|
|
|
-.router-bar {
|
|
|
- text-align: left;
|
|
|
- margin: 0 auto;
|
|
|
- color: #333;
|
|
|
- width: 1170px;
|
|
|
- height: 50px;
|
|
|
-
|
|
|
- display: flex;
|
|
|
-
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
-
|
|
|
-.router-bar .router-bar-list {
|
|
|
- list-style: none;
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- font-size: 14px;
|
|
|
-
|
|
|
- color: #888888;
|
|
|
- font-weight: bold;
|
|
|
-
|
|
|
- display: flex;
|
|
|
- justify-content: left;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
-
|
|
|
-.router-bar-list .router-bar-item {
|
|
|
- cursor: pointer;
|
|
|
- margin: 0 10px;
|
|
|
- height: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.router-bar-list .router-bar-text {
|
|
|
- cursor: pointer;
|
|
|
- margin: 0 10px;
|
|
|
- height: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.router-bar-list .router-bar-arrow {
|
|
|
- margin: 0;
|
|
|
- height: 20px;
|
|
|
- user-select: none;
|
|
|
-}
|
|
|
-
|
|
|
-.router-bar-list .router-bar-item:hover {
|
|
|
- /* 下划线*/
|
|
|
- text-decoration: underline;
|
|
|
-}
|
|
|
-
|
|
|
-.router-bar-list .router-bar-item :nth-child(1) {
|
|
|
- margin-left: 0;
|
|
|
- color: red;
|
|
|
+/*移动端*/
|
|
|
+@media screen and (min-width: 100px) and (max-width: 768px) {
|
|
|
+
|
|
|
+ .navigation-bar {
|
|
|
+ display: flex;
|
|
|
+ position: fixed;
|
|
|
+ place-items: center;
|
|
|
+ top: 0;
|
|
|
+ width: calc(100% - 5.33334vw);
|
|
|
+ z-index: 11;
|
|
|
+ background-color: #000000;
|
|
|
+ padding: calc(0px + 2.66667vw) 3.2vw 2.66667vw calc(0px + 2.66667vw);
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-body {
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ margin: auto auto;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-logo {
|
|
|
+ width: 20%;
|
|
|
+ height: auto;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-logo img {
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .nav-search {
|
|
|
+ width: 80%;
|
|
|
+ margin: auto 0;
|
|
|
+ display: flex;
|
|
|
+ border: none;
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-search form {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ min-height: 40px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-search-div {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-search-div .search-input {
|
|
|
+ height: 100%;
|
|
|
+ width: calc(100%);
|
|
|
+ padding: 0 0 0 15px;
|
|
|
+ font-size: 14px;
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+ border-radius: 5px 0 0 5px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn {
|
|
|
+ width: 70px;
|
|
|
+ outline: none;
|
|
|
+ margin: 0;
|
|
|
+ border: none;
|
|
|
+ background: #1475fa;
|
|
|
+ border-radius: 0 5px 5px 0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn:hover {
|
|
|
+ border: none;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn:active {
|
|
|
+ border: none;
|
|
|
+ background: #1470da;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn .search-btn-icon {
|
|
|
+ width: 22px;
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-top {
|
|
|
+ padding-top: 80px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .home-suspension {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+@media screen and (min-width: 769px) {
|
|
|
+
|
|
|
+ body {
|
|
|
+ background: #f0f0f0;
|
|
|
+ }
|
|
|
+
|
|
|
+ body, html, div {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .navigation-bar {
|
|
|
+ display: flex;
|
|
|
+ position: fixed;
|
|
|
+ place-items: center;
|
|
|
+ top: 0;
|
|
|
+ height: 80px;
|
|
|
+ width: 100%;
|
|
|
+ z-index: 11;
|
|
|
+
|
|
|
+ background-color: #000000;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-body {
|
|
|
+ height: 100%;
|
|
|
+ width: 1170px;
|
|
|
+ margin: auto auto;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ grid-template-columns: 135px 1fr 150px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-logo {
|
|
|
+ max-width: 135px;
|
|
|
+ cursor: pointer;
|
|
|
+ margin: auto 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-logo img {
|
|
|
+ max-height: 80px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .nav-search {
|
|
|
+ width: 450px;
|
|
|
+ height: 40px;
|
|
|
+ margin: auto auto;
|
|
|
+ display: flex;
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-search form {
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-search-div .search-input {
|
|
|
+ width: 370px;
|
|
|
+ height: 40px;
|
|
|
+ /*/ / padding-left: 15 px;*/
|
|
|
+ padding: 0 0 0 15px;
|
|
|
+ font-size: 14px;
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+ border-radius: 5px 0 0 5px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn {
|
|
|
+ width: 70px;
|
|
|
+ height: 40px;
|
|
|
+ outline: none;
|
|
|
+ margin: 0;
|
|
|
+ border: none;
|
|
|
+ background: #1475fa;
|
|
|
+ border-radius: 0 5px 5px 0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn:hover {
|
|
|
+ border: none;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn:active {
|
|
|
+ border: none;
|
|
|
+ background: #1470da;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn .search-btn-icon {
|
|
|
+ width: 22px;
|
|
|
+ height: 22px;
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-user {
|
|
|
+ display: flex;
|
|
|
+ justify-content: right;
|
|
|
+ margin: auto 20px;
|
|
|
+ height: 70px;
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-user-menu {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 48px;
|
|
|
+ margin-left: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-user-icon-bg {
|
|
|
+ min-width: 35px;
|
|
|
+ min-height: 35px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background: #1d1d1d;
|
|
|
+ margin-right: 5px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-top {
|
|
|
+ padding-top: 80px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*登录*/
|
|
|
+ .login-center {
|
|
|
+ display: inline-block;
|
|
|
+ position: absolute;
|
|
|
+ margin: 10% auto 0 auto;
|
|
|
+ top: 10%;
|
|
|
+ left: calc(50% - 200px);
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-content {
|
|
|
+ display: inline-block;
|
|
|
+
|
|
|
+ width: 437px;
|
|
|
+ height: 430px;
|
|
|
+ background-color: transparent;
|
|
|
+ padding: 10px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-content form {
|
|
|
+ height: 390px;
|
|
|
+ margin: 20px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-from {
|
|
|
+ width: 400px;
|
|
|
+ height: 370px;
|
|
|
+ border-radius: 25px;
|
|
|
+ padding-left: 100px;
|
|
|
+ padding-top: 20px;
|
|
|
+ background: white;
|
|
|
+ color: #333333;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-select {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ border-radius: 20px;
|
|
|
+ width: 308px;
|
|
|
+ margin: 10px auto;
|
|
|
+ background: #e8e8e8;
|
|
|
+ color: #888888;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-select-item {
|
|
|
+ width: 112px;
|
|
|
+ height: 40px;
|
|
|
+ cursor: pointer;
|
|
|
+ line-height: 40px;
|
|
|
+ padding: 0 3px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-select-item span {
|
|
|
+ z-index: -2;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-select-phone {
|
|
|
+ border-radius: 20px 0 0 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-select-wx {
|
|
|
+ border-radius: 0 20px 20px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .select-item {
|
|
|
+ border-radius: 20px;
|
|
|
+ z-index: 2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .select-item2 {
|
|
|
+ position: absolute;
|
|
|
+ width: 103px;
|
|
|
+ height: 40px;
|
|
|
+ background: rgba(255, 255, 255, 1);
|
|
|
+
|
|
|
+ border-radius: 20px;
|
|
|
+ box-shadow: #888888 0 0 5px;
|
|
|
+ transition: margin-left 0.2s ease-in-out;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-type-phone {
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-phone {
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin: 50px auto 20px auto;
|
|
|
+ width: 300px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-phone-input {
|
|
|
+ height: 32px;
|
|
|
+ width: 290px;
|
|
|
+ border-radius: 15px;
|
|
|
+ border: 2px #dddddd solid;
|
|
|
+ padding: 3px 10px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-phone-input input {
|
|
|
+ height: 32px;
|
|
|
+ width: 280px;
|
|
|
+ background: transparent;
|
|
|
+ border: transparent 0;
|
|
|
+ font-size: 18px;
|
|
|
+ outline: none;
|
|
|
+ text-security: disc;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-phone-input
|
|
|
+ :active {
|
|
|
+ border: transparent 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-phone-code {
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin: 0 auto 20px auto;
|
|
|
+ width: 308px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-phone-code-input {
|
|
|
+ height: 32px;
|
|
|
+ width: 150px;
|
|
|
+ border-radius: 15px;
|
|
|
+ border: 2px #dddddd solid;
|
|
|
+ padding: 3px 10px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-phone-code-input input {
|
|
|
+ height: 32px;
|
|
|
+ width: 140px;
|
|
|
+ background: transparent;
|
|
|
+ border: transparent 0;
|
|
|
+ font-size: 18px;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-phone-code-input :active {
|
|
|
+ border: transparent 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-phone-code-btn {
|
|
|
+ margin-left: 20px;
|
|
|
+ height: 42px;
|
|
|
+ width: 120px;
|
|
|
+ user-select: none;
|
|
|
+ border-radius: 15px;
|
|
|
+ background: #0971ef;
|
|
|
+ color: #dddddd;
|
|
|
+ line-height: 42px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-email {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+ margin: 20px auto 20px auto;
|
|
|
+ width: 300px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email .login-email-input {
|
|
|
+ margin: 0 auto 20px auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-input {
|
|
|
+ height: 32px;
|
|
|
+ width: 290px;
|
|
|
+ border-radius: 15px;
|
|
|
+ border: 2px #dddddd solid;
|
|
|
+ padding: 3px 10px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-input input {
|
|
|
+ height: 32px;
|
|
|
+ width: 280px;
|
|
|
+ background: transparent;
|
|
|
+ border: transparent 0;
|
|
|
+ font-size: 18px;
|
|
|
+ outline: none;
|
|
|
+ text-security: disc;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-input:active {
|
|
|
+ /*border: transparent 0;*/
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-btn {
|
|
|
+ height: 42px;
|
|
|
+ border-radius: 15px;
|
|
|
+ width: 300px;
|
|
|
+ margin: 30px auto;
|
|
|
+ background: #0971ef;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-btn-div {
|
|
|
+ cursor: pointer;
|
|
|
+ user-select: none;
|
|
|
+ color: #dddddd;
|
|
|
+ font-size: 18px;
|
|
|
+
|
|
|
+ line-height: 42px;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-type-email {
|
|
|
+ padding-top: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin: 20px auto 20px auto;
|
|
|
+ width: 300px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-input {
|
|
|
+ height: 32px;
|
|
|
+ width: 290px;
|
|
|
+ border-radius: 15px;
|
|
|
+ border: 2px #dddddd solid;
|
|
|
+ padding: 3px 10px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-input input {
|
|
|
+ height: 32px;
|
|
|
+ width: 280px;
|
|
|
+ background: transparent;
|
|
|
+ border: transparent 0;
|
|
|
+ font-size: 18px;
|
|
|
+ outline: none;
|
|
|
+ text-security: disc;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-input
|
|
|
+ :active {
|
|
|
+ border: transparent 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-email-code {
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin: 0 auto 20px auto;
|
|
|
+ width: 308px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-code-input {
|
|
|
+ height: 32px;
|
|
|
+ width: 150px;
|
|
|
+ border-radius: 15px;
|
|
|
+ border: 2px #dddddd solid;
|
|
|
+ padding: 3px 10px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-code-input input {
|
|
|
+ height: 32px;
|
|
|
+ width: 140px;
|
|
|
+ background: transparent;
|
|
|
+ border: transparent 0;
|
|
|
+ font-size: 20px;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-email-code-input:active {
|
|
|
+ border: transparent 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-email-code-btn {
|
|
|
+ margin-left: 20px;
|
|
|
+ height: 42px;
|
|
|
+ width: 120px;
|
|
|
+ user-select: none;
|
|
|
+ border-radius: 15px;
|
|
|
+ background: #0971ef;
|
|
|
+ color: #dddddd;
|
|
|
+ line-height: 42px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-btn {
|
|
|
+ height: 42px;
|
|
|
+ border-radius: 15px;
|
|
|
+ width: 300px;
|
|
|
+ margin: 30px auto;
|
|
|
+ background: #0971ef;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-btn-div {
|
|
|
+ cursor: pointer;
|
|
|
+ user-select: none;
|
|
|
+ color: #dddddd;
|
|
|
+ font-size: 18px;
|
|
|
+ line-height: 42px;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-type-wx {
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-wx-refresh {
|
|
|
+ cursor: pointer;
|
|
|
+ user-select: none;
|
|
|
+ width: 125px;
|
|
|
+ margin: 10px auto 5px auto;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 25px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #888888;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-wx-refresh-icon {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-wx-refresh-icon img {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 25px;
|
|
|
+ height: 25px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-wx-refresh-text {
|
|
|
+ font-size: 20px;
|
|
|
+ line-height: 25px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-wx-tip {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ font-size: 14px;
|
|
|
+ display: inline-block;
|
|
|
+
|
|
|
+ font-weight: bolder;
|
|
|
+ color: #555555;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-wx-image {
|
|
|
+ width: 180px;
|
|
|
+ height: 180px;
|
|
|
+ background: #888888;
|
|
|
+ margin: 10px auto;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-register-btn {
|
|
|
+ margin: 20px auto;
|
|
|
+ cursor: pointer;
|
|
|
+ user-select: none;
|
|
|
+ color: #888888;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-register-btn:hover {
|
|
|
+ color: #207cfb;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-register-btn:active {
|
|
|
+ color: #1a6adc;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-image {
|
|
|
+ border-radius: 25px;
|
|
|
+ background-image: url('https://cdn.yicanggongyi.com/yinhe/icon/login.png');
|
|
|
+ width: 430px;
|
|
|
+ height: 430px;
|
|
|
+ /*background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));*/
|
|
|
+ position: absolute;
|
|
|
+ transform: translateX(-70%);
|
|
|
+ width: 437px;
|
|
|
+ height: 430px;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .nav-user-icon {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 35px;
|
|
|
+ margin: 17px 0;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-user-icon-bg {
|
|
|
+ min-width: 35px;
|
|
|
+ min-height: 35px;
|
|
|
+
|
|
|
+ background: #1d1d1d;
|
|
|
+ margin-right: 5px;
|
|
|
+ display: flex;
|
|
|
+ border-radius: 50%;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-user-icon-bg img {
|
|
|
+ border-radius: 50%;
|
|
|
+ max-width: 35px;
|
|
|
+ max-height: 35px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .login-body {
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ position: fixed;
|
|
|
+ z-index: 999;
|
|
|
+ width: 100VW;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-body-shield {
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ position: fixed;
|
|
|
+ background: rgba(0, 0, 0, 0.5);
|
|
|
+ width: 100VW;
|
|
|
+ z-index: -1;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .bottom-bar {
|
|
|
+ background: white;
|
|
|
+ margin: 0;
|
|
|
+ padding: 70px 0 0 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .partners-line {
|
|
|
+ margin: auto;
|
|
|
+ width: 1170px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .partners-line ul {
|
|
|
+ list-style: none;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .partners-line ul li {
|
|
|
+ height: 46px;
|
|
|
+ display: flex;
|
|
|
+ margin: 0 10px;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .partners-service-guarantee {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ width: 1170px;
|
|
|
+ margin: 10px auto 30px;
|
|
|
+ border-bottom: 1px solid #e5e5e5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .service-guarantee {
|
|
|
+ display: flex;
|
|
|
+ text-align: left;
|
|
|
+ margin-top: 40px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sg-icon {
|
|
|
+ height: 60px;
|
|
|
+ width: 60px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background: #daD5D9;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sg-info {
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 38px;
|
|
|
+ margin-top: 8px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ margin-left: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sg-info div:nth-child(1) {
|
|
|
+ color: #333333;
|
|
|
+ display: block;
|
|
|
+ box-sizing: border-box;
|
|
|
+ line-height: 14px;
|
|
|
+ width: 100%;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sg-info div:nth-child(2) {
|
|
|
+ color: #666666;
|
|
|
+ display: block;
|
|
|
+ margin-top: 8px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ line-height: 14px;
|
|
|
+ width: 100%;
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .filing-body {
|
|
|
+ text-align: center;
|
|
|
+ color: #8b8b8b;
|
|
|
+ border-top: #dddddd 1px solid;
|
|
|
+ width: 1170px;
|
|
|
+ margin: 30px auto 0;
|
|
|
+ padding: 15px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bottom-bar-about {
|
|
|
+ width: 1170px;
|
|
|
+ margin: 0 auto;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bottom-bar-about-left {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-contact {
|
|
|
+ width: 185px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-me {
|
|
|
+ margin-left: 95px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-issue {
|
|
|
+ margin-left: 134px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-row {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-row-title {
|
|
|
+ font-size: 16px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ color: #000000;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-row-item {
|
|
|
+ height: 16px;
|
|
|
+ line-height: 16px;
|
|
|
+ color: #666666;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-row-item:hover {
|
|
|
+ color: #1a6adc;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-row-imgs {
|
|
|
+ margin-top: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-row-imgs img {
|
|
|
+ margin-right: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bottom-bar-about-right {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 278px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .about-row-title {
|
|
|
+ font-size: 16px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .my-user-images {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ }
|
|
|
+
|
|
|
+ .my-user-images img {
|
|
|
+ margin: 0 4px 4px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bottom-bar-active {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin-top: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bottom-bar-active img {
|
|
|
+ margin-right: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-about-box {
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin-top: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-about-app {
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-about-app img {
|
|
|
+ margin-right: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /*注册*/
|
|
|
+ body, html {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ font-family: Arial, sans-serif;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-center {
|
|
|
+ position: absolute;
|
|
|
+ margin: 10% auto 0 auto;
|
|
|
+ top: 10%;
|
|
|
+ left: calc(50% - 200px);
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ color: #888;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ width: 350px;
|
|
|
+ height: 430px;
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 20px;
|
|
|
+ padding: 20px 40px;
|
|
|
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content-title {
|
|
|
+ color: #333;
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: bold;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content-input {
|
|
|
+ width: 100%;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content-input input {
|
|
|
+ width: 100%;
|
|
|
+ height: 32px;
|
|
|
+ padding: 5px;
|
|
|
+ border: 2px solid #ddd;
|
|
|
+ border-radius: 15px;
|
|
|
+ outline: none;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content-code {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .register-content-code-input {
|
|
|
+ width: 60%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content-code-input input {
|
|
|
+ width: 100%;
|
|
|
+ height: 32px;
|
|
|
+ padding: 5px;
|
|
|
+ border: 2px solid #ddd;
|
|
|
+ border-radius: 15px;
|
|
|
+ outline: none;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content-code-btn {
|
|
|
+ width: 32%;
|
|
|
+ height: 42px;
|
|
|
+ background-color: #207cfb;
|
|
|
+ color: white;
|
|
|
+ border-radius: 15px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ cursor: pointer;
|
|
|
+ user-select: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .register-content-submit {
|
|
|
+ width: 100%;
|
|
|
+ height: 42px;
|
|
|
+ background-color: #207cfb;
|
|
|
+ color: white;
|
|
|
+ border-radius: 15px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ cursor: pointer;
|
|
|
+ user-select: none;
|
|
|
+ font-weight: bold;
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .page {
|
|
|
+ padding-top: 80px;
|
|
|
+ background-color: white;
|
|
|
+ border-bottom: #dddddd 1px solid;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .page .info-page {
|
|
|
+ width: 1170px;
|
|
|
+ margin: 0 auto;
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ min-height: 800px;
|
|
|
+ text-align: left;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .page .info-page .info-title {
|
|
|
+ padding-top: 30px;
|
|
|
+ text-align: left;
|
|
|
+ font-size: 30px;
|
|
|
+ font-weight: bold;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /*todo 路由栏*/
|
|
|
+ .router-jump-bar {
|
|
|
+ width: 100%;
|
|
|
+ background: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar {
|
|
|
+ text-align: left;
|
|
|
+ margin: 0 auto;
|
|
|
+ color: #333;
|
|
|
+ width: 1170px;
|
|
|
+ height: 50px;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar .router-bar-list {
|
|
|
+ list-style: none;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ font-size: 14px;
|
|
|
+
|
|
|
+ color: #888888;
|
|
|
+ font-weight: bold;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: left;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar-list .router-bar-item {
|
|
|
+ cursor: pointer;
|
|
|
+ margin: 0 10px;
|
|
|
+ height: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar-list .router-bar-text {
|
|
|
+ cursor: pointer;
|
|
|
+ margin: 0 10px;
|
|
|
+ height: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar-list .router-bar-arrow {
|
|
|
+ margin: 0;
|
|
|
+ height: 20px;
|
|
|
+ user-select: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar-list .router-bar-item:hover {
|
|
|
+ /* 下划线*/
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar-list .router-bar-item :nth-child(1) {
|
|
|
+ margin-left: 0;
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
+
|
|
|
+ .router-bar-item :hover {
|
|
|
+ cursor: pointer;
|
|
|
+ color: #207cfb;
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
-.router-bar-item :hover {
|
|
|
- cursor: pointer;
|
|
|
- color: #207cfb;
|
|
|
- text-decoration: underline;
|
|
|
-}
|