123456789101112131415161718192021222324252627282930313233343536373839 |
- .popup-video {
- position: absolute;
- z-index: 999;
- }
- /*标题*/
- .popup-video .popup-video-header {
- background: rgb(15, 85, 195);
- color: rgb(255, 255, 255);
- font-size: 15rem;
- padding: 10rem;
- text-align: left;
- }
- /*关闭按钮*/
- .popup-video .popup-video-header .popup-video1-close-button {
- position: absolute;
- right: 10rem;
- cursor: pointer;
- }
- /*内容*/
- .popup-video .popup-video-content {
- padding: 0rem;
- width: 400rem;
- }
- /*提示框-下三角*/
- .popup-video .popup-video-tip {
- position: absolute;
- bottom: -25rem;
- left: 50%;
- margin-left: -15rem;
- width: 0;
- height: 0;
- border-left: 15rem solid transparent;
- border-right: 15rem solid transparent;
- border-top: 25rem solid rgb(15, 85, 195);
- }
|