| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152 |
- * {
- 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
- }
- /*移动端*/
- @media screen and (min-width: 10px) and (max-width: 768px) {
- .bottom-bar {
- display: none;
- }
- .mobile-bottom {
- display: block;
- color: #888888;
- padding: 5px 10px;
- background: #fafafa;
- line-height: 40px;
- text-align: center;
- }
- .navigation-bar {
- display: flex;
- position: fixed;
- place-items: center;
- top: 0;
- width: calc(100% - 5.8666667vw);
- height: calc(100VW / 10);
- z-index: 11;
- background-color: #000000;
- padding: 2.66667vw 3.2vw;
- }
- .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%;
- height: 80%;
- margin: auto 0;
- display: flex;
- border: none;
- border-radius: 50%;
- }
- .nav-search form {
- width: 100%;
- display: flex;
- min-height: 15px;
- }
- .nav-search-div {
- width: 100%;
- height: 100%;
- }
- .nav-search-div .search-input {
- height: 100%;
- width: calc(100%);
- padding: 0 0 0 15px;
- font-size: calc(100VW / 10 / 8 * 3);
- border: none;
- outline: none;
- border-radius: 5px 0 0 5px;
- }
- .search-btn {
- width: calc(100VW / 6);
- 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: calc(10VW + 2.667vw * 2);
- }
- .home-suspension {
- display: none;
- }
- .nav-user {
- display: none;
- }
- .footer-interval {
- height: 40px;
- }
- .footer-bar {
- text-align: center;
- display: flex;
- position: fixed;
- justify-content: space-evenly;
- bottom: 0;
- left: 0;
- right: 0;
- min-height: 40px;
- padding: 5px 0 0 0;
- border-top: 1px solid #e8e8e8;
- box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px;
- background-color: white;
- z-index: 11;
- }
- .footer-item {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- margin: 5px 0;
- padding: 0 10px;
- border-radius: 5px;
- background-color: rgba(0, 0, 0, 0);
- }
- .footer-item-img {
- width: 5.666VW;
- height: 5.666VW;
- }
- .footer-item-img img {
- width: 100%;
- height: 100%;
- }
- .footer-item-text {
- font-size: 1em;
- color: #666666;
- }
- }
- @media screen and (min-width: 769px) {
- body {
- background: #f0f0f0;
- }
- body, html, div {
- margin: 0;
- padding: 0;
- }
- .footer-bar {
- display: none;
- }
- .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;
- }
- .mobile-bottom {
- display: none;
- }
- .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;
- }
- }
|