123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- @import "../../../../public/scss/reset.scss";
- @import "../../../../public/scss/unicom.scss";
- html,
- body {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 22rem;
- background-image: url("../images/bg.png");
- background-repeat: no-repeat;
- background-size: contain;
- & > .banner-bg {
- margin-top: 1.29rem;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- & > .title {
- width: 6.47rem;
- height: 3.69rem;
- display: block;
- margin-bottom: 0.21rem;
- }
- & > .main {
- width: 6.44rem;
- height: 6.64rem;
- display: block;
- }
- & > .btn {
- width: 6.01rem;
- height: 1.07rem;
- display: block;
- margin-top: 0.21rem;
- }
- }
- .border-text {
- // width: 100%;
- margin: 0 auto;
- margin-top: 0.44rem;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- // background-image: url("../images/bg-border.png");
- background-color:rgba(226, 244, 255,.5);
- border: 4px solid #3b7cff;
- background-repeat: no-repeat;
- background-size: contain;
- width: 6.68rem;
- height: 7.5rem;
- border-radius: .4rem;
- padding: .47rem 0 .6rem .53rem;
- box-sizing: border-box;
- font-size: 0.2708rem;
- padding-right: 2px;
- }
- .content-text {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- // width: 100%;
- // height: 100%;
- padding-right: calc(.53rem - 2px);
- overflow-y: scroll;
- .title {
- font-size: 0.375rem;
- margin-top: .47rem;
- position: relative;
- z-index: 2;
- margin-bottom: .32rem;
- }
- .title-1-cell {
- margin-top: 0;
- }
- .title::after {
- content: "";
- display: block;
- width: 2rem;
- height: .18rem;
- background-color: #81abff;
- position: absolute;
- bottom: -.02rem;
- z-index: -1;
- left: -.25rem;
- }
- .text {
- .text-cell {
- margin-bottom: .6rem;
- .b-text {
- font-weight: 700;
- color: #000;
- font-style: normal;
- }
- }
- & :last-child {
- margin-bottom: 0;
- }
- }
- }
- .content-text::-webkit-scrollbar {
- width: 0.08rem;
- }
- .content-text::-webkit-scrollbar-thumb {
- background-color: #d9d9d9 !important;
- // width: 0.13rem;
- height: 1.82rem;
- border-radius: 0.065rem;
- }
- .content-text::-webkit-scrollbar-track {
- padding-right: 2px;
- }
- }
|