123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- @charset "utf-8";
- #start {
- height: 100%;
- color: #000;
- .start {
- background: #3A4287;
- height: 100%;
- padding: 40px 20px;
- .bg {
- height: 100%;
- width: 100%;
- background: #fff;
- }
- .fixed-content {
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- .title {
- text-align: center;
- font-size: 40px;
- font-weight: 600;
- margin-bottom: 100px;
- }
- .desc {
- text-align: center;
- margin-bottom: 80px;
- .block {
- display: inline-block;
- width: 300px;
- .desc-title {
- margin-bottom: 20px;
- .assets {
- margin-right: 10px;
- }
- }
- .desc-info {
- font-size: 40px;
- font-weight: 600;
- }
- }
- }
- .tip {
- text-align: center;
- margin-bottom: 20px;
- }
- .submit {
- text-align: center;
- }
- }
- }
- .layout {
- background: #006DAA;
- height: 100%;
- padding: 0 25px;
- display: flex;
- flex-direction: column;
- position: relative;
- .calculator {
- position: absolute;
- z-index: 9;
- top: 60px;
- }
- .fixed {
- position: absolute;
- top: 62px;
- left: 0;
- right: 0;
- height: 30px;
- line-height: 30px;
- background: #7EAFE0;
- color: #fff;
- padding: 0 25px;
- .calculator-icon {
- margin-left: 50px;
- cursor: pointer;
- }
- .collect-icon {
- float: right;
- cursor: pointer;
- transform: translateY(5px);
- }
- }
- .layout-header {
- height: 60px;
- color: #fff;
- .title {
- font-size: 20px;
- line-height: 60px;
- display: inline-block;
- }
- .right {
- float: right;
- text-align: right;
- .block {
- line-height: 30px;
- .assets {
- margin-right: 10px;
- }
- }
- }
- }
- .layout-footer {
- height: 35px;
- line-height: 35px;
- color: #fff;
- margin-right: -25px;
- .help {
- padding: 0 10px;
- border-left: 1px solid #fff;
- border-right: 1px solid #fff;
- display: inline-block;
- cursor: pointer;
- .assets {
- margin-right: 10px;
- }
- }
- .help:hover {
- background: darken(#006DAA, 10);
- }
- .full {
- display: inline-block;
- padding: 0 10px;
- border-right: 1px solid #fff;
- cursor: pointer;
- }
- .full:hover {
- background: darken(#006DAA, 10);
- }
- .next {
- float: right;
- padding: 0 10px;
- border-left: 1px solid #fff;
- border-top: 1px solid #fff;
- cursor: pointer;
- box-sizing: border-box;
- height: 35px;
- .assets {
- margin-left: 20px;
- }
- }
- .next:hover {
- background: darken(#006DAA, 10);
- }
- }
- .layout-body {
- background: #fff;
- flex: 1;
- overflow: hidden;
- overflow-y: auto;
- .block {
- padding: 60px 20px 20px;
- }
- }
- .layout-body.two {
- display: flex;
- .block {
- overflow: hidden;
- overflow-y: auto;
- flex: 1;
- }
- .block-content {
- border-right: 4px solid #006DAA;
- .navigation {
- margin-bottom: 80px;
- }
- }
- .block-answer {
- border-left: 4px solid #006DAA;
- }
- }
- }
- .modal {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .body {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background: #006DAA;
- width: 400px;
- color: #fff;
- .title {
- height: 38px;
- line-height: 38px;
- font-size: 18px;
- padding-left: 25px;
- border-bottom: 1px solid #fff;
- }
- .desc {
- text-align: center;
- margin-top: 20px;
- margin-bottom: 20px;
- }
- .btn-list {
- text-align: center;
- margin-bottom: 15px;
- .btn {
- display: inline-block;
- width: 70px;
- line-height: 35px;
- height: 35px;
- border: 1px solid #fff;
- background: #006DAA;
- cursor: pointer;
- }
- .btn:hover {
- background: darken(#006DAA, 5);
- }
- }
- }
- }
- }
|