123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- .content {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 100vw;
- height: 100vh;
- }
- .content {
- background-color: var(--rgb111);
- overflow: hidden;
- }
- .content .one {
- padding: 0 2vw;
- margin: 0 0 2vw 0;
- }
- .content .one video {
- width: 100%;
- height: 210px;
- overflow: hidden;
- border: 1px solid var(--rgbf1f);
- }
- .content .two {
- position: relative;
- flex-grow: 1;
- padding: 0 2vw;
- }
- .content .two .two_1 {
- display: flex;
- justify-content: space-around;
- margin: 0 0 2vw 0;
- }
- .content .two .two_1 .list ._span {
- background-color: var(--rgbfff);
- color: var(--rgb000);
- padding: 1vw 4vw;
- font-size: 14px;
- border-radius: 5px;
- }
- .content .two .two_1 .active ._span {
- background-color: var(--rgbfa4);
- color: var(--rgbfff);
- }
- .content .two .two_2 .tab_1 {
- display: flex;
- flex-direction: column;
- width: 96vw;
- height: 58vh;
- overflow-y: auto;
- }
- .content .two .two_2 .tab_1 .title {
- font-size: 15px;
- color: var(--rgbfff);
- margin: 0 0 2vw 0;
- }
- .content .two .two_2 .tab_1 .actor {
- margin: 0 0 2vw 0;
- }
- .content .two .two_2 .tab_1 .brief {
- font-size: 15px;
- color: var(--rgbfff);
- margin: 0 0 2vw 0;
- }
- .content .two .two_2 .tab_1 .other {
- margin: 0 0 2vw 0;
- }
- .content .two .two_2 .tab_1 .other .other_1 {
- font-size: 15px;
- color: var(--rgbfff);
- margin: 0 0 2vw 0;
- }
- .content .two .two_2 .tab_1 .other .other_2 {
- display: flex;
- flex-wrap: wrap;
- }
- .content .two .two_2 .tab_1 .other .other_2 .firmvideoList {
- width: 48%;
- margin: 0 10px 5px 0;
- }
- .content .two .two_2 .tab_1 .other .other_2 .firmvideoList .image {
- width: 100%;
- height: 100px;
- overflow: hidden;
- border-radius: 5px;
- box-shadow: 0 0 5px var(--rgbf1f);
- margin: 0 0 5px 0;
- }
- .content .two .two_2 .tab_1 .other .other_2 .firmvideoList .name {
- font-size: 14px;
- color: var(--rgbfff);
- margin: 0 0 5px 0;
- }
- .content .two .two_2 .tab_1 .other .other_2 .firmvideoList .other {
- display: flex;
- color: var(--rgbfff);
- font-size: 12px;
- justify-content: space-between;
- }
- .content .two .two_2 .tab_1 .other .other_2 .firmvideoList:nth-child(2n) {
- margin: 0 0 5px 0;
- }
|