@import './../mixins/index.scss';

/**
 * 浏览器下载样式
 */
.non-support-browser {
  @include reset-component2;

  width: 60%;
  height: 20em;
  margin: 10em auto;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: 0 1px 1px 1px #f7f7f7;

  header {
    padding: 1em;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(#fdfdfd, #fff0ad);
    border-bottom: 1px solid #ddd;
  }

  h5 {
    margin-top: 10px;
    font-size: 16px;
  }

  .non-support-browser-content {
    .non-support-browser-item {
      margin: 1.5em 0;
      font-size: 16px;
      list-style: none;

      &::before {
        color: orangered;
        content: '•';
      }

      a {
        text-decoration: underline;
      }
    }
  }
}
