| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- #index {
- color: #d3d6dd;
- width: 1920px;
- height: 1080px;
- overflow: hidden;
- position:fixed;
- left:0;
- top:0;
- bottom:0;
- right:0;
-
- .bg {
- width: 100%;
- height: 100%;
- padding: 16px 16px 0 16px;
- background-image: url("../../assets/pageBg.png");
- background-size: cover;
- background-position: center center;
- }
- .host-body {
- .dv-dec-10,
- .dv-dec-10-s {
- width: 33.3%;
- height: 5px;
- }
- .dv-dec-10-s {
- transform: rotateY(180deg);
- }
- .dv-dec-8 {
- width: 200px;
- height: 50px;
- }
- .title {
- position: relative;
- width: 500px;
- text-align: center;
- background-size: cover;
- background-repeat: no-repeat;
- .title-text {
- font-size: 26px;
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translate(-50%);
- }
- .dv-dec-6 {
- position: absolute;
- bottom: -30px;
- left: 50%;
- width: 250px;
- height: 8px;
- transform: translate(-50%);
- }
- }
- // 第二行
- .aside-width {
- width: 40%;
- }
- .react-r-s,
- .react-l-s {
- background-color: #0f1325;
- }
- // 平行四边形
- .react-right {
- &.react-l-s {
- text-align: right;
- width: 500px;
- }
- font-size: 18px;
- width: 300px;
- line-height: 50px;
- text-align: center;
- transform: skewX(-45deg);
- .react-after {
- position: absolute;
- right: -25px;
- top: 0;
- height: 50px;
- width: 50px;
- background-color: #0f1325;
- transform: skewX(45deg);
- }
- .text {
- display: inline-block;
- transform: skewX(45deg);
- }
- }
- .react-left {
- &.react-l-s {
- width: 500px;
- text-align: left;
- }
- font-size: 20px;
- width: 300px;
- height: 50px;
- line-height: 50px;
- text-align: center;
- transform: skewX(45deg);
- background-color: #0f1325;
- .react-left {
- position: absolute;
- left: -25px;
- top: 0;
- height: 50px;
- width: 50px;
- background-color: #1a5cd7;
- transform: skewX(-45deg);
- }
- .text {
- display: inline-block;
- transform: skewX(-45deg);
- }
- }
- .body-box {
- margin-top: 6px;
- display: flex;
- flex-direction: column;
- //下方区域的布局
- .content-box {
- display: grid;
- grid-template-columns: 1fr;
- }
- // 底部数据
- .bottom-box {
- display: grid;
- grid-template-columns: 1fr 2fr;
- }
- }
- }
- }
|