| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- @font-face {
- font-family: 'SYST';
- src: url('./SiYuanSongTiRegular/SourceHanSerifCN-Bold-2.otf');
- font-weight: normal;
- font-style: normal;
- }
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- a {
- text-decoration: none;
- }
- ul,
- ol {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- /* 移动端图⽚边框相当于 border:0 */
- img {
- vertical-align: top;
- }
- /* -webkit-tap-highlight-color:rgba(0,0,0,0);//透明度设置为0,去掉点击链接和⽂本框对象时默认的灰⾊半透明覆盖层(iOS)或者虚框(Android) */
- a,
- input,
- button {
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- /* 取消chrome下默认的⽂本框聚焦样式 */
- input,
- textarea {
- outline: none
- }
- /* 去掉IOS移除原⽣控件样式 */
- /* -webkit-appearance: none; */
- /* 消除输⼊框和按钮的原⽣外观,在iOS上加上这个属性才能给按钮和输⼊框⾃定义样式 */
- input,
- button {
- -webkit-appearance: none;
- border-radius: 0;
- }
- /* -webkit-touch-callout:none; */
- /* 禁⽤长按页⾯时的弹出菜单 */
- /* -webkit-user-select: none; */
- /* 禁⽌页⾯⽂字选择,此属性不继承,⼀般加在body上规定整个body的⽂字都不会⾃动调整 */
- /* 禁⽌移动端⽤户进⾏复制.选择. */
- body {
- margin: 0;
- -webkit-user-select: none;
- -webkit-touch-callout: none;
- }
- body * {
- -webkit-user-select: none;
- font-family: Helvetica;
- }
- body {
- -webkit-text-size-adjust: 100%;
- }
- /* 移动端横竖屏字体乎⼤乎⼩ */
- /* -webkit-text-size-adjust: none; */
- /* 禁⽌⽂字⾃动调整⼤⼩(默认情况下旋转设备的时候⽂字⼤⼩会发⽣变化),此属性也不继承,⼀般加在body上规定整个body的⽂字都不会⾃动调整 */
- .comTit{
- width: 100%;
- height: 80px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .comTit img{
- width: 20px;
- margin-top: 2px;
- }
- .comTit span{
- display: inline-block;
- font-family: 'SYST';
- font-size: 18px;
- color: #9F171C;
- margin: 0 10px;
- }
- .opcBase{
- opacity: 0 !important;
- }
- .conShowLoad{
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .videoName>p{
- padding: 0px 10px;
- z-index: 99;
- width: 100%;
- word-break:break-all;
- }
- .videoName .videoPlay{
- width: 50px;
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 100;
- transform: translate(-50%,-50%);
- }
- .videoName .videoPlay img{
- width: 100%;
- }
|