/*样式*/
body,html{
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-family: Helvetica Neue,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Arial,sans-serif;
	min-width: 1200px;
	
	/*overflow-x: hidden;*/
	
	/*overflow-x: auto;*/
	
}
/*禁止图片选中*/
body img,body a{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

ul,li,p,h2,h3{
	list-style: none;
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}




/*flex兼容-----------------------------------*/
.box{
	display: box;              /* OLD - Android 4.4- */
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex1{
	-prefix-box-flex: 1; 	  /*OLD - Android 4.4- */
	-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;         /* OLD - Firefox 19- */
	-webkit-flex: 1;          /* Chrome */
	-ms-flex: 1;              /* IE 10 */
	flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/*flex-direction*/
/* 父元素-横向排列-从左到右（主轴） */
.flex-row {
 	 /* 09版 */
  	-webkit-box-orient: horizontal;
  	/* 12版 */
 	-webkit-flex-direction: row;
  	-moz-flex-direction: row;
  	-ms-flex-direction: row;
  	-o-flex-direction: row;
  	flex-direction: row;
}
/* 父元素-横向排列-从右到左（主轴） */
.flex-rowReverse {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
/* 父元素-纵向排列-从上到下（主轴） */
.flex-column {
  	/* 09版 */
  	-webkit-box-orient: vertical;
  	/* 12版 */
  	-webkit-flex-direction: column;
  	-moz-flex-direction: column;
  	-ms-flex-direction: column;
  	-o-flex-direction: column;
 	flex-direction: column;
}
/* 父元素-纵向排列-从下到上（主轴） */
.flex-columnReverse {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/*flex-wrap*/
/* 父元素-横向换行 */
.flex-wrap {
  	/* 09版 */
  	-webkit-box-lines: multiple;
  	/* 12版 */
  	-webkit-flex-wrap: wrap;
  	-moz-flex-wrap: wrap;
  	-ms-flex-wrap: wrap;
  	-o-flex-wrap: wrap;
  	flex-wrap: wrap;
}
/*反向排列*/
.flex-wrapReverse {
  	/* 09版 */
  	/*-webkit-box-lines: multiple;*/
  	/* 12版 */
  	-webkit-flex-wrap: wrap-reverse;
  	-moz-flex-wrap: wrap-reverse;
  	-ms-flex-wrap: wrap-reverse;
  	-o-flex-wrap: wrap-reverse;
  	flex-wrap: wrap-reverse;
}

/*justify-content-主轴对齐*/
/* 父元素-水平居中（主轴是横向才生效） */
.flex-juCenter {
	/*ms版本*/
	-ms-flex-pack: center;
  	/* 09版 */
  	-webkit-box-pack: center;
  	/* 12版 */
  	-webkit-justify-content: center;
  	-moz-justify-content: center;
  	-ms-justify-content: center;
  	-o-justify-content: center;
  	justify-content: center;
  	/* 其它取值如下：
	    align-items     主轴原点方向对齐
	    flex-end        主轴延伸方向对齐
	    space-between   等间距排列，首尾不留白
	    space-around    等间距排列，首尾留白
   */
}
/*父元素-水平两端对齐（主轴是横向才生效）*/
.flex-juBetween{
	/*ms版本*/
	-ms-flex-pack: justify;
	/*09版*/
    -webkit-box-pack: justify;
    /*12版*/
    -moz-box-pack:space-around;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/*父元素-水平平等分对齐（主轴是横向才生效）*/
.flex-juAround {
	/*ms版本*/
	-ms-flex-pack: space-around;
	/*09版*/
	-webkit-box-pack:space-around;
	/*12版*/
	-moz-box-pack:space-around;
	-webkit--moz-box-pack:space-around;
	-webkit-justify-content:space-around;
	justify-content: space-around;
}
/*父元素-水平末尾对齐（主轴是横向才生效）*/
.flex-juEnd {
	/*ms版本*/
	-ms-flex-pack: end;
	/**/
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
/* 父元素-水平头部对齐（主轴是横向才生效 */
.flex-juStart {
	/*ms版本*/
	-ms-flex-pack: start;
	/**/
    -webkit-box-pack: start;
    -moz-justify-content: start;
    -webkit-justify-content: start;
    justify-content: start;
}

/*align-items-侧轴对齐*/
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vCenter {
	/*ms*/
	-ms-flex-align:center;
 	 /* 09版 */
  	-webkit-box-align: center;
  	/* 12版 */
  	-webkit-align-items: center;
  	-moz-align-items: center;
  	-ms-align-items: center;
  	-o-align-items: center;
  	align-items: center;
}
/* 父元素-竖直头部对齐（主轴是横向才生效） */
.flex-vStart {
	/*ms*/
	-ms-flex-align:start;
	/**/
    -webkit-box-align: start;
    -moz-align-items: start;
    -webkit-align-items: start;
    align-items: start;
}
/* 父元素-竖直底部对齐（主轴是横向才生效） */
.flex-vEnd {
	/*ms*/
	-ms-flex-align:end;
	/**/
    -webkit-box-align: end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
/* 父元素-竖直文本基线对齐 （主轴是横向才生效）*/
.flex-vBaseline {
	/*ms*/
	-ms-flex-align:baseline;
	/**/
    -webkit-box-align: baseline;
    -moz-align-items: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

/* 父元素-竖直上下对齐并铺满（主轴是横向才生效） */
.flex-vStretch {
	/*ms*/
	-ms-flex-align:stretch;
	/**/
    -webkit-box-align: stretch;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-o1 {
  	-webkit-box-ordinal-group: 1;   /* OLD - iOS 6-, Safari 3.1-6 */
  	-moz-box-ordinal-group: 1;      /* OLD - Firefox 19- */
  	-ms-flex-order: 1;              /* TWEENER - IE 10 */
  	-webkit-order: 1;               /* NEW - Chrome */
  	order: 1;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 是否允许子元素伸缩 */
.flex-grow1 {
    -webkit-box-flex: 1.0;
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.flex-shrink{
    -webkit-box-flex: 1.0;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}
.flex-shrink0{
    -webkit-box-flex: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}


/* --------------------c菜单------------------ */
#ai-menu{
	height:100px ;
	width: 100%;
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: #1E1F22;
}

/* 左边 */
#ai-menu .menu-left{
	font-family: PangMenZhengDao-3;
	font-weight: 400;
	font-size: 30px;
	color: #FFFFFF;
	
	padding-left: 60px;
}
#ai-menu .menu-left:hover{
	cursor: pointer;
}
/* 右边 */
#ai-menu .menu-right{
	padding-right: 60px;
}
/* 开始创作 */
#ai-menu .menu-right .ai-btn{
	width: 140px;
	height: 48px;
	/* background: linear-gradient(45deg, #10F4ED, #8A2CFB); */
	border-radius: 24px;
	border:1px solid #10f4ed;
	
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 24px;
	color: #00A4EF;
	text-align: center;
	line-height: 48px;
}
#ai-menu .menu-right .ai-btn:hover{
	cursor: pointer;
	color: #333333;
	background-color: #10f4ed;
}

/* 登录 */
#ai-menu .menu-right .login-btn{
	width: 260px;
	height: 54px;
	border-radius: 24px;
	border: 1px solid #10f4ed;


	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 24px;
	color: #00A4EF;

	
	text-align: center;
	line-height: 54px;
	
	margin-left: 60px;
}


#ai-menu .menu-right p:hover{
	cursor: pointer;
	color: #FFFFFF;
	
	/* transform: translateY(6px); */
}

.user_info{
	display: inline-block;
	
	width: 200px;
	height: 40px;
	
	text-align: center;
	line-height: 40px;
	
	color: #FFFFFF;
	font-size: 20px;
	
	border: 1px solid #00A4EF;
	border-radius: 20px;
	
	margin-left: 20px;
}

/* ------------------banner--------------------- */
#ai-banner{
	width:100%;
	height:100vh;
	
	background-image: url(../img/index/banner-bg.png);
	background-size: cover;
}
/* #ai-banner p:first-child{
	font-family: PangMenZhengDao-3;
	font-weight: 400;
	font-size: 100px;
	color: #00FFFF;
	background: linear-gradient(45deg, #10F4ED 0%, #8A2CFB 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	
	margin-bottom:80px ;
} */
#ai-banner img{
	width: 286px;
	height: auto;
	display: block;
	
	margin-bottom:80px ;
}

#ai-banner p:nth-child(2){
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 24px;
	color: #FFFFFF;
	line-height: 48px;
	
	text-align: center;
	margin-bottom: 130px;
}

#ai-banner p:nth-child(3){
	width: 302px;
	height: 72px;
	/* background: linear-gradient(45deg, #10F4ED, #8A2CFB); */
	border-radius: 36px;
	border:2px solid #10f4ed;
	
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 30px;
	color: #00A4EF;
	/* background: linear-gradient(45deg, #10F4ED 0%, #8A2CFB 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
	
	text-align: center;
	line-height: 72px;
}

#ai-banner p:nth-child(3):hover{
	cursor: pointer;
	color: #333333;
	background-color: #10f4ed;
	/* transform: translateY(10px); */
}
